diff --git a/VectoCore/Configuration/Constants.cs b/VectoCore/Configuration/Constants.cs
index d148d26c72a5c9c0800af65dc9204d0155d0c65c..025e91da8d25365673784762ec21f23d1e4e4379 100644
--- a/VectoCore/Configuration/Constants.cs
+++ b/VectoCore/Configuration/Constants.cs
@@ -62,12 +62,21 @@ namespace TUGraz.VectoCore.Configuration
 
 			public const double EngineFLDPowerTolerance = 0.50; // Watt
 
-
 			public const double CluchNormSpeed = 0.03;
 
 			public static readonly MeterPerSquareSecond MinimumAcceleration = 0.1.SI<MeterPerSquareSecond>();
 
 			public static Meter DriverActionDistanceTolerance = 0.25.SI<Meter>();
+
+			/// <summary>
+			/// The initial search interval for the breaking power search in the driver. (coasting, drag)
+			/// </summary>
+			public static Watt BreakingPowerInitialSearchInterval = 100.SI().Kilo.Watt.Cast<Watt>();
+
+			/// <summary>
+			/// The initial search interval for the operating point search in the driver. (acceleration, full load)
+			/// </summary>
+			public static MeterPerSquareSecond OperatingPointInitialSearchInterval = 5.SI<MeterPerSquareSecond>();
 		}
 	}
 }
\ No newline at end of file
diff --git a/VectoCore/Models/SimulationComponent/Data/FullLoadCurve.cs b/VectoCore/Models/SimulationComponent/Data/FullLoadCurve.cs
index a36661eac980ce612581c035a2f2a7d5f74f898b..c08cc27c2fb773e3af36c8eaa0d63ed1dd7bbb77 100644
--- a/VectoCore/Models/SimulationComponent/Data/FullLoadCurve.cs
+++ b/VectoCore/Models/SimulationComponent/Data/FullLoadCurve.cs
@@ -88,7 +88,7 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Data
 		}
 
 
-		public NewtonMeter FullLoadStationaryTorque(PerSecond angularVelocity)
+		public virtual NewtonMeter FullLoadStationaryTorque(PerSecond angularVelocity)
 		{
 			var idx = FindIndex(angularVelocity);
 			return VectoMath.Interpolate(FullLoadEntries[idx - 1].EngineSpeed, FullLoadEntries[idx].EngineSpeed,
@@ -96,7 +96,7 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Data
 				angularVelocity);
 		}
 
-		public NewtonMeter DragLoadStationaryTorque(PerSecond angularVelocity)
+		public virtual NewtonMeter DragLoadStationaryTorque(PerSecond angularVelocity)
 		{
 			var idx = FindIndex(angularVelocity);
 			return VectoMath.Interpolate(FullLoadEntries[idx - 1].EngineSpeed, FullLoadEntries[idx].EngineSpeed,
diff --git a/VectoCore/Models/SimulationComponent/Data/Gearbox/ShiftPolygon.cs b/VectoCore/Models/SimulationComponent/Data/Gearbox/ShiftPolygon.cs
index f84847448cc28fa02763da4547c852ac1d07a63b..ba8cc90aee5be86f10e89366a2a0dcb0eb19e5da 100644
--- a/VectoCore/Models/SimulationComponent/Data/Gearbox/ShiftPolygon.cs
+++ b/VectoCore/Models/SimulationComponent/Data/Gearbox/ShiftPolygon.cs
@@ -10,13 +10,13 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Data.Gearbox
 {
 	public class ShiftPolygon : SimulationComponentData
 	{
-		private readonly List<ShiftPolygonEntry> _upshiftPolygon;
-		private readonly List<ShiftPolygonEntry> _downshifPolygon;
+		private readonly List<ShiftPolygonEntry> _upShiftPolygon;
+		private readonly List<ShiftPolygonEntry> _downShiftPolygon;
 
-		internal ShiftPolygon(List<ShiftPolygonEntry> downshift, List<ShiftPolygonEntry> upshift)
+		internal ShiftPolygon(List<ShiftPolygonEntry> downshift, List<ShiftPolygonEntry> upShift)
 		{
-			_upshiftPolygon = upshift;
-			_downshifPolygon = downshift;
+			_upShiftPolygon = upShift;
+			_downShiftPolygon = downshift;
 		}
 
 		public static ShiftPolygon ReadFromFile(string fileName)
@@ -24,11 +24,11 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Data.Gearbox
 			var data = VectoCSVFile.Read(fileName);
 
 			if (data.Columns.Count != 3) {
-				throw new VectoException("ShiftPolygon Data File must contain 3 columns.");
+				throw new VectoException("ShiftPolygon Data File must contain exactly 3 columns.");
 			}
 
 			if (data.Rows.Count < 2) {
-				throw new VectoException("ShiftPolygon must consist of at least tow lines with numeric values (below file header)");
+				throw new VectoException("ShiftPolygon must have at least two entries");
 			}
 
 			List<ShiftPolygonEntry> entriesDown, entriesUp;
@@ -49,12 +49,12 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Data.Gearbox
 
 		public ReadOnlyCollection<ShiftPolygonEntry> Upshift
 		{
-			get { return _upshiftPolygon.AsReadOnly(); }
+			get { return _upShiftPolygon.AsReadOnly(); }
 		}
 
 		public ReadOnlyCollection<ShiftPolygonEntry> Downshift
 		{
-			get { return _downshifPolygon.AsReadOnly(); }
+			get { return _downShiftPolygon.AsReadOnly(); }
 		}
 
 		private static bool HeaderIsValid(DataColumnCollection columns)
diff --git a/VectoCore/Models/SimulationComponent/Impl/Driver.cs b/VectoCore/Models/SimulationComponent/Impl/Driver.cs
index ad178ed4335ccbf42ee631bc09fe519bb7a4ee7f..65aba780b3c1ad824811836ce6a50777e0a3ff22 100644
--- a/VectoCore/Models/SimulationComponent/Impl/Driver.cs
+++ b/VectoCore/Models/SimulationComponent/Impl/Driver.cs
@@ -159,12 +159,7 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 			}
 
 			var newDs = ds;
-			var success = SearchBreakingPower(absTime, ref newDs, gradient, dryRun, true);
-
-			if (!success) {
-				Log.ErrorFormat("Failed to find operating point for breaking!");
-				throw new VectoSimulationException("Failed to find operating point for breaking!");
-			}
+			SearchBreakingPower(absTime, ref newDs, gradient, dryRun, true);
 
 			if (!ds.IsEqual(newDs)) {
 				Log.DebugFormat(
@@ -185,14 +180,14 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 			return retVal; //new ResponseDrivingCycleDistanceExceeded() { SimulationInterval = CurrentState.dt };
 		}
 
-		private bool SearchBreakingPower(Second absTime, ref Meter ds, Radian gradient, ResponseDryRun response, bool coasting)
+		private void SearchBreakingPower(Second absTime, ref Meter ds, Radian gradient, ResponseDryRun response, bool coasting)
 		{
 			var exceeded = new List<Watt>(); // only used while testing
-			var breakingPower = response.DeltaDragLoad.Abs();
-			if (DataBus.ClutchState() != ClutchState.ClutchClosed) {
-				breakingPower = response.AxlegearPowerRequest.Abs();
-			}
-			var searchInterval = breakingPower;
+			var breakingPower = (DataBus.ClutchState() != ClutchState.ClutchClosed)
+				? response.AxlegearPowerRequest.Abs()
+				: response.DeltaDragLoad.Abs();
+
+			var searchInterval = Constants.SimulationSettings.BreakingPowerInitialSearchInterval;
 			var originalDs = ds;
 
 			do {
@@ -204,16 +199,13 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 				exceeded.Add(delta);
 				if (delta.IsEqual(0, Constants.SimulationSettings.EngineFLDPowerTolerance)) {
 					Log.DebugFormat("found operating point in {0} iterations, delta: {1}", exceeded.Count, delta);
-					return true;
-				}
-				if (delta > 0) {
-					breakingPower -= searchInterval;
-				} else {
-					breakingPower += searchInterval;
+					return;
 				}
 
+				breakingPower += searchInterval * (delta > 0 ? -1 : 1);
 				searchInterval /= 2.0;
-				ComputeTimeInterval(CurrentState.Acceleration, ref ds, out CurrentState.dt);
+
+				CurrentState.dt = ComputeTimeInterval(CurrentState.Acceleration, ref ds);
 				DataBus.BreakPower = breakingPower;
 				response = (ResponseDryRun)Next.Request(absTime, CurrentState.dt, CurrentState.Acceleration, gradient, true);
 			} while (CurrentState.RetryCount++ < Constants.SimulationSettings.DriverSearchLoopThreshold);
@@ -224,7 +216,8 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 			Log.DebugFormat("exceeded: {0} ... {1}", string.Join(", ", exceeded.Take(5)),
 				string.Join(", ", exceeded.GetRange(exceeded.Count - 6, 5)));
 
-			return false;
+			Log.ErrorFormat("Failed to find operating point for breaking!");
+			throw new VectoSimulationException("Failed to find operating point for breaking!");
 		}
 
 		private IResponse DriveOrAccelerate(Second absTime, Meter ds, MeterPerSecond targetVelocity, Radian gradient)
@@ -249,9 +242,7 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 						} else {
 							var doAccelerate = (DataBus.VehicleSpeed() - targetVelocity).Abs() > 0.1 * targetVelocity;
 
-							if (!SearchOperatingPoint(absTime, ref ds, gradient, r, accelerating: doAccelerate)) {
-								throw new VectoSimulationException("could not find operating point");
-							}
+							SearchOperatingPoint(absTime, ref ds, gradient, r, accelerating: doAccelerate);
 							Log.DebugFormat("Found operating point for Drive/Accelerate. dt: {0}, acceleration: {1}, doAccelerate: {2}",
 								CurrentState.dt, CurrentState.Acceleration, doAccelerate);
 						}
@@ -264,9 +255,7 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 						} else {
 							var doAccelerate = (DataBus.VehicleSpeed() - targetVelocity).Abs() > 0.1 * targetVelocity;
 
-							if (!SearchOperatingPoint(absTime, ref ds, gradient, r, accelerating: doAccelerate)) {
-								throw new VectoSimulationException("could not find operating point");
-							}
+							SearchOperatingPoint(absTime, ref ds, gradient, r, accelerating: doAccelerate);
 							Log.DebugFormat("Found operating point for Drive/Accelerate. dt: {0}, acceleration: {1}, doAccelerate: {2}",
 								CurrentState.dt, CurrentState.Acceleration, doAccelerate);
 						}
@@ -346,15 +335,10 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 				return new ResponseFailTimeInterval();
 			}
 
-			var response = Next.Request(absTime, CurrentState.dt, CurrentState.Acceleration, gradient, true);
+			var response = Next.Request(absTime, CurrentState.dt, CurrentState.Acceleration, gradient, dryRun: true);
 
 			var newDs = ds;
-			var success = SearchOperatingPoint(absTime, ref newDs, gradient, response, coasting: true);
-
-			if (!success) {
-				Log.ErrorFormat("Failed to find operating point for coasting!");
-				throw new VectoSimulationException("Failed to find operating point for coasting!");
-			}
+			SearchOperatingPoint(absTime, ref newDs, gradient, response, coasting: true);
 
 			if (!ds.IsEqual(newDs)) {
 				Log.DebugFormat(
@@ -389,26 +373,27 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 		/// <param name="coasting">if true approach the drag-load curve, otherwise full-load curve</param>
 		/// <param name="accelerating"></param>
 		/// <returns></returns>
-		private bool SearchOperatingPoint(Second absTime, ref Meter ds, Radian gradient,
+		private void SearchOperatingPoint(Second absTime, ref Meter ds, Radian gradient,
 			IResponse response, bool coasting = false, bool accelerating = true)
 		{
-			var origResponse = response;
 			var exceeded = new List<Watt>(); // only used while testing
 			var acceleration = new List<double>(); // only used while testing
-			var searchInterval = CurrentState.Acceleration / 2.0;
+
+			var searchInterval = Constants.SimulationSettings.OperatingPointInitialSearchInterval;
 			var originalDs = ds;
 
 			if (coasting) {
 				accelerating = false;
 			}
 
+			var delta = 0.SI<Watt>();
+
 			do {
-				var delta = 0.SI<Watt>();
 				ds = originalDs;
 				response.Switch().
 					Case<ResponseEngineOverload>(r => delta = r.Delta).
 					Case<ResponseGearboxOverload>(r => delta = r.Delta).
-					Case<ResponseDryRun>(r => delta = coasting ? -r.DeltaDragLoad : r.DeltaFullLoad).
+					Case<ResponseDryRun>(r => delta = coasting ? r.DeltaDragLoad : r.DeltaFullLoad).
 					Default(r => { throw new VectoSimulationException(string.Format("Unknown response type. {0}", r)); });
 
 				exceeded.Add(delta);
@@ -417,13 +402,11 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 					Log.DebugFormat(
 						"found operating point in {0} iterations. Engine Power req: {2}, Gearbox Power req: {3} delta: {1}",
 						exceeded.Count, delta, response.EnginePowerRequest, response.GearboxPowerRequest);
-					return true;
-				}
-				if (delta > 0) {
-					CurrentState.Acceleration -= searchInterval;
-				} else {
-					CurrentState.Acceleration += searchInterval;
+					return;
 				}
+
+				CurrentState.Acceleration += searchInterval * (delta > 0 ? -1 : 1);
+
 				// check for minimum acceleration, add some safety margin due to search
 				if (!coasting && accelerating &&
 					CurrentState.Acceleration.Abs() < Constants.SimulationSettings.MinimumAcceleration.Value() / 5.0 &&
@@ -431,7 +414,7 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 					throw new VectoSimulationException("Could not achieve minimum acceleration");
 				}
 				searchInterval /= 2.0;
-				ComputeTimeInterval(CurrentState.Acceleration, ref ds, out CurrentState.dt);
+				CurrentState.dt = ComputeTimeInterval(CurrentState.Acceleration, ref ds);
 				response = Next.Request(absTime, CurrentState.dt, CurrentState.Acceleration, gradient, true);
 			} while (CurrentState.RetryCount++ < Constants.SimulationSettings.DriverSearchLoopThreshold);
 
@@ -441,7 +424,8 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 			Log.DebugFormat("exceeded: {0} ... {1}", string.Join(", ", exceeded.Take(5)),
 				string.Join(", ", exceeded.GetRange(exceeded.Count - 6, 5)));
 
-			return false;
+			Log.ErrorFormat("Failed to find operating point! absTime: {0}", absTime);
+			throw new VectoSimulationException(string.Format("Failed to find operating point! absTime: {0}", absTime));
 		}
 
 		/// <summary>
@@ -471,7 +455,7 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 
 			CurrentState.Acceleration = requiredAcceleration;
 			var tmpDs = ds;
-			ComputeTimeInterval(CurrentState.Acceleration, ref ds, out CurrentState.dt);
+			CurrentState.dt = ComputeTimeInterval(CurrentState.Acceleration, ref ds);
 			if (!ds.IsEqual(tmpDs)) {
 				Log.ErrorFormat(
 					"Unexpected Condition: Distance has been adjusted from {0} to {1}, currentVelocity: {2} acceleration: {3}, targetVelocity: {4}",
@@ -481,14 +465,13 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 		}
 
 		/// <summary>
-		/// compute the time interval for driving the given distance ds with the vehicle's current speed and the given acceleration
-		/// if the given distance ds can not be reached (i.e., the vehicle would halt before ds is reached) then the distance parameter is adjusted
-		/// the computed time interval is returned via the out parameter dt
+		/// Computes the time interval for driving the given distance ds with the vehicle's current speed and the given acceleration.
+		/// If the distance ds can not be reached (i.e., the vehicle would halt before ds is reached) then the distance parameter is adjusted.
+		/// The computed time interval is returned via the out parameter dt
 		/// </summary>
 		/// <param name="acceleration"></param>
 		/// <param name="ds"></param>
-		/// <param name="dt"></param>
-		private void ComputeTimeInterval(MeterPerSquareSecond acceleration, ref Meter ds, out Second dt)
+		private Second ComputeTimeInterval(MeterPerSquareSecond acceleration, ref Meter ds)
 		{
 			if (!(ds > 0)) {
 				throw new VectoSimulationException("distance has to be greater than 0!");
@@ -500,8 +483,7 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 					Log.ErrorFormat("vehicle speed is {0}, acceleration is {1}", currentSpeed, acceleration);
 					throw new VectoSimulationException("vehicle speed has to be > 0 if acceleration = 0");
 				}
-				dt = (ds / currentSpeed).Cast<Second>();
-				return;
+				return ds / currentSpeed;
 			}
 
 			// we need to accelerate / decelerate. solve quadratic equation...
@@ -511,8 +493,8 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 
 			if (solutions.Count == 0) {
 				// no real-valued solutions, required distance can not be reached (vehicle stopped), adapt ds...
-				dt = -(currentSpeed / acceleration).Cast<Second>();
-				var stopDistance = (currentSpeed * dt + acceleration / 2 * dt * dt).Cast<Meter>();
+				var dt = -currentSpeed / acceleration;
+				var stopDistance = currentSpeed * dt + acceleration / 2 * dt * dt;
 				if (stopDistance > ds) {
 					Log.WarnFormat(
 						"Could not find solution for computing required time interval to drive distance {0}. currentSpeed: {1}, acceleration: {2}",
@@ -523,13 +505,12 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 					"Adjusted distance when computing time interval: currentSpeed: {0}, acceleration: {1}, distance: {2} -> {3}, timeInterval: {4}",
 					currentSpeed, acceleration, ds, stopDistance, dt);
 				ds = stopDistance;
-				return;
+				return dt;
 			}
 			solutions = solutions.Where(x => x >= 0).ToList();
 			// if there are 2 positive solutions (i.e. when decelerating), take the smaller time interval
 			// (the second solution means that you reach negative speed 
-			solutions.Sort();
-			dt = solutions.First().SI<Second>();
+			return solutions.Min().SI<Second>();
 		}
 
 
diff --git a/VectoCore/Models/SimulationComponent/Impl/Gearbox.cs b/VectoCore/Models/SimulationComponent/Impl/Gearbox.cs
index cd17a8b9b906ce40a57d91831572c107b3c5a190..c3c1a4d3dff31403c6b738b889f7db0f83aea8f3 100644
--- a/VectoCore/Models/SimulationComponent/Impl/Gearbox.cs
+++ b/VectoCore/Models/SimulationComponent/Impl/Gearbox.cs
@@ -1,6 +1,5 @@
 using System;
 using System.Diagnostics;
-using TUGraz.VectoCore.Exceptions;
 using TUGraz.VectoCore.Models.Connector.Ports;
 using TUGraz.VectoCore.Models.Connector.Ports.Impl;
 using TUGraz.VectoCore.Models.Simulation;
@@ -70,55 +69,66 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 
 		#region ITnOutPort
 
-		IResponse ITnOutPort.Request(Second absTime, Second dt, NewtonMeter outTorque, PerSecond outEngineSpeed, bool dryRun)
+		public IResponse Request(Second absTime, Second dt, NewtonMeter outTorque, PerSecond outEngineSpeed, bool dryRun)
 		{
 			// TODO:
 			// * EarlyUpshift (shift before outside of up-shift curve if torque reserve for the next higher gear is fullfilled)
 			// * SkipGears (when already shifting to next gear, check if torque reserve is fullfilled for the overnext gear and eventually shift to it)
 			// * MT, AMT and AT .... different behaviour!
 
-			//Special Behaviour: When Gear is 0 (no gear set) or the speed is 0 (not rotating) a zero-request is applied.
+			//Special Behaviour: When Gear is 0 (no gear set) OR the speed is 0 (not rotating) a zero-request is applied.
 			if (Gear == 0 || outEngineSpeed.IsEqual(0)) {
-				return Next.Request(absTime, dt, 0.SI<NewtonMeter>(), 0.SI<PerSecond>(), dryRun);
+				var resp = Next.Request(absTime, dt, 0.SI<NewtonMeter>(), 0.SI<PerSecond>(), dryRun);
+				resp.GearboxPowerRequest = outTorque * outEngineSpeed;
+				return resp;
 			}
 
-			bool gearChanged;
-			PerSecond inEngineSpeed;
-			NewtonMeter inTorque;
-
 			_previousGear = _gear;
 
-			do {
-				gearChanged = false;
-
-				inEngineSpeed = outEngineSpeed * CurrentGear.Ratio;
-				inTorque = CurrentGear.LossMap.GearboxInTorque(inEngineSpeed, outTorque);
-				_loss = inTorque * inEngineSpeed - outTorque * outEngineSpeed;
-
-				if (!ShiftAllowed(absTime)) {
-					continue;
-				}
+			var inEngineSpeed = outEngineSpeed * CurrentGear.Ratio;
+			var inTorque = CurrentGear.LossMap.GearboxInTorque(inEngineSpeed, outTorque);
 
+			var gearChanged = true;
+			while (IsShiftAllowed(absTime, dryRun) && gearChanged) {
+				gearChanged = false;
 				if (ShouldShiftUp(inEngineSpeed, inTorque)) {
 					_gear++;
 					gearChanged = true;
-					continue;
-				}
-
-				if (ShouldShiftDown(inEngineSpeed, inTorque)) {
+				} else if (ShouldShiftDown(inEngineSpeed, inTorque)) {
 					_gear--;
 					gearChanged = true;
 				}
-			} while (Data.SkipGears && gearChanged);
+
+				if (gearChanged) {
+					inEngineSpeed = outEngineSpeed * CurrentGear.Ratio;
+					inTorque = CurrentGear.LossMap.GearboxInTorque(inEngineSpeed, outTorque);
+					if (!Data.SkipGears) {
+						break;
+					}
+				}
+			}
+
+			_loss = inTorque * inEngineSpeed - outTorque * outEngineSpeed;
+
+			// DryRun Response
+			if (dryRun) {
+				//todo: Gearbox DryRun Request: Add the DeltaFull, DeltaDrag for Gearbox FullLoadCurve
+				var r = Next.Request(absTime, dt, inTorque, inEngineSpeed, true);
+				r.GearboxPowerRequest = outTorque * outEngineSpeed;
+				return r;
+			}
 
 			// Overload Response
-			var maxTorque = CurrentGear.FullLoadCurve.FullLoadStationaryTorque(inEngineSpeed);
-			if (inTorque.Abs() > maxTorque) {
-				_gear = _previousGear;
-				return new ResponseGearboxOverload {
-					Delta = (inTorque.Abs() - maxTorque) * inEngineSpeed,
-					GearboxPowerRequest = inTorque * inEngineSpeed,
-				};
+			if (CurrentGear.FullLoadCurve != null) {
+				var maxTorque = CurrentGear.FullLoadCurve.FullLoadStationaryTorque(inEngineSpeed);
+
+				if (inTorque.Abs() > maxTorque) {
+					_gear = _previousGear;
+					return new ResponseGearboxOverload {
+						Delta = Math.Sign(inTorque.Value()) * (inTorque.Abs() - maxTorque) * inEngineSpeed,
+						GearboxPowerRequest = inTorque * inEngineSpeed,
+					};
+				}
 			}
 
 			// GearShift Response
@@ -128,12 +138,9 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 				return new ResponseGearShift { SimulationInterval = Data.TractionInterruption };
 			}
 
-			var response = Next.Request(absTime, dt, inTorque, inEngineSpeed, dryRun);
-			response.GearboxPowerRequest = inTorque * inEngineSpeed;
-
-			response.Switch().
-				Case<ResponseDryRun>(r => r.DeltaFullLoad = VectoMath.Max(r.DeltaFullLoad, (inTorque - maxTorque) * inEngineSpeed));
-
+			// Normal Response
+			var response = Next.Request(absTime, dt, inTorque, inEngineSpeed);
+			response.GearboxPowerRequest = outTorque * outEngineSpeed;
 			return response;
 		}
 
@@ -141,9 +148,9 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 		/// <summary>
 		/// Tests if a shift is allowed.
 		/// </summary>
-		private bool ShiftAllowed(Second absTime)
+		private bool IsShiftAllowed(Second absTime, bool dryRun)
 		{
-			return absTime - _lastShiftTime >= Data.ShiftTime;
+			return !dryRun && absTime - _lastShiftTime >= Data.ShiftTime;
 		}
 
 		/// <summary>
diff --git a/VectoCore/Models/SimulationComponent/Impl/Vehicle.cs b/VectoCore/Models/SimulationComponent/Impl/Vehicle.cs
index d69ab8111971197f220ac8552720714a22627cab..5ee74e85a0b1a9dfe760193309a8becda211f6a1 100644
--- a/VectoCore/Models/SimulationComponent/Impl/Vehicle.cs
+++ b/VectoCore/Models/SimulationComponent/Impl/Vehicle.cs
@@ -64,15 +64,15 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 			bool dryRun = false)
 		{
 			Log.DebugFormat("from Wheels: acceleration: {0}", accelleration);
-			_currentState.Velocity = (_previousState.Velocity + (accelleration * dt)).Cast<MeterPerSecond>();
 			_currentState.dt = dt;
-			_currentState.Distance = _previousState.Distance +
-									((_previousState.Velocity + _currentState.Velocity) / 2 * _currentState.dt).Cast<Meter>();
+			_currentState.Velocity = _previousState.Velocity + accelleration * dt;
+			_currentState.Distance = _previousState.Distance + dt * (_previousState.Velocity + _currentState.Velocity) / 2;
 
 			// DriverAcceleration = vehicleAccelerationForce - RollingResistance - AirDragResistance - SlopeResistance
-			var vehicleAccelerationForce = DriverAcceleration(accelleration) + RollingResistance(gradient) +
-											AirDragResistance() +
-											SlopeResistance(gradient);
+			var vehicleAccelerationForce = DriverAcceleration(accelleration)
+											+ RollingResistance(gradient)
+											+ AirDragResistance()
+											+ SlopeResistance(gradient);
 
 			var retval = _nextInstance.Request(absTime, dt, vehicleAccelerationForce, _currentState.Velocity, dryRun);
 			//retval.VehiclePowerRequest = 
diff --git a/VectoCore/Models/SimulationComponent/Impl/Wheels.cs b/VectoCore/Models/SimulationComponent/Impl/Wheels.cs
index e461bb1894da0781f54754f1b6fa271b825e71f5..13d130b3b650a80658091afe4e1722ffefba8d00 100644
--- a/VectoCore/Models/SimulationComponent/Impl/Wheels.cs
+++ b/VectoCore/Models/SimulationComponent/Impl/Wheels.cs
@@ -37,7 +37,7 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 
 		#region IFvOutPort
 
-		IResponse IFvOutPort.Request(Second absTime, Second dt, Newton force, MeterPerSecond velocity, bool dryRun)
+		public IResponse Request(Second absTime, Second dt, Newton force, MeterPerSecond velocity, bool dryRun)
 		{
 			Log.DebugFormat("request: force: {0}, velocity: {1}", force, velocity);
 			var torque = force * _dynamicWheelRadius;
diff --git a/VectoCore/Utils/IEnumberableExtensionMethods.cs b/VectoCore/Utils/IEnumberableExtensionMethods.cs
index 2289614d5bfb45f93d28be7bd6f4bed162a7783e..9a48e5c94b8603fad3a2f49eabe24c478bae29e6 100644
--- a/VectoCore/Utils/IEnumberableExtensionMethods.cs
+++ b/VectoCore/Utils/IEnumberableExtensionMethods.cs
@@ -87,5 +87,15 @@ namespace TUGraz.VectoCore.Utils
 			int unused;
 			return self.GetSection(predicate, out unused, message);
 		}
+
+		public static IEnumerable<T> Slice<T>(this IEnumerable<T> numerable, int from = 0, int to = int.MaxValue)
+		{
+			var s = numerable.ToList();
+			from = Math.Min(Math.Max(from, -s.Count), s.Count);
+			from = from < 0 ? from + s.Count : from;
+			to = Math.Min(Math.Max(to, -s.Count), s.Count);
+			to = to < 0 ? to + s.Count : to;
+			return s.Skip(from).Take(Math.Max(to - from, 0));
+		}
 	}
 }
\ No newline at end of file
diff --git a/VectoCore/Utils/SI.cs b/VectoCore/Utils/SI.cs
index ec1c2254af1c8003c38a139d4e1e38ce9a65f2f8..51c73788f8b9d31a35c2bc416a84c55b24120b94 100644
--- a/VectoCore/Utils/SI.cs
+++ b/VectoCore/Utils/SI.cs
@@ -1,4 +1,5 @@
 using System;
+using System.CodeDom;
 using System.Collections.Generic;
 using System.Diagnostics;
 using System.Diagnostics.CodeAnalysis;
@@ -43,6 +44,14 @@ namespace TUGraz.VectoCore.Utils
 			return new Scalar(si1.Val + si2.Val);
 		}
 
+		/// <summary>
+		/// Implements the operator +.
+		/// </summary>
+		/// <param name="si1">The si1.</param>
+		/// <param name="si2">The si2.</param>
+		/// <returns>
+		/// The result of the operator.
+		/// </returns>
 		[DebuggerHidden]
 		public static Scalar operator +(Scalar si1, double si2)
 		{
@@ -159,6 +168,20 @@ namespace TUGraz.VectoCore.Utils
 		}
 
 		protected MeterPerSquareSecond(double val) : base(new SI(val).Meter.Per.Square.Second) {}
+
+		/// <summary>
+		/// Implements the operator /.
+		/// </summary>
+		/// <param name="meterPerSecond">The meter per second.</param>
+		/// <param name="meterPerSquareSecond">The meter per square second.</param>
+		/// <returns>
+		/// The result of the operator.
+		/// </returns>
+		[DebuggerHidden]
+		public static Second operator /(MeterPerSecond meterPerSecond, MeterPerSquareSecond meterPerSquareSecond)
+		{
+			return ((meterPerSecond as SI) / meterPerSquareSecond).Cast<Second>();
+		}
 	}
 
 	/// <summary>
@@ -327,6 +350,12 @@ namespace TUGraz.VectoCore.Utils
 		[JsonConstructor]
 		private PerSecond(double val) : base(new SI(val).Per.Second) {}
 
+		/// <summary>
+		/// Gets the rounds per minute.
+		/// </summary>
+		/// <value>
+		/// The rounds per minute.
+		/// </value>
 		public SI RoundsPerMinute
 		{
 			get { return ConvertTo().Rounds.Per.Minute; }
@@ -359,6 +388,34 @@ namespace TUGraz.VectoCore.Utils
 		{
 			return ((meterPerSecond as SI) / meter).Cast<PerSecond>();
 		}
+
+		/// <summary>
+		/// Implements the operator /.
+		/// </summary>
+		/// <param name="second">The second.</param>
+		/// <param name="meterPerSecond">The meter per second.</param>
+		/// <returns>
+		/// The result of the operator.
+		/// </returns>
+		[DebuggerHidden]
+		public static Second operator /(Meter second, MeterPerSecond meterPerSecond)
+		{
+			return (second / (meterPerSecond as SI)).Cast<Second>();
+		}
+
+		/// <summary>
+		/// Implements the operator *.
+		/// </summary>
+		/// <param name="meterPerSecond">The meter per second.</param>
+		/// <param name="second">The second.</param>
+		/// <returns>
+		/// The result of the operator.
+		/// </returns>
+		[DebuggerHidden]
+		public static Meter operator *(MeterPerSecond meterPerSecond, Second second)
+		{
+			return ((meterPerSecond as SI) * second).Cast<Meter>();
+		}
 	}
 
 	/// <summary>
@@ -888,6 +945,15 @@ namespace TUGraz.VectoCore.Utils
 			return new SI(Math.Abs(Val), this);
 		}
 
+		/// <summary>
+		/// Returns the numerical sign of the SI.
+		/// </summary>
+		/// <returns>-1 if si &lt; 0. 0 if si==0, 1 if si &gt; 0.</returns>
+		public int Sign()
+		{
+			return Math.Sign(Val);
+		}
+
 		/// <summary>
 		/// Returns the Square root of value and units of the SI.
 		/// </summary>
diff --git a/VectoCore/Utils/StringExtensionMethods.cs b/VectoCore/Utils/StringExtensionMethods.cs
index f120770506f54fc6e4c54b166bc85a4f35e9aa5c..1ef1bcf3945c3a2be2b7a2cb7f716881a30888c1 100644
--- a/VectoCore/Utils/StringExtensionMethods.cs
+++ b/VectoCore/Utils/StringExtensionMethods.cs
@@ -1,22 +1,20 @@
 using System;
+using System.Collections.Generic;
 using System.Globalization;
+using System.Linq;
 
 namespace TUGraz.VectoCore.Utils
 {
 	public static class StringExtensionMethods
 	{
-		public static double ToDouble(this string self)
+		public static string Join<T>(this string s, IEnumerable<T> values)
 		{
-			return double.Parse(self, CultureInfo.InvariantCulture);
+			return string.Join(s, values);
 		}
 
-		public static string Slice(this string s, int from = 0, int to = int.MaxValue)
+		public static double ToDouble(this string self)
 		{
-			from = Math.Min(Math.Max(from, -s.Length), s.Length);
-			from = from < 0 ? from + s.Length : from;
-			to = Math.Min(Math.Max(to, -s.Length), s.Length);
-			to = to < 0 ? to + s.Length : to;
-			return s.Substring(from, Math.Max(to - from, 0));
+			return double.Parse(self, CultureInfo.InvariantCulture);
 		}
 	}
 }
\ No newline at end of file
diff --git a/VectoCore/Utils/SwitchExtension.cs b/VectoCore/Utils/SwitchExtension.cs
index 1912bc155501dd1c7fce0e77b2d789f09f5affd3..c607083281902faa52afa6241cd2d4758f5edce8 100644
--- a/VectoCore/Utils/SwitchExtension.cs
+++ b/VectoCore/Utils/SwitchExtension.cs
@@ -1,4 +1,5 @@
 using System;
+using System.Diagnostics;
 
 namespace TUGraz.VectoCore.Utils
 {
@@ -10,6 +11,7 @@ namespace TUGraz.VectoCore.Utils
 	/// </remarks>
 	public static class SwitchExtension
 	{
+		[DebuggerHidden]
 		public static Switch<T> Switch<T>(this T self)
 		{
 			return new Switch<T>(self);
@@ -21,17 +23,20 @@ namespace TUGraz.VectoCore.Utils
 		private readonly T _value;
 		private bool _handled;
 
+		[DebuggerHidden]
 		internal Switch(T value)
 		{
 			_value = value;
 			_handled = false;
 		}
 
+		[DebuggerHidden]
 		public Switch<T> Case<TFilter>(Action action) where TFilter : T
 		{
 			return Case<TFilter>(_ => action());
 		}
 
+		[DebuggerHidden]
 		public Switch<T> Case<TFilter>(Action<TFilter> action) where TFilter : T
 		{
 			if (!_handled && _value is TFilter) {
@@ -41,11 +46,13 @@ namespace TUGraz.VectoCore.Utils
 			return this;
 		}
 
+		[DebuggerHidden]
 		public void Default(Action action)
 		{
 			Default(_ => action());
 		}
 
+		[DebuggerHidden]
 		public void Default(Action<T> action)
 		{
 			if (!_handled) {
diff --git a/VectoCoreTest/Integration/SimulationRuns/FullPowertrain.cs b/VectoCoreTest/Integration/SimulationRuns/FullPowertrain.cs
index d2ade7b1c553ebd6e688f873f8dcc67118c36bef..599b754b7ab806e48d6a0b6e90b02f5737b2e901 100644
--- a/VectoCoreTest/Integration/SimulationRuns/FullPowertrain.cs
+++ b/VectoCoreTest/Integration/SimulationRuns/FullPowertrain.cs
@@ -1,6 +1,7 @@
 using System;
 using System.Collections.Generic;
 using System.Linq;
+using System.Runtime.Remoting.Messaging;
 using Microsoft.VisualStudio.TestTools.UnitTesting;
 using TUGraz.VectoCore.Configuration;
 using TUGraz.VectoCore.FileIO.Reader;
@@ -22,19 +23,76 @@ namespace TUGraz.VectoCore.Tests.Integration.SimulationRuns
 	public class FullPowerTrain
 	{
 		public const string CycleFile = @"TestData\Integration\FullPowerTrain\1-Gear-Test-dist.vdri";
-		public const string CycleFileStop = @"TestData\Integration\FullPowerTrain\1-Gear-StopTest-dist.vdri";
-		public const string EngineFile = @"TestData\Integration\FullPowerTrain\24t Coach.veng";
-		public const string GearboxFile = @"TestData\Integration\FullPowerTrain\24t Coach-1Gear.vgbx";
-		public const string GbxLossMap = @"TestData\Integration\FullPowerTrain\NoLossGbxMap.vtlm";
+		public const string EngineFile = @"TestData\Components\24t Coach.veng";
 
 		public const string AccelerationFile = @"TestData\Components\Coach.vacc";
-		public const string AccelerationFile2 = @"TestData\Components\Truck.vacc";
 
+		public const string GearboxLossMap = @"TestData\Components\Indirect Gear.vtlm";
 		public const string GearboxShiftPolygonFile = @"TestData\Components\ShiftPolygons.vgbs";
 		public const string GearboxFullLoadCurveFile = @"TestData\Components\Gearbox.vfld";
 
+		[TestMethod]
+		public void Test_FullPowertrain_SimpleGearbox()
+		{
+			var modalWriter = new ModalDataWriter("Coach_FullPowertrain.vmod");
+			var sumWriter = new TestSumWriter();
+			var container = new VehicleContainer(modalWriter, sumWriter);
+
+			var engineData = EngineeringModeSimulationDataReader.CreateEngineDataFromFile(EngineFile);
+			var cycleData = DrivingCycleDataReader.ReadFromFileDistanceBased(CycleFile);
+			var axleGearData = CreateAxleGearData();
+			var gearboxData = CreateSimpleGearboxData();
+			var vehicleData = CreateVehicleData(3300.SI<Kilogram>());
+			var driverData = CreateDriverData(AccelerationFile);
+
+			var cycle = new DistanceBasedDrivingCycle(container, cycleData);
+			var cyclePort = cycle.OutPort();
+			dynamic tmp = Port.AddComponent(cycle, new Driver(container, driverData));
+			tmp = Port.AddComponent(tmp, new Vehicle(container, vehicleData));
+			tmp = Port.AddComponent(tmp, new Wheels(container, vehicleData.DynamicTyreRadius));
+			tmp = Port.AddComponent(tmp, new Breaks(container));
+			tmp = Port.AddComponent(tmp, new AxleGear(container, axleGearData));
+			tmp = Port.AddComponent(tmp, new Gearbox(container, gearboxData));
+			tmp = Port.AddComponent(tmp, new Clutch(container, engineData));
+			Port.AddComponent(tmp, new CombustionEngine(container, engineData));
+
+			cyclePort.Initialize();
 
-		public const double Tolerance = 0.001;
+			container.Gear = 0;
+
+			var absTime = 0.SI<Second>();
+			var ds = Constants.SimulationSettings.DriveOffDistance;
+			var response = cyclePort.Request(absTime, ds);
+			Assert.IsInstanceOfType(response, typeof(ResponseSuccess));
+			container.CommitSimulationStep(absTime, response.SimulationInterval);
+			absTime += response.SimulationInterval;
+
+			container.Gear = 1;
+			var cnt = 0;
+			while (!(response is ResponseCycleFinished) && container.Distance().Value() < 17000) {
+				response = cyclePort.Request(absTime, ds);
+				response.Switch().
+					Case<ResponseDrivingCycleDistanceExceeded>(r => ds = r.MaxDistance).
+					Case<ResponseCycleFinished>(r => { }).
+					Case<ResponseSuccess>(r => {
+						container.CommitSimulationStep(absTime, r.SimulationInterval);
+						absTime += r.SimulationInterval;
+
+						ds = container.VehicleSpeed().IsEqual(0)
+							? Constants.SimulationSettings.DriveOffDistance
+							: (Constants.SimulationSettings.TargetTimeInterval * container.VehicleSpeed()).Cast<Meter>();
+
+						if (cnt++ % 100 == 0) {
+							modalWriter.Finish();
+						}
+					}).
+					Default(r => Assert.Fail("Unexpected Response: {0}", r));
+			}
+
+			Assert.IsInstanceOfType(response, typeof(ResponseCycleFinished));
+
+			modalWriter.Finish();
+		}
 
 		[TestMethod]
 		public void Test_FullPowertrain()
@@ -99,33 +157,54 @@ namespace TUGraz.VectoCore.Tests.Integration.SimulationRuns
 			modalWriter.Finish();
 		}
 
+
+		// todo: add realistic FullLoadCurve
+		private static GearboxData CreateGearboxData()
+		{
+			var ratios = new[] { 6.38 }; //new[] { 6.38, 4.63, 3.44, 2.59, 1.86, 1.35, 1, 0.76 };
+
+			return new GearboxData {
+				Gears = ratios.Select((ratio, i) =>
+					Tuple.Create((uint)i,
+						new GearData {
+							FullLoadCurve = null, //FullLoadCurve.ReadFromFile(GearboxFullLoadCurveFile);
+							LossMap = TransmissionLossMap.ReadFromFile(GearboxLossMap, ratio),
+							Ratio = ratio,
+							ShiftPolygon = ShiftPolygon.ReadFromFile(GearboxShiftPolygonFile)
+						}))
+					.ToDictionary(k => k.Item1 + 1, v => v.Item2),
+				ShiftTime = 2.SI<Second>()
+			};
+		}
+
+
 		private static GearData CreateAxleGearData()
 		{
-			//todo change gear ratio!
+			var ratio = 3.240355;
 			return new GearData {
-				Ratio = 3.0 * 3.5,
-				LossMap = TransmissionLossMap.ReadFromFile(GbxLossMap, 3.0 * 3.5)
+				Ratio = ratio,
+				LossMap = TransmissionLossMap.ReadFromFile(GearboxLossMap, ratio)
 			};
 		}
 
-		private static GearboxData CreateGearboxData()
+		private static GearboxData CreateSimpleGearboxData()
 		{
-			var flc = FullLoadCurve.ReadFromFile(GearboxFullLoadCurveFile);
-			var lm = TransmissionLossMap.ReadFromFile(GbxLossMap, 1);
-			var sp = ShiftPolygon.ReadFromFile(GearboxShiftPolygonFile);
-
-			var ratios = new[] { 6.38, 4.63, 3.44, 2.59, 1.86, 1.35, 1, 0.76 };
-
+			var ratio = 3.44;
 			return new GearboxData {
-				Gears =
-					ratios.Select(
-						(g, i) => Tuple.Create((uint)i, new GearData { FullLoadCurve = flc, LossMap = lm, Ratio = g, ShiftPolygon = sp }))
-						.ToDictionary(k => k.Item1, v => v.Item2),
+				Gears = new Dictionary<uint, GearData> {
+					{
+						1, new GearData {
+							FullLoadCurve = null,
+							LossMap = TransmissionLossMap.ReadFromFile(GearboxLossMap, ratio),
+							Ratio = ratio,
+							ShiftPolygon = ShiftPolygon.ReadFromFile(GearboxShiftPolygonFile)
+						}
+					}
+				},
 				ShiftTime = 2.SI<Second>()
 			};
 		}
 
-
 		private static VehicleData CreateVehicleData(Kilogram loading)
 		{
 			var axles = new List<Axle> {
diff --git a/VectoCoreTest/Models/SimulationComponent/GearboxTest.cs b/VectoCoreTest/Models/SimulationComponent/GearboxTest.cs
index dcc17e92b6bfcf26bb76e6fbd5b188d1a13b83d9..ff0b9b352350bad45eef1d18745b7c91d6e362e4 100644
--- a/VectoCoreTest/Models/SimulationComponent/GearboxTest.cs
+++ b/VectoCoreTest/Models/SimulationComponent/GearboxTest.cs
@@ -76,11 +76,28 @@ namespace TUGraz.VectoCore.Tests.Models.SimulationComponent
 			var gearbox = new Gearbox(container, gearboxData);
 
 			container.Gear = 1;
+			var ratio = 6.38;
 
-			var response = gearbox.OutPort()
-				.Request(0.SI<Second>(), 1.SI<Second>(), 1500.SI<NewtonMeter>() / 6.38, 700.SI<PerSecond>() * 6.38);
+			var port = new MockTnOutPort();
+			gearbox.InPort().Connect(port);
 
+			var absTime = 0.SI<Second>();
+			var dt = 2.SI<Second>();
+			var t = 2600.SI<NewtonMeter>();
+			var n = 1600.RPMtoRad();
+			var response = gearbox.OutPort().Request(absTime, dt, t * ratio, n / ratio);
 			Assert.IsInstanceOfType(response, typeof(ResponseGearboxOverload));
+
+			absTime += dt;
+			t = -1300.SI<NewtonMeter>();
+			n = 1000.RPMtoRad();
+			response = gearbox.OutPort().Request(absTime, dt, t * ratio, n / ratio);
+
+			Assert.IsInstanceOfType(response, typeof(ResponseSuccess));
+			Assert.AreEqual(absTime, port.AbsTime);
+			Assert.AreEqual(dt, port.Dt);
+			Assert.AreEqual(n, port.AngularVelocity);
+			Assert.AreEqual(t, port.Torque);
 		}
 
 		[TestMethod]
diff --git a/VectoCoreTest/TestData/Components/24t Coach.vgbx b/VectoCoreTest/TestData/Components/24t Coach.vgbx
index 88dc64fa30a3e285fe6f52302b467ca37aa6e670..01ee221bd833ee56259664fd377d143b204244eb 100644
--- a/VectoCoreTest/TestData/Components/24t Coach.vgbx	
+++ b/VectoCoreTest/TestData/Components/24t Coach.vgbx	
@@ -1,8 +1,8 @@
 {
   "Header": {
-    "CreatedBy": "Raphael Luz IVT TU-Graz (14fea510-e457-4bf6-860f-a9514dc327f1)",
-    "Date": "25.06.2015 11:23:31",
-    "AppVersion": "2.2 beta",
+    "CreatedBy": " ()",
+    "Date": "8/21/2015 10:16:31 AM",
+    "AppVersion": "2.2 beta-2",
     "FileVersion": 5
   },
   "Body": {
diff --git a/VectoCoreTest/TestData/Integration/FullPowerTrain/24t Coach-1Gear.vecto b/VectoCoreTest/TestData/Integration/FullPowerTrain/24t Coach-1Gear.vecto
index 364b8e9a8a4021ed43c8065967b208de753cf866..930c4966ac7874da3bc0b2452511caecf3b77275 100644
--- a/VectoCoreTest/TestData/Integration/FullPowerTrain/24t Coach-1Gear.vecto	
+++ b/VectoCoreTest/TestData/Integration/FullPowerTrain/24t Coach-1Gear.vecto	
@@ -1,7 +1,7 @@
 {
   "Header": {
     "CreatedBy": " ()",
-    "Date": "8/10/2015 4:19:34 PM",
+    "Date": "8/21/2015 10:23:23 AM",
     "AppVersion": "2.2 beta-2",
     "FileVersion": 2
   },
@@ -9,7 +9,7 @@
     "SavedInDeclMode": false,
     "VehicleFile": "24t Coach.vveh",
     "EngineFile": "24t Coach.veng",
-    "GearboxFile": "24t Coach-1Gear.vgbx",
+    "GearboxFile": "24t Coach-8indirectGears.vgbx",
     "Cycles": [
       "Coach_24t_InitTest.vdri",
       "1-Gear-Test-dist.vdri"
diff --git a/VectoCoreTest/TestData/Integration/FullPowerTrain/24t Coach-1Gear.vgbx b/VectoCoreTest/TestData/Integration/FullPowerTrain/24t Coach-1Gear.vgbx
deleted file mode 100644
index 2ee28274a4edf83ef18849474625f2f68a04bcf5..0000000000000000000000000000000000000000
--- a/VectoCoreTest/TestData/Integration/FullPowerTrain/24t Coach-1Gear.vgbx	
+++ /dev/null
@@ -1,41 +0,0 @@
-{
-  "Header": {
-    "CreatedBy": " ()",
-    "Date": "7/31/2015 8:06:20 AM",
-    "AppVersion": "2.2 beta-2",
-    "FileVersion": 5
-  },
-  "Body": {
-    "SavedInDeclMode": false,
-    "ModelName": "Generic 24t Coach",
-    "Inertia": 0.0,
-    "TracInt": 1.0,
-    "Gears": [
-      {
-        "Ratio": 3.5,
-        "Efficiency": "1"
-      },
-      {
-        "Ratio": 3.0,
-        "Efficiency": "1",
-        "TCactive": false,
-        "ShiftPolygon": "ShiftPolygons.vgbs",
-        "FullLoadCurve": "<NOFILE>"
-      }
-    ],
-    "TqReserve": 20.0,
-    "SkipGears": true,
-    "ShiftTime": 2,
-    "EaryShiftUp": true,
-    "StartTqReserve": 20.0,
-    "StartSpeed": 2.0,
-    "StartAcc": 0.6,
-    "GearboxType": "AMT",
-    "TorqueConverter": {
-      "Enabled": false,
-      "File": "<NOFILE>",
-      "RefRPM": 0.0,
-      "Inertia": 0.0
-    }
-  }
-}
\ No newline at end of file
diff --git a/VectoCoreTest/TestData/Integration/FullPowerTrain/24t Coach-1Gear.vsum b/VectoCoreTest/TestData/Integration/FullPowerTrain/24t Coach-1Gear.vsum
index ba22a2527dd2d07419fd9412b37a1f239cd1174c..88d209ce09acc737bfaf1b1208b8e18b2bb797eb 100644
--- a/VectoCoreTest/TestData/Integration/FullPowerTrain/24t Coach-1Gear.vsum	
+++ b/VectoCoreTest/TestData/Integration/FullPowerTrain/24t Coach-1Gear.vsum	
@@ -1,3 +1,3 @@
 Job [-],Input File [-],Cycle [-],time [s],distance [km],speed [km/h],∆altitude [m],Ppos [kW],Pneg [kW],FC-Map [g/h],FC-Map [g/km],FC-AUXc [g/h],FC-AUXc [g/km],FC-WHTCc [g/h],FC-WHTCc [g/km],CO2 [g/km],CO2 [g/tkm],FC-Final [g/km],FC-Final [l/100tkm],FC-Final [l/100km],PwheelPos [kW],Pbrake [kW],EposICE [kWh],EnegICE [kWh],Eair [kWh],Eroll [kWh],Egrad [kWh],Eacc [kWh],Eaux [kWh],Ebrake [kWh],Etransm [kWh],Eretarder [kWh],Etorqueconv [kWh],Mass [kg],Loading [kg],a [m/s^2],a_pos [m/s^2],a_neg [m/s^2],Acc.Noise [m/s^2],pAcc [%],pDec [%],pCruise [%],pStop [%]
-1,24t Coach-1Gear.vecto,Coach_24t_InitTest.vdri,11,0.055,18,1.563477,32.6869277954102,0,7574.113,420.7841,-,-,-,-,1329.678,402.9326,420.7841,15.32576,50.575,32.6869277954102,0,0.0998767238193088,0,-0.000740383888284365,-0.0182289157973395,-0.0809074264102512,0,0,0,0,0,0,15700,3300,0,0,0,0,0,0,1,0
-1,24t Coach-1Gear.vecto,1-Gear-Test-dist.vdri,4115,16.80694,14.70352,-43.95499,9.04757401111783,-3.4994740731806,2978.614,202.5783,-,-,-,-,640.1475,193.9841,202.5783,7.378289,24.34835,9.04287736847508,-2.41107691791483,10.3418797377083,-4.00009328087171,-0.201264423503008,-5.57102524318629,2.27483006434981,-0.0883320028252072,0,-2.75599486589432,0,0,0,15700,3300,0.001350074,0.6603086,-0.2358637,0.0425384,0.00218712,0.0007290401,0.9965978,0.0004860267
+1,24t Coach-1Gear.vecto,Coach_24t_InitTest.vdri,11,0.055,18,1.563477,36.2728424072266,0,8311.801,461.7667,-,-,-,-,1459.183,442.1766,461.7667,16.81843,55.50081,32.6869277954102,0,0.110833685133192,0,-0.000740383888284365,-0.0182289157973395,-0.0809074264102512,0,0,0,-0.0109569642278883,0,0,15700,3300,0,0,0,0,0,0,1,0
+1,24t Coach-1Gear.vecto,1-Gear-Test-dist.vdri,4116,16.80844,14.70126,-43.95795,10.4722688512911,-1.93318024173422,2854.648,194.177,-,-,-,-,613.5995,185.9392,194.177,7.072299,23.33859,9.04114719805379,-3.35899400379802,11.9732940533095,-2.21026940971613,-0.201207232583507,-5.5715248703791,2.27501199701439,-0.0838811713001794,0,-3.84044981100907,-2.3409734544158,0,0,15700,3300,0.001349746,0.5755603,-0.2358637,0.04782489,0.002429543,0.000728863,0.9963557,0.0004859086
diff --git a/VectoCoreTest/TestData/Integration/FullPowerTrain/24t Coach-1Gear.vsum.json b/VectoCoreTest/TestData/Integration/FullPowerTrain/24t Coach-1Gear.vsum.json
index 0c03c2f0bc8e7a63b4200c6eed75ba17a8faf6c3..fd7dab36df6302492f2838dbc6d153573ab599d0 100644
--- a/VectoCoreTest/TestData/Integration/FullPowerTrain/24t Coach-1Gear.vsum.json	
+++ b/VectoCoreTest/TestData/Integration/FullPowerTrain/24t Coach-1Gear.vsum.json	
@@ -1,7 +1,7 @@
 {
   "Header": {
     "CreatedBy": " ()",
-    "Date": "8/10/2015 4:19:36 PM",
+    "Date": "8/21/2015 10:23:25 AM",
     "AppVersion": "2.2 beta-2",
     "FileVersion": 1
   },
@@ -36,7 +36,7 @@
             "Unit": "[m]"
           },
           "Ppos": {
-            "Value": 32.686927795410156,
+            "Value": 36.272842407226563,
             "Unit": "[kW]"
           },
           "Pneg": {
@@ -45,11 +45,11 @@
           },
           "FC-Map": [
             {
-              "Value": 7574.113,
+              "Value": 8311.801,
               "Unit": "[g/h]"
             },
             {
-              "Value": 420.784058,
+              "Value": 461.766724,
               "Unit": "[g/km]"
             }
           ],
@@ -75,25 +75,25 @@
           ],
           "CO2": [
             {
-              "Value": 1329.67761,
+              "Value": 1459.18286,
               "Unit": "[g/km]"
             },
             {
-              "Value": 402.932617,
+              "Value": 442.176636,
               "Unit": "[g/tkm]"
             }
           ],
           "FC-Final": [
             {
-              "Value": 420.784058,
+              "Value": 461.766724,
               "Unit": "[g/km]"
             },
             {
-              "Value": 15.3257589,
+              "Value": 16.818428,
               "Unit": "[l/100tkm]"
             },
             {
-              "Value": 50.5750046,
+              "Value": 55.50081,
               "Unit": "[l/100km]"
             }
           ],
@@ -106,7 +106,7 @@
             "Unit": "[kW]"
           },
           "EposICE": {
-            "Value": 0.099876723819308816,
+            "Value": 0.11083368513319228,
             "Unit": "[kWh]"
           },
           "EnegICE": {
@@ -138,7 +138,7 @@
             "Unit": "[kWh]"
           },
           "Etransm": {
-            "Value": 0.0,
+            "Value": -0.010956964227888319,
             "Unit": "[kWh]"
           },
           "Eretarder": {
@@ -198,36 +198,36 @@
         "AbortedByError": false,
         "Results": {
           "time": {
-            "Value": 4115,
+            "Value": 4116,
             "Unit": "[s]"
           },
           "distance": {
-            "Value": 16.8069382,
+            "Value": 16.808445,
             "Unit": "[km]"
           },
           "speed": {
-            "Value": 14.7035179,
+            "Value": 14.7012644,
             "Unit": "[km/h]"
           },
           "∆altitude": {
-            "Value": -43.9549942,
+            "Value": -43.9579468,
             "Unit": "[m]"
           },
           "Ppos": {
-            "Value": 9.0475740111178347,
+            "Value": 10.472268851291103,
             "Unit": "[kW]"
           },
           "Pneg": {
-            "Value": -3.499474073180596,
+            "Value": -1.9331802417342239,
             "Unit": "[kW]"
           },
           "FC-Map": [
             {
-              "Value": 2978.61377,
+              "Value": 2854.64819,
               "Unit": "[g/h]"
             },
             {
-              "Value": 202.578308,
+              "Value": 194.177048,
               "Unit": "[g/km]"
             }
           ],
@@ -253,58 +253,58 @@
           ],
           "CO2": [
             {
-              "Value": 640.147461,
+              "Value": 613.5995,
               "Unit": "[g/km]"
             },
             {
-              "Value": 193.984085,
+              "Value": 185.93924,
               "Unit": "[g/tkm]"
             }
           ],
           "FC-Final": [
             {
-              "Value": 202.578308,
+              "Value": 194.177048,
               "Unit": "[g/km]"
             },
             {
-              "Value": 7.378289,
+              "Value": 7.07229948,
               "Unit": "[l/100tkm]"
             },
             {
-              "Value": 24.3483543,
+              "Value": 23.3385887,
               "Unit": "[l/100km]"
             }
           ],
           "PwheelPos": {
-            "Value": 9.0428773684750787,
+            "Value": 9.0411471980537925,
             "Unit": "[kW]"
           },
           "Pbrake": {
-            "Value": -2.4110769179148344,
+            "Value": -3.3589940037980197,
             "Unit": "[kW]"
           },
           "EposICE": {
-            "Value": 10.341879737708304,
+            "Value": 11.973294053309493,
             "Unit": "[kWh]"
           },
           "EnegICE": {
-            "Value": -4.00009328087171,
+            "Value": -2.2102694097161293,
             "Unit": "[kWh]"
           },
           "Eair": {
-            "Value": -0.20126442350300849,
+            "Value": -0.20120723258350659,
             "Unit": "[kWh]"
           },
           "Eroll": {
-            "Value": -5.5710252431862886,
+            "Value": -5.5715248703791032,
             "Unit": "[kWh]"
           },
           "Egrad": {
-            "Value": 2.2748300643498078,
+            "Value": 2.2750119970143876,
             "Unit": "[kWh]"
           },
           "Eacc": {
-            "Value": -0.088332002825207187,
+            "Value": -0.083881171300179427,
             "Unit": "[kWh]"
           },
           "Eaux": {
@@ -312,11 +312,11 @@
             "Unit": "[kWh]"
           },
           "Ebrake": {
-            "Value": -2.7559948658943174,
+            "Value": -3.8404498110090692,
             "Unit": "[kWh]"
           },
           "Etransm": {
-            "Value": 0.0,
+            "Value": -2.3409734544157983,
             "Unit": "[kWh]"
           },
           "Eretarder": {
@@ -336,11 +336,11 @@
             "Unit": "[kg]"
           },
           "a": {
-            "Value": "0.001350074",
+            "Value": "0.001349746",
             "Unit": "[m/s^2]"
           },
           "a_pos": {
-            "Value": "0.6603086",
+            "Value": "0.5755603",
             "Unit": "[m/s^2]"
           },
           "a_neg": {
@@ -348,23 +348,23 @@
             "Unit": "[m/s^2]"
           },
           "Acc.Noise": {
-            "Value": "0.0425384",
+            "Value": "0.04782489",
             "Unit": "[m/s^2]"
           },
           "pAcc": {
-            "Value": "0.00218712",
+            "Value": "0.002429543",
             "Unit": "[%]"
           },
           "pDec": {
-            "Value": "0.0007290401",
+            "Value": "0.000728863",
             "Unit": "[%]"
           },
           "pCruise": {
-            "Value": "0.9965978",
+            "Value": "0.9963557",
             "Unit": "[%]"
           },
           "pStop": {
-            "Value": "0.0004860267",
+            "Value": "0.0004859086",
             "Unit": "[%]"
           }
         }
diff --git a/VectoCoreTest/TestData/Integration/FullPowerTrain/24t Coach-1Gear_1-Gear-Test-dist.vmod b/VectoCoreTest/TestData/Integration/FullPowerTrain/24t Coach-1Gear_1-Gear-Test-dist.vmod
index f9315f7f92e6dd96498d2996a58c452ef2f234e0..3c9b3006ec0d121be68300d5311aae44b74a2ff6 100644
--- a/VectoCoreTest/TestData/Integration/FullPowerTrain/24t Coach-1Gear_1-Gear-Test-dist.vmod	
+++ b/VectoCoreTest/TestData/Integration/FullPowerTrain/24t Coach-1Gear_1-Gear-Test-dist.vmod	
@@ -1,4116 +1,4117 @@
 time [s],dist [m],v_act [km/h],v_targ [km/h],acc [m/s²],grad [%],n [1/min],Tq_eng [Nm],Tq_clutch [Nm],Tq_full [Nm],Tq_drag [Nm],Pe_eng [kW],Pe_full [kW],Pe_drag [kW],Pe_clutch [kW],Pa Eng [kW],Paux [kW],Gear [-],Ploss GB [kW],Ploss Diff [kW],Ploss Retarder [kW],Pa GB [kW],Pa Veh [kW],Proll [kW],Pair [kW],Pgrad [kW],Pwheel [kW],Pbrake [kW],FC-Map [g/h],FC-AUXc [g/h],FC-WHTCc [g/h]
 1.5,0,0,0,0,-0.02023797,560,0,0,1180,-149,0,69.19881,-8.737817,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1256,-,-
-2.5,0,0,0,0,-0.02023797,560,0,0,1180,-149,0,69.19881,-8.737817,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1256,-,-
-3.5,0.585833489894867,2.10900056362152,6.40000004768372,1.171667,-0.02023797,593.1891,238.9977,226.1674,1264.632,-148.1703,14.84621,78.55721,-9.204132,14.0492,0.797003,0,1,0,0,0,0,13.37163,0.6992785,0.0003897439,-0.02209855,14.0492,0,3740.71,-,-
-4.5,2.44422763586044,6.69021892547607,12.8000000953674,1.373454,-0.02023797,593.1891,835.236,835.236,1264.632,-148.1703,51.88371,78.55721,-9.204132,51.88371,0,0,1,0,0,0,0,49.7231,2.218267,0.01244143,-0.07010152,51.88371,0,10234.74,-,-
-5.5,5.49456590414047,10.9812177658081,12.8000000953674,1.010434,-0.02023797,594.8588,1022.022,1021.358,1268.89,-148.1285,63.66527,79.04356,-9.22744,63.62396,0.04130919,0,1,0,0,0,0,60.04298,3.641028,0.05501749,-0.1150635,63.62396,0,12163.48,-,-
-6.5,9.05012148618698,12.8000000953674,12.8000000953674,0,-0.02023797,685.5905,92.15655,58.45948,1499.828,-148.4279,6.616367,107.6799,-10.65637,4.197091,2.419277,0,1,0,0,0,0,0,4.244079,0.0871323,-0.1341211,4.197091,0,2513.767,-,-
-7.5,12.6056770682335,12.8000000953674,12.8000000953674,0,-0.02023797,685.5905,58.45948,58.45948,1499.828,-148.4279,4.197091,107.6799,-10.65637,4.197091,0,0,1,0,0,0,0,0,4.244079,0.0871323,-0.1341211,4.197091,0,2193.813,-,-
-8.5,16.16123265028,12.8000000953674,12.8000000953674,0,-0.02023797,685.5905,58.45948,58.45948,1499.828,-148.4279,4.197091,107.6799,-10.65637,4.197091,0,0,1,0,0,0,0,0,4.244079,0.0871323,-0.1341211,4.197091,0,2193.813,-,-
-9.5,19.7167882323265,12.8000000953674,12.8000000953674,0,-0.02023797,685.5905,58.45948,58.45948,1499.828,-148.4279,4.197091,107.6799,-10.65637,4.197091,0,0,1,0,0,0,0,0,4.244079,0.0871323,-0.1341211,4.197091,0,2193.813,-,-
-10.5,23.272343814373,12.8000000953674,12.8000000953674,0,-0.02023797,685.5905,58.45948,58.45948,1499.828,-148.4279,4.197091,107.6799,-10.65637,4.197091,0,0,1,0,0,0,0,0,4.244079,0.0871323,-0.1341211,4.197091,0,2193.813,-,-
-11.5,26.8278993964195,12.8000000953674,12.8000000953674,0,-0.02023797,685.5905,58.45948,58.45948,1499.828,-148.4279,4.197091,107.6799,-10.65637,4.197091,0,0,1,0,0,0,0,0,4.244079,0.0871323,-0.1341211,4.197091,0,2193.813,-,-
-12.5,30.383454978466,12.8000000953674,12.8000000953674,0,-0.02023797,685.5905,58.45948,58.45948,1499.828,-148.4279,4.197091,107.6799,-10.65637,4.197091,0,0,1,0,0,0,0,0,4.244079,0.0871323,-0.1341211,4.197091,0,2193.813,-,-
-13.5,33.9390105605125,12.8000000953674,12.8000000953674,0,-0.02023797,685.5905,58.45948,58.45948,1499.828,-148.4279,4.197091,107.6799,-10.65637,4.197091,0,0,1,0,0,0,0,0,4.244079,0.0871323,-0.1341211,4.197091,0,2193.813,-,-
-14.5,37.4945661425591,12.8000000953674,12.8000000953674,0,-0.02023797,685.5905,58.45948,58.45948,1499.828,-148.4279,4.197091,107.6799,-10.65637,4.197091,0,0,1,0,0,0,0,0,4.244079,0.0871323,-0.1341211,4.197091,0,2193.813,-,-
-15.5,41.0501217246056,12.8000000953674,12.8000000953674,0,-0.02023797,685.5905,58.45948,58.45948,1499.828,-148.4279,4.197091,107.6799,-10.65637,4.197091,0,0,1,0,0,0,0,0,4.244079,0.0871323,-0.1341211,4.197091,0,2193.813,-,-
-16.5,44.6056773066521,12.8000000953674,12.8000000953674,0,-0.02023797,685.5905,58.45948,58.45948,1499.828,-148.4279,4.197091,107.6799,-10.65637,4.197091,0,0,1,0,0,0,0,0,4.244079,0.0871323,-0.1341211,4.197091,0,2193.813,-,-
-17.5,48.1612328886986,12.8000000953674,12.8000000953674,0,-0.02023797,685.5905,58.45948,58.45948,1499.828,-148.4279,4.197091,107.6799,-10.65637,4.197091,0,0,1,0,0,0,0,0,4.244079,0.0871323,-0.1341211,4.197091,0,2193.813,-,-
-18.5,51.7167884707451,12.8000000953674,12.8000000953674,0,-0.02023797,685.5905,58.45948,58.45948,1499.828,-148.4279,4.197091,107.6799,-10.65637,4.197091,0,0,1,0,0,0,0,0,4.244079,0.0871323,-0.1341211,4.197091,0,2193.813,-,-
-19.5,55.2723440527916,12.8000000953674,12.8000000953674,0,-0.02023797,685.5905,58.45948,58.45948,1499.828,-148.4279,4.197091,107.6799,-10.65637,4.197091,0,0,1,0,0,0,0,0,4.244079,0.0871323,-0.1341211,4.197091,0,2193.813,-,-
-20.5,58.8278996348381,12.8000000953674,12.8000000953674,0,-0.02023797,685.5905,58.45948,58.45948,1499.828,-148.4279,4.197091,107.6799,-10.65637,4.197091,0,0,1,0,0,0,0,0,4.244079,0.0871323,-0.1341211,4.197091,0,2193.813,-,-
-21.5,62.3834552168846,12.8000000953674,12.8000000953674,0,-0.02023797,685.5905,58.45948,58.45948,1499.828,-148.4279,4.197091,107.6799,-10.65637,4.197091,0,0,1,0,0,0,0,0,4.244079,0.0871323,-0.1341211,4.197091,0,2193.813,-,-
-22.5,65.9390107989311,12.8000000953674,12.8000000953674,0,-0.02023797,685.5905,58.45948,58.45948,1499.828,-148.4279,4.197091,107.6799,-10.65637,4.197091,0,0,1,0,0,0,0,0,4.244079,0.0871323,-0.1341211,4.197091,0,2193.813,-,-
-23.5,69.4945663809776,12.8000000953674,12.8000000953674,0,-0.1753066,685.5905,44.14542,44.14542,1499.828,-148.4279,3.169415,107.6799,-10.65637,3.169415,0,0,1,0,0,0,0,0,4.244072,0.0871323,-1.16179,3.169415,0,2057.901,-,-
-24.5,73.0501219630241,12.8000000953674,12.8000000953674,0,-0.1753066,685.5905,44.14542,44.14542,1499.828,-148.4279,3.169415,107.6799,-10.65637,3.169415,0,0,1,0,0,0,0,0,4.244072,0.0871323,-1.16179,3.169415,0,2057.901,-,-
-25.5,76.6056775450706,12.8000000953674,12.8000000953674,0,-0.1753066,685.5905,44.14542,44.14542,1499.828,-148.4279,3.169415,107.6799,-10.65637,3.169415,0,0,1,0,0,0,0,0,4.244072,0.0871323,-1.16179,3.169415,0,2057.901,-,-
-26.5,80.1612331271172,12.8000000953674,12.8000000953674,0,-0.1753066,685.5905,44.14542,44.14542,1499.828,-148.4279,3.169415,107.6799,-10.65637,3.169415,0,0,1,0,0,0,0,0,4.244072,0.0871323,-1.16179,3.169415,0,2057.901,-,-
-27.5,83.7167887091637,12.8000000953674,12.8000000953674,0,-0.1753066,685.5905,44.14542,44.14542,1499.828,-148.4279,3.169415,107.6799,-10.65637,3.169415,0,0,1,0,0,0,0,0,4.244072,0.0871323,-1.16179,3.169415,0,2057.901,-,-
-28.5,87.2723442912102,12.8000000953674,12.8000000953674,0,-0.1753066,685.5905,44.14542,44.14542,1499.828,-148.4279,3.169415,107.6799,-10.65637,3.169415,0,0,1,0,0,0,0,0,4.244072,0.0871323,-1.16179,3.169415,0,2057.901,-,-
-29.5,90.8278998732567,12.8000000953674,12.8000000953674,0,-0.2954839,685.5905,33.05209,33.05209,1499.828,-148.4279,2.372971,107.6799,-10.65637,2.372971,0,0,1,0,0,0,0,0,4.244061,0.0871323,-1.958222,2.372971,0,1952.57,-,-
-30.5,94.3834554553032,12.8000000953674,12.8000000953674,0,-0.2954839,685.5905,33.05209,33.05209,1499.828,-148.4279,2.372971,107.6799,-10.65637,2.372971,0,0,1,0,0,0,0,0,4.244061,0.0871323,-1.958222,2.372971,0,1952.57,-,-
-31.5,97.9390110373497,12.8000000953674,12.8000000953674,0,-0.2954839,685.5905,33.05209,33.05209,1499.828,-148.4279,2.372971,107.6799,-10.65637,2.372971,0,0,1,0,0,0,0,0,4.244061,0.0871323,-1.958222,2.372971,0,1952.57,-,-
-32.5,101.494566619396,12.8000000953674,12.8000000953674,0,-0.2954839,685.5905,33.05209,33.05209,1499.828,-148.4279,2.372971,107.6799,-10.65637,2.372971,0,0,1,0,0,0,0,0,4.244061,0.0871323,-1.958222,2.372971,0,1952.57,-,-
-33.5,105.050122201443,12.8000000953674,12.8000000953674,0,-0.2954839,685.5905,33.05209,33.05209,1499.828,-148.4279,2.372971,107.6799,-10.65637,2.372971,0,0,1,0,0,0,0,0,4.244061,0.0871323,-1.958222,2.372971,0,1952.57,-,-
-34.5,108.605677783489,12.8000000953674,12.8000000953674,0,-0.2954839,685.5905,33.05209,33.05209,1499.828,-148.4279,2.372971,107.6799,-10.65637,2.372971,0,0,1,0,0,0,0,0,4.244061,0.0871323,-1.958222,2.372971,0,1952.57,-,-
-35.5,112.161233365536,12.8000000953674,12.8000000953674,0,-0.2954839,685.5905,33.05209,33.05209,1499.828,-148.4279,2.372971,107.6799,-10.65637,2.372971,0,0,1,0,0,0,0,0,4.244061,0.0871323,-1.958222,2.372971,0,1952.57,-,-
-36.5,115.716788947582,12.8000000953674,12.8000000953674,0,-0.2954839,685.5905,33.05209,33.05209,1499.828,-148.4279,2.372971,107.6799,-10.65637,2.372971,0,0,1,0,0,0,0,0,4.244061,0.0871323,-1.958222,2.372971,0,1952.57,-,-
-37.5,119.272344529629,12.8000000953674,12.8000000953674,0,-0.4070192,685.5905,22.75652,22.75652,1499.828,-148.4279,1.633801,107.6799,-10.65637,1.633801,0,0,1,0,0,0,0,0,4.244044,0.0871323,-2.697375,1.633801,0,1854.813,-,-
-38.5,122.827900111675,12.8000000953674,12.8000000953674,0,-0.4070192,685.5905,22.75652,22.75652,1499.828,-148.4279,1.633801,107.6799,-10.65637,1.633801,0,0,1,0,0,0,0,0,4.244044,0.0871323,-2.697375,1.633801,0,1854.813,-,-
-39.5,126.383455693722,12.8000000953674,12.8000000953674,0,-0.4070192,685.5905,22.75652,22.75652,1499.828,-148.4279,1.633801,107.6799,-10.65637,1.633801,0,0,1,0,0,0,0,0,4.244044,0.0871323,-2.697375,1.633801,0,1854.813,-,-
-40.5,129.939011275768,12.8000000953674,12.8000000953674,0,-0.4070192,685.5905,22.75652,22.75652,1499.828,-148.4279,1.633801,107.6799,-10.65637,1.633801,0,0,1,0,0,0,0,0,4.244044,0.0871323,-2.697375,1.633801,0,1854.813,-,-
-41.5,133.494566857815,12.8000000953674,12.8000000953674,0,-0.4070192,685.5905,22.75652,22.75652,1499.828,-148.4279,1.633801,107.6799,-10.65637,1.633801,0,0,1,0,0,0,0,0,4.244044,0.0871323,-2.697375,1.633801,0,1854.813,-,-
-42.5,137.050122439861,12.8000000953674,12.8000000953674,0,-0.4070192,685.5905,22.75652,22.75652,1499.828,-148.4279,1.633801,107.6799,-10.65637,1.633801,0,0,1,0,0,0,0,0,4.244044,0.0871323,-2.697375,1.633801,0,1854.813,-,-
-43.5,140.605678021908,12.8000000953674,12.8000000953674,0,-0.4070192,685.5905,22.75652,22.75652,1499.828,-148.4279,1.633801,107.6799,-10.65637,1.633801,0,0,1,0,0,0,0,0,4.244044,0.0871323,-2.697375,1.633801,0,1854.813,-,-
-44.5,144.161233603954,12.8000000953674,12.8000000953674,0,-0.4070192,685.5905,22.75652,22.75652,1499.828,-148.4279,1.633801,107.6799,-10.65637,1.633801,0,0,1,0,0,0,0,0,4.244044,0.0871323,-2.697375,1.633801,0,1854.813,-,-
-45.5,147.716789186001,12.8000000953674,12.8000000953674,0,-0.4070192,685.5905,22.75652,22.75652,1499.828,-148.4279,1.633801,107.6799,-10.65637,1.633801,0,0,1,0,0,0,0,0,4.244044,0.0871323,-2.697375,1.633801,0,1854.813,-,-
-46.5,151.272344768047,12.8000000953674,12.8000000953674,0,-0.5113649,685.5905,13.12465,13.12465,1499.828,-148.4279,0.9422829,107.6799,-10.65637,0.9422829,0,0,1,0,0,0,0,0,4.244024,0.0871323,-3.388873,0.9422829,0,1763.359,-,-
-47.5,154.827900350094,12.8000000953674,12.8000000953674,0,-0.5113649,685.5905,13.12465,13.12465,1499.828,-148.4279,0.9422829,107.6799,-10.65637,0.9422829,0,0,1,0,0,0,0,0,4.244024,0.0871323,-3.388873,0.9422829,0,1763.359,-,-
-48.5,158.38345593214,12.8000000953674,12.8000000953674,0,-0.5113649,685.5905,13.12465,13.12465,1499.828,-148.4279,0.9422829,107.6799,-10.65637,0.9422829,0,0,1,0,0,0,0,0,4.244024,0.0871323,-3.388873,0.9422829,0,1763.359,-,-
-49.5,161.939011514187,12.8000000953674,12.8000000953674,0,-0.5113649,685.5905,13.12465,13.12465,1499.828,-148.4279,0.9422829,107.6799,-10.65637,0.9422829,0,0,1,0,0,0,0,0,4.244024,0.0871323,-3.388873,0.9422829,0,1763.359,-,-
-50.5,165.494567096233,12.8000000953674,12.8000000953674,0,-0.5113649,685.5905,13.12465,13.12465,1499.828,-148.4279,0.9422829,107.6799,-10.65637,0.9422829,0,0,1,0,0,0,0,0,4.244024,0.0871323,-3.388873,0.9422829,0,1763.359,-,-
-51.5,169.05012267828,12.8000000953674,12.8000000953674,0,-0.5113649,685.5905,13.12465,13.12465,1499.828,-148.4279,0.9422829,107.6799,-10.65637,0.9422829,0,0,1,0,0,0,0,0,4.244024,0.0871323,-3.388873,0.9422829,0,1763.359,-,-
-52.5,172.605678260326,12.8000000953674,12.8000000953674,0,-0.5113649,685.5905,13.12465,13.12465,1499.828,-148.4279,0.9422829,107.6799,-10.65637,0.9422829,0,0,1,0,0,0,0,0,4.244024,0.0871323,-3.388873,0.9422829,0,1763.359,-,-
-53.5,176.161233842373,12.8000000953674,12.8000000953674,0,-0.5113649,685.5905,13.12465,13.12465,1499.828,-148.4279,0.9422829,107.6799,-10.65637,0.9422829,0,0,1,0,0,0,0,0,4.244024,0.0871323,-3.388873,0.9422829,0,1763.359,-,-
-54.5,179.716789424419,12.8000000953674,12.8000000953674,0,-0.6157106,685.5905,3.492882,3.492882,1499.828,-148.4279,0.250771,107.6799,-10.65637,0.250771,0,0,1,0,0,0,0,0,4.243999,0.0871323,-4.08036,0.250771,0,1671.905,-,-
-55.5,183.272345006466,12.8000000953674,12.8000000953674,0,-0.6157106,685.5905,3.492882,3.492882,1499.828,-148.4279,0.250771,107.6799,-10.65637,0.250771,0,0,1,0,0,0,0,0,4.243999,0.0871323,-4.08036,0.250771,0,1671.905,-,-
-56.5,186.827900588512,12.8000000953674,12.8000000953674,0,-0.6157106,685.5905,3.492882,3.492882,1499.828,-148.4279,0.250771,107.6799,-10.65637,0.250771,0,0,1,0,0,0,0,0,4.243999,0.0871323,-4.08036,0.250771,0,1671.905,-,-
-57.5,190.383456170559,12.8000000953674,12.8000000953674,0,-0.6157106,685.5905,3.492882,3.492882,1499.828,-148.4279,0.250771,107.6799,-10.65637,0.250771,0,0,1,0,0,0,0,0,4.243999,0.0871323,-4.08036,0.250771,0,1671.905,-,-
-58.5,193.939011752605,12.8000000953674,12.8000000953674,0,-0.6157106,685.5905,3.492882,3.492882,1499.828,-148.4279,0.250771,107.6799,-10.65637,0.250771,0,0,1,0,0,0,0,0,4.243999,0.0871323,-4.08036,0.250771,0,1671.905,-,-
-59.5,197.494567334652,12.8000000953674,12.8000000953674,0,-0.6157106,685.5905,3.492882,3.492882,1499.828,-148.4279,0.250771,107.6799,-10.65637,0.250771,0,0,1,0,0,0,0,0,4.243999,0.0871323,-4.08036,0.250771,0,1671.905,-,-
-60.5,201.050122916698,12.8000000953674,12.8000000953674,0,-0.6157106,685.5905,3.492882,3.492882,1499.828,-148.4279,0.250771,107.6799,-10.65637,0.250771,0,0,1,0,0,0,0,0,4.243999,0.0871323,-4.08036,0.250771,0,1671.905,-,-
-61.5,204.605678498745,12.8000000953674,12.8000000953674,0,-0.6157106,685.5905,3.492882,3.492882,1499.828,-148.4279,0.250771,107.6799,-10.65637,0.250771,0,0,1,0,0,0,0,0,4.243999,0.0871323,-4.08036,0.250771,0,1671.905,-,-
-62.5,208.161234080791,12.8000000953674,12.8000000953674,0,-0.705569,685.5905,-4.801522,-4.801522,1499.828,-148.4279,-0.3447247,107.6799,-10.65637,-0.3447247,0,0,1,0,0,0,0,0,4.243974,0.0871323,-4.675831,-0.3447247,0,1591.406,-,-
-63.5,211.716789662838,12.8000000953674,12.8000000953674,0,-0.7954275,685.5905,-13.09582,-13.09582,1499.828,-148.4279,-0.9402127,107.6799,-10.65637,-0.9402127,0,0,1,0,0,0,0,0,4.243945,0.0871323,-5.27129,-0.9402127,0,1509.64,-,-
-64.5,215.272345244884,12.8000000953674,12.8000000953674,0,-0.7954275,685.5905,-13.09582,-13.09582,1499.828,-148.4279,-0.9402127,107.6799,-10.65637,-0.9402127,0,0,1,0,0,0,0,0,4.243945,0.0871323,-5.27129,-0.9402127,0,1509.64,-,-
-65.5,218.827900826931,12.8000000953674,12.8000000953674,0,-0.8640338,685.5905,-19.42837,-19.42837,1499.828,-148.4279,-1.394857,107.6799,-10.65637,-1.394857,0,0,1,0,0,0,0,0,4.243921,0.0871323,-5.725911,-1.394857,0,1447.213,-,-
-66.5,222.383456408978,12.8000000953674,12.8000000953674,0,-0.9326401,685.5905,-25.76085,-25.76085,1499.828,-148.4279,-1.849497,107.6799,-10.65637,-1.849497,0,0,1,0,0,0,0,0,4.243895,0.0871323,-6.180524,-1.849497,0,1384.787,-,-
-67.5,225.939011991024,12.8000000953674,12.8000000953674,0,-0.9326401,685.5905,-25.76085,-25.76085,1499.828,-148.4279,-1.849497,107.6799,-10.65637,-1.849497,0,0,1,0,0,0,0,0,4.243895,0.0871323,-6.180524,-1.849497,0,1384.787,-,-
-68.5,229.494567573071,12.8000000953674,12.8000000953674,0,-1.069853,685.5905,-38.42548,-38.42548,1499.828,-148.4279,-2.758752,107.6799,-10.65637,-2.758752,0,0,1,0,0,0,0,0,4.243836,0.0871323,-7.089721,-2.758752,0,1259.938,-,-
-69.5,233.050123155117,12.8000000953674,12.8000000953674,0,-1.069853,685.5905,-38.42548,-38.42548,1499.828,-148.4279,-2.758752,107.6799,-10.65637,-2.758752,0,0,1,0,0,0,0,0,4.243836,0.0871323,-7.089721,-2.758752,0,1259.938,-,-
-70.5,236.605678737164,12.8000000953674,12.8000000953674,0,-1.069853,685.5905,-38.42548,-38.42548,1499.828,-148.4279,-2.758752,107.6799,-10.65637,-2.758752,0,0,1,0,0,0,0,0,4.243836,0.0871323,-7.089721,-2.758752,0,1259.938,-,-
-71.5,240.16123431921,12.8000000953674,12.8000000953674,0,-1.069853,685.5905,-38.42548,-38.42548,1499.828,-148.4279,-2.758752,107.6799,-10.65637,-2.758752,0,0,1,0,0,0,0,0,4.243836,0.0871323,-7.089721,-2.758752,0,1259.938,-,-
-72.5,243.716789901257,12.8000000953674,12.8000000953674,0,-1.069853,685.5905,-38.42548,-38.42548,1499.828,-148.4279,-2.758752,107.6799,-10.65637,-2.758752,0,0,1,0,0,0,0,0,4.243836,0.0871323,-7.089721,-2.758752,0,1259.938,-,-
-73.5,247.272345483303,12.8000000953674,12.8000000953674,0,-1.069853,685.5905,-38.42548,-38.42548,1499.828,-148.4279,-2.758752,107.6799,-10.65637,-2.758752,0,0,1,0,0,0,0,0,4.243836,0.0871323,-7.089721,-2.758752,0,1259.938,-,-
-74.5,250.82790106535,12.8000000953674,12.8000000953674,0,-1.193272,685.5905,-49.8166,-49.8166,1499.828,-148.4279,-3.576576,107.6799,-10.65637,-3.576576,0,0,1,0,0,0,0,0,4.243777,0.0871323,-7.907486,-3.576576,0,1147.643,-,-
-75.5,254.383456647396,12.8000000953674,12.8000000953674,0,-1.193272,685.5905,-49.8166,-49.8166,1499.828,-148.4279,-3.576576,107.6799,-10.65637,-3.576576,0,0,1,0,0,0,0,0,4.243777,0.0871323,-7.907486,-3.576576,0,1147.643,-,-
-76.5,257.939012229443,12.8000000953674,12.8000000953674,0,-1.193272,685.5905,-49.8166,-49.8166,1499.828,-148.4279,-3.576576,107.6799,-10.65637,-3.576576,0,0,1,0,0,0,0,0,4.243777,0.0871323,-7.907486,-3.576576,0,1147.643,-,-
-77.5,261.494567811489,12.8000000953674,12.8000000953674,0,-1.193272,685.5905,-49.8166,-49.8166,1499.828,-148.4279,-3.576576,107.6799,-10.65637,-3.576576,0,0,1,0,0,0,0,0,4.243777,0.0871323,-7.907486,-3.576576,0,1147.643,-,-
-78.5,265.050123393536,12.8000000953674,12.8000000953674,0,-1.193272,685.5905,-49.8166,-49.8166,1499.828,-148.4279,-3.576576,107.6799,-10.65637,-3.576576,0,0,1,0,0,0,0,0,4.243777,0.0871323,-7.907486,-3.576576,0,1147.643,-,-
-79.5,268.605678975582,12.8000000953674,12.8000000953674,0,-1.193272,685.5905,-49.8166,-49.8166,1499.828,-148.4279,-3.576576,107.6799,-10.65637,-3.576576,0,0,1,0,0,0,0,0,4.243777,0.0871323,-7.907486,-3.576576,0,1147.643,-,-
-80.5,272.161234557629,12.8000000953674,12.8000000953674,0,-1.193272,685.5905,-49.8166,-49.8166,1499.828,-148.4279,-3.576576,107.6799,-10.65637,-3.576576,0,0,1,0,0,0,0,0,4.243777,0.0871323,-7.907486,-3.576576,0,1147.643,-,-
-81.5,275.716790139675,12.8000000953674,12.8000000953674,0,-1.193272,685.5905,-49.8166,-49.8166,1499.828,-148.4279,-3.576576,107.6799,-10.65637,-3.576576,0,0,1,0,0,0,0,0,4.243777,0.0871323,-7.907486,-3.576576,0,1147.643,-,-
-82.5,279.272345721722,12.8000000953674,12.8000000953674,0,-1.302897,685.5905,-59.93425,-59.93425,1499.828,-148.4279,-4.302972,107.6799,-10.65637,-4.302972,0,0,1,0,0,0,0,0,4.243719,0.0871323,-8.633823,-4.302972,0,1047.902,-,-
-83.5,282.827901303768,12.8000000953674,12.8000000953674,0,-1.302897,685.5905,-59.93425,-59.93425,1499.828,-148.4279,-4.302972,107.6799,-10.65637,-4.302972,0,0,1,0,0,0,0,0,4.243719,0.0871323,-8.633823,-4.302972,0,1047.902,-,-
-84.5,286.383456885815,12.8000000953674,12.8000000953674,0,-1.302897,685.5905,-59.93425,-59.93425,1499.828,-148.4279,-4.302972,107.6799,-10.65637,-4.302972,0,0,1,0,0,0,0,0,4.243719,0.0871323,-8.633823,-4.302972,0,1047.902,-,-
-85.5,289.939012467861,12.8000000953674,12.8000000953674,0,-1.302897,685.5905,-59.93425,-59.93425,1499.828,-148.4279,-4.302972,107.6799,-10.65637,-4.302972,0,0,1,0,0,0,0,0,4.243719,0.0871323,-8.633823,-4.302972,0,1047.902,-,-
-86.5,293.494568049908,12.8000000953674,12.8000000953674,0,-1.302897,685.5905,-59.93425,-59.93425,1499.828,-148.4279,-4.302972,107.6799,-10.65637,-4.302972,0,0,1,0,0,0,0,0,4.243719,0.0871323,-8.633823,-4.302972,0,1047.902,-,-
-87.5,297.050123631954,12.8000000953674,12.8000000953674,0,-1.302897,685.5905,-59.93425,-59.93425,1499.828,-148.4279,-4.302972,107.6799,-10.65637,-4.302972,0,0,1,0,0,0,0,0,4.243719,0.0871323,-8.633823,-4.302972,0,1047.902,-,-
-88.5,300.605679214001,12.8000000953674,12.8000000953674,0,-1.302897,685.5905,-59.93425,-59.93425,1499.828,-148.4279,-4.302972,107.6799,-10.65637,-4.302972,0,0,1,0,0,0,0,0,4.243719,0.0871323,-8.633823,-4.302972,0,1047.902,-,-
-89.5,304.161234796047,12.8000000953674,12.8000000953674,0,-1.302897,685.5905,-59.93425,-59.93425,1499.828,-148.4279,-4.302972,107.6799,-10.65637,-4.302972,0,0,1,0,0,0,0,0,4.243719,0.0871323,-8.633823,-4.302972,0,1047.902,-,-
-90.5,307.716790378094,12.8000000953674,12.8000000953674,0,-1.302897,685.5905,-59.93425,-59.93425,1499.828,-148.4279,-4.302972,107.6799,-10.65637,-4.302972,0,0,1,0,0,0,0,0,4.243719,0.0871323,-8.633823,-4.302972,0,1047.902,-,-
-91.5,311.27234596014,12.8000000953674,12.8000000953674,0,-1.412522,685.5905,-70.05155,-70.05155,1499.828,-148.4279,-5.029342,107.6799,-10.65637,-5.029342,0,0,1,0,0,0,0,0,4.243656,0.0871323,-9.36013,-5.029342,0,948.1643,-,-
-92.5,314.827901542187,12.8000000953674,12.8000000953674,0,-1.412522,685.5905,-70.05155,-70.05155,1499.828,-148.4279,-5.029342,107.6799,-10.65637,-5.029342,0,0,1,0,0,0,0,0,4.243656,0.0871323,-9.36013,-5.029342,0,948.1643,-,-
-93.5,318.383457124233,12.8000000953674,12.8000000953674,0,-1.412522,685.5905,-70.05155,-70.05155,1499.828,-148.4279,-5.029342,107.6799,-10.65637,-5.029342,0,0,1,0,0,0,0,0,4.243656,0.0871323,-9.36013,-5.029342,0,948.1643,-,-
-94.5,321.93901270628,12.8000000953674,12.8000000953674,0,-1.412522,685.5905,-70.05155,-70.05155,1499.828,-148.4279,-5.029342,107.6799,-10.65637,-5.029342,0,0,1,0,0,0,0,0,4.243656,0.0871323,-9.36013,-5.029342,0,948.1643,-,-
-95.5,325.494568288326,12.8000000953674,12.8000000953674,0,-1.412522,685.5905,-70.05155,-70.05155,1499.828,-148.4279,-5.029342,107.6799,-10.65637,-5.029342,0,0,1,0,0,0,0,0,4.243656,0.0871323,-9.36013,-5.029342,0,948.1643,-,-
-96.5,329.050123870373,12.8000000953674,12.8000000953674,0,-1.412522,685.5905,-70.05155,-70.05155,1499.828,-148.4279,-5.029342,107.6799,-10.65637,-5.029342,0,0,1,0,0,0,0,0,4.243656,0.0871323,-9.36013,-5.029342,0,948.1643,-,-
-97.5,332.605679452419,12.8000000953674,12.8000000953674,0,-1.412522,685.5905,-70.05155,-70.05155,1499.828,-148.4279,-5.029342,107.6799,-10.65637,-5.029342,0,0,1,0,0,0,0,0,4.243656,0.0871323,-9.36013,-5.029342,0,948.1643,-,-
-98.5,336.161235034466,12.8000000953674,12.8000000953674,0,-1.412522,685.5905,-70.05155,-70.05155,1499.828,-148.4279,-5.029342,107.6799,-10.65637,-5.029342,0,0,1,0,0,0,0,0,4.243656,0.0871323,-9.36013,-5.029342,0,948.1643,-,-
-99.5,339.716790616512,12.8000000953674,12.8000000953674,0,-1.522147,685.5905,-80.16844,-80.16844,1499.828,-148.4279,-5.755683,107.6799,-10.65637,-5.755683,0,0,1,0,0,0,0,0,4.243587,0.0871323,-10.0864,-5.755683,0,848.4309,-,-
-100.5,343.272346198559,12.8000000953674,12.8000000953674,0,-1.522147,685.5905,-80.16844,-80.16844,1499.828,-148.4279,-5.755683,107.6799,-10.65637,-5.755683,0,0,1,0,0,0,0,0,4.243587,0.0871323,-10.0864,-5.755683,0,848.4309,-,-
-101.5,346.827901780605,12.8000000953674,12.8000000953674,0,-1.522147,685.5905,-80.16844,-80.16844,1499.828,-148.4279,-5.755683,107.6799,-10.65637,-5.755683,0,0,1,0,0,0,0,0,4.243587,0.0871323,-10.0864,-5.755683,0,848.4309,-,-
-102.5,350.383457362652,12.8000000953674,12.8000000953674,0,-1.522147,685.5905,-80.16844,-80.16844,1499.828,-148.4279,-5.755683,107.6799,-10.65637,-5.755683,0,0,1,0,0,0,0,0,4.243587,0.0871323,-10.0864,-5.755683,0,848.4309,-,-
-103.5,353.939012944698,12.8000000953674,12.8000000953674,0,-1.522147,685.5905,-80.16844,-80.16844,1499.828,-148.4279,-5.755683,107.6799,-10.65637,-5.755683,0,0,1,0,0,0,0,0,4.243587,0.0871323,-10.0864,-5.755683,0,848.4309,-,-
-104.5,357.494568526745,12.8000000953674,12.8000000953674,0,-1.522147,685.5905,-80.16844,-80.16844,1499.828,-148.4279,-5.755683,107.6799,-10.65637,-5.755683,0,0,1,0,0,0,0,0,4.243587,0.0871323,-10.0864,-5.755683,0,848.4309,-,-
-105.5,361.050124108791,12.8000000953674,12.8000000953674,0,-1.522147,685.5905,-80.16844,-80.16844,1499.828,-148.4279,-5.755683,107.6799,-10.65637,-5.755683,0,0,1,0,0,0,0,0,4.243587,0.0871323,-10.0864,-5.755683,0,848.4309,-,-
-106.5,364.605679690838,12.8000000953674,12.8000000953674,0,-1.522147,685.5905,-80.16844,-80.16844,1499.828,-148.4279,-5.755683,107.6799,-10.65637,-5.755683,0,0,1,0,0,0,0,0,4.243587,0.0871323,-10.0864,-5.755683,0,848.4309,-,-
-107.5,368.161235272884,12.8000000953674,12.8000000953674,0,-1.576959,685.5905,-85.22672,-85.22672,1499.828,-148.4279,-6.118842,107.6799,-10.65637,-6.118842,0,0,1,0,0,0,0,0,4.243552,0.0871323,-10.44953,-6.118842,0,797.0142,-,-
-108.5,371.716790854931,12.8000000953674,12.8000000953674,0,-1.631772,685.5905,-90.2849,-90.2849,1499.828,-148.4279,-6.481993,107.6799,-10.65637,-6.481993,0,0,1,0,0,0,0,0,4.243514,0.0871323,-10.81264,-6.481993,0,733.2269,-,-
-109.5,375.272346436977,12.8000000953674,12.8000000953674,0,-1.631772,685.5905,-90.2849,-90.2849,1499.828,-148.4279,-6.481993,107.6799,-10.65637,-6.481993,0,0,1,0,0,0,0,0,4.243514,0.0871323,-10.81264,-6.481993,0,733.2269,-,-
-110.5,378.827902019024,12.8000000953674,12.8000000953674,0,-1.631772,685.5905,-90.2849,-90.2849,1499.828,-148.4279,-6.481993,107.6799,-10.65637,-6.481993,0,0,1,0,0,0,0,0,4.243514,0.0871323,-10.81264,-6.481993,0,733.2269,-,-
-111.5,382.38345760107,12.8000000953674,12.8000000953674,0,-1.631772,685.5905,-90.2849,-90.2849,1499.828,-148.4279,-6.481993,107.6799,-10.65637,-6.481993,0,0,1,0,0,0,0,0,4.243514,0.0871323,-10.81264,-6.481993,0,733.2269,-,-
-112.5,385.939013183117,12.8000000953674,12.8000000953674,0,-1.631772,685.5905,-90.2849,-90.2849,1499.828,-148.4279,-6.481993,107.6799,-10.65637,-6.481993,0,0,1,0,0,0,0,0,4.243514,0.0871323,-10.81264,-6.481993,0,733.2269,-,-
-113.5,389.494568765163,12.8000000953674,12.8000000953674,0,-1.631772,685.5905,-90.2849,-90.2849,1499.828,-148.4279,-6.481993,107.6799,-10.65637,-6.481993,0,0,1,0,0,0,0,0,4.243514,0.0871323,-10.81264,-6.481993,0,733.2269,-,-
-114.5,393.05012434721,12.8000000953674,12.8000000953674,0,-1.631772,685.5905,-90.2849,-90.2849,1499.828,-148.4279,-6.481993,107.6799,-10.65637,-6.481993,0,0,1,0,0,0,0,0,4.243514,0.0871323,-10.81264,-6.481993,0,733.2269,-,-
-115.5,396.605679929256,12.8000000953674,12.8000000953674,0,-1.631772,685.5905,-90.2849,-90.2849,1499.828,-148.4279,-6.481993,107.6799,-10.65637,-6.481993,0,0,1,0,0,0,0,0,4.243514,0.0871323,-10.81264,-6.481993,0,733.2269,-,-
-116.5,400.161235511303,12.8000000953674,12.8000000953674,0,-1.741397,685.5905,-100.4009,-100.4009,1499.828,-148.4279,-7.208269,107.6799,-10.65637,-7.208269,0,0,1,0,0,0,0,0,4.243436,0.0871323,-11.53884,-7.208269,0,605.6567,-,-
-117.5,403.716791093349,12.8000000953674,12.8000000953674,0,-1.741397,685.5905,-100.4009,-100.4009,1499.828,-148.4279,-7.208269,107.6799,-10.65637,-7.208269,0,0,1,0,0,0,0,0,4.243436,0.0871323,-11.53884,-7.208269,0,605.6567,-,-
-118.5,407.272346675396,12.8000000953674,12.8000000953674,0,-1.741397,685.5905,-100.4009,-100.4009,1499.828,-148.4279,-7.208269,107.6799,-10.65637,-7.208269,0,0,1,0,0,0,0,0,4.243436,0.0871323,-11.53884,-7.208269,0,605.6567,-,-
-119.5,410.827902257442,12.8000000953674,12.8000000953674,0,-1.741397,685.5905,-100.4009,-100.4009,1499.828,-148.4279,-7.208269,107.6799,-10.65637,-7.208269,0,0,1,0,0,0,0,0,4.243436,0.0871323,-11.53884,-7.208269,0,605.6567,-,-
-120.5,414.383457839489,12.8000000953674,12.8000000953674,0,-1.741397,685.5905,-100.4009,-100.4009,1499.828,-148.4279,-7.208269,107.6799,-10.65637,-7.208269,0,0,1,0,0,0,0,0,4.243436,0.0871323,-11.53884,-7.208269,0,605.6567,-,-
-121.5,417.939013421535,12.8000000953674,12.8000000953674,0,-1.741397,685.5905,-100.4009,-100.4009,1499.828,-148.4279,-7.208269,107.6799,-10.65637,-7.208269,0,0,1,0,0,0,0,0,4.243436,0.0871323,-11.53884,-7.208269,0,605.6567,-,-
-122.5,421.494569003582,12.8000000953674,12.8000000953674,0,-1.581219,685.5905,-85.61983,-85.61983,1499.828,-148.4279,-6.147065,107.6799,-10.65637,-6.147065,0,0,1,0,0,0,0,0,4.243549,0.0871323,-10.47775,-6.147065,0,792.0568,-,-
-123.5,425.050124585629,12.8000000953674,12.8000000953674,0,-1.581219,685.5905,-85.61983,-85.61983,1499.828,-148.4279,-6.147065,107.6799,-10.65637,-6.147065,0,0,1,0,0,0,0,0,4.243549,0.0871323,-10.47775,-6.147065,0,792.0568,-,-
-124.5,428.605680167675,12.8000000953674,12.8000000953674,0,-1.530884,685.5905,-80.97472,-80.97472,1499.828,-148.4279,-5.81357,107.6799,-10.65637,-5.81357,0,0,1,0,0,0,0,0,4.243582,0.0871323,-10.14428,-5.81357,0,840.4825,-,-
-125.5,432.161235749722,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-126.5,435.716791331768,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-127.5,439.272346913815,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-128.5,442.827902495861,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-129.5,446.383458077908,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-130.5,449.939013659954,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-131.5,453.494569242001,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-132.5,457.050124824047,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-133.5,460.605680406094,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-134.5,464.16123598814,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-135.5,467.716791570187,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-136.5,471.272347152233,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-137.5,474.82790273428,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-138.5,478.383458316326,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-139.5,481.939013898373,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-140.5,485.494569480419,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-141.5,489.050125062466,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-142.5,492.605680644512,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-143.5,496.161236226559,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-144.5,499.716791808605,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-145.5,503.272347390652,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-146.5,506.827902972698,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-147.5,510.383458554745,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-148.5,513.939014136791,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-149.5,517.494569718838,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-150.5,521.050125300884,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-151.5,524.605680882931,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-152.5,528.161236464977,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-153.5,531.716792047024,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-154.5,535.27234762907,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-155.5,538.827903211117,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-156.5,542.383458793163,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-157.5,545.93901437521,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-158.5,549.494569957256,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-159.5,553.050125539303,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-160.5,556.605681121349,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-161.5,560.161236703396,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-162.5,563.716792285442,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-163.5,567.272347867489,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-164.5,570.827903449535,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-165.5,574.383459031582,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-166.5,577.939014613628,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-167.5,581.494570195675,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-168.5,585.050125777721,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-169.5,588.605681359768,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-170.5,592.161236941814,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-171.5,595.716792523861,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-172.5,599.272348105907,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-173.5,602.827903687954,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-174.5,606.38345927,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-175.5,609.939014852047,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-176.5,613.494570434093,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-177.5,617.05012601614,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-178.5,620.605681598186,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-179.5,624.161237180233,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-180.5,627.71679276228,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-181.5,631.272348344326,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-182.5,634.827903926373,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-183.5,638.383459508419,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-184.5,641.939015090466,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-185.5,645.494570672512,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-186.5,649.050126254559,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-187.5,652.605681836605,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-188.5,656.161237418652,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-189.5,659.716793000698,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-190.5,663.272348582745,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-191.5,666.827904164791,12.8000000953674,12.8000000953674,0,-1.480548,685.5905,-76.32951,-76.32951,1499.828,-148.4279,-5.480067,107.6799,-10.65637,-5.480067,0,0,1,0,0,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,886.2756,-,-
-192.5,670.383459746838,12.8000000953674,12.8000000953674,0,-1.366027,685.5905,-65.76057,-65.76057,1499.828,-148.4279,-4.721272,107.6799,-10.65637,-4.721272,0,0,1,0,0,0,0,0,4.243683,0.0871323,-9.052088,-4.721272,0,990.4652,-,-
-193.5,673.939015328884,12.8000000953674,12.8000000953674,0,-1.366027,685.5905,-65.76057,-65.76057,1499.828,-148.4279,-4.721272,107.6799,-10.65637,-4.721272,0,0,1,0,0,0,0,0,4.243683,0.0871323,-9.052088,-4.721272,0,990.4652,-,-
-194.5,677.494570910931,12.8000000953674,12.8000000953674,0,-1.366027,685.5905,-65.76057,-65.76057,1499.828,-148.4279,-4.721272,107.6799,-10.65637,-4.721272,0,0,1,0,0,0,0,0,4.243683,0.0871323,-9.052088,-4.721272,0,990.4652,-,-
-195.5,681.050126492977,12.8000000953674,12.8000000953674,0,-1.242272,685.5905,-54.33902,-54.33902,1499.828,-148.4279,-3.901263,107.6799,-10.65637,-3.901263,0,0,1,0,0,0,0,0,4.243752,0.0871323,-8.232147,-3.901263,0,1103.06,-,-
-196.5,684.605682075024,12.8000000953674,12.8000000953674,0,-1.242272,685.5905,-54.33902,-54.33902,1499.828,-148.4279,-3.901263,107.6799,-10.65637,-3.901263,0,0,1,0,0,0,0,0,4.243752,0.0871323,-8.232147,-3.901263,0,1103.06,-,-
-197.5,688.16123765707,12.8000000953674,12.8000000953674,0,-1.180394,685.5905,-48.62807,-48.62807,1499.828,-148.4279,-3.491246,107.6799,-10.65637,-3.491246,0,0,1,0,0,0,0,0,4.243783,0.0871323,-7.822162,-3.491246,0,1159.359,-,-
-198.5,691.716793239117,12.8000000953674,12.8000000953674,0,-1.118516,685.5905,-42.91702,-42.91702,1499.828,-148.4279,-3.081222,107.6799,-10.65637,-3.081222,0,0,1,0,0,0,0,0,4.243814,0.0871323,-7.412168,-3.081222,0,1215.659,-,-
-199.5,695.272348821163,12.8000000953674,12.8000000953674,0,-1.118516,685.5905,-42.91702,-42.91702,1499.828,-148.4279,-3.081222,107.6799,-10.65637,-3.081222,0,0,1,0,0,0,0,0,4.243814,0.0871323,-7.412168,-3.081222,0,1215.659,-,-
-200.5,698.82790440321,12.8000000953674,12.8000000953674,0,-1.056639,685.5905,-37.20586,-37.20586,1499.828,-148.4279,-2.67119,107.6799,-10.65637,-2.67119,0,0,1,0,0,0,0,0,4.243842,0.0871323,-7.002164,-2.67119,0,1271.961,-,-
-201.5,702.383459985256,12.8000000953674,12.8000000953674,0,-0.994761,685.5905,-31.49462,-31.49462,1499.828,-148.4279,-2.261152,107.6799,-10.65637,-2.261152,0,0,1,0,0,0,0,0,4.243869,0.0871323,-6.592154,-2.261152,0,1328.263,-,-
-202.5,705.939015567303,12.8000000953674,12.8000000953674,0,-0.994761,685.5905,-31.49462,-31.49462,1499.828,-148.4279,-2.261152,107.6799,-10.65637,-2.261152,0,0,1,0,0,0,0,0,4.243869,0.0871323,-6.592154,-2.261152,0,1328.263,-,-
-203.5,709.494571149349,12.8000000953674,12.8000000953674,0,-0.8710058,685.5905,-20.0719,-20.0719,1499.828,-148.4279,-1.44106,107.6799,-10.65637,-1.44106,0,0,1,0,0,0,0,0,4.243918,0.0871323,-5.77211,-1.44106,0,1440.869,-,-
-204.5,713.050126731396,12.8000000953674,12.8000000953674,0,-0.8710058,685.5905,-20.0719,-20.0719,1499.828,-148.4279,-1.44106,107.6799,-10.65637,-1.44106,0,0,1,0,0,0,0,0,4.243918,0.0871323,-5.77211,-1.44106,0,1440.869,-,-
-205.5,716.605682313442,12.8000000953674,12.8000000953674,0,-0.8710058,685.5905,-20.0719,-20.0719,1499.828,-148.4279,-1.44106,107.6799,-10.65637,-1.44106,0,0,1,0,0,0,0,0,4.243918,0.0871323,-5.77211,-1.44106,0,1440.869,-,-
-206.5,720.161237895489,12.8000000953674,12.8000000953674,0,-0.7472504,685.5905,-8.648896,-8.648896,1499.828,-148.4279,-0.6209464,107.6799,-10.65637,-0.6209464,0,0,1,0,0,0,0,0,4.243961,0.0871323,-4.95204,-0.6209464,0,1553.478,-,-
-207.5,723.716793477535,12.8000000953674,12.8000000953674,0,-0.7472504,685.5905,-8.648896,-8.648896,1499.828,-148.4279,-0.6209464,107.6799,-10.65637,-0.6209464,0,0,1,0,0,0,0,0,4.243961,0.0871323,-4.95204,-0.6209464,0,1553.478,-,-
-208.5,727.272349059582,12.8000000953674,12.8000000953674,0,-0.7472504,685.5905,-8.648896,-8.648896,1499.828,-148.4279,-0.6209464,107.6799,-10.65637,-0.6209464,0,0,1,0,0,0,0,0,4.243961,0.0871323,-4.95204,-0.6209464,0,1553.478,-,-
-209.5,730.827904641628,12.8000000953674,12.8000000953674,0,-0.6234951,685.5905,2.774328,2.774328,1499.828,-148.4279,0.1991825,107.6799,-10.65637,0.1991825,0,0,1,0,0,0,0,0,4.243997,0.0871323,-4.131947,0.1991825,0,1665.082,-,-
-210.5,734.383460223675,12.8000000953674,12.8000000953674,0,-0.6234951,685.5905,2.774328,2.774328,1499.828,-148.4279,0.1991825,107.6799,-10.65637,0.1991825,0,0,1,0,0,0,0,0,4.243997,0.0871323,-4.131947,0.1991825,0,1665.082,-,-
-211.5,737.939015805721,12.8000000953674,12.8000000953674,0,-0.6234951,685.5905,2.774328,2.774328,1499.828,-148.4279,0.1991825,107.6799,-10.65637,0.1991825,0,0,1,0,0,0,0,0,4.243997,0.0871323,-4.131947,0.1991825,0,1665.082,-,-
-212.5,741.494571387768,12.8000000953674,12.8000000953674,0,-0.4997399,685.5905,14.19773,14.19773,1499.828,-148.4279,1.019324,107.6799,-10.65637,1.019324,0,0,1,0,0,0,0,0,4.244026,0.0871323,-3.311835,1.019324,0,1773.547,-,-
-213.5,745.050126969814,12.8000000953674,12.8000000953674,0,-0.4997399,685.5905,14.19773,14.19773,1499.828,-148.4279,1.019324,107.6799,-10.65637,1.019324,0,0,1,0,0,0,0,0,4.244026,0.0871323,-3.311835,1.019324,0,1773.547,-,-
-214.5,748.605682551861,12.8000000953674,12.8000000953674,0,-0.4378622,685.5905,19.90947,19.90947,1499.828,-148.4279,1.429398,107.6799,-10.65637,1.429398,0,0,1,0,0,0,0,0,4.244039,0.0871323,-2.901773,1.429398,0,1827.781,-,-
-215.5,752.161238133907,12.8000000953674,12.8000000953674,0,-0.3759846,685.5905,25.62125,25.62125,1499.828,-148.4279,1.839474,107.6799,-10.65637,1.839474,0,0,1,0,0,0,0,0,4.244049,0.0871323,-2.491707,1.839474,0,1882.014,-,-
-216.5,755.716793715954,12.8000000953674,12.8000000953674,0,-0.3759846,685.5905,25.62125,25.62125,1499.828,-148.4279,1.839474,107.6799,-10.65637,1.839474,0,0,1,0,0,0,0,0,4.244049,0.0871323,-2.491707,1.839474,0,1882.014,-,-
-217.5,759.272349298,12.8000000953674,12.8000000953674,0,-0.2522293,685.5905,37.04484,37.04484,1499.828,-148.4279,2.659629,107.6799,-10.65637,2.659629,0,0,1,0,0,0,0,0,4.244066,0.0871323,-1.671569,2.659629,0,1990.481,-,-
-218.5,762.827904880047,12.8000000953674,12.8000000953674,0,-0.2522293,685.5905,37.04484,37.04484,1499.828,-148.4279,2.659629,107.6799,-10.65637,2.659629,0,0,1,0,0,0,0,0,4.244066,0.0871323,-1.671569,2.659629,0,1990.481,-,-
-219.5,766.383460462093,12.8000000953674,12.8000000953674,0,-0.2522293,685.5905,37.04484,37.04484,1499.828,-148.4279,2.659629,107.6799,-10.65637,2.659629,0,0,1,0,0,0,0,0,4.244066,0.0871323,-1.671569,2.659629,0,1990.481,-,-
-220.5,769.93901604414,12.8000000953674,12.8000000953674,0,-0.128474,685.5905,48.46844,48.46844,1499.828,-148.4279,3.479786,107.6799,-10.65637,3.479786,0,0,1,0,0,0,0,0,4.244076,0.0871323,-0.8514225,3.479786,0,2098.948,-,-
-221.5,773.494571626186,12.8000000953674,12.8000000953674,0,-0.128474,685.5905,48.46844,48.46844,1499.828,-148.4279,3.479786,107.6799,-10.65637,3.479786,0,0,1,0,0,0,0,0,4.244076,0.0871323,-0.8514225,3.479786,0,2098.948,-,-
-222.5,777.050127208233,12.8000000953674,12.8000000953674,0,-0.128474,685.5905,48.46844,48.46844,1499.828,-148.4279,3.479786,107.6799,-10.65637,3.479786,0,0,1,0,0,0,0,0,4.244076,0.0871323,-0.8514225,3.479786,0,2098.948,-,-
-223.5,780.605682790279,12.8000000953674,12.8000000953674,0,-0.00472,685.5905,59.8919,59.8919,1499.828,-148.4279,4.299931,107.6799,-10.65637,4.299931,0,0,1,0,0,0,0,0,4.244079,0.0871323,-0.03128038,4.299931,0,2207.414,-,-
-224.5,784.161238372326,12.8000000953674,12.8000000953674,0,-0.00472,685.5905,59.8919,59.8919,1499.828,-148.4279,4.299931,107.6799,-10.65637,4.299931,0,0,1,0,0,0,0,0,4.244079,0.0871323,-0.03128038,4.299931,0,2207.414,-,-
-225.5,787.716793954372,12.8000000953674,12.8000000953674,0,-0.00472,685.5905,59.8919,59.8919,1499.828,-148.4279,4.299931,107.6799,-10.65637,4.299931,0,0,1,0,0,0,0,0,4.244079,0.0871323,-0.03128038,4.299931,0,2207.414,-,-
-226.5,791.272349536419,12.8000000953674,12.8000000953674,0,0.1190365,685.5905,71.31549,71.31549,1499.828,-148.4279,5.120087,107.6799,-10.65637,5.120087,0,0,1,0,0,0,0,0,4.244076,0.0871323,0.7888781,5.120087,0,2315.881,-,-
-227.5,794.827905118465,12.8000000953674,12.8000000953674,0,0.1190365,685.5905,71.31549,71.31549,1499.828,-148.4279,5.120087,107.6799,-10.65637,5.120087,0,0,1,0,0,0,0,0,4.244076,0.0871323,0.7888781,5.120087,0,2315.881,-,-
-228.5,798.383460700512,12.8000000953674,12.8000000953674,0,0.1809141,685.5905,77.02719,77.02719,1499.828,-148.4279,5.530157,107.6799,-10.65637,5.530157,0,0,1,0,0,0,0,0,4.244072,0.0871323,1.198952,5.530157,0,2370.113,-,-
-229.5,801.939016282558,12.8000000953674,12.8000000953674,0,0.2427918,685.5905,82.73884,82.73884,1499.828,-148.4279,5.940224,107.6799,-10.65637,5.940224,0,0,1,0,0,0,0,0,4.244067,0.0871323,1.609025,5.940224,0,2424.345,-,-
-230.5,805.494571864605,12.8000000953674,12.8000000953674,0,0.2427918,685.5905,82.73884,82.73884,1499.828,-148.4279,5.940224,107.6799,-10.65637,5.940224,0,0,1,0,0,0,0,0,4.244067,0.0871323,1.609025,5.940224,0,2424.345,-,-
-231.5,809.050127446651,12.8000000953674,12.8000000953674,0,0.366547,685.5905,94.16198,94.16198,1499.828,-148.4279,6.760347,107.6799,-10.65637,6.760347,0,0,1,0,0,0,0,0,4.244051,0.0871323,2.429164,6.760347,0,2532.808,-,-
-232.5,812.605683028698,12.8000000953674,12.8000000953674,0,0.366547,685.5905,94.16198,94.16198,1499.828,-148.4279,6.760347,107.6799,-10.65637,6.760347,0,0,1,0,0,0,0,0,4.244051,0.0871323,2.429164,6.760347,0,2532.808,-,-
-233.5,816.161238610744,12.8000000953674,12.8000000953674,0,0.366547,685.5905,94.16198,94.16198,1499.828,-148.4279,6.760347,107.6799,-10.65637,6.760347,0,0,1,0,0,0,0,0,4.244051,0.0871323,2.429164,6.760347,0,2532.808,-,-
-234.5,819.716794192791,12.8000000953674,12.8000000953674,0,0.5085732,685.5905,107.2713,107.2713,1499.828,-148.4279,7.70153,107.6799,-10.65637,7.70153,0,0,1,0,0,0,0,0,4.244024,0.0871323,3.370373,7.70153,0,2657.281,-,-
-235.5,823.272349774837,12.8000000953674,12.8000000953674,0,0.5085732,685.5905,107.2713,107.2713,1499.828,-148.4279,7.70153,107.6799,-10.65637,7.70153,0,0,1,0,0,0,0,0,4.244024,0.0871323,3.370373,7.70153,0,2657.281,-,-
-236.5,826.827905356884,12.8000000953674,12.8000000953674,0,0.5085732,685.5905,107.2713,107.2713,1499.828,-148.4279,7.70153,107.6799,-10.65637,7.70153,0,0,1,0,0,0,0,0,4.244024,0.0871323,3.370373,7.70153,0,2657.281,-,-
-237.5,830.383460938931,12.8000000953674,12.8000000953674,0,0.815037,685.5905,135.5571,135.5571,1499.828,-148.4279,9.732306,107.6799,-10.65637,9.732306,0,0,1,0,0,0,0,0,4.243938,0.0871323,5.401234,9.732306,0,2979.57,-,-
-238.5,833.939016520977,12.8000000953674,12.8000000953674,0,0.815037,685.5905,135.5571,135.5571,1499.828,-148.4279,9.732306,107.6799,-10.65637,9.732306,0,0,1,0,0,0,0,0,4.243938,0.0871323,5.401234,9.732306,0,2979.57,-,-
-239.5,837.494572103024,12.8000000953674,12.8000000953674,0,0.815037,685.5905,135.5571,135.5571,1499.828,-148.4279,9.732306,107.6799,-10.65637,9.732306,0,0,1,0,0,0,0,0,4.243938,0.0871323,5.401234,9.732306,0,2979.57,-,-
-240.5,841.05012768507,12.8000000953674,12.8000000953674,0,1.121501,685.5905,163.8402,163.8402,1499.828,-148.4279,11.76289,107.6799,-10.65637,11.76289,0,0,1,0,0,0,0,0,4.243812,0.0871323,7.431942,11.76289,0,3319.957,-,-
-241.5,844.605683267117,12.8000000953674,12.8000000953674,0,1.121501,685.5905,163.8402,163.8402,1499.828,-148.4279,11.76289,107.6799,-10.65637,11.76289,0,0,1,0,0,0,0,0,4.243812,0.0871323,7.431942,11.76289,0,3319.957,-,-
-242.5,848.161238849163,12.8000000953674,12.8000000953674,0,1.274733,685.5905,177.9805,177.9805,1499.828,-148.4279,12.77809,107.6799,-10.65637,12.77809,0,0,1,0,0,0,0,0,4.243734,0.0871323,8.447223,12.77809,0,3490.136,-,-
-243.5,851.71679443121,12.8000000953674,12.8000000953674,0,1.427965,685.5905,192.1199,192.1199,1499.828,-148.4279,13.79322,107.6799,-10.65637,13.79322,0,0,1,0,0,0,0,0,4.243647,0.0871323,9.462443,13.79322,0,3660.303,-,-
-244.5,855.272350013256,12.8000000953674,12.8000000953674,0,1.427965,685.5905,192.1199,192.1199,1499.828,-148.4279,13.79322,107.6799,-10.65637,13.79322,0,0,1,0,0,0,0,0,4.243647,0.0871323,9.462443,13.79322,0,3660.303,-,-
-245.5,858.827905595303,12.8000000953674,12.8000000953674,0,1.581197,685.5905,206.2581,206.2581,1499.828,-148.4279,14.80828,107.6799,-10.65637,14.80828,0,0,1,0,0,0,0,0,4.243549,0.0871323,10.4776,14.80828,0,3822.102,-,-
-246.5,862.383461177349,12.8000000953674,12.8000000953674,0,1.734429,685.5905,220.3953,220.3953,1499.828,-148.4279,15.82325,107.6799,-10.65637,15.82325,0,0,1,0,0,0,0,0,4.243441,0.0871323,11.49268,15.82325,0,3973.369,-,-
-247.5,865.939016759396,12.8000000953674,12.8000000953674,0,1.734429,685.5905,220.3953,220.3953,1499.828,-148.4279,15.82325,107.6799,-10.65637,15.82325,0,0,1,0,0,0,0,0,4.243441,0.0871323,11.49268,15.82325,0,3973.369,-,-
-248.5,869.494572341442,12.8000000953674,12.8000000953674,0,1.954264,685.5905,240.6749,240.6749,1499.828,-148.4279,17.27922,107.6799,-10.65637,17.27922,0,0,1,0,0,0,0,0,4.243269,0.0871323,12.94882,17.27922,0,4190.361,-,-
-249.5,873.050127923489,12.8000000953674,12.8000000953674,0,1.954264,685.5905,240.6749,240.6749,1499.828,-148.4279,17.27922,107.6799,-10.65637,17.27922,0,0,1,0,0,0,0,0,4.243269,0.0871323,12.94882,17.27922,0,4190.361,-,-
-250.5,876.605683505535,12.8000000953674,12.8000000953674,0,1.954264,685.5905,240.6749,240.6749,1499.828,-148.4279,17.27922,107.6799,-10.65637,17.27922,0,0,1,0,0,0,0,0,4.243269,0.0871323,12.94882,17.27922,0,4190.361,-,-
-251.5,880.161239087582,12.8000000953674,12.8000000953674,0,2.136972,685.5905,257.5275,257.5275,1499.828,-148.4279,18.48915,107.6799,-10.65637,18.48915,0,0,1,0,0,0,0,0,4.243111,0.0871323,14.15891,18.48915,0,4370.684,-,-
-252.5,883.716794669628,12.8000000953674,12.8000000953674,0,2.136972,685.5905,257.5275,257.5275,1499.828,-148.4279,18.48915,107.6799,-10.65637,18.48915,0,0,1,0,0,0,0,0,4.243111,0.0871323,14.15891,18.48915,0,4370.684,-,-
-253.5,887.272350251675,12.8000000953674,12.8000000953674,0,2.136972,685.5905,257.5275,257.5275,1499.828,-148.4279,18.48915,107.6799,-10.65637,18.48915,0,0,1,0,0,0,0,0,4.243111,0.0871323,14.15891,18.48915,0,4370.684,-,-
-254.5,890.827905833721,12.8000000953674,12.8000000953674,0,2.319681,685.5905,274.3779,274.3779,1499.828,-148.4279,19.69892,107.6799,-10.65637,19.69892,0,0,1,0,0,0,0,0,4.242938,0.0871323,15.36885,19.69892,0,4550.983,-,-
-255.5,894.383461415768,12.8000000953674,12.8000000953674,0,2.319681,685.5905,274.3779,274.3779,1499.828,-148.4279,19.69892,107.6799,-10.65637,19.69892,0,0,1,0,0,0,0,0,4.242938,0.0871323,15.36885,19.69892,0,4550.983,-,-
-256.5,897.939016997814,12.8000000953674,12.8000000953674,0,2.319681,685.5905,274.3779,274.3779,1499.828,-148.4279,19.69892,107.6799,-10.65637,19.69892,0,0,1,0,0,0,0,0,4.242938,0.0871323,15.36885,19.69892,0,4550.983,-,-
-257.5,901.494572579861,12.8000000953674,12.8000000953674,0,2.502389,685.5905,291.2259,291.2259,1499.828,-148.4279,20.90853,107.6799,-10.65637,20.90853,0,0,1,0,0,0,0,0,4.242751,0.0871323,16.57864,20.90853,0,4731.257,-,-
-258.5,905.050128161907,12.8000000953674,12.8000000953674,0,2.502389,685.5905,291.2259,291.2259,1499.828,-148.4279,20.90853,107.6799,-10.65637,20.90853,0,0,1,0,0,0,0,0,4.242751,0.0871323,16.57864,20.90853,0,4731.257,-,-
-259.5,908.605683743954,12.8000000953674,12.8000000953674,0,2.502389,685.5905,291.2259,291.2259,1499.828,-148.4279,20.90853,107.6799,-10.65637,20.90853,0,0,1,0,0,0,0,0,4.242751,0.0871323,16.57864,20.90853,0,4731.257,-,-
-260.5,912.161239326,12.8000000953674,12.8000000953674,0,2.502389,685.5905,291.2259,291.2259,1499.828,-148.4279,20.90853,107.6799,-10.65637,20.90853,0,0,1,0,0,0,0,0,4.242751,0.0871323,16.57864,20.90853,0,4731.257,-,-
-261.5,915.716794908047,12.8000000953674,12.8000000953674,0,2.502389,685.5905,291.2259,291.2259,1499.828,-148.4279,20.90853,107.6799,-10.65637,20.90853,0,0,1,0,0,0,0,0,4.242751,0.0871323,16.57864,20.90853,0,4731.257,-,-
-262.5,919.272350490093,12.8000000953674,12.8000000953674,0,2.502389,685.5905,291.2259,291.2259,1499.828,-148.4279,20.90853,107.6799,-10.65637,20.90853,0,0,1,0,0,0,0,0,4.242751,0.0871323,16.57864,20.90853,0,4731.257,-,-
-263.5,922.82790607214,12.8000000953674,12.8000000953674,0,2.502389,685.5905,291.2259,291.2259,1499.828,-148.4279,20.90853,107.6799,-10.65637,20.90853,0,0,1,0,0,0,0,0,4.242751,0.0871323,16.57864,20.90853,0,4731.257,-,-
-264.5,926.383461654186,12.8000000953674,12.8000000953674,0,2.502389,685.5905,291.2259,291.2259,1499.828,-148.4279,20.90853,107.6799,-10.65637,20.90853,0,0,1,0,0,0,0,0,4.242751,0.0871323,16.57864,20.90853,0,4731.257,-,-
-265.5,929.939017236233,12.8000000953674,12.8000000953674,0,2.629364,685.5905,302.9331,302.9331,1499.828,-148.4279,21.74905,107.6799,-10.65637,21.74905,0,0,1,0,0,0,0,0,4.242613,0.0871323,17.4193,21.74905,0,4856.524,-,-
-266.5,933.494572818279,12.8000000953674,12.8000000953674,0,2.629364,685.5905,302.9331,302.9331,1499.828,-148.4279,21.74905,107.6799,-10.65637,21.74905,0,0,1,0,0,0,0,0,4.242613,0.0871323,17.4193,21.74905,0,4856.524,-,-
-267.5,937.050128400326,12.8000000953674,12.8000000953674,0,2.629364,685.5905,302.9331,302.9331,1499.828,-148.4279,21.74905,107.6799,-10.65637,21.74905,0,0,1,0,0,0,0,0,4.242613,0.0871323,17.4193,21.74905,0,4856.524,-,-
-268.5,940.605683982372,12.8000000953674,12.8000000953674,0,2.629364,685.5905,302.9331,302.9331,1499.828,-148.4279,21.74905,107.6799,-10.65637,21.74905,0,0,1,0,0,0,0,0,4.242613,0.0871323,17.4193,21.74905,0,4856.524,-,-
-269.5,944.161239564419,12.8000000953674,12.8000000953674,0,2.629364,685.5905,302.9331,302.9331,1499.828,-148.4279,21.74905,107.6799,-10.65637,21.74905,0,0,1,0,0,0,0,0,4.242613,0.0871323,17.4193,21.74905,0,4856.524,-,-
-270.5,947.716795146465,12.8000000953674,12.8000000953674,0,2.629364,685.5905,302.9331,302.9331,1499.828,-148.4279,21.74905,107.6799,-10.65637,21.74905,0,0,1,0,0,0,0,0,4.242613,0.0871323,17.4193,21.74905,0,4856.524,-,-
-271.5,951.272350728512,12.8000000953674,12.8000000953674,0,2.629364,685.5905,302.9331,302.9331,1499.828,-148.4279,21.74905,107.6799,-10.65637,21.74905,0,0,1,0,0,0,0,0,4.242613,0.0871323,17.4193,21.74905,0,4856.524,-,-
-272.5,954.827906310558,12.8000000953674,12.8000000953674,0,2.629364,685.5905,302.9331,302.9331,1499.828,-148.4279,21.74905,107.6799,-10.65637,21.74905,0,0,1,0,0,0,0,0,4.242613,0.0871323,17.4193,21.74905,0,4856.524,-,-
-273.5,958.383461892605,12.8000000953674,12.8000000953674,0,2.629364,685.5905,302.9331,302.9331,1499.828,-148.4279,21.74905,107.6799,-10.65637,21.74905,0,0,1,0,0,0,0,0,4.242613,0.0871323,17.4193,21.74905,0,4856.524,-,-
-274.5,961.939017474651,12.8000000953674,12.8000000953674,0,2.629364,685.5905,302.9331,302.9331,1499.828,-148.4279,21.74905,107.6799,-10.65637,21.74905,0,0,1,0,0,0,0,0,4.242613,0.0871323,17.4193,21.74905,0,4856.524,-,-
-275.5,965.494573056698,12.8000000953674,12.8000000953674,0,2.629364,685.5905,302.9331,302.9331,1499.828,-148.4279,21.74905,107.6799,-10.65637,21.74905,0,0,1,0,0,0,0,0,4.242613,0.0871323,17.4193,21.74905,0,4856.524,-,-
-276.5,969.050128638744,12.8000000953674,12.8000000953674,0,2.758554,685.5905,314.8433,314.8433,1499.828,-148.4279,22.60413,107.6799,-10.65637,22.60413,0,0,1,0,0,0,0,0,4.242465,0.0871323,18.27454,22.60413,0,4985.254,-,-
-277.5,972.605684220791,12.8000000953674,12.8000000953674,0,2.758554,685.5905,314.8433,314.8433,1499.828,-148.4279,22.60413,107.6799,-10.65637,22.60413,0,0,1,0,0,0,0,0,4.242465,0.0871323,18.27454,22.60413,0,4985.254,-,-
-278.5,976.161239802837,12.8000000953674,12.8000000953674,0,2.758554,685.5905,314.8433,314.8433,1499.828,-148.4279,22.60413,107.6799,-10.65637,22.60413,0,0,1,0,0,0,0,0,4.242465,0.0871323,18.27454,22.60413,0,4985.254,-,-
-279.5,979.716795384884,12.8000000953674,12.8000000953674,0,2.758554,685.5905,314.8433,314.8433,1499.828,-148.4279,22.60413,107.6799,-10.65637,22.60413,0,0,1,0,0,0,0,0,4.242465,0.0871323,18.27454,22.60413,0,4985.254,-,-
-280.5,983.27235096693,12.8000000953674,12.8000000953674,0,2.758554,685.5905,314.8433,314.8433,1499.828,-148.4279,22.60413,107.6799,-10.65637,22.60413,0,0,1,0,0,0,0,0,4.242465,0.0871323,18.27454,22.60413,0,4985.254,-,-
-281.5,986.827906548977,12.8000000953674,12.8000000953674,0,2.758554,685.5905,314.8433,314.8433,1499.828,-148.4279,22.60413,107.6799,-10.65637,22.60413,0,0,1,0,0,0,0,0,4.242465,0.0871323,18.27454,22.60413,0,4985.254,-,-
-282.5,990.383462131023,12.8000000953674,12.8000000953674,0,2.758554,685.5905,314.8433,314.8433,1499.828,-148.4279,22.60413,107.6799,-10.65637,22.60413,0,0,1,0,0,0,0,0,4.242465,0.0871323,18.27454,22.60413,0,4985.254,-,-
-283.5,993.833737552166,12.4209915161133,12.8000000953674,-0.2105604,2.758554,665.2902,103.435,111.6318,1448.163,-148.3264,7.206215,100.8921,-10.33376,7.777279,-0.5710639,0,1,0,0,0,0,-14.15261,4.116846,0.07961924,17.73343,7.777279,0,2578.225,-,-
-284.5,996.895124137402,11.0209917068481,11.3999994277954,-0.5672174,2.758554,590.3037,-148.2424,-116.5254,1257.274,-148.2424,-9.16382,77.72025,-9.16382,-7.203188,-1.960632,0,1,0,0,0,0,-33.82781,3.652826,0.05561748,15.73465,-14.38472,-7.181529,5.144977E-05,-,-
-285.5,999.672901809216,9.99999961853027,9.99999961853027,0,2.758554,593.1891,285.0042,283.8594,1264.632,-148.1703,17.70406,78.55721,-9.204132,17.63295,0.07111025,0,1,0,0,0,0,0,3.314426,0.04154791,14.27698,17.63295,0,4232.979,-,-
-286.5,1002.45067948103,9.99999961853027,9.99999961853027,0,2.758554,593.1891,283.8594,283.8594,1264.632,-148.1703,17.63295,78.55721,-9.204132,17.63295,0,0,1,0,0,0,0,0,3.314426,0.04154791,14.27698,17.63295,0,4220.73,-,-
-287.5,1005.22845715284,9.99999961853027,9.99999961853027,0,2.758554,593.1891,283.8594,283.8594,1264.632,-148.1703,17.63295,78.55721,-9.204132,17.63295,0,0,1,0,0,0,0,0,3.314426,0.04154791,14.27698,17.63295,0,4220.73,-,-
-288.5,1008.00623482466,9.99999961853027,9.99999961853027,0,2.823149,593.1891,289.2361,289.2361,1264.632,-148.1703,17.96695,78.55721,-9.204132,17.96695,0,0,1,0,0,0,0,0,3.314366,0.04154791,14.61103,17.96695,0,4278.261,-,-
-289.5,1010.78401249647,9.99999961853027,9.99999961853027,0,2.887744,593.1891,294.6124,294.6124,1264.632,-148.1703,18.30091,78.55721,-9.204132,18.30091,0,0,1,0,0,0,0,0,3.314305,0.04154791,14.94506,18.30091,0,4335.787,-,-
-290.5,1013.56179016829,9.99999961853027,9.99999961853027,0,2.887744,593.1891,294.6124,294.6124,1264.632,-148.1703,18.30091,78.55721,-9.204132,18.30091,0,0,1,0,0,0,0,0,3.314305,0.04154791,14.94506,18.30091,0,4335.787,-,-
-291.5,1016.3395678401,9.99999961853027,9.99999961853027,0,2.887744,593.1891,294.6124,294.6124,1264.632,-148.1703,18.30091,78.55721,-9.204132,18.30091,0,0,1,0,0,0,0,0,3.314305,0.04154791,14.94506,18.30091,0,4335.787,-,-
-292.5,1019.11734551191,9.99999961853027,9.99999961853027,0,2.887744,593.1891,294.6124,294.6124,1264.632,-148.1703,18.30091,78.55721,-9.204132,18.30091,0,0,1,0,0,0,0,0,3.314305,0.04154791,14.94506,18.30091,0,4335.787,-,-
-293.5,1021.89512318373,9.99999961853027,9.99999961853027,0,2.887744,593.1891,294.6124,294.6124,1264.632,-148.1703,18.30091,78.55721,-9.204132,18.30091,0,0,1,0,0,0,0,0,3.314305,0.04154791,14.94506,18.30091,0,4335.787,-,-
-294.5,1024.67290085554,9.99999961853027,9.99999961853027,0,2.887744,593.1891,294.6124,294.6124,1264.632,-148.1703,18.30091,78.55721,-9.204132,18.30091,0,0,1,0,0,0,0,0,3.314305,0.04154791,14.94506,18.30091,0,4335.787,-,-
-295.5,1027.45067852736,9.99999961853027,9.99999961853027,0,2.887744,593.1891,294.6124,294.6124,1264.632,-148.1703,18.30091,78.55721,-9.204132,18.30091,0,0,1,0,0,0,0,0,3.314305,0.04154791,14.94506,18.30091,0,4335.787,-,-
-296.5,1030.22845619917,9.99999961853027,9.99999961853027,0,2.733088,593.1891,281.7397,281.7397,1264.632,-148.1703,17.50128,78.55721,-9.204132,17.50128,0,0,1,0,0,0,0,0,3.314449,0.04154791,14.14528,17.50128,0,4198.049,-,-
-297.5,1033.00623387098,9.99999961853027,9.99999961853027,0,2.733088,593.1891,281.7397,281.7397,1264.632,-148.1703,17.50128,78.55721,-9.204132,17.50128,0,0,1,0,0,0,0,0,3.314449,0.04154791,14.14528,17.50128,0,4198.049,-,-
-298.5,1035.7840115428,9.99999961853027,9.99999961853027,0,2.733088,593.1891,281.7397,281.7397,1264.632,-148.1703,17.50128,78.55721,-9.204132,17.50128,0,0,1,0,0,0,0,0,3.314449,0.04154791,14.14528,17.50128,0,4198.049,-,-
-299.5,1038.56178921461,9.99999961853027,9.99999961853027,0,2.657883,593.1891,275.4794,275.4794,1264.632,-148.1703,17.1124,78.55721,-9.204132,17.1124,0,0,1,0,0,0,0,0,3.314516,0.04154791,13.75633,17.1124,0,4131.064,-,-
-300.5,1041.33956688643,9.99999961853027,9.99999961853027,0,2.582677,593.1891,269.2186,269.2186,1264.632,-148.1703,16.72348,78.55721,-9.204132,16.72348,0,0,1,0,0,0,0,0,3.314581,0.04154791,13.36735,16.72348,0,4064.073,-,-
-301.5,1044.11734455824,9.99999961853027,9.99999961853027,0,2.582677,593.1891,269.2186,269.2186,1264.632,-148.1703,16.72348,78.55721,-9.204132,16.72348,0,0,1,0,0,0,0,0,3.314581,0.04154791,13.36735,16.72348,0,4064.073,-,-
-302.5,1046.89512223005,9.99999961853027,9.99999961853027,0,2.582677,593.1891,269.2186,269.2186,1264.632,-148.1703,16.72348,78.55721,-9.204132,16.72348,0,0,1,0,0,0,0,0,3.314581,0.04154791,13.36735,16.72348,0,4064.073,-,-
-303.5,1049.67289990187,9.99999961853027,9.99999961853027,0,2.432266,593.1891,256.6958,256.6958,1264.632,-148.1703,15.94559,78.55721,-9.204132,15.94559,0,0,1,0,0,0,0,0,3.314706,0.04154791,12.58934,15.94559,0,3930.08,-,-
-304.5,1052.45067757368,9.99999961853027,9.99999961853027,0,2.432266,593.1891,256.6958,256.6958,1264.632,-148.1703,15.94559,78.55721,-9.204132,15.94559,0,0,1,0,0,0,0,0,3.314706,0.04154791,12.58934,15.94559,0,3930.08,-,-
-305.5,1055.22845524549,9.99999961853027,9.99999961853027,0,2.432266,593.1891,256.6958,256.6958,1264.632,-148.1703,15.94559,78.55721,-9.204132,15.94559,0,0,1,0,0,0,0,0,3.314706,0.04154791,12.58934,15.94559,0,3930.08,-,-
-306.5,1058.00623291731,9.99999961853027,9.99999961853027,0,2.357061,593.1891,250.4339,250.4339,1264.632,-148.1703,15.55661,78.55721,-9.204132,15.55661,0,0,1,0,0,0,0,0,3.314766,0.04154791,12.20029,15.55661,0,3863.077,-,-
-307.5,1060.78401058912,9.99999961853027,9.99999961853027,0,2.281855,593.1891,244.1716,244.1716,1264.632,-148.1703,15.1676,78.55721,-9.204132,15.1676,0,0,1,0,0,0,0,0,3.314824,0.04154791,11.81123,15.1676,0,3796.071,-,-
-308.5,1063.56178826094,9.99999961853027,9.99999961853027,0,2.281855,593.1891,244.1716,244.1716,1264.632,-148.1703,15.1676,78.55721,-9.204132,15.1676,0,0,1,0,0,0,0,0,3.314824,0.04154791,11.81123,15.1676,0,3796.071,-,-
-309.5,1066.33956593275,9.99999961853027,9.99999961853027,0,2.281855,593.1891,244.1716,244.1716,1264.632,-148.1703,15.1676,78.55721,-9.204132,15.1676,0,0,1,0,0,0,0,0,3.314824,0.04154791,11.81123,15.1676,0,3796.071,-,-
-310.5,1069.11734360456,9.99999961853027,9.99999961853027,0,2.131444,593.1891,231.646,231.646,1264.632,-148.1703,14.38953,78.55721,-9.204132,14.38953,0,0,1,0,0,0,0,0,3.314934,0.04154791,11.03305,14.38953,0,3662.552,-,-
-311.5,1071.89512127638,9.99999961853027,9.99999961853027,0,2.131444,593.1891,231.646,231.646,1264.632,-148.1703,14.38953,78.55721,-9.204132,14.38953,0,0,1,0,0,0,0,0,3.314934,0.04154791,11.03305,14.38953,0,3662.552,-,-
-312.5,1074.67289894819,9.99999961853027,9.99999961853027,0,2.131444,593.1891,231.646,231.646,1264.632,-148.1703,14.38953,78.55721,-9.204132,14.38953,0,0,1,0,0,0,0,0,3.314934,0.04154791,11.03305,14.38953,0,3662.552,-,-
-313.5,1077.45067662001,9.99999961853027,9.99999961853027,0,2.131444,593.1891,231.646,231.646,1264.632,-148.1703,14.38953,78.55721,-9.204132,14.38953,0,0,1,0,0,0,0,0,3.314934,0.04154791,11.03305,14.38953,0,3662.552,-,-
-314.5,1080.22845429182,9.99999961853027,9.99999961853027,0,1.981033,593.1891,219.119,219.119,1264.632,-148.1703,13.61137,78.55721,-9.204132,13.61137,0,0,1,0,0,0,0,0,3.315036,0.04154791,10.25479,13.61137,0,3531.145,-,-
-315.5,1083.00623196363,9.99999961853027,9.99999961853027,0,1.981033,593.1891,219.119,219.119,1264.632,-148.1703,13.61137,78.55721,-9.204132,13.61137,0,0,1,0,0,0,0,0,3.315036,0.04154791,10.25479,13.61137,0,3531.145,-,-
-316.5,1085.78400963545,9.99999961853027,9.99999961853027,0,1.981033,593.1891,219.119,219.119,1264.632,-148.1703,13.61137,78.55721,-9.204132,13.61137,0,0,1,0,0,0,0,0,3.315036,0.04154791,10.25479,13.61137,0,3531.145,-,-
-317.5,1088.56178730726,9.99999961853027,9.99999961853027,0,1.905828,593.1891,212.8551,212.8551,1264.632,-148.1703,13.22226,78.55721,-9.204132,13.22226,0,0,1,0,0,0,0,0,3.315085,0.04154791,9.865631,13.22226,0,3465.436,-,-
-318.5,1091.33956497908,9.99999961853027,9.99999961853027,0,1.830622,593.1891,206.5909,206.5909,1264.632,-148.1703,12.83314,78.55721,-9.204132,12.83314,0,0,1,0,0,0,0,0,3.315131,0.04154791,9.476459,12.83314,0,3399.724,-,-
-319.5,1094.11734265089,9.99999961853027,9.99999961853027,0,1.830622,593.1891,206.5909,206.5909,1264.632,-148.1703,12.83314,78.55721,-9.204132,12.83314,0,0,1,0,0,0,0,0,3.315131,0.04154791,9.476459,12.83314,0,3399.724,-,-
-320.5,1096.8951203227,9.99999961853027,9.99999961853027,0,1.830622,593.1891,206.5909,206.5909,1264.632,-148.1703,12.83314,78.55721,-9.204132,12.83314,0,0,1,0,0,0,0,0,3.315131,0.04154791,9.476459,12.83314,0,3399.724,-,-
-321.5,1099.67289799452,9.99999961853027,9.99999961853027,0,1.680211,593.1891,194.0615,194.0615,1264.632,-148.1703,12.05483,78.55721,-9.204132,12.05483,0,0,1,0,0,0,0,0,3.315219,0.04154791,8.698066,12.05483,0,3274.2,-,-
-322.5,1102.45067566633,9.99999961853027,9.99999961853027,0,1.680211,593.1891,194.0615,194.0615,1264.632,-148.1703,12.05483,78.55721,-9.204132,12.05483,0,0,1,0,0,0,0,0,3.315219,0.04154791,8.698066,12.05483,0,3274.2,-,-
-323.5,1105.22845333815,9.99999961853027,9.99999961853027,0,1.680211,593.1891,194.0615,194.0615,1264.632,-148.1703,12.05483,78.55721,-9.204132,12.05483,0,0,1,0,0,0,0,0,3.315219,0.04154791,8.698066,12.05483,0,3274.2,-,-
-324.5,1108.00623100996,9.99999961853027,9.99999961853027,0,1.680211,593.1891,194.0615,194.0615,1264.632,-148.1703,12.05483,78.55721,-9.204132,12.05483,0,0,1,0,0,0,0,0,3.315219,0.04154791,8.698066,12.05483,0,3274.2,-,-
-325.5,1110.78400868177,9.99999961853027,9.99999961853027,0,1.680211,593.1891,194.0615,194.0615,1264.632,-148.1703,12.05483,78.55721,-9.204132,12.05483,0,0,1,0,0,0,0,0,3.315219,0.04154791,8.698066,12.05483,0,3274.2,-,-
-326.5,1113.56178635359,9.99999961853027,9.99999961853027,0,1.680211,593.1891,194.0615,194.0615,1264.632,-148.1703,12.05483,78.55721,-9.204132,12.05483,0,0,1,0,0,0,0,0,3.315219,0.04154791,8.698066,12.05483,0,3274.2,-,-
-327.5,1116.3395640254,9.99999961853027,9.99999961853027,0,1.680211,593.1891,194.0615,194.0615,1264.632,-148.1703,12.05483,78.55721,-9.204132,12.05483,0,0,1,0,0,0,0,0,3.315219,0.04154791,8.698066,12.05483,0,3274.2,-,-
-328.5,1119.11734169722,9.99999961853027,9.99999961853027,0,1.680211,593.1891,194.0615,194.0615,1264.632,-148.1703,12.05483,78.55721,-9.204132,12.05483,0,0,1,0,0,0,0,0,3.315219,0.04154791,8.698066,12.05483,0,3274.2,-,-
-329.5,1121.89511936903,9.99999961853027,9.99999961853027,0,1.680211,593.1891,194.0615,194.0615,1264.632,-148.1703,12.05483,78.55721,-9.204132,12.05483,0,0,1,0,0,0,0,0,3.315219,0.04154791,8.698066,12.05483,0,3274.2,-,-
-330.5,1124.67289704084,9.99999961853027,9.99999961853027,0,1.680211,593.1891,194.0615,194.0615,1264.632,-148.1703,12.05483,78.55721,-9.204132,12.05483,0,0,1,0,0,0,0,0,3.315219,0.04154791,8.698066,12.05483,0,3274.2,-,-
-331.5,1127.45067471266,9.99999961853027,9.99999961853027,0,1.680211,593.1891,194.0615,194.0615,1264.632,-148.1703,12.05483,78.55721,-9.204132,12.05483,0,0,1,0,0,0,0,0,3.315219,0.04154791,8.698066,12.05483,0,3274.2,-,-
-332.5,1130.22845238447,9.99999961853027,9.99999961853027,0,1.680211,593.1891,194.0615,194.0615,1264.632,-148.1703,12.05483,78.55721,-9.204132,12.05483,0,0,1,0,0,0,0,0,3.315219,0.04154791,8.698066,12.05483,0,3274.2,-,-
-333.5,1133.00623005629,9.99999961853027,9.99999961853027,0,1.680211,593.1891,194.0615,194.0615,1264.632,-148.1703,12.05483,78.55721,-9.204132,12.05483,0,0,1,0,0,0,0,0,3.315219,0.04154791,8.698066,12.05483,0,3274.2,-,-
-334.5,1135.7840077281,9.99999961853027,9.99999961853027,0,1.680211,593.1891,194.0615,194.0615,1264.632,-148.1703,12.05483,78.55721,-9.204132,12.05483,0,0,1,0,0,0,0,0,3.315219,0.04154791,8.698066,12.05483,0,3274.2,-,-
-335.5,1138.56178539991,9.99999961853027,9.99999961853027,0,1.680211,593.1891,194.0615,194.0615,1264.632,-148.1703,12.05483,78.55721,-9.204132,12.05483,0,0,1,0,0,0,0,0,3.315219,0.04154791,8.698066,12.05483,0,3274.2,-,-
-336.5,1141.33956307173,9.99999961853027,9.99999961853027,0,1.680211,593.1891,194.0615,194.0615,1264.632,-148.1703,12.05483,78.55721,-9.204132,12.05483,0,0,1,0,0,0,0,0,3.315219,0.04154791,8.698066,12.05483,0,3274.2,-,-
-337.5,1144.11734074354,9.99999961853027,9.99999961853027,0,1.680211,593.1891,194.0615,194.0615,1264.632,-148.1703,12.05483,78.55721,-9.204132,12.05483,0,0,1,0,0,0,0,0,3.315219,0.04154791,8.698066,12.05483,0,3274.2,-,-
-338.5,1146.89511841536,9.99999961853027,9.99999961853027,0,1.680211,593.1891,194.0615,194.0615,1264.632,-148.1703,12.05483,78.55721,-9.204132,12.05483,0,0,1,0,0,0,0,0,3.315219,0.04154791,8.698066,12.05483,0,3274.2,-,-
-339.5,1149.67289608717,9.99999961853027,9.99999961853027,0,1.680211,593.1891,194.0615,194.0615,1264.632,-148.1703,12.05483,78.55721,-9.204132,12.05483,0,0,1,0,0,0,0,0,3.315219,0.04154791,8.698066,12.05483,0,3274.2,-,-
-340.5,1152.45067375898,9.99999961853027,9.99999961853027,0,1.680211,593.1891,194.0615,194.0615,1264.632,-148.1703,12.05483,78.55721,-9.204132,12.05483,0,0,1,0,0,0,0,0,3.315219,0.04154791,8.698066,12.05483,0,3274.2,-,-
-341.5,1155.2284514308,9.99999961853027,9.99999961853027,0,1.680211,593.1891,194.0615,194.0615,1264.632,-148.1703,12.05483,78.55721,-9.204132,12.05483,0,0,1,0,0,0,0,0,3.315219,0.04154791,8.698066,12.05483,0,3274.2,-,-
-342.5,1158.00622910261,9.99999961853027,9.99999961853027,0,1.680211,593.1891,194.0615,194.0615,1264.632,-148.1703,12.05483,78.55721,-9.204132,12.05483,0,0,1,0,0,0,0,0,3.315219,0.04154791,8.698066,12.05483,0,3274.2,-,-
-343.5,1160.78400677443,9.99999961853027,9.99999961853027,0,1.680211,593.1891,194.0615,194.0615,1264.632,-148.1703,12.05483,78.55721,-9.204132,12.05483,0,0,1,0,0,0,0,0,3.315219,0.04154791,8.698066,12.05483,0,3274.2,-,-
-344.5,1163.56178444624,9.99999961853027,9.99999961853027,0,1.680211,593.1891,194.0615,194.0615,1264.632,-148.1703,12.05483,78.55721,-9.204132,12.05483,0,0,1,0,0,0,0,0,3.315219,0.04154791,8.698066,12.05483,0,3274.2,-,-
-345.5,1166.33956211805,9.99999961853027,9.99999961853027,0,1.680211,593.1891,194.0615,194.0615,1264.632,-148.1703,12.05483,78.55721,-9.204132,12.05483,0,0,1,0,0,0,0,0,3.315219,0.04154791,8.698066,12.05483,0,3274.2,-,-
-346.5,1169.11733978987,9.99999961853027,9.99999961853027,0,1.680211,593.1891,194.0615,194.0615,1264.632,-148.1703,12.05483,78.55721,-9.204132,12.05483,0,0,1,0,0,0,0,0,3.315219,0.04154791,8.698066,12.05483,0,3274.2,-,-
-347.5,1171.89511746168,9.99999961853027,9.99999961853027,0,1.680211,593.1891,194.0615,194.0615,1264.632,-148.1703,12.05483,78.55721,-9.204132,12.05483,0,0,1,0,0,0,0,0,3.315219,0.04154791,8.698066,12.05483,0,3274.2,-,-
-348.5,1174.6728951335,9.99999961853027,9.99999961853027,0,1.680211,593.1891,194.0615,194.0615,1264.632,-148.1703,12.05483,78.55721,-9.204132,12.05483,0,0,1,0,0,0,0,0,3.315219,0.04154791,8.698066,12.05483,0,3274.2,-,-
-349.5,1177.45067280531,9.99999961853027,9.99999961853027,0,1.680211,593.1891,194.0615,194.0615,1264.632,-148.1703,12.05483,78.55721,-9.204132,12.05483,0,0,1,0,0,0,0,0,3.315219,0.04154791,8.698066,12.05483,0,3274.2,-,-
-350.5,1180.22845047712,9.99999961853027,9.99999961853027,0,1.5579,593.1891,183.8721,183.8721,1264.632,-148.1703,11.42188,78.55721,-9.204132,11.42188,0,0,1,0,0,0,0,0,3.315284,0.04154791,8.065048,11.42188,0,3177.452,-,-
-351.5,1183.00622814894,9.99999961853027,9.99999961853027,0,1.5579,593.1891,183.8721,183.8721,1264.632,-148.1703,11.42188,78.55721,-9.204132,11.42188,0,0,1,0,0,0,0,0,3.315284,0.04154791,8.065048,11.42188,0,3177.452,-,-
-352.5,1185.78400582075,9.99999961853027,9.99999961853027,0,1.5579,593.1891,183.8721,183.8721,1264.632,-148.1703,11.42188,78.55721,-9.204132,11.42188,0,0,1,0,0,0,0,0,3.315284,0.04154791,8.065048,11.42188,0,3177.452,-,-
-353.5,1188.56178349257,9.99999961853027,9.99999961853027,0,1.5579,593.1891,183.8721,183.8721,1264.632,-148.1703,11.42188,78.55721,-9.204132,11.42188,0,0,1,0,0,0,0,0,3.315284,0.04154791,8.065048,11.42188,0,3177.452,-,-
-354.5,1191.33956116438,9.99999961853027,9.99999961853027,0,1.5579,593.1891,183.8721,183.8721,1264.632,-148.1703,11.42188,78.55721,-9.204132,11.42188,0,0,1,0,0,0,0,0,3.315284,0.04154791,8.065048,11.42188,0,3177.452,-,-
-355.5,1194.11733883619,9.99999961853027,9.99999961853027,0,1.5579,593.1891,183.8721,183.8721,1264.632,-148.1703,11.42188,78.55721,-9.204132,11.42188,0,0,1,0,0,0,0,0,3.315284,0.04154791,8.065048,11.42188,0,3177.452,-,-
-356.5,1196.89511650801,9.99999961853027,9.99999961853027,0,1.5579,593.1891,183.8721,183.8721,1264.632,-148.1703,11.42188,78.55721,-9.204132,11.42188,0,0,1,0,0,0,0,0,3.315284,0.04154791,8.065048,11.42188,0,3177.452,-,-
-357.5,1199.67289417982,9.99999961853027,9.99999961853027,0,1.5579,593.1891,183.8721,183.8721,1264.632,-148.1703,11.42188,78.55721,-9.204132,11.42188,0,0,1,0,0,0,0,0,3.315284,0.04154791,8.065048,11.42188,0,3177.452,-,-
-358.5,1202.45067185164,9.99999961853027,9.99999961853027,0,1.5579,593.1891,183.8721,183.8721,1264.632,-148.1703,11.42188,78.55721,-9.204132,11.42188,0,0,1,0,0,0,0,0,3.315284,0.04154791,8.065048,11.42188,0,3177.452,-,-
-359.5,1205.22844952345,9.99999961853027,9.99999961853027,0,1.5579,593.1891,183.8721,183.8721,1264.632,-148.1703,11.42188,78.55721,-9.204132,11.42188,0,0,1,0,0,0,0,0,3.315284,0.04154791,8.065048,11.42188,0,3177.452,-,-
-360.5,1208.00622719526,9.99999961853027,9.99999961853027,0,1.493538,593.1891,178.51,178.51,1264.632,-148.1703,11.08879,78.55721,-9.204132,11.08879,0,0,1,0,0,0,0,0,3.315317,0.04154791,7.73193,11.08879,0,3126.539,-,-
-361.5,1210.78400486708,9.99999961853027,9.99999961853027,0,1.429176,593.1891,173.1477,173.1477,1264.632,-148.1703,10.7557,78.55721,-9.204132,10.7557,0,0,1,0,0,0,0,0,3.315348,0.04154791,7.398801,10.7557,0,3075.624,-,-
-362.5,1213.56178253889,9.99999961853027,9.99999961853027,0,1.429176,593.1891,173.1477,173.1477,1264.632,-148.1703,10.7557,78.55721,-9.204132,10.7557,0,0,1,0,0,0,0,0,3.315348,0.04154791,7.398801,10.7557,0,3075.624,-,-
-363.5,1216.3395602107,9.99999961853027,9.99999961853027,0,1.429176,593.1891,173.1477,173.1477,1264.632,-148.1703,10.7557,78.55721,-9.204132,10.7557,0,0,1,0,0,0,0,0,3.315348,0.04154791,7.398801,10.7557,0,3075.624,-,-
-364.5,1219.11733788252,9.99999961853027,9.99999961853027,0,1.429176,593.1891,173.1477,173.1477,1264.632,-148.1703,10.7557,78.55721,-9.204132,10.7557,0,0,1,0,0,0,0,0,3.315348,0.04154791,7.398801,10.7557,0,3075.624,-,-
-365.5,1221.89511555433,9.99999961853027,9.99999961853027,0,1.429176,593.1891,173.1477,173.1477,1264.632,-148.1703,10.7557,78.55721,-9.204132,10.7557,0,0,1,0,0,0,0,0,3.315348,0.04154791,7.398801,10.7557,0,3075.624,-,-
-366.5,1224.67289322615,9.99999961853027,9.99999961853027,0,1.429176,593.1891,173.1477,173.1477,1264.632,-148.1703,10.7557,78.55721,-9.204132,10.7557,0,0,1,0,0,0,0,0,3.315348,0.04154791,7.398801,10.7557,0,3075.624,-,-
-367.5,1227.45067089796,9.99999961853027,9.99999961853027,0,1.429176,593.1891,173.1477,173.1477,1264.632,-148.1703,10.7557,78.55721,-9.204132,10.7557,0,0,1,0,0,0,0,0,3.315348,0.04154791,7.398801,10.7557,0,3075.624,-,-
-368.5,1230.22844856977,9.99999961853027,9.99999961853027,0,1.429176,593.1891,173.1477,173.1477,1264.632,-148.1703,10.7557,78.55721,-9.204132,10.7557,0,0,1,0,0,0,0,0,3.315348,0.04154791,7.398801,10.7557,0,3075.624,-,-
-369.5,1233.00622624159,9.99999961853027,9.99999961853027,0,1.429176,593.1891,173.1477,173.1477,1264.632,-148.1703,10.7557,78.55721,-9.204132,10.7557,0,0,1,0,0,0,0,0,3.315348,0.04154791,7.398801,10.7557,0,3075.624,-,-
-370.5,1235.7840039134,9.99999961853027,9.99999961853027,0,1.429176,593.1891,173.1477,173.1477,1264.632,-148.1703,10.7557,78.55721,-9.204132,10.7557,0,0,1,0,0,0,0,0,3.315348,0.04154791,7.398801,10.7557,0,3075.624,-,-
-371.5,1238.56178158522,9.99999961853027,9.99999961853027,0,1.364814,593.1891,167.7853,167.7853,1264.632,-148.1703,10.42259,78.55721,-9.204132,10.42259,0,0,1,0,0,0,0,0,3.315378,0.04154791,7.065665,10.42259,0,3024.708,-,-
-372.5,1241.33955925703,9.99999961853027,9.99999961853027,0,1.300452,593.1891,162.4227,162.4227,1264.632,-148.1703,10.08947,78.55721,-9.204132,10.08947,0,0,1,0,0,0,0,0,3.315406,0.04154791,6.73252,10.08947,0,2973.79,-,-
-373.5,1244.11733692884,9.99999961853027,9.99999961853027,0,1.300452,593.1891,162.4227,162.4227,1264.632,-148.1703,10.08947,78.55721,-9.204132,10.08947,0,0,1,0,0,0,0,0,3.315406,0.04154791,6.73252,10.08947,0,2973.79,-,-
-374.5,1246.89511460066,9.99999961853027,9.99999961853027,0,1.300452,593.1891,162.4227,162.4227,1264.632,-148.1703,10.08947,78.55721,-9.204132,10.08947,0,0,1,0,0,0,0,0,3.315406,0.04154791,6.73252,10.08947,0,2973.79,-,-
-375.5,1249.67289227247,9.99999961853027,9.99999961853027,0,1.300452,593.1891,162.4227,162.4227,1264.632,-148.1703,10.08947,78.55721,-9.204132,10.08947,0,0,1,0,0,0,0,0,3.315406,0.04154791,6.73252,10.08947,0,2973.79,-,-
-376.5,1252.45066994429,9.99999961853027,9.99999961853027,0,1.300452,593.1891,162.4227,162.4227,1264.632,-148.1703,10.08947,78.55721,-9.204132,10.08947,0,0,1,0,0,0,0,0,3.315406,0.04154791,6.73252,10.08947,0,2973.79,-,-
-377.5,1255.2284476161,9.99999961853027,9.99999961853027,0,1.300452,593.1891,162.4227,162.4227,1264.632,-148.1703,10.08947,78.55721,-9.204132,10.08947,0,0,1,0,0,0,0,0,3.315406,0.04154791,6.73252,10.08947,0,2973.79,-,-
-378.5,1258.00622528791,9.99999961853027,9.99999961853027,0,1.300452,593.1891,162.4227,162.4227,1264.632,-148.1703,10.08947,78.55721,-9.204132,10.08947,0,0,1,0,0,0,0,0,3.315406,0.04154791,6.73252,10.08947,0,2973.79,-,-
-379.5,1260.78400295973,9.99999961853027,9.99999961853027,0,1.300452,593.1891,162.4227,162.4227,1264.632,-148.1703,10.08947,78.55721,-9.204132,10.08947,0,0,1,0,0,0,0,0,3.315406,0.04154791,6.73252,10.08947,0,2973.79,-,-
-380.5,1263.56178063154,9.99999961853027,9.99999961853027,0,1.300452,593.1891,162.4227,162.4227,1264.632,-148.1703,10.08947,78.55721,-9.204132,10.08947,0,0,1,0,0,0,0,0,3.315406,0.04154791,6.73252,10.08947,0,2973.79,-,-
-381.5,1266.33955830336,9.99999961853027,9.99999961853027,0,1.300452,593.1891,162.4227,162.4227,1264.632,-148.1703,10.08947,78.55721,-9.204132,10.08947,0,0,1,0,0,0,0,0,3.315406,0.04154791,6.73252,10.08947,0,2973.79,-,-
-382.5,1269.11733597517,9.99999961853027,9.99999961853027,0,1.171728,593.1891,151.697,151.697,1264.632,-148.1703,9.42321,78.55721,-9.204132,9.42321,0,0,1,0,0,0,0,0,3.315459,0.04154791,6.066203,9.42321,0,2871.949,-,-
-383.5,1271.89511364698,9.99999961853027,9.99999961853027,0,1.171728,593.1891,151.697,151.697,1264.632,-148.1703,9.42321,78.55721,-9.204132,9.42321,0,0,1,0,0,0,0,0,3.315459,0.04154791,6.066203,9.42321,0,2871.949,-,-
-384.5,1274.6728913188,9.99999961853027,9.99999961853027,0,1.171728,593.1891,151.697,151.697,1264.632,-148.1703,9.42321,78.55721,-9.204132,9.42321,0,0,1,0,0,0,0,0,3.315459,0.04154791,6.066203,9.42321,0,2871.949,-,-
-385.5,1277.45066899061,9.99999961853027,9.99999961853027,0,1.171728,593.1891,151.697,151.697,1264.632,-148.1703,9.42321,78.55721,-9.204132,9.42321,0,0,1,0,0,0,0,0,3.315459,0.04154791,6.066203,9.42321,0,2871.949,-,-
-386.5,1280.22844666243,9.99999961853027,9.99999961853027,0,1.171728,593.1891,151.697,151.697,1264.632,-148.1703,9.42321,78.55721,-9.204132,9.42321,0,0,1,0,0,0,0,0,3.315459,0.04154791,6.066203,9.42321,0,2871.949,-,-
-387.5,1283.00622433424,9.99999961853027,9.99999961853027,0,1.171728,593.1891,151.697,151.697,1264.632,-148.1703,9.42321,78.55721,-9.204132,9.42321,0,0,1,0,0,0,0,0,3.315459,0.04154791,6.066203,9.42321,0,2871.949,-,-
-388.5,1285.78400200605,9.99999961853027,9.99999961853027,0,1.171728,593.1891,151.697,151.697,1264.632,-148.1703,9.42321,78.55721,-9.204132,9.42321,0,0,1,0,0,0,0,0,3.315459,0.04154791,6.066203,9.42321,0,2871.949,-,-
-389.5,1288.56177967787,9.99999961853027,9.99999961853027,0,1.171728,593.1891,151.697,151.697,1264.632,-148.1703,9.42321,78.55721,-9.204132,9.42321,0,0,1,0,0,0,0,0,3.315459,0.04154791,6.066203,9.42321,0,2871.949,-,-
-390.5,1291.33955734968,9.99999961853027,9.99999961853027,0,1.171728,593.1891,151.697,151.697,1264.632,-148.1703,9.42321,78.55721,-9.204132,9.42321,0,0,1,0,0,0,0,0,3.315459,0.04154791,6.066203,9.42321,0,2871.949,-,-
-391.5,1294.1173350215,9.99999961853027,9.99999961853027,0,1.171728,593.1891,151.697,151.697,1264.632,-148.1703,9.42321,78.55721,-9.204132,9.42321,0,0,1,0,0,0,0,0,3.315459,0.04154791,6.066203,9.42321,0,2871.949,-,-
-392.5,1296.89511269331,9.99999961853027,9.99999961853027,0,1.171728,593.1891,151.697,151.697,1264.632,-148.1703,9.42321,78.55721,-9.204132,9.42321,0,0,1,0,0,0,0,0,3.315459,0.04154791,6.066203,9.42321,0,2871.949,-,-
-393.5,1299.67289036512,9.99999961853027,9.99999961853027,0,1.043003,593.1891,140.9708,140.9708,1264.632,-148.1703,8.756911,78.55721,-9.204132,8.756911,0,0,1,0,0,0,0,0,3.315506,0.04154791,5.399857,8.756911,0,2770.104,-,-
-394.5,1302.45066803694,9.99999961853027,9.99999961853027,0,1.043003,593.1891,140.9708,140.9708,1264.632,-148.1703,8.756911,78.55721,-9.204132,8.756911,0,0,1,0,0,0,0,0,3.315506,0.04154791,5.399857,8.756911,0,2770.104,-,-
-395.5,1305.22844570875,9.99999961853027,9.99999961853027,0,1.043003,593.1891,140.9708,140.9708,1264.632,-148.1703,8.756911,78.55721,-9.204132,8.756911,0,0,1,0,0,0,0,0,3.315506,0.04154791,5.399857,8.756911,0,2770.104,-,-
-396.5,1308.00622338057,9.99999961853027,9.99999961853027,0,1.043003,593.1891,140.9708,140.9708,1264.632,-148.1703,8.756911,78.55721,-9.204132,8.756911,0,0,1,0,0,0,0,0,3.315506,0.04154791,5.399857,8.756911,0,2770.104,-,-
-397.5,1310.78400105238,9.99999961853027,9.99999961853027,0,1.043003,593.1891,140.9708,140.9708,1264.632,-148.1703,8.756911,78.55721,-9.204132,8.756911,0,0,1,0,0,0,0,0,3.315506,0.04154791,5.399857,8.756911,0,2770.104,-,-
-398.5,1313.56177872419,9.99999961853027,9.99999961853027,0,1.043003,593.1891,140.9708,140.9708,1264.632,-148.1703,8.756911,78.55721,-9.204132,8.756911,0,0,1,0,0,0,0,0,3.315506,0.04154791,5.399857,8.756911,0,2770.104,-,-
-399.5,1316.33955639601,9.99999961853027,9.99999961853027,0,1.043003,593.1891,140.9708,140.9708,1264.632,-148.1703,8.756911,78.55721,-9.204132,8.756911,0,0,1,0,0,0,0,0,3.315506,0.04154791,5.399857,8.756911,0,2770.104,-,-
-400.5,1319.11733406782,9.99999961853027,9.99999961853027,0,1.043003,593.1891,140.9708,140.9708,1264.632,-148.1703,8.756911,78.55721,-9.204132,8.756911,0,0,1,0,0,0,0,0,3.315506,0.04154791,5.399857,8.756911,0,2770.104,-,-
-401.5,1321.89511173964,9.99999961853027,9.99999961853027,0,1.043003,593.1891,140.9708,140.9708,1264.632,-148.1703,8.756911,78.55721,-9.204132,8.756911,0,0,1,0,0,0,0,0,3.315506,0.04154791,5.399857,8.756911,0,2770.104,-,-
-402.5,1324.67288941145,9.99999961853027,9.99999961853027,0,1.043003,593.1891,140.9708,140.9708,1264.632,-148.1703,8.756911,78.55721,-9.204132,8.756911,0,0,1,0,0,0,0,0,3.315506,0.04154791,5.399857,8.756911,0,2770.104,-,-
-403.5,1327.45066708326,9.99999961853027,9.99999961853027,0,1.043003,593.1891,140.9708,140.9708,1264.632,-148.1703,8.756911,78.55721,-9.204132,8.756911,0,0,1,0,0,0,0,0,3.315506,0.04154791,5.399857,8.756911,0,2770.104,-,-
-404.5,1330.22844475508,9.99999961853027,9.99999961853027,0,0.9142793,593.1891,130.244,130.244,1264.632,-148.1703,8.090579,78.55721,-9.204132,8.090579,0,0,1,0,0,0,0,0,3.315548,0.04154791,4.733483,8.090579,0,2668.253,-,-
-405.5,1333.00622242689,9.99999961853027,9.99999961853027,0,0.9142793,593.1891,130.244,130.244,1264.632,-148.1703,8.090579,78.55721,-9.204132,8.090579,0,0,1,0,0,0,0,0,3.315548,0.04154791,4.733483,8.090579,0,2668.253,-,-
-406.5,1335.78400009871,9.99999961853027,9.99999961853027,0,0.9142793,593.1891,130.244,130.244,1264.632,-148.1703,8.090579,78.55721,-9.204132,8.090579,0,0,1,0,0,0,0,0,3.315548,0.04154791,4.733483,8.090579,0,2668.253,-,-
-407.5,1338.56177777052,9.99999961853027,9.99999961853027,0,0.9142793,593.1891,130.244,130.244,1264.632,-148.1703,8.090579,78.55721,-9.204132,8.090579,0,0,1,0,0,0,0,0,3.315548,0.04154791,4.733483,8.090579,0,2668.253,-,-
-408.5,1341.33955544233,9.99999961853027,9.99999961853027,0,0.9142793,593.1891,130.244,130.244,1264.632,-148.1703,8.090579,78.55721,-9.204132,8.090579,0,0,1,0,0,0,0,0,3.315548,0.04154791,4.733483,8.090579,0,2668.253,-,-
-409.5,1344.11733311415,9.99999961853027,9.99999961853027,0,0.9142793,593.1891,130.244,130.244,1264.632,-148.1703,8.090579,78.55721,-9.204132,8.090579,0,0,1,0,0,0,0,0,3.315548,0.04154791,4.733483,8.090579,0,2668.253,-,-
-410.5,1346.89511078596,9.99999961853027,9.99999961853027,0,0.9142793,593.1891,130.244,130.244,1264.632,-148.1703,8.090579,78.55721,-9.204132,8.090579,0,0,1,0,0,0,0,0,3.315548,0.04154791,4.733483,8.090579,0,2668.253,-,-
-411.5,1349.67288845778,9.99999961853027,9.99999961853027,0,0.9142793,593.1891,130.244,130.244,1264.632,-148.1703,8.090579,78.55721,-9.204132,8.090579,0,0,1,0,0,0,0,0,3.315548,0.04154791,4.733483,8.090579,0,2668.253,-,-
-412.5,1352.45066612959,9.99999961853027,9.99999961853027,0,0.9142793,593.1891,130.244,130.244,1264.632,-148.1703,8.090579,78.55721,-9.204132,8.090579,0,0,1,0,0,0,0,0,3.315548,0.04154791,4.733483,8.090579,0,2668.253,-,-
-413.5,1355.2284438014,9.99999961853027,9.99999961853027,0,0.9142793,593.1891,130.244,130.244,1264.632,-148.1703,8.090579,78.55721,-9.204132,8.090579,0,0,1,0,0,0,0,0,3.315548,0.04154791,4.733483,8.090579,0,2668.253,-,-
-414.5,1358.00622147322,9.99999961853027,9.99999961853027,0,0.8627897,593.1891,125.9532,125.9532,1264.632,-148.1703,7.824039,78.55721,-9.204132,7.824039,0,0,1,0,0,0,0,0,3.315563,0.04154791,4.466927,7.824039,0,2627.512,-,-
-415.5,1360.78399914503,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-416.5,1363.56177681684,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-417.5,1366.33955448866,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-418.5,1369.11733216047,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-419.5,1371.89510983229,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-420.5,1374.6728875041,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-421.5,1377.45066517591,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-422.5,1380.22844284773,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-423.5,1383.00622051954,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-424.5,1385.78399819136,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-425.5,1388.56177586317,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-426.5,1391.33955353498,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-427.5,1394.1173312068,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-428.5,1396.89510887861,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-429.5,1399.67288655043,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-430.5,1402.45066422224,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-431.5,1405.22844189405,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-432.5,1408.00621956587,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-433.5,1410.78399723768,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-434.5,1413.5617749095,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-435.5,1416.33955258131,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-436.5,1419.11733025312,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-437.5,1421.89510792494,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-438.5,1424.67288559675,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-439.5,1427.45066326857,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-440.5,1430.22844094038,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-441.5,1433.00621861219,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-442.5,1435.78399628401,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-443.5,1438.56177395582,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-444.5,1441.33955162764,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-445.5,1444.11732929945,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-446.5,1446.89510697126,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-447.5,1449.67288464308,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-448.5,1452.45066231489,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-449.5,1455.22843998671,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-450.5,1458.00621765852,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-451.5,1460.78399533033,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-452.5,1463.56177300215,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-453.5,1466.33955067396,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-454.5,1469.11732834578,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-455.5,1471.89510601759,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-456.5,1474.6728836894,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-457.5,1477.45066136122,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-458.5,1480.22843903303,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-459.5,1483.00621670485,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-460.5,1485.78399437666,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-461.5,1488.56177204847,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-462.5,1491.33954972029,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-463.5,1494.1173273921,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-464.5,1496.89510506392,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-465.5,1499.67288273573,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-466.5,1502.45066040754,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-467.5,1505.22843807936,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-468.5,1508.00621575117,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-469.5,1510.78399342299,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-470.5,1513.5617710948,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-471.5,1516.33954876661,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-472.5,1519.11732643843,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-473.5,1521.89510411024,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-474.5,1524.67288178205,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-475.5,1527.45065945387,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-476.5,1530.22843712568,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-477.5,1533.0062147975,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-478.5,1535.78399246931,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-479.5,1538.56177014112,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-480.5,1541.33954781294,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-481.5,1544.11732548475,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-482.5,1546.89510315657,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-483.5,1549.67288082838,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-484.5,1552.45065850019,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-485.5,1555.22843617201,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-486.5,1558.00621384382,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-487.5,1560.78399151564,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-488.5,1563.56176918745,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-489.5,1566.33954685926,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-490.5,1569.11732453108,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-491.5,1571.89510220289,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-492.5,1574.67287987471,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-493.5,1577.45065754652,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-494.5,1580.22843521833,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-495.5,1583.00621289015,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-496.5,1585.78399056196,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-497.5,1588.56176823378,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-498.5,1591.33954590559,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-499.5,1594.1173235774,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-500.5,1596.89510124922,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-501.5,1599.67287892103,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-502.5,1602.45065659285,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-503.5,1605.22843426466,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-504.5,1608.00621193647,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-505.5,1610.78398960829,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-506.5,1613.5617672801,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-507.5,1616.33954495192,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-508.5,1619.11732262373,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-509.5,1621.89510029554,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-510.5,1624.67287796736,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-511.5,1627.45065563917,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-512.5,1630.22843331099,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-513.5,1633.0062109828,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-514.5,1635.78398865461,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-515.5,1638.56176632643,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-516.5,1641.33954399824,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-517.5,1644.11732167006,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-518.5,1646.89509934187,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-519.5,1649.67287701368,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-520.5,1652.4506546855,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-521.5,1655.22843235731,9.99999961853027,9.99999961853027,0,0.8113,593.1891,121.6623,121.6623,1264.632,-148.1703,7.557493,78.55721,-9.204132,7.557493,0,0,1,0,0,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2586.77,-,-
-522.5,1658.00621002913,9.99999961853027,9.99999961853027,0,0.7588062,593.1891,117.2876,117.2876,1264.632,-148.1703,7.285746,78.55721,-9.204132,7.285746,0,0,1,0,0,0,0,0,3.315591,0.04154791,3.928606,7.285746,0,2545.232,-,-
-523.5,1660.78398770094,9.99999961853027,9.99999961853027,0,0.7063125,593.1891,112.9129,112.9129,1264.632,-148.1703,7.013993,78.55721,-9.204132,7.013993,0,0,1,0,0,0,0,0,3.315604,0.04154791,3.656842,7.013993,0,2503.694,-,-
-524.5,1663.56176537275,9.99999961853027,9.99999961853027,0,0.7063125,593.1891,112.9129,112.9129,1264.632,-148.1703,7.013993,78.55721,-9.204132,7.013993,0,0,1,0,0,0,0,0,3.315604,0.04154791,3.656842,7.013993,0,2503.694,-,-
-525.5,1666.33954304457,9.99999961853027,9.99999961853027,0,0.7063125,593.1891,112.9129,112.9129,1264.632,-148.1703,7.013993,78.55721,-9.204132,7.013993,0,0,1,0,0,0,0,0,3.315604,0.04154791,3.656842,7.013993,0,2503.694,-,-
-526.5,1669.11732071638,9.99999961853027,9.99999961853027,0,0.7063125,593.1891,112.9129,112.9129,1264.632,-148.1703,7.013993,78.55721,-9.204132,7.013993,0,0,1,0,0,0,0,0,3.315604,0.04154791,3.656842,7.013993,0,2503.694,-,-
-527.5,1671.8950983882,9.99999961853027,9.99999961853027,0,0.7063125,593.1891,112.9129,112.9129,1264.632,-148.1703,7.013993,78.55721,-9.204132,7.013993,0,0,1,0,0,0,0,0,3.315604,0.04154791,3.656842,7.013993,0,2503.694,-,-
-528.5,1674.67287606001,9.99999961853027,9.99999961853027,0,0.7063125,593.1891,112.9129,112.9129,1264.632,-148.1703,7.013993,78.55721,-9.204132,7.013993,0,0,1,0,0,0,0,0,3.315604,0.04154791,3.656842,7.013993,0,2503.694,-,-
-529.5,1677.45065373182,9.99999961853027,9.99999961853027,0,0.7063125,593.1891,112.9129,112.9129,1264.632,-148.1703,7.013993,78.55721,-9.204132,7.013993,0,0,1,0,0,0,0,0,3.315604,0.04154791,3.656842,7.013993,0,2503.694,-,-
-530.5,1680.22843140364,9.99999961853027,9.99999961853027,0,0.7063125,593.1891,112.9129,112.9129,1264.632,-148.1703,7.013993,78.55721,-9.204132,7.013993,0,0,1,0,0,0,0,0,3.315604,0.04154791,3.656842,7.013993,0,2503.694,-,-
-531.5,1683.00620907545,9.99999961853027,9.99999961853027,0,0.7063125,593.1891,112.9129,112.9129,1264.632,-148.1703,7.013993,78.55721,-9.204132,7.013993,0,0,1,0,0,0,0,0,3.315604,0.04154791,3.656842,7.013993,0,2503.694,-,-
-532.5,1685.78398674726,9.99999961853027,9.99999961853027,0,0.7063125,593.1891,112.9129,112.9129,1264.632,-148.1703,7.013993,78.55721,-9.204132,7.013993,0,0,1,0,0,0,0,0,3.315604,0.04154791,3.656842,7.013993,0,2503.694,-,-
-533.5,1688.56176441908,9.99999961853027,9.99999961853027,0,0.7063125,593.1891,112.9129,112.9129,1264.632,-148.1703,7.013993,78.55721,-9.204132,7.013993,0,0,1,0,0,0,0,0,3.315604,0.04154791,3.656842,7.013993,0,2503.694,-,-
-534.5,1691.33954209089,9.99999961853027,9.99999961853027,0,0.7063125,593.1891,112.9129,112.9129,1264.632,-148.1703,7.013993,78.55721,-9.204132,7.013993,0,0,1,0,0,0,0,0,3.315604,0.04154791,3.656842,7.013993,0,2503.694,-,-
-535.5,1694.11731976271,9.99999961853027,9.99999961853027,0,0.7063125,593.1891,112.9129,112.9129,1264.632,-148.1703,7.013993,78.55721,-9.204132,7.013993,0,0,1,0,0,0,0,0,3.315604,0.04154791,3.656842,7.013993,0,2503.694,-,-
-536.5,1696.89509743452,9.99999961853027,9.99999961853027,0,0.7063125,593.1891,112.9129,112.9129,1264.632,-148.1703,7.013993,78.55721,-9.204132,7.013993,0,0,1,0,0,0,0,0,3.315604,0.04154791,3.656842,7.013993,0,2503.694,-,-
-537.5,1699.67287510633,9.99999961853027,9.99999961853027,0,0.7063125,593.1891,112.9129,112.9129,1264.632,-148.1703,7.013993,78.55721,-9.204132,7.013993,0,0,1,0,0,0,0,0,3.315604,0.04154791,3.656842,7.013993,0,2503.694,-,-
-538.5,1702.45065277815,9.99999961853027,9.99999961853027,0,0.7063125,593.1891,112.9129,112.9129,1264.632,-148.1703,7.013993,78.55721,-9.204132,7.013993,0,0,1,0,0,0,0,0,3.315604,0.04154791,3.656842,7.013993,0,2503.694,-,-
-539.5,1705.22843044996,9.99999961853027,9.99999961853027,0,0.7063125,593.1891,112.9129,112.9129,1264.632,-148.1703,7.013993,78.55721,-9.204132,7.013993,0,0,1,0,0,0,0,0,3.315604,0.04154791,3.656842,7.013993,0,2503.694,-,-
-540.5,1708.00620812178,9.99999961853027,9.99999961853027,0,0.6466604,593.1891,107.9416,107.9416,1264.632,-148.1703,6.70518,78.55721,-9.204132,6.70518,0,0,1,0,0,0,0,0,3.315617,0.04154791,3.348014,6.70518,0,2456.491,-,-
-541.5,1710.78398579359,9.99999961853027,9.99999961853027,0,0.5870085,593.1891,102.9701,102.9701,1264.632,-148.1703,6.396361,78.55721,-9.204132,6.396361,0,0,1,0,0,0,0,0,3.315629,0.04154791,3.039184,6.396361,0,2409.287,-,-
-542.5,1713.5617634654,9.99999961853027,9.99999961853027,0,0.5870085,593.1891,102.9701,102.9701,1264.632,-148.1703,6.396361,78.55721,-9.204132,6.396361,0,0,1,0,0,0,0,0,3.315629,0.04154791,3.039184,6.396361,0,2409.287,-,-
-543.5,1716.33954113722,9.99999961853027,9.99999961853027,0,0.5870085,593.1891,102.9701,102.9701,1264.632,-148.1703,6.396361,78.55721,-9.204132,6.396361,0,0,1,0,0,0,0,0,3.315629,0.04154791,3.039184,6.396361,0,2409.287,-,-
-544.5,1719.11731880903,9.99999961853027,9.99999961853027,0,0.5870085,593.1891,102.9701,102.9701,1264.632,-148.1703,6.396361,78.55721,-9.204132,6.396361,0,0,1,0,0,0,0,0,3.315629,0.04154791,3.039184,6.396361,0,2409.287,-,-
-545.5,1721.89509648085,9.99999961853027,9.99999961853027,0,0.5870085,593.1891,102.9701,102.9701,1264.632,-148.1703,6.396361,78.55721,-9.204132,6.396361,0,0,1,0,0,0,0,0,3.315629,0.04154791,3.039184,6.396361,0,2409.287,-,-
-546.5,1724.67287415266,9.99999961853027,9.99999961853027,0,0.5870085,593.1891,102.9701,102.9701,1264.632,-148.1703,6.396361,78.55721,-9.204132,6.396361,0,0,1,0,0,0,0,0,3.315629,0.04154791,3.039184,6.396361,0,2409.287,-,-
-547.5,1727.45065182447,9.99999961853027,9.99999961853027,0,0.5870085,593.1891,102.9701,102.9701,1264.632,-148.1703,6.396361,78.55721,-9.204132,6.396361,0,0,1,0,0,0,0,0,3.315629,0.04154791,3.039184,6.396361,0,2409.287,-,-
-548.5,1730.22842949629,9.99999961853027,9.99999961853027,0,0.5870085,593.1891,102.9701,102.9701,1264.632,-148.1703,6.396361,78.55721,-9.204132,6.396361,0,0,1,0,0,0,0,0,3.315629,0.04154791,3.039184,6.396361,0,2409.287,-,-
-549.5,1733.0062071681,9.99999961853027,9.99999961853027,0,0.5870085,593.1891,102.9701,102.9701,1264.632,-148.1703,6.396361,78.55721,-9.204132,6.396361,0,0,1,0,0,0,0,0,3.315629,0.04154791,3.039184,6.396361,0,2409.287,-,-
-550.5,1735.78398483992,9.99999961853027,9.99999961853027,0,0.5870085,593.1891,102.9701,102.9701,1264.632,-148.1703,6.396361,78.55721,-9.204132,6.396361,0,0,1,0,0,0,0,0,3.315629,0.04154791,3.039184,6.396361,0,2409.287,-,-
-551.5,1738.56176251173,9.99999961853027,9.99999961853027,0,0.5870085,593.1891,102.9701,102.9701,1264.632,-148.1703,6.396361,78.55721,-9.204132,6.396361,0,0,1,0,0,0,0,0,3.315629,0.04154791,3.039184,6.396361,0,2409.287,-,-
-552.5,1741.33954018354,9.99999961853027,9.99999961853027,0,0.5870085,593.1891,102.9701,102.9701,1264.632,-148.1703,6.396361,78.55721,-9.204132,6.396361,0,0,1,0,0,0,0,0,3.315629,0.04154791,3.039184,6.396361,0,2409.287,-,-
-553.5,1744.11731785536,9.99999961853027,9.99999961853027,0,0.5870085,593.1891,102.9701,102.9701,1264.632,-148.1703,6.396361,78.55721,-9.204132,6.396361,0,0,1,0,0,0,0,0,3.315629,0.04154791,3.039184,6.396361,0,2409.287,-,-
-554.5,1746.89509552717,9.99999961853027,9.99999961853027,0,0.5870085,593.1891,102.9701,102.9701,1264.632,-148.1703,6.396361,78.55721,-9.204132,6.396361,0,0,1,0,0,0,0,0,3.315629,0.04154791,3.039184,6.396361,0,2409.287,-,-
-555.5,1749.67287319899,9.99999961853027,9.99999961853027,0,0.5870085,593.1891,102.9701,102.9701,1264.632,-148.1703,6.396361,78.55721,-9.204132,6.396361,0,0,1,0,0,0,0,0,3.315629,0.04154791,3.039184,6.396361,0,2409.287,-,-
-556.5,1752.4506508708,9.99999961853027,9.99999961853027,0,0.5870085,593.1891,102.9701,102.9701,1264.632,-148.1703,6.396361,78.55721,-9.204132,6.396361,0,0,1,0,0,0,0,0,3.315629,0.04154791,3.039184,6.396361,0,2409.287,-,-
-557.5,1755.22842854261,9.99999961853027,9.99999961853027,0,0.5870085,593.1891,102.9701,102.9701,1264.632,-148.1703,6.396361,78.55721,-9.204132,6.396361,0,0,1,0,0,0,0,0,3.315629,0.04154791,3.039184,6.396361,0,2409.287,-,-
-558.5,1758.00620621443,9.99999961853027,9.99999961853027,0,0.5273564,593.1891,97.99862,97.99862,1264.632,-148.1703,6.087539,78.55721,-9.204132,6.087539,0,0,1,0,0,0,0,0,3.315641,0.04154791,2.73035,6.087539,0,2362.083,-,-
-559.5,1760.78398388624,9.99999961853027,9.99999961853027,0,0.4677045,593.1891,93.02705,93.02705,1264.632,-148.1703,5.778712,78.55721,-9.204132,5.778712,0,0,1,0,0,0,0,0,3.31565,0.04154791,2.421513,5.778712,0,2314.878,-,-
-560.5,1763.56176155806,9.99999961853027,9.99999961853027,0,0.4677045,593.1891,93.02705,93.02705,1264.632,-148.1703,5.778712,78.55721,-9.204132,5.778712,0,0,1,0,0,0,0,0,3.31565,0.04154791,2.421513,5.778712,0,2314.878,-,-
-561.5,1766.33953922987,9.99999961853027,9.99999961853027,0,0.4677045,593.1891,93.02705,93.02705,1264.632,-148.1703,5.778712,78.55721,-9.204132,5.778712,0,0,1,0,0,0,0,0,3.31565,0.04154791,2.421513,5.778712,0,2314.878,-,-
-562.5,1769.11731690168,9.99999961853027,9.99999961853027,0,0.4677045,593.1891,93.02705,93.02705,1264.632,-148.1703,5.778712,78.55721,-9.204132,5.778712,0,0,1,0,0,0,0,0,3.31565,0.04154791,2.421513,5.778712,0,2314.878,-,-
-563.5,1771.8950945735,9.99999961853027,9.99999961853027,0,0.4677045,593.1891,93.02705,93.02705,1264.632,-148.1703,5.778712,78.55721,-9.204132,5.778712,0,0,1,0,0,0,0,0,3.31565,0.04154791,2.421513,5.778712,0,2314.878,-,-
-564.5,1774.67287224531,9.99999961853027,9.99999961853027,0,0.4677045,593.1891,93.02705,93.02705,1264.632,-148.1703,5.778712,78.55721,-9.204132,5.778712,0,0,1,0,0,0,0,0,3.31565,0.04154791,2.421513,5.778712,0,2314.878,-,-
-565.5,1777.45064991713,9.99999961853027,9.99999961853027,0,0.4677045,593.1891,93.02705,93.02705,1264.632,-148.1703,5.778712,78.55721,-9.204132,5.778712,0,0,1,0,0,0,0,0,3.31565,0.04154791,2.421513,5.778712,0,2314.878,-,-
-566.5,1780.22842758894,9.99999961853027,9.99999961853027,0,0.4677045,593.1891,93.02705,93.02705,1264.632,-148.1703,5.778712,78.55721,-9.204132,5.778712,0,0,1,0,0,0,0,0,3.31565,0.04154791,2.421513,5.778712,0,2314.878,-,-
-567.5,1783.00620526075,9.99999961853027,9.99999961853027,0,0.4677045,593.1891,93.02705,93.02705,1264.632,-148.1703,5.778712,78.55721,-9.204132,5.778712,0,0,1,0,0,0,0,0,3.31565,0.04154791,2.421513,5.778712,0,2314.878,-,-
-568.5,1785.78398293257,9.99999961853027,9.99999961853027,0,0.4677045,593.1891,93.02705,93.02705,1264.632,-148.1703,5.778712,78.55721,-9.204132,5.778712,0,0,1,0,0,0,0,0,3.31565,0.04154791,2.421513,5.778712,0,2314.878,-,-
-569.5,1788.56176060438,9.99999961853027,9.99999961853027,0,0.4677045,593.1891,93.02705,93.02705,1264.632,-148.1703,5.778712,78.55721,-9.204132,5.778712,0,0,1,0,0,0,0,0,3.31565,0.04154791,2.421513,5.778712,0,2314.878,-,-
-570.5,1791.3395382762,9.99999961853027,9.99999961853027,0,0.4677045,593.1891,93.02705,93.02705,1264.632,-148.1703,5.778712,78.55721,-9.204132,5.778712,0,0,1,0,0,0,0,0,3.31565,0.04154791,2.421513,5.778712,0,2314.878,-,-
-571.5,1794.11731594801,9.99999961853027,9.99999961853027,0,0.4677045,593.1891,93.02705,93.02705,1264.632,-148.1703,5.778712,78.55721,-9.204132,5.778712,0,0,1,0,0,0,0,0,3.31565,0.04154791,2.421513,5.778712,0,2314.878,-,-
-572.5,1796.89509361982,9.99999961853027,9.99999961853027,0,0.4677045,593.1891,93.02705,93.02705,1264.632,-148.1703,5.778712,78.55721,-9.204132,5.778712,0,0,1,0,0,0,0,0,3.31565,0.04154791,2.421513,5.778712,0,2314.878,-,-
-573.5,1799.67287129164,9.99999961853027,9.99999961853027,0,0.4677045,593.1891,93.02705,93.02705,1264.632,-148.1703,5.778712,78.55721,-9.204132,5.778712,0,0,1,0,0,0,0,0,3.31565,0.04154791,2.421513,5.778712,0,2314.878,-,-
-574.5,1802.45064896345,9.99999961853027,9.99999961853027,0,0.4677045,593.1891,93.02705,93.02705,1264.632,-148.1703,5.778712,78.55721,-9.204132,5.778712,0,0,1,0,0,0,0,0,3.31565,0.04154791,2.421513,5.778712,0,2314.878,-,-
-575.5,1805.22842663527,9.99999961853027,9.99999961853027,0,0.4677045,593.1891,93.02705,93.02705,1264.632,-148.1703,5.778712,78.55721,-9.204132,5.778712,0,0,1,0,0,0,0,0,3.31565,0.04154791,2.421513,5.778712,0,2314.878,-,-
-576.5,1808.00620430708,9.99999961853027,9.99999961853027,0,0.4080524,593.1891,88.05543,88.05543,1264.632,-148.1703,5.469881,78.55721,-9.204132,5.469881,0,0,1,0,0,0,0,0,3.315659,0.04154791,2.112674,5.469881,0,2267.672,-,-
-577.5,1810.78398197889,9.99999961853027,9.99999961853027,0,0.3484004,593.1891,83.08374,83.08374,1264.632,-148.1703,5.161047,78.55721,-9.204132,5.161047,0,0,1,0,0,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2220.466,-,-
-578.5,1813.56175965071,9.99999961853027,9.99999961853027,0,0.3484004,593.1891,83.08374,83.08374,1264.632,-148.1703,5.161047,78.55721,-9.204132,5.161047,0,0,1,0,0,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2220.466,-,-
-579.5,1816.33953732252,9.99999961853027,9.99999961853027,0,0.3484004,593.1891,83.08374,83.08374,1264.632,-148.1703,5.161047,78.55721,-9.204132,5.161047,0,0,1,0,0,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2220.466,-,-
-580.5,1819.11731499434,9.99999961853027,9.99999961853027,0,0.3484004,593.1891,83.08374,83.08374,1264.632,-148.1703,5.161047,78.55721,-9.204132,5.161047,0,0,1,0,0,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2220.466,-,-
-581.5,1821.89509266615,9.99999961853027,9.99999961853027,0,0.3484004,593.1891,83.08374,83.08374,1264.632,-148.1703,5.161047,78.55721,-9.204132,5.161047,0,0,1,0,0,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2220.466,-,-
-582.5,1824.67287033796,9.99999961853027,9.99999961853027,0,0.3484004,593.1891,83.08374,83.08374,1264.632,-148.1703,5.161047,78.55721,-9.204132,5.161047,0,0,1,0,0,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2220.466,-,-
-583.5,1827.45064800978,9.99999961853027,9.99999961853027,0,0.3484004,593.1891,83.08374,83.08374,1264.632,-148.1703,5.161047,78.55721,-9.204132,5.161047,0,0,1,0,0,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2220.466,-,-
-584.5,1830.22842568159,9.99999961853027,9.99999961853027,0,0.3484004,593.1891,83.08374,83.08374,1264.632,-148.1703,5.161047,78.55721,-9.204132,5.161047,0,0,1,0,0,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2220.466,-,-
-585.5,1833.00620335341,9.99999961853027,9.99999961853027,0,0.3484004,593.1891,83.08374,83.08374,1264.632,-148.1703,5.161047,78.55721,-9.204132,5.161047,0,0,1,0,0,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2220.466,-,-
-586.5,1835.78398102522,9.99999961853027,9.99999961853027,0,0.3484004,593.1891,83.08374,83.08374,1264.632,-148.1703,5.161047,78.55721,-9.204132,5.161047,0,0,1,0,0,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2220.466,-,-
-587.5,1838.56175869703,9.99999961853027,9.99999961853027,0,0.3484004,593.1891,83.08374,83.08374,1264.632,-148.1703,5.161047,78.55721,-9.204132,5.161047,0,0,1,0,0,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2220.466,-,-
-588.5,1841.33953636885,9.99999961853027,9.99999961853027,0,0.3484004,593.1891,83.08374,83.08374,1264.632,-148.1703,5.161047,78.55721,-9.204132,5.161047,0,0,1,0,0,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2220.466,-,-
-589.5,1844.11731404066,9.99999961853027,9.99999961853027,0,0.3484004,593.1891,83.08374,83.08374,1264.632,-148.1703,5.161047,78.55721,-9.204132,5.161047,0,0,1,0,0,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2220.466,-,-
-590.5,1846.89509171247,9.99999961853027,9.99999961853027,0,0.3484004,593.1891,83.08374,83.08374,1264.632,-148.1703,5.161047,78.55721,-9.204132,5.161047,0,0,1,0,0,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2220.466,-,-
-591.5,1849.67286938429,9.99999961853027,9.99999961853027,0,0.3484004,593.1891,83.08374,83.08374,1264.632,-148.1703,5.161047,78.55721,-9.204132,5.161047,0,0,1,0,0,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2220.466,-,-
-592.5,1852.4506470561,9.99999961853027,9.99999961853027,0,0.3484004,593.1891,83.08374,83.08374,1264.632,-148.1703,5.161047,78.55721,-9.204132,5.161047,0,0,1,0,0,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2220.466,-,-
-593.5,1855.22842472792,9.99999961853027,9.99999961853027,0,0.3484004,593.1891,83.08374,83.08374,1264.632,-148.1703,5.161047,78.55721,-9.204132,5.161047,0,0,1,0,0,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2220.466,-,-
-594.5,1858.00620239973,9.99999961853027,9.99999961853027,0,0.3484004,593.1891,83.08374,83.08374,1264.632,-148.1703,5.161047,78.55721,-9.204132,5.161047,0,0,1,0,0,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2220.466,-,-
-595.5,1860.78398007154,9.99999961853027,9.99999961853027,0,0.3484004,593.1891,83.08374,83.08374,1264.632,-148.1703,5.161047,78.55721,-9.204132,5.161047,0,0,1,0,0,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2220.466,-,-
-596.5,1863.56175774336,9.99999961853027,9.99999961853027,0,0.3484004,593.1891,83.08374,83.08374,1264.632,-148.1703,5.161047,78.55721,-9.204132,5.161047,0,0,1,0,0,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2220.466,-,-
-597.5,1866.33953541517,9.99999961853027,9.99999961853027,0,0.3484004,593.1891,83.08374,83.08374,1264.632,-148.1703,5.161047,78.55721,-9.204132,5.161047,0,0,1,0,0,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2220.466,-,-
-598.5,1869.11731308699,9.99999961853027,9.99999961853027,0,0.3484004,593.1891,83.08374,83.08374,1264.632,-148.1703,5.161047,78.55721,-9.204132,5.161047,0,0,1,0,0,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2220.466,-,-
-599.5,1871.8950907588,9.99999961853027,9.99999961853027,0,0.3484004,593.1891,83.08374,83.08374,1264.632,-148.1703,5.161047,78.55721,-9.204132,5.161047,0,0,1,0,0,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2220.466,-,-
-600.5,1874.67286843061,9.99999961853027,9.99999961853027,0,0.3484004,593.1891,83.08374,83.08374,1264.632,-148.1703,5.161047,78.55721,-9.204132,5.161047,0,0,1,0,0,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2220.466,-,-
-601.5,1877.45064610243,9.99999961853027,9.99999961853027,0,0.3484004,593.1891,83.08374,83.08374,1264.632,-148.1703,5.161047,78.55721,-9.204132,5.161047,0,0,1,0,0,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2220.466,-,-
-602.5,1880.22842377424,9.99999961853027,9.99999961853027,0,0.3484004,593.1891,83.08374,83.08374,1264.632,-148.1703,5.161047,78.55721,-9.204132,5.161047,0,0,1,0,0,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2220.466,-,-
-603.5,1883.00620144606,9.99999961853027,9.99999961853027,0,0.3484004,593.1891,83.08374,83.08374,1264.632,-148.1703,5.161047,78.55721,-9.204132,5.161047,0,0,1,0,0,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2220.466,-,-
-604.5,1885.78397911787,9.99999961853027,9.99999961853027,0,0.3484004,593.1891,83.08374,83.08374,1264.632,-148.1703,5.161047,78.55721,-9.204132,5.161047,0,0,1,0,0,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2220.466,-,-
-605.5,1888.56175678968,9.99999961853027,9.99999961853027,0,0.3484004,593.1891,83.08374,83.08374,1264.632,-148.1703,5.161047,78.55721,-9.204132,5.161047,0,0,1,0,0,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2220.466,-,-
-606.5,1891.3395344615,9.99999961853027,9.99999961853027,0,0.3484004,593.1891,83.08374,83.08374,1264.632,-148.1703,5.161047,78.55721,-9.204132,5.161047,0,0,1,0,0,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2220.466,-,-
-607.5,1894.11731213331,9.99999961853027,9.99999961853027,0,0.3484004,593.1891,83.08374,83.08374,1264.632,-148.1703,5.161047,78.55721,-9.204132,5.161047,0,0,1,0,0,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2220.466,-,-
-608.5,1896.89508980513,9.99999961853027,9.99999961853027,0,0.3484004,593.1891,83.08374,83.08374,1264.632,-148.1703,5.161047,78.55721,-9.204132,5.161047,0,0,1,0,0,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2220.466,-,-
-609.5,1899.67286747694,9.99999961853027,9.99999961853027,0,0.3484004,593.1891,83.08374,83.08374,1264.632,-148.1703,5.161047,78.55721,-9.204132,5.161047,0,0,1,0,0,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2220.466,-,-
-610.5,1902.45064514875,9.99999961853027,9.99999961853027,0,0.3484004,593.1891,83.08374,83.08374,1264.632,-148.1703,5.161047,78.55721,-9.204132,5.161047,0,0,1,0,0,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2220.466,-,-
-611.5,1905.22842282057,9.99999961853027,9.99999961853027,0,0.3484004,593.1891,83.08374,83.08374,1264.632,-148.1703,5.161047,78.55721,-9.204132,5.161047,0,0,1,0,0,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2220.466,-,-
-612.5,1908.00620049238,9.99999961853027,9.99999961853027,0,0.3484004,593.1891,83.08374,83.08374,1264.632,-148.1703,5.161047,78.55721,-9.204132,5.161047,0,0,1,0,0,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2220.466,-,-
-613.5,1910.7839781642,9.99999961853027,9.99999961853027,0,0.3484004,593.1891,83.08374,83.08374,1264.632,-148.1703,5.161047,78.55721,-9.204132,5.161047,0,0,1,0,0,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2220.466,-,-
-614.5,1913.56175583601,9.99999961853027,9.99999961853027,0,0.3484004,593.1891,83.08374,83.08374,1264.632,-148.1703,5.161047,78.55721,-9.204132,5.161047,0,0,1,0,0,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2220.466,-,-
-615.5,1916.33953350782,9.99999961853027,9.99999961853027,0,0.3484004,593.1891,83.08374,83.08374,1264.632,-148.1703,5.161047,78.55721,-9.204132,5.161047,0,0,1,0,0,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2220.466,-,-
-616.5,1919.11731117964,9.99999961853027,9.99999961853027,0,0.3484004,593.1891,83.08374,83.08374,1264.632,-148.1703,5.161047,78.55721,-9.204132,5.161047,0,0,1,0,0,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2220.466,-,-
-617.5,1921.89508885145,9.99999961853027,9.99999961853027,0,0.3484004,593.1891,83.08374,83.08374,1264.632,-148.1703,5.161047,78.55721,-9.204132,5.161047,0,0,1,0,0,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2220.466,-,-
-618.5,1924.67286652327,9.99999961853027,9.99999961853027,0,0.3484004,593.1891,83.08374,83.08374,1264.632,-148.1703,5.161047,78.55721,-9.204132,5.161047,0,0,1,0,0,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2220.466,-,-
-619.5,1927.45064419508,9.99999961853027,9.99999961853027,0,0.3484004,593.1891,83.08374,83.08374,1264.632,-148.1703,5.161047,78.55721,-9.204132,5.161047,0,0,1,0,0,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2220.466,-,-
-620.5,1930.22842186689,9.99999961853027,9.99999961853027,0,0.3484004,593.1891,83.08374,83.08374,1264.632,-148.1703,5.161047,78.55721,-9.204132,5.161047,0,0,1,0,0,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2220.466,-,-
-621.5,1933.00619953871,9.99999961853027,9.99999961853027,0,0.3484004,593.1891,83.08374,83.08374,1264.632,-148.1703,5.161047,78.55721,-9.204132,5.161047,0,0,1,0,0,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2220.466,-,-
-622.5,1935.78397721052,9.99999961853027,9.99999961853027,0,0.3484004,593.1891,83.08374,83.08374,1264.632,-148.1703,5.161047,78.55721,-9.204132,5.161047,0,0,1,0,0,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2220.466,-,-
-623.5,1938.56175488234,9.99999961853027,9.99999961853027,0,0.4073252,593.1891,87.99481,87.99481,1264.632,-148.1703,5.466116,78.55721,-9.204132,5.466116,0,0,1,0,0,0,0,0,3.315659,0.04154791,2.108909,5.466116,0,2267.097,-,-
-624.5,1941.33953255415,9.99999961853027,9.99999961853027,0,0.46625,593.1891,92.90584,92.90584,1264.632,-148.1703,5.771182,78.55721,-9.204132,5.771182,0,0,1,0,0,0,0,0,3.315651,0.04154791,2.413983,5.771182,0,2313.727,-,-
-625.5,1944.11731022596,9.99999961853027,9.99999961853027,0,0.46625,593.1891,92.90584,92.90584,1264.632,-148.1703,5.771182,78.55721,-9.204132,5.771182,0,0,1,0,0,0,0,0,3.315651,0.04154791,2.413983,5.771182,0,2313.727,-,-
-626.5,1946.89508789778,9.99999961853027,9.99999961853027,0,0.46625,593.1891,92.90584,92.90584,1264.632,-148.1703,5.771182,78.55721,-9.204132,5.771182,0,0,1,0,0,0,0,0,3.315651,0.04154791,2.413983,5.771182,0,2313.727,-,-
-627.5,1949.67286556959,9.99999961853027,9.99999961853027,0,0.46625,593.1891,92.90584,92.90584,1264.632,-148.1703,5.771182,78.55721,-9.204132,5.771182,0,0,1,0,0,0,0,0,3.315651,0.04154791,2.413983,5.771182,0,2313.727,-,-
-628.5,1952.45064324141,9.99999961853027,9.99999961853027,0,0.46625,593.1891,92.90584,92.90584,1264.632,-148.1703,5.771182,78.55721,-9.204132,5.771182,0,0,1,0,0,0,0,0,3.315651,0.04154791,2.413983,5.771182,0,2313.727,-,-
-629.5,1955.22842091322,9.99999961853027,9.99999961853027,0,0.46625,593.1891,92.90584,92.90584,1264.632,-148.1703,5.771182,78.55721,-9.204132,5.771182,0,0,1,0,0,0,0,0,3.315651,0.04154791,2.413983,5.771182,0,2313.727,-,-
-630.5,1958.00619858503,9.99999961853027,9.99999961853027,0,0.53835,593.1891,98.91486,98.91486,1264.632,-148.1703,6.144454,78.55721,-9.204132,6.144454,0,0,1,0,0,0,0,0,3.315639,0.04154791,2.787267,6.144454,0,2370.783,-,-
-631.5,1960.78397625685,9.99999961853027,9.99999961853027,0,0.61045,593.1891,104.9238,104.9238,1264.632,-148.1703,6.517719,78.55721,-9.204132,6.517719,0,0,1,0,0,0,0,0,3.315625,0.04154791,3.160546,6.517719,0,2427.837,-,-
-632.5,1963.56175392866,9.99999961853027,9.99999961853027,0,0.61045,593.1891,104.9238,104.9238,1264.632,-148.1703,6.517719,78.55721,-9.204132,6.517719,0,0,1,0,0,0,0,0,3.315625,0.04154791,3.160546,6.517719,0,2427.837,-,-
-633.5,1966.33953160048,9.99999961853027,9.99999961853027,0,0.61045,593.1891,104.9238,104.9238,1264.632,-148.1703,6.517719,78.55721,-9.204132,6.517719,0,0,1,0,0,0,0,0,3.315625,0.04154791,3.160546,6.517719,0,2427.837,-,-
-634.5,1969.11730927229,9.99999961853027,9.99999961853027,0,0.61045,593.1891,104.9238,104.9238,1264.632,-148.1703,6.517719,78.55721,-9.204132,6.517719,0,0,1,0,0,0,0,0,3.315625,0.04154791,3.160546,6.517719,0,2427.837,-,-
-635.5,1971.8950869441,9.99999961853027,9.99999961853027,0,0.61045,593.1891,104.9238,104.9238,1264.632,-148.1703,6.517719,78.55721,-9.204132,6.517719,0,0,1,0,0,0,0,0,3.315625,0.04154791,3.160546,6.517719,0,2427.837,-,-
-636.5,1974.67286461592,9.99999961853027,9.99999961853027,0,0.61045,593.1891,104.9238,104.9238,1264.632,-148.1703,6.517719,78.55721,-9.204132,6.517719,0,0,1,0,0,0,0,0,3.315625,0.04154791,3.160546,6.517719,0,2427.837,-,-
-637.5,1977.45064228773,9.99999961853027,9.99999961853027,0,0.61045,593.1891,104.9238,104.9238,1264.632,-148.1703,6.517719,78.55721,-9.204132,6.517719,0,0,1,0,0,0,0,0,3.315625,0.04154791,3.160546,6.517719,0,2427.837,-,-
-638.5,1980.22841995955,9.99999961853027,9.99999961853027,0,0.7546501,593.1891,116.9413,116.9413,1264.632,-148.1703,7.26423,78.55721,-9.204132,7.26423,0,0,1,0,0,0,0,0,3.315592,0.04154791,3.907089,7.26423,0,2541.943,-,-
-639.5,1983.00619763136,9.99999961853027,9.99999961853027,0,0.7546501,593.1891,116.9413,116.9413,1264.632,-148.1703,7.26423,78.55721,-9.204132,7.26423,0,0,1,0,0,0,0,0,3.315592,0.04154791,3.907089,7.26423,0,2541.943,-,-
-640.5,1985.78397530317,9.99999961853027,9.99999961853027,0,0.7546501,593.1891,116.9413,116.9413,1264.632,-148.1703,7.26423,78.55721,-9.204132,7.26423,0,0,1,0,0,0,0,0,3.315592,0.04154791,3.907089,7.26423,0,2541.943,-,-
-641.5,1988.56175297499,9.99999961853027,9.99999961853027,0,0.7546501,593.1891,116.9413,116.9413,1264.632,-148.1703,7.26423,78.55721,-9.204132,7.26423,0,0,1,0,0,0,0,0,3.315592,0.04154791,3.907089,7.26423,0,2541.943,-,-
-642.5,1991.3395306468,9.99999961853027,9.99999961853027,0,0.7546501,593.1891,116.9413,116.9413,1264.632,-148.1703,7.26423,78.55721,-9.204132,7.26423,0,0,1,0,0,0,0,0,3.315592,0.04154791,3.907089,7.26423,0,2541.943,-,-
-643.5,1994.11730831862,9.99999961853027,9.99999961853027,0,0.7546501,593.1891,116.9413,116.9413,1264.632,-148.1703,7.26423,78.55721,-9.204132,7.26423,0,0,1,0,0,0,0,0,3.315592,0.04154791,3.907089,7.26423,0,2541.943,-,-
-644.5,1996.89508599043,9.99999961853027,9.99999961853027,0,0.7546501,593.1891,116.9413,116.9413,1264.632,-148.1703,7.26423,78.55721,-9.204132,7.26423,0,0,1,0,0,0,0,0,3.315592,0.04154791,3.907089,7.26423,0,2541.943,-,-
-645.5,1999.67286366224,9.99999961853027,9.99999961853027,0,0.8988501,593.1891,128.9583,128.9583,1264.632,-148.1703,8.010709,78.55721,-9.204132,8.010709,0,0,1,0,0,0,0,0,3.315553,0.04154791,4.653608,8.010709,0,2656.045,-,-
-646.5,2002.45064133406,9.99999961853027,9.99999961853027,0,0.8988501,593.1891,128.9583,128.9583,1264.632,-148.1703,8.010709,78.55721,-9.204132,8.010709,0,0,1,0,0,0,0,0,3.315553,0.04154791,4.653608,8.010709,0,2656.045,-,-
-647.5,2005.22841900587,9.99999961853027,9.99999961853027,0,0.8988501,593.1891,128.9583,128.9583,1264.632,-148.1703,8.010709,78.55721,-9.204132,8.010709,0,0,1,0,0,0,0,0,3.315553,0.04154791,4.653608,8.010709,0,2656.045,-,-
-648.5,2008.00619667768,9.99999961853027,9.99999961853027,0,0.8988501,593.1891,128.9583,128.9583,1264.632,-148.1703,8.010709,78.55721,-9.204132,8.010709,0,0,1,0,0,0,0,0,3.315553,0.04154791,4.653608,8.010709,0,2656.045,-,-
-649.5,2010.7839743495,9.99999961853027,9.99999961853027,0,0.8988501,593.1891,128.9583,128.9583,1264.632,-148.1703,8.010709,78.55721,-9.204132,8.010709,0,0,1,0,0,0,0,0,3.315553,0.04154791,4.653608,8.010709,0,2656.045,-,-
-650.5,2013.56175202131,9.99999961853027,9.99999961853027,0,0.8988501,593.1891,128.9583,128.9583,1264.632,-148.1703,8.010709,78.55721,-9.204132,8.010709,0,0,1,0,0,0,0,0,3.315553,0.04154791,4.653608,8.010709,0,2656.045,-,-
-651.5,2016.33952969313,9.99999961853027,9.99999961853027,0,0.8988501,593.1891,128.9583,128.9583,1264.632,-148.1703,8.010709,78.55721,-9.204132,8.010709,0,0,1,0,0,0,0,0,3.315553,0.04154791,4.653608,8.010709,0,2656.045,-,-
-652.5,2019.11730736494,9.99999961853027,9.99999961853027,0,0.8988501,593.1891,128.9583,128.9583,1264.632,-148.1703,8.010709,78.55721,-9.204132,8.010709,0,0,1,0,0,0,0,0,3.315553,0.04154791,4.653608,8.010709,0,2656.045,-,-
-653.5,2021.89508503675,9.99999961853027,9.99999961853027,0,0.8988501,593.1891,128.9583,128.9583,1264.632,-148.1703,8.010709,78.55721,-9.204132,8.010709,0,0,1,0,0,0,0,0,3.315553,0.04154791,4.653608,8.010709,0,2656.045,-,-
-654.5,2024.67286270857,9.99999961853027,9.99999961853027,0,0.8988501,593.1891,128.9583,128.9583,1264.632,-148.1703,8.010709,78.55721,-9.204132,8.010709,0,0,1,0,0,0,0,0,3.315553,0.04154791,4.653608,8.010709,0,2656.045,-,-
-655.5,2027.45064038038,9.99999961853027,9.99999961853027,0,0.8988501,593.1891,128.9583,128.9583,1264.632,-148.1703,8.010709,78.55721,-9.204132,8.010709,0,0,1,0,0,0,0,0,3.315553,0.04154791,4.653608,8.010709,0,2656.045,-,-
-656.5,2030.2284180522,9.99999961853027,9.99999961853027,0,0.8988501,593.1891,128.9583,128.9583,1264.632,-148.1703,8.010709,78.55721,-9.204132,8.010709,0,0,1,0,0,0,0,0,3.315553,0.04154791,4.653608,8.010709,0,2656.045,-,-
-657.5,2033.00619572401,9.99999961853027,9.99999961853027,0,0.8988501,593.1891,128.9583,128.9583,1264.632,-148.1703,8.010709,78.55721,-9.204132,8.010709,0,0,1,0,0,0,0,0,3.315553,0.04154791,4.653608,8.010709,0,2656.045,-,-
-658.5,2035.78397339582,9.99999961853027,9.99999961853027,0,0.8988501,593.1891,128.9583,128.9583,1264.632,-148.1703,8.010709,78.55721,-9.204132,8.010709,0,0,1,0,0,0,0,0,3.315553,0.04154791,4.653608,8.010709,0,2656.045,-,-
-659.5,2038.56175106764,9.99999961853027,9.99999961853027,0,0.8988501,593.1891,128.9583,128.9583,1264.632,-148.1703,8.010709,78.55721,-9.204132,8.010709,0,0,1,0,0,0,0,0,3.315553,0.04154791,4.653608,8.010709,0,2656.045,-,-
-660.5,2041.33952873945,9.99999961853027,9.99999961853027,0,0.8988501,593.1891,128.9583,128.9583,1264.632,-148.1703,8.010709,78.55721,-9.204132,8.010709,0,0,1,0,0,0,0,0,3.315553,0.04154791,4.653608,8.010709,0,2656.045,-,-
-661.5,2044.11730641127,9.99999961853027,9.99999961853027,0,0.8988501,593.1891,128.9583,128.9583,1264.632,-148.1703,8.010709,78.55721,-9.204132,8.010709,0,0,1,0,0,0,0,0,3.315553,0.04154791,4.653608,8.010709,0,2656.045,-,-
-662.5,2046.89508408308,9.99999961853027,9.99999961853027,0,0.8988501,593.1891,128.9583,128.9583,1264.632,-148.1703,8.010709,78.55721,-9.204132,8.010709,0,0,1,0,0,0,0,0,3.315553,0.04154791,4.653608,8.010709,0,2656.045,-,-
-663.5,2049.67286175489,9.99999961853027,9.99999961853027,0,0.8988501,593.1891,128.9583,128.9583,1264.632,-148.1703,8.010709,78.55721,-9.204132,8.010709,0,0,1,0,0,0,0,0,3.315553,0.04154791,4.653608,8.010709,0,2656.045,-,-
-664.5,2052.45063942671,9.99999961853027,9.99999961853027,0,0.8988501,593.1891,128.9583,128.9583,1264.632,-148.1703,8.010709,78.55721,-9.204132,8.010709,0,0,1,0,0,0,0,0,3.315553,0.04154791,4.653608,8.010709,0,2656.045,-,-
-665.5,2055.22841709852,9.99999961853027,9.99999961853027,0,0.8988501,593.1891,128.9583,128.9583,1264.632,-148.1703,8.010709,78.55721,-9.204132,8.010709,0,0,1,0,0,0,0,0,3.315553,0.04154791,4.653608,8.010709,0,2656.045,-,-
-666.5,2058.00619477034,9.99999961853027,9.99999961853027,0,0.8988501,593.1891,128.9583,128.9583,1264.632,-148.1703,8.010709,78.55721,-9.204132,8.010709,0,0,1,0,0,0,0,0,3.315553,0.04154791,4.653608,8.010709,0,2656.045,-,-
-667.5,2060.78397244215,9.99999961853027,9.99999961853027,0,0.8988501,593.1891,128.9583,128.9583,1264.632,-148.1703,8.010709,78.55721,-9.204132,8.010709,0,0,1,0,0,0,0,0,3.315553,0.04154791,4.653608,8.010709,0,2656.045,-,-
-668.5,2063.56175011396,9.99999961853027,9.99999961853027,0,0.8988501,593.1891,128.9583,128.9583,1264.632,-148.1703,8.010709,78.55721,-9.204132,8.010709,0,0,1,0,0,0,0,0,3.315553,0.04154791,4.653608,8.010709,0,2656.045,-,-
-669.5,2066.33952778578,9.99999961853027,9.99999961853027,0,0.8988501,593.1891,128.9583,128.9583,1264.632,-148.1703,8.010709,78.55721,-9.204132,8.010709,0,0,1,0,0,0,0,0,3.315553,0.04154791,4.653608,8.010709,0,2656.045,-,-
-670.5,2069.11730545759,9.99999961853027,9.99999961853027,0,0.8988501,593.1891,128.9583,128.9583,1264.632,-148.1703,8.010709,78.55721,-9.204132,8.010709,0,0,1,0,0,0,0,0,3.315553,0.04154791,4.653608,8.010709,0,2656.045,-,-
-671.5,2071.89508312941,9.99999961853027,9.99999961853027,0,0.8988501,593.1891,128.9583,128.9583,1264.632,-148.1703,8.010709,78.55721,-9.204132,8.010709,0,0,1,0,0,0,0,0,3.315553,0.04154791,4.653608,8.010709,0,2656.045,-,-
-672.5,2074.67286080122,9.99999961853027,9.99999961853027,0,0.8988501,593.1891,128.9583,128.9583,1264.632,-148.1703,8.010709,78.55721,-9.204132,8.010709,0,0,1,0,0,0,0,0,3.315553,0.04154791,4.653608,8.010709,0,2656.045,-,-
-673.5,2077.45063847303,9.99999961853027,9.99999961853027,0,0.8988501,593.1891,128.9583,128.9583,1264.632,-148.1703,8.010709,78.55721,-9.204132,8.010709,0,0,1,0,0,0,0,0,3.315553,0.04154791,4.653608,8.010709,0,2656.045,-,-
-674.5,2080.22841614485,9.99999961853027,9.99999961853027,0,0.7737491,593.1891,118.5329,118.5329,1264.632,-148.1703,7.363101,78.55721,-9.204132,7.363101,0,0,1,0,0,0,0,0,3.315588,0.04154791,4.005966,7.363101,0,2557.056,-,-
-675.5,2083.00619381666,9.99999961853027,9.99999961853027,0,0.7737491,593.1891,118.5329,118.5329,1264.632,-148.1703,7.363101,78.55721,-9.204132,7.363101,0,0,1,0,0,0,0,0,3.315588,0.04154791,4.005966,7.363101,0,2557.056,-,-
-676.5,2085.78397148848,9.99999961853027,9.99999961853027,0,0.7737491,593.1891,118.5329,118.5329,1264.632,-148.1703,7.363101,78.55721,-9.204132,7.363101,0,0,1,0,0,0,0,0,3.315588,0.04154791,4.005966,7.363101,0,2557.056,-,-
-677.5,2088.56174916029,9.99999961853027,9.99999961853027,0,0.7737491,593.1891,118.5329,118.5329,1264.632,-148.1703,7.363101,78.55721,-9.204132,7.363101,0,0,1,0,0,0,0,0,3.315588,0.04154791,4.005966,7.363101,0,2557.056,-,-
-678.5,2091.3395268321,9.99999961853027,9.99999961853027,0,0.7737491,593.1891,118.5329,118.5329,1264.632,-148.1703,7.363101,78.55721,-9.204132,7.363101,0,0,1,0,0,0,0,0,3.315588,0.04154791,4.005966,7.363101,0,2557.056,-,-
-679.5,2094.11730450392,9.99999961853027,9.99999961853027,0,0.7737491,593.1891,118.5329,118.5329,1264.632,-148.1703,7.363101,78.55721,-9.204132,7.363101,0,0,1,0,0,0,0,0,3.315588,0.04154791,4.005966,7.363101,0,2557.056,-,-
-680.5,2096.89508217573,9.99999961853027,9.99999961853027,0,0.7737491,593.1891,118.5329,118.5329,1264.632,-148.1703,7.363101,78.55721,-9.204132,7.363101,0,0,1,0,0,0,0,0,3.315588,0.04154791,4.005966,7.363101,0,2557.056,-,-
-681.5,2099.67285984755,9.99999961853027,9.99999961853027,0,0.7737491,593.1891,118.5329,118.5329,1264.632,-148.1703,7.363101,78.55721,-9.204132,7.363101,0,0,1,0,0,0,0,0,3.315588,0.04154791,4.005966,7.363101,0,2557.056,-,-
-682.5,2102.45063751936,9.99999961853027,9.99999961853027,0,0.7737491,593.1891,118.5329,118.5329,1264.632,-148.1703,7.363101,78.55721,-9.204132,7.363101,0,0,1,0,0,0,0,0,3.315588,0.04154791,4.005966,7.363101,0,2557.056,-,-
-683.5,2105.22841519117,9.99999961853027,9.99999961853027,0,0.7737491,593.1891,118.5329,118.5329,1264.632,-148.1703,7.363101,78.55721,-9.204132,7.363101,0,0,1,0,0,0,0,0,3.315588,0.04154791,4.005966,7.363101,0,2557.056,-,-
-684.5,2108.00619286299,9.99999961853027,9.99999961853027,0,0.7737491,593.1891,118.5329,118.5329,1264.632,-148.1703,7.363101,78.55721,-9.204132,7.363101,0,0,1,0,0,0,0,0,3.315588,0.04154791,4.005966,7.363101,0,2557.056,-,-
-685.5,2110.7839705348,9.99999961853027,9.99999961853027,0,0.7737491,593.1891,118.5329,118.5329,1264.632,-148.1703,7.363101,78.55721,-9.204132,7.363101,0,0,1,0,0,0,0,0,3.315588,0.04154791,4.005966,7.363101,0,2557.056,-,-
-686.5,2113.56174820662,9.99999961853027,9.99999961853027,0,0.7737491,593.1891,118.5329,118.5329,1264.632,-148.1703,7.363101,78.55721,-9.204132,7.363101,0,0,1,0,0,0,0,0,3.315588,0.04154791,4.005966,7.363101,0,2557.056,-,-
-687.5,2116.33952587843,9.99999961853027,9.99999961853027,0,0.7737491,593.1891,118.5329,118.5329,1264.632,-148.1703,7.363101,78.55721,-9.204132,7.363101,0,0,1,0,0,0,0,0,3.315588,0.04154791,4.005966,7.363101,0,2557.056,-,-
-688.5,2119.11730355024,9.99999961853027,9.99999961853027,0,0.6667119,593.1891,109.6126,109.6126,1264.632,-148.1703,6.808985,78.55721,-9.204132,6.808985,0,0,1,0,0,0,0,0,3.315613,0.04154791,3.451824,6.808985,0,2472.358,-,-
-689.5,2121.89508122206,9.99999961853027,9.99999961853027,0,0.6667119,593.1891,109.6126,109.6126,1264.632,-148.1703,6.808985,78.55721,-9.204132,6.808985,0,0,1,0,0,0,0,0,3.315613,0.04154791,3.451824,6.808985,0,2472.358,-,-
-690.5,2124.67285889387,9.99999961853027,9.99999961853027,0,0.6667119,593.1891,109.6126,109.6126,1264.632,-148.1703,6.808985,78.55721,-9.204132,6.808985,0,0,1,0,0,0,0,0,3.315613,0.04154791,3.451824,6.808985,0,2472.358,-,-
-691.5,2127.45063656569,9.99999961853027,9.99999961853027,0,0.6667119,593.1891,109.6126,109.6126,1264.632,-148.1703,6.808985,78.55721,-9.204132,6.808985,0,0,1,0,0,0,0,0,3.315613,0.04154791,3.451824,6.808985,0,2472.358,-,-
-692.5,2130.2284142375,9.99999961853027,9.99999961853027,0,0.6667119,593.1891,109.6126,109.6126,1264.632,-148.1703,6.808985,78.55721,-9.204132,6.808985,0,0,1,0,0,0,0,0,3.315613,0.04154791,3.451824,6.808985,0,2472.358,-,-
-693.5,2133.00619190931,9.99999961853027,9.99999961853027,0,0.6667119,593.1891,109.6126,109.6126,1264.632,-148.1703,6.808985,78.55721,-9.204132,6.808985,0,0,1,0,0,0,0,0,3.315613,0.04154791,3.451824,6.808985,0,2472.358,-,-
-694.5,2135.78396958113,9.99999961853027,9.99999961853027,0,0.6667119,593.1891,109.6126,109.6126,1264.632,-148.1703,6.808985,78.55721,-9.204132,6.808985,0,0,1,0,0,0,0,0,3.315613,0.04154791,3.451824,6.808985,0,2472.358,-,-
-695.5,2138.56174725294,9.99999961853027,9.99999961853027,0,0.5714575,593.1891,101.6741,101.6741,1264.632,-148.1703,6.315853,78.55721,-9.204132,6.315853,0,0,1,0,0,0,0,0,3.315633,0.04154791,2.958673,6.315853,0,2396.981,-,-
-696.5,2141.33952492476,9.99999961853027,9.99999961853027,0,0.4762033,593.1891,93.73537,93.73537,1264.632,-148.1703,5.822711,78.55721,-9.204132,5.822711,0,0,1,0,0,0,0,0,3.315649,0.04154791,2.465514,5.822711,0,2321.603,-,-
-697.5,2144.11730259657,9.99999961853027,9.99999961853027,0,0.4762033,593.1891,93.73537,93.73537,1264.632,-148.1703,5.822711,78.55721,-9.204132,5.822711,0,0,1,0,0,0,0,0,3.315649,0.04154791,2.465514,5.822711,0,2321.603,-,-
-698.5,2146.89508026838,9.99999961853027,9.99999961853027,0,0.4762033,593.1891,93.73537,93.73537,1264.632,-148.1703,5.822711,78.55721,-9.204132,5.822711,0,0,1,0,0,0,0,0,3.315649,0.04154791,2.465514,5.822711,0,2321.603,-,-
-699.5,2149.6728579402,9.99999961853027,9.99999961853027,0,0.4762033,593.1891,93.73537,93.73537,1264.632,-148.1703,5.822711,78.55721,-9.204132,5.822711,0,0,1,0,0,0,0,0,3.315649,0.04154791,2.465514,5.822711,0,2321.603,-,-
-700.5,2152.45063561201,9.99999961853027,9.99999961853027,0,0.4762033,593.1891,93.73537,93.73537,1264.632,-148.1703,5.822711,78.55721,-9.204132,5.822711,0,0,1,0,0,0,0,0,3.315649,0.04154791,2.465514,5.822711,0,2321.603,-,-
-701.5,2155.22841328382,9.99999961853027,9.99999961853027,0,0.4762033,593.1891,93.73537,93.73537,1264.632,-148.1703,5.822711,78.55721,-9.204132,5.822711,0,0,1,0,0,0,0,0,3.315649,0.04154791,2.465514,5.822711,0,2321.603,-,-
-702.5,2158.00619095564,9.99999961853027,9.99999961853027,0,0.377344,593.1891,85.49603,85.49603,1264.632,-148.1703,5.310895,78.55721,-9.204132,5.310895,0,0,1,0,0,0,0,0,3.315663,0.04154791,1.953684,5.310895,0,2243.371,-,-
-703.5,2160.78396862745,9.99999961853027,9.99999961853027,0,0.2784847,593.1891,77.25655,77.25655,1264.632,-148.1703,4.79907,78.55721,-9.204132,4.79907,0,0,1,0,0,0,0,0,3.315674,0.04154791,1.441849,4.79907,0,2165.137,-,-
-704.5,2163.56174629927,9.99999961853027,9.99999961853027,0,0.2784847,593.1891,77.25655,77.25655,1264.632,-148.1703,4.79907,78.55721,-9.204132,4.79907,0,0,1,0,0,0,0,0,3.315674,0.04154791,1.441849,4.79907,0,2165.137,-,-
-705.5,2166.33952397108,9.99999961853027,9.99999961853027,0,0.2784847,593.1891,77.25655,77.25655,1264.632,-148.1703,4.79907,78.55721,-9.204132,4.79907,0,0,1,0,0,0,0,0,3.315674,0.04154791,1.441849,4.79907,0,2165.137,-,-
-706.5,2169.11730164289,9.99999961853027,9.99999961853027,0,0.2784847,593.1891,77.25655,77.25655,1264.632,-148.1703,4.79907,78.55721,-9.204132,4.79907,0,0,1,0,0,0,0,0,3.315674,0.04154791,1.441849,4.79907,0,2165.137,-,-
-707.5,2171.89507931471,9.99999961853027,9.99999961853027,0,0.2784847,593.1891,77.25655,77.25655,1264.632,-148.1703,4.79907,78.55721,-9.204132,4.79907,0,0,1,0,0,0,0,0,3.315674,0.04154791,1.441849,4.79907,0,2165.137,-,-
-708.5,2174.67285698652,9.99999961853027,9.99999961853027,0,0.2784847,593.1891,77.25655,77.25655,1264.632,-148.1703,4.79907,78.55721,-9.204132,4.79907,0,0,1,0,0,0,0,0,3.315674,0.04154791,1.441849,4.79907,0,2165.137,-,-
-709.5,2177.45063465834,9.99999961853027,9.99999961853027,0,0.2784847,593.1891,77.25655,77.25655,1264.632,-148.1703,4.79907,78.55721,-9.204132,4.79907,0,0,1,0,0,0,0,0,3.315674,0.04154791,1.441849,4.79907,0,2165.137,-,-
-710.5,2180.22841233015,9.99999961853027,9.99999961853027,0,0.0808,593.1891,60.7801,60.7801,1264.632,-148.1703,3.775576,78.55721,-9.204132,3.775576,0,0,1,0,0,0,0,0,3.315686,0.04154791,0.4183418,3.775576,0,2008.693,-,-
-711.5,2183.00619000196,9.99999961853027,9.99999961853027,0,0.0808,593.1891,60.7801,60.7801,1264.632,-148.1703,3.775576,78.55721,-9.204132,3.775576,0,0,1,0,0,0,0,0,3.315686,0.04154791,0.4183418,3.775576,0,2008.693,-,-
-712.5,2185.78396767378,9.99999961853027,9.99999961853027,0,0.0808,593.1891,60.7801,60.7801,1264.632,-148.1703,3.775576,78.55721,-9.204132,3.775576,0,0,1,0,0,0,0,0,3.315686,0.04154791,0.4183418,3.775576,0,2008.693,-,-
-713.5,2188.56174534559,9.99999961853027,9.99999961853027,0,0.0808,593.1891,60.7801,60.7801,1264.632,-148.1703,3.775576,78.55721,-9.204132,3.775576,0,0,1,0,0,0,0,0,3.315686,0.04154791,0.4183418,3.775576,0,2008.693,-,-
-714.5,2191.33952301741,9.99999961853027,9.99999961853027,0,0.0808,593.1891,60.7801,60.7801,1264.632,-148.1703,3.775576,78.55721,-9.204132,3.775576,0,0,1,0,0,0,0,0,3.315686,0.04154791,0.4183418,3.775576,0,2008.693,-,-
-715.5,2194.11730068922,9.99999961853027,9.99999961853027,0,0.0808,593.1891,60.7801,60.7801,1264.632,-148.1703,3.775576,78.55721,-9.204132,3.775576,0,0,1,0,0,0,0,0,3.315686,0.04154791,0.4183418,3.775576,0,2008.693,-,-
-716.5,2196.89507836103,9.99999961853027,9.99999961853027,0,0.0808,593.1891,60.7801,60.7801,1264.632,-148.1703,3.775576,78.55721,-9.204132,3.775576,0,0,1,0,0,0,0,0,3.315686,0.04154791,0.4183418,3.775576,0,2008.693,-,-
-717.5,2199.67285603285,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-718.5,2202.45063370466,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-719.5,2205.22841137648,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-720.5,2208.00618904829,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-721.5,2210.7839667201,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-722.5,2213.56174439192,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-723.5,2216.33952206373,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-724.5,2219.11729973555,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-725.5,2221.89507740736,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-726.5,2224.67285507917,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-727.5,2227.45063275099,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-728.5,2230.2284104228,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-729.5,2233.00618809462,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-730.5,2235.78396576643,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-731.5,2238.56174343824,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-732.5,2241.33952111006,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-733.5,2244.11729878187,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-734.5,2246.89507645369,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-735.5,2249.6728541255,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-736.5,2252.45063179731,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-737.5,2255.22840946913,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-738.5,2258.00618714094,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-739.5,2260.78396481276,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-740.5,2263.56174248457,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-741.5,2266.33952015638,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-742.5,2269.1172978282,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-743.5,2271.89507550001,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-744.5,2274.67285317183,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-745.5,2277.45063084364,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-746.5,2280.22840851545,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-747.5,2283.00618618727,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-748.5,2285.78396385908,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-749.5,2288.5617415309,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-750.5,2291.33951920271,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-751.5,2294.11729687452,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-752.5,2296.89507454634,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-753.5,2299.67285221815,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-754.5,2302.45062988997,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-755.5,2305.22840756178,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-756.5,2308.00618523359,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-757.5,2310.78396290541,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-758.5,2313.56174057722,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-759.5,2316.33951824903,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-760.5,2319.11729592085,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-761.5,2321.89507359266,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-762.5,2324.67285126448,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-763.5,2327.45062893629,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-764.5,2330.2284066081,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-765.5,2333.00618427992,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-766.5,2335.78396195173,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-767.5,2338.56173962355,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-768.5,2341.33951729536,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-769.5,2344.11729496717,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-770.5,2346.89507263899,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-771.5,2349.6728503108,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-772.5,2352.45062798262,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-773.5,2355.22840565443,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-774.5,2358.00618332624,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-775.5,2360.78396099806,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-776.5,2363.56173866987,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-777.5,2366.33951634169,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-778.5,2369.1172940135,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-779.5,2371.89507168531,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-780.5,2374.67284935713,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-781.5,2377.45062702894,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-782.5,2380.22840470076,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-783.5,2383.00618237257,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-784.5,2385.78396004438,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-785.5,2388.5617377162,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-786.5,2391.33951538801,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-787.5,2394.11729305983,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-788.5,2396.89507073164,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-789.5,2399.67284840345,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-790.5,2402.45062607527,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-791.5,2405.22840374708,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-792.5,2408.0061814189,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-793.5,2410.78395909071,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-794.5,2413.56173676252,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-795.5,2416.33951443434,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-796.5,2419.11729210615,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-797.5,2421.89506977797,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-798.5,2424.67284744978,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-799.5,2427.45062512159,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-800.5,2430.22840279341,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-801.5,2433.00618046522,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-802.5,2435.78395813704,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-803.5,2438.56173580885,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-804.5,2441.33951348066,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-805.5,2444.11729115248,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-806.5,2446.89506882429,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-807.5,2449.67284649611,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-808.5,2452.45062416792,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-809.5,2455.22840183973,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-810.5,2458.00617951155,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-811.5,2460.78395718336,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-812.5,2463.56173485518,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-813.5,2466.33951252699,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-814.5,2469.1172901988,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-815.5,2471.89506787062,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-816.5,2474.67284554243,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-817.5,2477.45062321424,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-818.5,2480.22840088606,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-819.5,2483.00617855787,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-820.5,2485.78395622969,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-821.5,2488.5617339015,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-822.5,2491.33951157331,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-823.5,2494.11728924513,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-824.5,2496.89506691694,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-825.5,2499.67284458876,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-826.5,2502.45062226057,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-827.5,2505.22839993238,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-828.5,2508.0061776042,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-829.5,2510.78395527601,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-830.5,2513.56173294783,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-831.5,2516.33951061964,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-832.5,2519.11728829145,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-833.5,2521.89506596327,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-834.5,2524.67284363508,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-835.5,2527.4506213069,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-836.5,2530.22839897871,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-837.5,2533.00617665052,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-838.5,2535.78395432234,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-839.5,2538.56173199415,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-840.5,2541.33950966597,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-841.5,2544.11728733778,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-842.5,2546.89506500959,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-843.5,2549.67284268141,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-844.5,2552.45062035322,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-845.5,2555.22839802504,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-846.5,2558.00617569685,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-847.5,2560.78395336866,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-848.5,2563.56173104048,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-849.5,2566.33950871229,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-850.5,2569.11728638411,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-851.5,2571.89506405592,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-852.5,2574.67284172773,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-853.5,2577.45061939955,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-854.5,2580.22839707136,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-855.5,2583.00617474318,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-856.5,2585.78395241499,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-857.5,2588.5617300868,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-858.5,2591.33950775862,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-859.5,2594.11728543043,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-860.5,2596.89506310225,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-861.5,2599.67284077406,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-862.5,2602.45061844587,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-863.5,2605.22839611769,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-864.5,2608.0061737895,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-865.5,2610.78395146132,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-866.5,2613.56172913313,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-867.5,2616.33950680494,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-868.5,2619.11728447676,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-869.5,2621.89506214857,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-870.5,2624.67283982039,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-871.5,2627.4506174922,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-872.5,2630.22839516401,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-873.5,2633.00617283583,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-874.5,2635.78395050764,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-875.5,2638.56172817945,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-876.5,2641.33950585127,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-877.5,2644.11728352308,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-878.5,2646.8950611949,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-879.5,2649.67283886671,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-880.5,2652.45061653852,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-881.5,2655.22839421034,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-882.5,2658.00617188215,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-883.5,2660.78394955397,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-884.5,2663.56172722578,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-885.5,2666.33950489759,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-886.5,2669.11728256941,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-887.5,2671.89506024122,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-888.5,2674.67283791304,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-889.5,2677.45061558485,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-890.5,2680.22839325666,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-891.5,2683.00617092848,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-892.5,2685.78394860029,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-893.5,2688.56172627211,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-894.5,2691.33950394392,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-895.5,2694.11728161573,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-896.5,2696.89505928755,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-897.5,2699.67283695936,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-898.5,2702.45061463118,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-899.5,2705.22839230299,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-900.5,2708.0061699748,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-901.5,2710.78394764662,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-902.5,2713.56172531843,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-903.5,2716.33950299025,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-904.5,2719.11728066206,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-905.5,2721.89505833387,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-906.5,2724.67283600569,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-907.5,2727.4506136775,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-908.5,2730.22839134932,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-909.5,2733.00616902113,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-910.5,2735.78394669294,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-911.5,2738.56172436476,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-912.5,2741.33950203657,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-913.5,2744.11727970839,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-914.5,2746.8950573802,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-915.5,2749.67283505201,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-916.5,2752.45061272383,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-917.5,2755.22839039564,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-918.5,2758.00616806746,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-919.5,2760.78394573927,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-920.5,2763.56172341108,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-921.5,2766.3395010829,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-922.5,2769.11727875471,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-923.5,2771.89505642653,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-924.5,2774.67283409834,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-925.5,2777.45061177015,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-926.5,2780.22838944197,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-927.5,2783.00616711378,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-928.5,2785.78394478559,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-929.5,2788.56172245741,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-930.5,2791.33950012922,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-931.5,2794.11727780104,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-932.5,2796.89505547285,9.99999961853027,9.99999961853027,0,-0.1169525,593.1891,44.29769,44.29769,1264.632,-148.1703,2.751711,78.55721,-9.204132,2.751711,0,0,1,0,0,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,1852.193,-,-
-933.5,2799.67283314466,9.99999961853027,9.99999961853027,0,-0.0088,593.1891,53.31208,53.31208,1264.632,-148.1703,3.311673,78.55721,-9.204132,3.311673,0,0,1,0,0,0,0,0,3.315687,0.04154791,-0.045562,3.311673,0,1937.784,-,-
-934.5,2802.45061081648,9.99999961853027,9.99999961853027,0,-0.0088,593.1891,53.31208,53.31208,1264.632,-148.1703,3.311673,78.55721,-9.204132,3.311673,0,0,1,0,0,0,0,0,3.315687,0.04154791,-0.045562,3.311673,0,1937.784,-,-
-935.5,2805.22838848829,9.99999961853027,9.99999961853027,0,-0.0088,593.1891,53.31208,53.31208,1264.632,-148.1703,3.311673,78.55721,-9.204132,3.311673,0,0,1,0,0,0,0,0,3.315687,0.04154791,-0.045562,3.311673,0,1937.784,-,-
-936.5,2808.00616616011,9.99999961853027,9.99999961853027,0,-0.0088,593.1891,53.31208,53.31208,1264.632,-148.1703,3.311673,78.55721,-9.204132,3.311673,0,0,1,0,0,0,0,0,3.315687,0.04154791,-0.045562,3.311673,0,1937.784,-,-
-937.5,2810.78394383192,9.99999961853027,9.99999961853027,0,-0.0088,593.1891,53.31208,53.31208,1264.632,-148.1703,3.311673,78.55721,-9.204132,3.311673,0,0,1,0,0,0,0,0,3.315687,0.04154791,-0.045562,3.311673,0,1937.784,-,-
-938.5,2813.56172150373,9.99999961853027,9.99999961853027,0,-0.0088,593.1891,53.31208,53.31208,1264.632,-148.1703,3.311673,78.55721,-9.204132,3.311673,0,0,1,0,0,0,0,0,3.315687,0.04154791,-0.045562,3.311673,0,1937.784,-,-
-939.5,2816.33949917555,9.99999961853027,9.99999961853027,0,-0.0088,593.1891,53.31208,53.31208,1264.632,-148.1703,3.311673,78.55721,-9.204132,3.311673,0,0,1,0,0,0,0,0,3.315687,0.04154791,-0.045562,3.311673,0,1937.784,-,-
-940.5,2819.11727684736,9.99999961853027,9.99999961853027,0,0.1013454,593.1891,62.49252,62.49252,1264.632,-148.1703,3.881948,78.55721,-9.204132,3.881948,0,0,1,0,0,0,0,0,3.315685,0.04154791,0.5247153,3.881948,0,2024.953,-,-
-941.5,2821.89505451918,9.99999961853027,9.99999961853027,0,0.1013454,593.1891,62.49252,62.49252,1264.632,-148.1703,3.881948,78.55721,-9.204132,3.881948,0,0,1,0,0,0,0,0,3.315685,0.04154791,0.5247153,3.881948,0,2024.953,-,-
-942.5,2824.67283219099,9.99999961853027,9.99999961853027,0,0.1013454,593.1891,62.49252,62.49252,1264.632,-148.1703,3.881948,78.55721,-9.204132,3.881948,0,0,1,0,0,0,0,0,3.315685,0.04154791,0.5247153,3.881948,0,2024.953,-,-
-943.5,2827.4506098628,9.99999961853027,9.99999961853027,0,0.1013454,593.1891,62.49252,62.49252,1264.632,-148.1703,3.881948,78.55721,-9.204132,3.881948,0,0,1,0,0,0,0,0,3.315685,0.04154791,0.5247153,3.881948,0,2024.953,-,-
-944.5,2830.22838753462,9.99999961853027,9.99999961853027,0,0.1013454,593.1891,62.49252,62.49252,1264.632,-148.1703,3.881948,78.55721,-9.204132,3.881948,0,0,1,0,0,0,0,0,3.315685,0.04154791,0.5247153,3.881948,0,2024.953,-,-
-945.5,2833.00616520643,9.99999961853027,9.99999961853027,0,0.1013454,593.1891,62.49252,62.49252,1264.632,-148.1703,3.881948,78.55721,-9.204132,3.881948,0,0,1,0,0,0,0,0,3.315685,0.04154791,0.5247153,3.881948,0,2024.953,-,-
-946.5,2835.78394287825,9.99999961853027,9.99999961853027,0,0.1013454,593.1891,62.49252,62.49252,1264.632,-148.1703,3.881948,78.55721,-9.204132,3.881948,0,0,1,0,0,0,0,0,3.315685,0.04154791,0.5247153,3.881948,0,2024.953,-,-
-947.5,2838.56172055006,9.99999961853027,9.99999961853027,0,0.1564167,593.1891,67.08258,67.08258,1264.632,-148.1703,4.167077,78.55721,-9.204132,4.167077,0,0,1,0,0,0,0,0,3.315683,0.04154791,0.8098465,4.167077,0,2068.535,-,-
-948.5,2841.33949822187,9.99999961853027,9.99999961853027,0,0.2114881,593.1891,71.67262,71.67262,1264.632,-148.1703,4.452204,78.55721,-9.204132,4.452204,0,0,1,0,0,0,0,0,3.315679,0.04154791,1.094977,4.452204,0,2112.118,-,-
-949.5,2844.11727589369,9.99999961853027,9.99999961853027,0,0.2114881,593.1891,71.67262,71.67262,1264.632,-148.1703,4.452204,78.55721,-9.204132,4.452204,0,0,1,0,0,0,0,0,3.315679,0.04154791,1.094977,4.452204,0,2112.118,-,-
-950.5,2846.8950535655,9.99999961853027,9.99999961853027,0,0.2114881,593.1891,71.67262,71.67262,1264.632,-148.1703,4.452204,78.55721,-9.204132,4.452204,0,0,1,0,0,0,0,0,3.315679,0.04154791,1.094977,4.452204,0,2112.118,-,-
-951.5,2849.67283123732,9.99999961853027,9.99999961853027,0,0.2114881,593.1891,71.67262,71.67262,1264.632,-148.1703,4.452204,78.55721,-9.204132,4.452204,0,0,1,0,0,0,0,0,3.315679,0.04154791,1.094977,4.452204,0,2112.118,-,-
-952.5,2852.45060890913,9.99999961853027,9.99999961853027,0,0.2114881,593.1891,71.67262,71.67262,1264.632,-148.1703,4.452204,78.55721,-9.204132,4.452204,0,0,1,0,0,0,0,0,3.315679,0.04154791,1.094977,4.452204,0,2112.118,-,-
-953.5,2855.22838658094,9.99999961853027,9.99999961853027,0,0.2114881,593.1891,71.67262,71.67262,1264.632,-148.1703,4.452204,78.55721,-9.204132,4.452204,0,0,1,0,0,0,0,0,3.315679,0.04154791,1.094977,4.452204,0,2112.118,-,-
-954.5,2858.00616425276,9.99999961853027,9.99999961853027,0,0.2665594,593.1891,76.26263,76.26263,1264.632,-148.1703,4.737329,78.55721,-9.204132,4.737329,0,0,1,0,0,0,0,0,3.315675,0.04154791,1.380106,4.737329,0,2155.7,-,-
-955.5,2860.78394192457,9.99999961853027,9.99999961853027,0,0.3216308,593.1891,80.85262,80.85262,1264.632,-148.1703,5.022452,78.55721,-9.204132,5.022452,0,0,1,0,0,0,0,0,3.31567,0.04154791,1.665235,5.022452,0,2199.282,-,-
-956.5,2863.56171959639,9.99999961853027,9.99999961853027,0,0.3216308,593.1891,80.85262,80.85262,1264.632,-148.1703,5.022452,78.55721,-9.204132,5.022452,0,0,1,0,0,0,0,0,3.31567,0.04154791,1.665235,5.022452,0,2199.282,-,-
-957.5,2866.3394972682,9.99999961853027,9.99999961853027,0,0.3216308,593.1891,80.85262,80.85262,1264.632,-148.1703,5.022452,78.55721,-9.204132,5.022452,0,0,1,0,0,0,0,0,3.31567,0.04154791,1.665235,5.022452,0,2199.282,-,-
-958.5,2869.11727494001,9.99999961853027,9.99999961853027,0,0.3216308,593.1891,80.85262,80.85262,1264.632,-148.1703,5.022452,78.55721,-9.204132,5.022452,0,0,1,0,0,0,0,0,3.31567,0.04154791,1.665235,5.022452,0,2199.282,-,-
-959.5,2871.89505261183,9.99999961853027,9.99999961853027,0,0.3216308,593.1891,80.85262,80.85262,1264.632,-148.1703,5.022452,78.55721,-9.204132,5.022452,0,0,1,0,0,0,0,0,3.31567,0.04154791,1.665235,5.022452,0,2199.282,-,-
-960.5,2874.67283028364,9.99999961853027,9.99999961853027,0,0.3216308,593.1891,80.85262,80.85262,1264.632,-148.1703,5.022452,78.55721,-9.204132,5.022452,0,0,1,0,0,0,0,0,3.31567,0.04154791,1.665235,5.022452,0,2199.282,-,-
-961.5,2877.45060795546,9.99999961853027,9.99999961853027,0,0.3216308,593.1891,80.85262,80.85262,1264.632,-148.1703,5.022452,78.55721,-9.204132,5.022452,0,0,1,0,0,0,0,0,3.31567,0.04154791,1.665235,5.022452,0,2199.282,-,-
-962.5,2880.22838562727,9.99999961853027,9.99999961853027,0,0.4317735,593.1891,90.03243,90.03243,1264.632,-148.1703,5.59269,78.55721,-9.204132,5.59269,0,0,1,0,0,0,0,0,3.315656,0.04154791,2.235486,5.59269,0,2286.444,-,-
-963.5,2883.00616329908,9.99999961853027,9.99999961853027,0,0.4317735,593.1891,90.03243,90.03243,1264.632,-148.1703,5.59269,78.55721,-9.204132,5.59269,0,0,1,0,0,0,0,0,3.315656,0.04154791,2.235486,5.59269,0,2286.444,-,-
-964.5,2885.7839409709,9.99999961853027,9.99999961853027,0,0.4317735,593.1891,90.03243,90.03243,1264.632,-148.1703,5.59269,78.55721,-9.204132,5.59269,0,0,1,0,0,0,0,0,3.315656,0.04154791,2.235486,5.59269,0,2286.444,-,-
-965.5,2888.56171864271,9.99999961853027,9.99999961853027,0,0.4317735,593.1891,90.03243,90.03243,1264.632,-148.1703,5.59269,78.55721,-9.204132,5.59269,0,0,1,0,0,0,0,0,3.315656,0.04154791,2.235486,5.59269,0,2286.444,-,-
-966.5,2891.33949631453,9.99999961853027,9.99999961853027,0,0.4317735,593.1891,90.03243,90.03243,1264.632,-148.1703,5.59269,78.55721,-9.204132,5.59269,0,0,1,0,0,0,0,0,3.315656,0.04154791,2.235486,5.59269,0,2286.444,-,-
-967.5,2894.11727398634,9.99999961853027,9.99999961853027,0,0.4317735,593.1891,90.03243,90.03243,1264.632,-148.1703,5.59269,78.55721,-9.204132,5.59269,0,0,1,0,0,0,0,0,3.315656,0.04154791,2.235486,5.59269,0,2286.444,-,-
-968.5,2896.89505165815,9.99999961853027,9.99999961853027,0,0.4317735,593.1891,90.03243,90.03243,1264.632,-148.1703,5.59269,78.55721,-9.204132,5.59269,0,0,1,0,0,0,0,0,3.315656,0.04154791,2.235486,5.59269,0,2286.444,-,-
-969.5,2899.67282932997,9.99999961853027,9.99999961853027,0,0.5419162,593.1891,99.21207,99.21207,1264.632,-148.1703,6.162916,78.55721,-9.204132,6.162916,0,0,1,0,0,0,0,0,3.315638,0.04154791,2.80573,6.162916,0,2373.605,-,-
-970.5,2902.45060700178,9.99999961853027,9.99999961853027,0,0.5419162,593.1891,99.21207,99.21207,1264.632,-148.1703,6.162916,78.55721,-9.204132,6.162916,0,0,1,0,0,0,0,0,3.315638,0.04154791,2.80573,6.162916,0,2373.605,-,-
-971.5,2905.2283846736,9.99999961853027,9.99999961853027,0,0.5419162,593.1891,99.21207,99.21207,1264.632,-148.1703,6.162916,78.55721,-9.204132,6.162916,0,0,1,0,0,0,0,0,3.315638,0.04154791,2.80573,6.162916,0,2373.605,-,-
-972.5,2908.00616234541,9.99999961853027,9.99999961853027,0,0.5419162,593.1891,99.21207,99.21207,1264.632,-148.1703,6.162916,78.55721,-9.204132,6.162916,0,0,1,0,0,0,0,0,3.315638,0.04154791,2.80573,6.162916,0,2373.605,-,-
-973.5,2910.78394001722,9.99999961853027,9.99999961853027,0,0.5419162,593.1891,99.21207,99.21207,1264.632,-148.1703,6.162916,78.55721,-9.204132,6.162916,0,0,1,0,0,0,0,0,3.315638,0.04154791,2.80573,6.162916,0,2373.605,-,-
-974.5,2913.56171768904,9.99999961853027,9.99999961853027,0,0.5419162,593.1891,99.21207,99.21207,1264.632,-148.1703,6.162916,78.55721,-9.204132,6.162916,0,0,1,0,0,0,0,0,3.315638,0.04154791,2.80573,6.162916,0,2373.605,-,-
-975.5,2916.33949536085,9.99999961853027,9.99999961853027,0,0.5419162,593.1891,99.21207,99.21207,1264.632,-148.1703,6.162916,78.55721,-9.204132,6.162916,0,0,1,0,0,0,0,0,3.315638,0.04154791,2.80573,6.162916,0,2373.605,-,-
-976.5,2919.11727303267,9.99999961853027,9.99999961853027,0,0.652059,593.1891,108.3915,108.3915,1264.632,-148.1703,6.733128,78.55721,-9.204132,6.733128,0,0,1,0,0,0,0,0,3.315616,0.04154791,3.375963,6.733128,0,2460.763,-,-
-977.5,2921.89505070448,9.99999961853027,9.99999961853027,0,0.652059,593.1891,108.3915,108.3915,1264.632,-148.1703,6.733128,78.55721,-9.204132,6.733128,0,0,1,0,0,0,0,0,3.315616,0.04154791,3.375963,6.733128,0,2460.763,-,-
-978.5,2924.67282837629,9.99999961853027,9.99999961853027,0,0.652059,593.1891,108.3915,108.3915,1264.632,-148.1703,6.733128,78.55721,-9.204132,6.733128,0,0,1,0,0,0,0,0,3.315616,0.04154791,3.375963,6.733128,0,2460.763,-,-
-979.5,2927.45060604811,9.99999961853027,9.99999961853027,0,0.652059,593.1891,108.3915,108.3915,1264.632,-148.1703,6.733128,78.55721,-9.204132,6.733128,0,0,1,0,0,0,0,0,3.315616,0.04154791,3.375963,6.733128,0,2460.763,-,-
-980.5,2930.22838371992,9.99999961853027,9.99999961853027,0,0.652059,593.1891,108.3915,108.3915,1264.632,-148.1703,6.733128,78.55721,-9.204132,6.733128,0,0,1,0,0,0,0,0,3.315616,0.04154791,3.375963,6.733128,0,2460.763,-,-
-981.5,2933.00616139174,9.99999961853027,9.99999961853027,0,0.652059,593.1891,108.3915,108.3915,1264.632,-148.1703,6.733128,78.55721,-9.204132,6.733128,0,0,1,0,0,0,0,0,3.315616,0.04154791,3.375963,6.733128,0,2460.763,-,-
-982.5,2935.78393906355,9.99999961853027,9.99999961853027,0,0.652059,593.1891,108.3915,108.3915,1264.632,-148.1703,6.733128,78.55721,-9.204132,6.733128,0,0,1,0,0,0,0,0,3.315616,0.04154791,3.375963,6.733128,0,2460.763,-,-
-983.5,2938.56171673536,9.99999961853027,9.99999961853027,0,0.7071303,593.1891,112.9811,112.9811,1264.632,-148.1703,7.018227,78.55721,-9.204132,7.018227,0,0,1,0,0,0,0,0,3.315604,0.04154791,3.661075,7.018227,0,2504.341,-,-
-984.5,2941.33949440718,9.99999961853027,9.99999961853027,0,0.7622016,593.1891,117.5706,117.5706,1264.632,-148.1703,7.303323,78.55721,-9.204132,7.303323,0,0,1,0,0,0,0,0,3.31559,0.04154791,3.946184,7.303323,0,2547.919,-,-
-985.5,2944.11727207899,9.99999961853027,9.99999961853027,0,0.7622016,593.1891,117.5706,117.5706,1264.632,-148.1703,7.303323,78.55721,-9.204132,7.303323,0,0,1,0,0,0,0,0,3.31559,0.04154791,3.946184,7.303323,0,2547.919,-,-
-986.5,2946.8950497508,9.99999961853027,9.99999961853027,0,0.7622016,593.1891,117.5706,117.5706,1264.632,-148.1703,7.303323,78.55721,-9.204132,7.303323,0,0,1,0,0,0,0,0,3.31559,0.04154791,3.946184,7.303323,0,2547.919,-,-
-987.5,2949.67282742262,9.99999961853027,9.99999961853027,0,0.7622016,593.1891,117.5706,117.5706,1264.632,-148.1703,7.303323,78.55721,-9.204132,7.303323,0,0,1,0,0,0,0,0,3.31559,0.04154791,3.946184,7.303323,0,2547.919,-,-
-988.5,2952.45060509443,9.99999961853027,9.99999961853027,0,0.7622016,593.1891,117.5706,117.5706,1264.632,-148.1703,7.303323,78.55721,-9.204132,7.303323,0,0,1,0,0,0,0,0,3.31559,0.04154791,3.946184,7.303323,0,2547.919,-,-
-989.5,2955.22838276625,9.99999961853027,9.99999961853027,0,0.7622016,593.1891,117.5706,117.5706,1264.632,-148.1703,7.303323,78.55721,-9.204132,7.303323,0,0,1,0,0,0,0,0,3.31559,0.04154791,3.946184,7.303323,0,2547.919,-,-
-990.5,2958.00616043806,9.99999961853027,9.99999961853027,0,0.817273,593.1891,122.16,122.16,1264.632,-148.1703,7.588413,78.55721,-9.204132,7.588413,0,0,1,0,0,0,0,0,3.315576,0.04154791,4.231289,7.588413,0,2591.496,-,-
-991.5,2960.78393810987,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-992.5,2963.56171578169,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-993.5,2966.3394934535,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-994.5,2969.11727112532,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-995.5,2971.89504879713,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-996.5,2974.67282646894,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-997.5,2977.45060414076,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-998.5,2980.22838181257,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-999.5,2983.00615948439,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-1000.5,2985.7839371562,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-1001.5,2988.56171482801,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-1002.5,2991.33949249983,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-1003.5,2994.11727017164,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-1004.5,2996.89504784346,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-1005.5,2999.67282551527,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-1006.5,3002.45060318708,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-1007.5,3005.2283808589,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-1008.5,3008.00615853071,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-1009.5,3010.78393620253,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-1010.5,3013.56171387434,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-1011.5,3016.33949154615,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-1012.5,3019.11726921797,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-1013.5,3021.89504688978,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-1014.5,3024.6728245616,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-1015.5,3027.45060223341,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-1016.5,3030.22837990522,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-1017.5,3033.00615757704,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-1018.5,3035.78393524885,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-1019.5,3038.56171292067,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-1020.5,3041.33949059248,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-1021.5,3044.11726826429,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-1022.5,3046.89504593611,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-1023.5,3049.67282360792,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-1024.5,3052.45060127974,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-1025.5,3055.22837895155,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-1026.5,3058.00615662336,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-1027.5,3060.78393429518,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-1028.5,3063.56171196699,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-1029.5,3066.33948963881,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-1030.5,3069.11726731062,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-1031.5,3071.89504498243,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-1032.5,3074.67282265425,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-1033.5,3077.45060032606,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-1034.5,3080.22837799788,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-1035.5,3083.00615566969,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-1036.5,3085.7839333415,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-1037.5,3088.56171101332,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-1038.5,3091.33948868513,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-1039.5,3094.11726635695,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-1040.5,3096.89504402876,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-1041.5,3099.67282170057,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-1042.5,3102.45059937239,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-1043.5,3105.2283770442,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-1044.5,3108.00615471601,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-1045.5,3110.78393238783,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-1046.5,3113.56171005964,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-1047.5,3116.33948773146,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-1048.5,3119.11726540327,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-1049.5,3121.89504307508,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-1050.5,3124.6728207469,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-1051.5,3127.45059841871,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-1052.5,3130.22837609053,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-1053.5,3133.00615376234,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-1054.5,3135.78393143415,9.99999961853027,9.99999961853027,0,0.8723443,593.1891,126.7494,126.7494,1264.632,-148.1703,7.873499,78.55721,-9.204132,7.873499,0,0,1,0,0,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2635.072,-,-
-1055.5,3138.56170910597,9.99999961853027,9.99999961853027,0,0.9294809,593.1891,131.5108,131.5108,1264.632,-148.1703,8.169271,78.55721,-9.204132,8.169271,0,0,1,0,0,0,0,0,3.315543,0.04154791,4.81218,8.169271,0,2680.281,-,-
-1056.5,3141.33948677778,9.99999961853027,9.99999961853027,0,0.9866174,593.1891,136.2721,136.2721,1264.632,-148.1703,8.465036,78.55721,-9.204132,8.465036,0,0,1,0,0,0,0,0,3.315525,0.04154791,5.107963,8.465036,0,2725.49,-,-
-1057.5,3144.1172644496,9.99999961853027,9.99999961853027,0,0.9866174,593.1891,136.2721,136.2721,1264.632,-148.1703,8.465036,78.55721,-9.204132,8.465036,0,0,1,0,0,0,0,0,3.315525,0.04154791,5.107963,8.465036,0,2725.49,-,-
-1058.5,3146.89504212141,9.99999961853027,9.99999961853027,0,0.9866174,593.1891,136.2721,136.2721,1264.632,-148.1703,8.465036,78.55721,-9.204132,8.465036,0,0,1,0,0,0,0,0,3.315525,0.04154791,5.107963,8.465036,0,2725.49,-,-
-1059.5,3149.67281979322,9.99999961853027,9.99999961853027,0,0.9866174,593.1891,136.2721,136.2721,1264.632,-148.1703,8.465036,78.55721,-9.204132,8.465036,0,0,1,0,0,0,0,0,3.315525,0.04154791,5.107963,8.465036,0,2725.49,-,-
-1060.5,3152.45059746504,9.99999961853027,9.99999961853027,0,0.9866174,593.1891,136.2721,136.2721,1264.632,-148.1703,8.465036,78.55721,-9.204132,8.465036,0,0,1,0,0,0,0,0,3.315525,0.04154791,5.107963,8.465036,0,2725.49,-,-
-1061.5,3155.22837513685,9.99999961853027,9.99999961853027,0,0.9866174,593.1891,136.2721,136.2721,1264.632,-148.1703,8.465036,78.55721,-9.204132,8.465036,0,0,1,0,0,0,0,0,3.315525,0.04154791,5.107963,8.465036,0,2725.49,-,-
-1062.5,3158.00615280867,9.99999961853027,9.99999961853027,0,0.9866174,593.1891,136.2721,136.2721,1264.632,-148.1703,8.465036,78.55721,-9.204132,8.465036,0,0,1,0,0,0,0,0,3.315525,0.04154791,5.107963,8.465036,0,2725.49,-,-
-1063.5,3160.78393048048,9.99999961853027,9.99999961853027,0,0.9866174,593.1891,136.2721,136.2721,1264.632,-148.1703,8.465036,78.55721,-9.204132,8.465036,0,0,1,0,0,0,0,0,3.315525,0.04154791,5.107963,8.465036,0,2725.49,-,-
-1064.5,3163.56170815229,9.99999961853027,9.99999961853027,0,0.9866174,593.1891,136.2721,136.2721,1264.632,-148.1703,8.465036,78.55721,-9.204132,8.465036,0,0,1,0,0,0,0,0,3.315525,0.04154791,5.107963,8.465036,0,2725.49,-,-
-1065.5,3166.33948582411,9.99999961853027,9.99999961853027,0,0.9866174,593.1891,136.2721,136.2721,1264.632,-148.1703,8.465036,78.55721,-9.204132,8.465036,0,0,1,0,0,0,0,0,3.315525,0.04154791,5.107963,8.465036,0,2725.49,-,-
-1066.5,3169.11726349592,9.99999961853027,9.99999961853027,0,1.13118,593.1891,148.3183,148.3183,1264.632,-148.1703,9.21333,78.55721,-9.204132,9.21333,0,0,1,0,0,0,0,0,3.315475,0.04154791,5.856308,9.21333,0,2839.869,-,-
-1067.5,3171.89504116774,9.99999961853027,9.99999961853027,0,1.13118,593.1891,148.3183,148.3183,1264.632,-148.1703,9.21333,78.55721,-9.204132,9.21333,0,0,1,0,0,0,0,0,3.315475,0.04154791,5.856308,9.21333,0,2839.869,-,-
-1068.5,3174.67281883955,9.99999961853027,9.99999961853027,0,1.13118,593.1891,148.3183,148.3183,1264.632,-148.1703,9.21333,78.55721,-9.204132,9.21333,0,0,1,0,0,0,0,0,3.315475,0.04154791,5.856308,9.21333,0,2839.869,-,-
-1069.5,3177.45059651136,9.99999961853027,9.99999961853027,0,1.13118,593.1891,148.3183,148.3183,1264.632,-148.1703,9.21333,78.55721,-9.204132,9.21333,0,0,1,0,0,0,0,0,3.315475,0.04154791,5.856308,9.21333,0,2839.869,-,-
-1070.5,3180.22837418318,9.99999961853027,9.99999961853027,0,1.13118,593.1891,148.3183,148.3183,1264.632,-148.1703,9.21333,78.55721,-9.204132,9.21333,0,0,1,0,0,0,0,0,3.315475,0.04154791,5.856308,9.21333,0,2839.869,-,-
-1071.5,3183.00615185499,9.99999961853027,9.99999961853027,0,1.13118,593.1891,148.3183,148.3183,1264.632,-148.1703,9.21333,78.55721,-9.204132,9.21333,0,0,1,0,0,0,0,0,3.315475,0.04154791,5.856308,9.21333,0,2839.869,-,-
-1072.5,3185.78392952681,9.99999961853027,9.99999961853027,0,1.13118,593.1891,148.3183,148.3183,1264.632,-148.1703,9.21333,78.55721,-9.204132,9.21333,0,0,1,0,0,0,0,0,3.315475,0.04154791,5.856308,9.21333,0,2839.869,-,-
-1073.5,3188.56170719862,9.99999961853027,9.99999961853027,0,1.13118,593.1891,148.3183,148.3183,1264.632,-148.1703,9.21333,78.55721,-9.204132,9.21333,0,0,1,0,0,0,0,0,3.315475,0.04154791,5.856308,9.21333,0,2839.869,-,-
-1074.5,3191.33948487043,9.99999961853027,9.99999961853027,0,1.13118,593.1891,148.3183,148.3183,1264.632,-148.1703,9.21333,78.55721,-9.204132,9.21333,0,0,1,0,0,0,0,0,3.315475,0.04154791,5.856308,9.21333,0,2839.869,-,-
-1075.5,3194.11726254225,9.99999961853027,9.99999961853027,0,1.13118,593.1891,148.3183,148.3183,1264.632,-148.1703,9.21333,78.55721,-9.204132,9.21333,0,0,1,0,0,0,0,0,3.315475,0.04154791,5.856308,9.21333,0,2839.869,-,-
-1076.5,3196.89504021406,9.99999961853027,9.99999961853027,0,1.13118,593.1891,148.3183,148.3183,1264.632,-148.1703,9.21333,78.55721,-9.204132,9.21333,0,0,1,0,0,0,0,0,3.315475,0.04154791,5.856308,9.21333,0,2839.869,-,-
-1077.5,3199.67281788588,9.99999961853027,9.99999961853027,0,1.268351,593.1891,159.748,159.748,1264.632,-148.1703,9.923326,78.55721,-9.204132,9.923326,0,0,1,0,0,0,0,0,3.31542,0.04154791,6.566358,9.923326,0,2948.394,-,-
-1078.5,3202.45059555769,9.99999961853027,9.99999961853027,0,1.268351,593.1891,159.748,159.748,1264.632,-148.1703,9.923326,78.55721,-9.204132,9.923326,0,0,1,0,0,0,0,0,3.31542,0.04154791,6.566358,9.923326,0,2948.394,-,-
-1079.5,3205.2283732295,9.99999961853027,9.99999961853027,0,1.268351,593.1891,159.748,159.748,1264.632,-148.1703,9.923326,78.55721,-9.204132,9.923326,0,0,1,0,0,0,0,0,3.31542,0.04154791,6.566358,9.923326,0,2948.394,-,-
-1080.5,3208.00615090132,9.99999961853027,9.99999961853027,0,1.268351,593.1891,159.748,159.748,1264.632,-148.1703,9.923326,78.55721,-9.204132,9.923326,0,0,1,0,0,0,0,0,3.31542,0.04154791,6.566358,9.923326,0,2948.394,-,-
-1081.5,3210.78392857313,9.99999961853027,9.99999961853027,0,1.268351,593.1891,159.748,159.748,1264.632,-148.1703,9.923326,78.55721,-9.204132,9.923326,0,0,1,0,0,0,0,0,3.31542,0.04154791,6.566358,9.923326,0,2948.394,-,-
-1082.5,3213.56170624495,9.99999961853027,9.99999961853027,0,1.268351,593.1891,159.748,159.748,1264.632,-148.1703,9.923326,78.55721,-9.204132,9.923326,0,0,1,0,0,0,0,0,3.31542,0.04154791,6.566358,9.923326,0,2948.394,-,-
-1083.5,3216.33948391676,9.99999961853027,9.99999961853027,0,1.268351,593.1891,159.748,159.748,1264.632,-148.1703,9.923326,78.55721,-9.204132,9.923326,0,0,1,0,0,0,0,0,3.31542,0.04154791,6.566358,9.923326,0,2948.394,-,-
-1084.5,3219.11726158857,9.99999961853027,9.99999961853027,0,1.268351,593.1891,159.748,159.748,1264.632,-148.1703,9.923326,78.55721,-9.204132,9.923326,0,0,1,0,0,0,0,0,3.31542,0.04154791,6.566358,9.923326,0,2948.394,-,-
-1085.5,3221.89503926039,9.99999961853027,9.99999961853027,0,1.268351,593.1891,159.748,159.748,1264.632,-148.1703,9.923326,78.55721,-9.204132,9.923326,0,0,1,0,0,0,0,0,3.31542,0.04154791,6.566358,9.923326,0,2948.394,-,-
-1086.5,3224.6728169322,9.99999961853027,9.99999961853027,0,1.268351,593.1891,159.748,159.748,1264.632,-148.1703,9.923326,78.55721,-9.204132,9.923326,0,0,1,0,0,0,0,0,3.31542,0.04154791,6.566358,9.923326,0,2948.394,-,-
-1087.5,3227.45059460402,9.99999961853027,9.99999961853027,0,1.268351,593.1891,159.748,159.748,1264.632,-148.1703,9.923326,78.55721,-9.204132,9.923326,0,0,1,0,0,0,0,0,3.31542,0.04154791,6.566358,9.923326,0,2948.394,-,-
-1088.5,3230.22837227583,9.99999961853027,9.99999961853027,0,1.268351,593.1891,159.748,159.748,1264.632,-148.1703,9.923326,78.55721,-9.204132,9.923326,0,0,1,0,0,0,0,0,3.31542,0.04154791,6.566358,9.923326,0,2948.394,-,-
-1089.5,3233.00614994764,9.99999961853027,9.99999961853027,0,1.268351,593.1891,159.748,159.748,1264.632,-148.1703,9.923326,78.55721,-9.204132,9.923326,0,0,1,0,0,0,0,0,3.31542,0.04154791,6.566358,9.923326,0,2948.394,-,-
-1090.5,3235.78392761946,9.99999961853027,9.99999961853027,0,1.268351,593.1891,159.748,159.748,1264.632,-148.1703,9.923326,78.55721,-9.204132,9.923326,0,0,1,0,0,0,0,0,3.31542,0.04154791,6.566358,9.923326,0,2948.394,-,-
-1091.5,3238.56170529127,9.99999961853027,9.99999961853027,0,1.216903,593.1891,155.4612,155.4612,1264.632,-148.1703,9.657037,78.55721,-9.204132,9.657037,0,0,1,0,0,0,0,0,3.315441,0.04154791,6.300047,9.657037,0,2907.691,-,-
-1092.5,3241.33948296309,9.99999961853027,9.99999961853027,0,1.165454,593.1891,151.1743,151.1743,1264.632,-148.1703,9.390739,78.55721,-9.204132,9.390739,0,0,1,0,0,0,0,0,3.315462,0.04154791,6.03373,9.390739,0,2866.986,-,-
-1093.5,3244.1172606349,9.99999961853027,9.99999961853027,0,1.165454,593.1891,151.1743,151.1743,1264.632,-148.1703,9.390739,78.55721,-9.204132,9.390739,0,0,1,0,0,0,0,0,3.315462,0.04154791,6.03373,9.390739,0,2866.986,-,-
-1094.5,3246.89503830671,9.99999961853027,9.99999961853027,0,1.165454,593.1891,151.1743,151.1743,1264.632,-148.1703,9.390739,78.55721,-9.204132,9.390739,0,0,1,0,0,0,0,0,3.315462,0.04154791,6.03373,9.390739,0,2866.986,-,-
-1095.5,3249.67281597853,9.99999961853027,9.99999961853027,0,1.165454,593.1891,151.1743,151.1743,1264.632,-148.1703,9.390739,78.55721,-9.204132,9.390739,0,0,1,0,0,0,0,0,3.315462,0.04154791,6.03373,9.390739,0,2866.986,-,-
-1096.5,3252.45059365034,9.99999961853027,9.99999961853027,0,1.165454,593.1891,151.1743,151.1743,1264.632,-148.1703,9.390739,78.55721,-9.204132,9.390739,0,0,1,0,0,0,0,0,3.315462,0.04154791,6.03373,9.390739,0,2866.986,-,-
-1097.5,3255.22837132216,9.99999961853027,9.99999961853027,0,1.165454,593.1891,151.1743,151.1743,1264.632,-148.1703,9.390739,78.55721,-9.204132,9.390739,0,0,1,0,0,0,0,0,3.315462,0.04154791,6.03373,9.390739,0,2866.986,-,-
-1098.5,3258.00614899397,9.99999961853027,9.99999961853027,0,1.165454,593.1891,151.1743,151.1743,1264.632,-148.1703,9.390739,78.55721,-9.204132,9.390739,0,0,1,0,0,0,0,0,3.315462,0.04154791,6.03373,9.390739,0,2866.986,-,-
-1099.5,3260.78392666578,9.99999961853027,9.99999961853027,0,1.165454,593.1891,151.1743,151.1743,1264.632,-148.1703,9.390739,78.55721,-9.204132,9.390739,0,0,1,0,0,0,0,0,3.315462,0.04154791,6.03373,9.390739,0,2866.986,-,-
-1100.5,3263.5617043376,9.99999961853027,9.99999961853027,0,1.165454,593.1891,151.1743,151.1743,1264.632,-148.1703,9.390739,78.55721,-9.204132,9.390739,0,0,1,0,0,0,0,0,3.315462,0.04154791,6.03373,9.390739,0,2866.986,-,-
-1101.5,3266.33948200941,9.99999961853027,9.99999961853027,0,1.165454,593.1891,151.1743,151.1743,1264.632,-148.1703,9.390739,78.55721,-9.204132,9.390739,0,0,1,0,0,0,0,0,3.315462,0.04154791,6.03373,9.390739,0,2866.986,-,-
-1102.5,3269.11725968122,9.99999961853027,9.99999961853027,0,1.165454,593.1891,151.1743,151.1743,1264.632,-148.1703,9.390739,78.55721,-9.204132,9.390739,0,0,1,0,0,0,0,0,3.315462,0.04154791,6.03373,9.390739,0,2866.986,-,-
-1103.5,3271.89503735304,9.99999961853027,9.99999961853027,0,1.165454,593.1891,151.1743,151.1743,1264.632,-148.1703,9.390739,78.55721,-9.204132,9.390739,0,0,1,0,0,0,0,0,3.315462,0.04154791,6.03373,9.390739,0,2866.986,-,-
-1104.5,3274.67281502485,9.99999961853027,9.99999961853027,0,1.165454,593.1891,151.1743,151.1743,1264.632,-148.1703,9.390739,78.55721,-9.204132,9.390739,0,0,1,0,0,0,0,0,3.315462,0.04154791,6.03373,9.390739,0,2866.986,-,-
-1105.5,3277.45059269667,9.99999961853027,9.99999961853027,0,1.165454,593.1891,151.1743,151.1743,1264.632,-148.1703,9.390739,78.55721,-9.204132,9.390739,0,0,1,0,0,0,0,0,3.315462,0.04154791,6.03373,9.390739,0,2866.986,-,-
-1106.5,3280.22837036848,9.99999961853027,9.99999961853027,0,1.062558,593.1891,142.6003,142.6003,1264.632,-148.1703,8.85813,78.55721,-9.204132,8.85813,0,0,1,0,0,0,0,0,3.3155,0.04154791,5.501083,8.85813,0,2785.575,-,-
-1107.5,3283.00614804029,9.99999961853027,9.99999961853027,0,1.062558,593.1891,142.6003,142.6003,1264.632,-148.1703,8.85813,78.55721,-9.204132,8.85813,0,0,1,0,0,0,0,0,3.3155,0.04154791,5.501083,8.85813,0,2785.575,-,-
-1108.5,3285.78392571211,9.99999961853027,9.99999961853027,0,1.062558,593.1891,142.6003,142.6003,1264.632,-148.1703,8.85813,78.55721,-9.204132,8.85813,0,0,1,0,0,0,0,0,3.3155,0.04154791,5.501083,8.85813,0,2785.575,-,-
-1109.5,3288.56170338392,9.99999961853027,9.99999961853027,0,1.062558,593.1891,142.6003,142.6003,1264.632,-148.1703,8.85813,78.55721,-9.204132,8.85813,0,0,1,0,0,0,0,0,3.3155,0.04154791,5.501083,8.85813,0,2785.575,-,-
-1110.5,3291.33948105574,9.99999961853027,9.99999961853027,0,1.062558,593.1891,142.6003,142.6003,1264.632,-148.1703,8.85813,78.55721,-9.204132,8.85813,0,0,1,0,0,0,0,0,3.3155,0.04154791,5.501083,8.85813,0,2785.575,-,-
-1111.5,3294.11725872755,9.99999961853027,9.99999961853027,0,1.062558,593.1891,142.6003,142.6003,1264.632,-148.1703,8.85813,78.55721,-9.204132,8.85813,0,0,1,0,0,0,0,0,3.3155,0.04154791,5.501083,8.85813,0,2785.575,-,-
-1112.5,3296.89503639936,9.99999961853027,9.99999961853027,0,1.062558,593.1891,142.6003,142.6003,1264.632,-148.1703,8.85813,78.55721,-9.204132,8.85813,0,0,1,0,0,0,0,0,3.3155,0.04154791,5.501083,8.85813,0,2785.575,-,-
-1113.5,3299.67281407118,9.99999961853027,9.99999961853027,0,1.062558,593.1891,142.6003,142.6003,1264.632,-148.1703,8.85813,78.55721,-9.204132,8.85813,0,0,1,0,0,0,0,0,3.3155,0.04154791,5.501083,8.85813,0,2785.575,-,-
-1114.5,3302.45059174299,9.99999961853027,9.99999961853027,0,1.062558,593.1891,142.6003,142.6003,1264.632,-148.1703,8.85813,78.55721,-9.204132,8.85813,0,0,1,0,0,0,0,0,3.3155,0.04154791,5.501083,8.85813,0,2785.575,-,-
-1115.5,3305.22836941481,9.99999961853027,9.99999961853027,0,1.062558,593.1891,142.6003,142.6003,1264.632,-148.1703,8.85813,78.55721,-9.204132,8.85813,0,0,1,0,0,0,0,0,3.3155,0.04154791,5.501083,8.85813,0,2785.575,-,-
-1116.5,3308.00614708662,9.99999961853027,9.99999961853027,0,1.062558,593.1891,142.6003,142.6003,1264.632,-148.1703,8.85813,78.55721,-9.204132,8.85813,0,0,1,0,0,0,0,0,3.3155,0.04154791,5.501083,8.85813,0,2785.575,-,-
-1117.5,3310.78392475843,9.99999961853027,9.99999961853027,0,1.062558,593.1891,142.6003,142.6003,1264.632,-148.1703,8.85813,78.55721,-9.204132,8.85813,0,0,1,0,0,0,0,0,3.3155,0.04154791,5.501083,8.85813,0,2785.575,-,-
-1118.5,3313.56170243025,9.99999961853027,9.99999961853027,0,1.062558,593.1891,142.6003,142.6003,1264.632,-148.1703,8.85813,78.55721,-9.204132,8.85813,0,0,1,0,0,0,0,0,3.3155,0.04154791,5.501083,8.85813,0,2785.575,-,-
-1119.5,3316.33948010206,9.99999961853027,9.99999961853027,0,1.062558,593.1891,142.6003,142.6003,1264.632,-148.1703,8.85813,78.55721,-9.204132,8.85813,0,0,1,0,0,0,0,0,3.3155,0.04154791,5.501083,8.85813,0,2785.575,-,-
-1120.5,3319.11725777388,9.99999961853027,9.99999961853027,0,0.9596614,593.1891,134.0258,134.0258,1264.632,-148.1703,8.3255,78.55721,-9.204132,8.3255,0,0,1,0,0,0,0,0,3.315534,0.04154791,4.968418,8.3255,0,2704.162,-,-
-1121.5,3321.89503544569,9.99999961853027,9.99999961853027,0,0.9596614,593.1891,134.0258,134.0258,1264.632,-148.1703,8.3255,78.55721,-9.204132,8.3255,0,0,1,0,0,0,0,0,3.315534,0.04154791,4.968418,8.3255,0,2704.162,-,-
-1122.5,3324.6728131175,9.99999961853027,9.99999961853027,0,0.9596614,593.1891,134.0258,134.0258,1264.632,-148.1703,8.3255,78.55721,-9.204132,8.3255,0,0,1,0,0,0,0,0,3.315534,0.04154791,4.968418,8.3255,0,2704.162,-,-
-1123.5,3327.45059078932,9.99999961853027,9.99999961853027,0,0.9596614,593.1891,134.0258,134.0258,1264.632,-148.1703,8.3255,78.55721,-9.204132,8.3255,0,0,1,0,0,0,0,0,3.315534,0.04154791,4.968418,8.3255,0,2704.162,-,-
-1124.5,3330.22836846113,9.99999961853027,9.99999961853027,0,0.9596614,593.1891,134.0258,134.0258,1264.632,-148.1703,8.3255,78.55721,-9.204132,8.3255,0,0,1,0,0,0,0,0,3.315534,0.04154791,4.968418,8.3255,0,2704.162,-,-
-1125.5,3333.00614613295,9.99999961853027,9.99999961853027,0,0.9596614,593.1891,134.0258,134.0258,1264.632,-148.1703,8.3255,78.55721,-9.204132,8.3255,0,0,1,0,0,0,0,0,3.315534,0.04154791,4.968418,8.3255,0,2704.162,-,-
-1126.5,3335.78392380476,9.99999961853027,9.99999961853027,0,0.9596614,593.1891,134.0258,134.0258,1264.632,-148.1703,8.3255,78.55721,-9.204132,8.3255,0,0,1,0,0,0,0,0,3.315534,0.04154791,4.968418,8.3255,0,2704.162,-,-
-1127.5,3338.56170147657,9.99999961853027,9.99999961853027,0,0.8881592,593.1891,128.0674,128.0674,1264.632,-148.1703,7.955367,78.55721,-9.204132,7.955367,0,0,1,0,0,0,0,0,3.315556,0.04154791,4.598263,7.955367,0,2647.586,-,-
-1128.5,3341.33947914839,9.99999961853027,9.99999961853027,0,0.816657,593.1891,122.1087,122.1087,1264.632,-148.1703,7.585224,78.55721,-9.204132,7.585224,0,0,1,0,0,0,0,0,3.315576,0.04154791,4.2281,7.585224,0,2591.008,-,-
-1129.5,3344.1172568202,9.99999961853027,9.99999961853027,0,0.816657,593.1891,122.1087,122.1087,1264.632,-148.1703,7.585224,78.55721,-9.204132,7.585224,0,0,1,0,0,0,0,0,3.315576,0.04154791,4.2281,7.585224,0,2591.008,-,-
-1130.5,3346.89503449202,9.99999961853027,9.99999961853027,0,0.816657,593.1891,122.1087,122.1087,1264.632,-148.1703,7.585224,78.55721,-9.204132,7.585224,0,0,1,0,0,0,0,0,3.315576,0.04154791,4.2281,7.585224,0,2591.008,-,-
-1131.5,3349.67281216383,9.99999961853027,9.99999961853027,0,0.816657,593.1891,122.1087,122.1087,1264.632,-148.1703,7.585224,78.55721,-9.204132,7.585224,0,0,1,0,0,0,0,0,3.315576,0.04154791,4.2281,7.585224,0,2591.008,-,-
-1132.5,3352.45058983564,9.99999961853027,9.99999961853027,0,0.816657,593.1891,122.1087,122.1087,1264.632,-148.1703,7.585224,78.55721,-9.204132,7.585224,0,0,1,0,0,0,0,0,3.315576,0.04154791,4.2281,7.585224,0,2591.008,-,-
-1133.5,3355.22836750746,9.99999961853027,9.99999961853027,0,0.816657,593.1891,122.1087,122.1087,1264.632,-148.1703,7.585224,78.55721,-9.204132,7.585224,0,0,1,0,0,0,0,0,3.315576,0.04154791,4.2281,7.585224,0,2591.008,-,-
-1134.5,3358.00614517927,9.99999961853027,9.99999961853027,0,0.7427455,593.1891,115.9492,115.9492,1264.632,-148.1703,7.202602,78.55721,-9.204132,7.202602,0,0,1,0,0,0,0,0,3.315595,0.04154791,3.845459,7.202602,0,2532.523,-,-
-1135.5,3360.78392285109,9.99999961853027,9.99999961853027,0,0.668834,593.1891,109.7895,109.7895,1264.632,-148.1703,6.819971,78.55721,-9.204132,6.819971,0,0,1,0,0,0,0,0,3.315613,0.04154791,3.46281,6.819971,0,2474.037,-,-
-1136.5,3363.5617005229,9.99999961853027,9.99999961853027,0,0.668834,593.1891,109.7895,109.7895,1264.632,-148.1703,6.819971,78.55721,-9.204132,6.819971,0,0,1,0,0,0,0,0,3.315613,0.04154791,3.46281,6.819971,0,2474.037,-,-
-1137.5,3366.33947819471,9.99999961853027,9.99999961853027,0,0.668834,593.1891,109.7895,109.7895,1264.632,-148.1703,6.819971,78.55721,-9.204132,6.819971,0,0,1,0,0,0,0,0,3.315613,0.04154791,3.46281,6.819971,0,2474.037,-,-
-1138.5,3369.11725586653,9.99999961853027,9.99999961853027,0,0.668834,593.1891,109.7895,109.7895,1264.632,-148.1703,6.819971,78.55721,-9.204132,6.819971,0,0,1,0,0,0,0,0,3.315613,0.04154791,3.46281,6.819971,0,2474.037,-,-
-1139.5,3371.89503353834,9.99999961853027,9.99999961853027,0,0.668834,593.1891,109.7895,109.7895,1264.632,-148.1703,6.819971,78.55721,-9.204132,6.819971,0,0,1,0,0,0,0,0,3.315613,0.04154791,3.46281,6.819971,0,2474.037,-,-
-1140.5,3374.67281121016,9.99999961853027,9.99999961853027,0,0.668834,593.1891,109.7895,109.7895,1264.632,-148.1703,6.819971,78.55721,-9.204132,6.819971,0,0,1,0,0,0,0,0,3.315613,0.04154791,3.46281,6.819971,0,2474.037,-,-
-1141.5,3377.45058888197,9.99999961853027,9.99999961853027,0,0.668834,593.1891,109.7895,109.7895,1264.632,-148.1703,6.819971,78.55721,-9.204132,6.819971,0,0,1,0,0,0,0,0,3.315613,0.04154791,3.46281,6.819971,0,2474.037,-,-
-1142.5,3380.22836655378,9.99999961853027,9.99999961853027,0,0.5210108,593.1891,97.46976,97.46976,1264.632,-148.1703,6.054687,78.55721,-9.204132,6.054687,0,0,1,0,0,0,0,0,3.315642,0.04154791,2.697497,6.054687,0,2357.062,-,-
-1143.5,3383.0061442256,9.99999961853027,9.99999961853027,0,0.5210108,593.1891,97.46976,97.46976,1264.632,-148.1703,6.054687,78.55721,-9.204132,6.054687,0,0,1,0,0,0,0,0,3.315642,0.04154791,2.697497,6.054687,0,2357.062,-,-
-1144.5,3385.78392189741,9.99999961853027,9.99999961853027,0,0.5210108,593.1891,97.46976,97.46976,1264.632,-148.1703,6.054687,78.55721,-9.204132,6.054687,0,0,1,0,0,0,0,0,3.315642,0.04154791,2.697497,6.054687,0,2357.062,-,-
-1145.5,3388.56169956923,9.99999961853027,9.99999961853027,0,0.5210108,593.1891,97.46976,97.46976,1264.632,-148.1703,6.054687,78.55721,-9.204132,6.054687,0,0,1,0,0,0,0,0,3.315642,0.04154791,2.697497,6.054687,0,2357.062,-,-
-1146.5,3391.33947724104,9.99999961853027,9.99999961853027,0,0.5210108,593.1891,97.46976,97.46976,1264.632,-148.1703,6.054687,78.55721,-9.204132,6.054687,0,0,1,0,0,0,0,0,3.315642,0.04154791,2.697497,6.054687,0,2357.062,-,-
-1147.5,3394.11725491285,9.99999961853027,9.99999961853027,0,0.5210108,593.1891,97.46976,97.46976,1264.632,-148.1703,6.054687,78.55721,-9.204132,6.054687,0,0,1,0,0,0,0,0,3.315642,0.04154791,2.697497,6.054687,0,2357.062,-,-
-1148.5,3396.89503258467,9.99999961853027,9.99999961853027,0,0.5210108,593.1891,97.46976,97.46976,1264.632,-148.1703,6.054687,78.55721,-9.204132,6.054687,0,0,1,0,0,0,0,0,3.315642,0.04154791,2.697497,6.054687,0,2357.062,-,-
-1149.5,3399.67281025648,9.99999961853027,9.99999961853027,0,0.38797,593.1891,86.38167,86.38167,1264.632,-148.1703,5.36591,78.55721,-9.204132,5.36591,0,0,1,0,0,0,0,0,3.315662,0.04154791,2.0087,5.36591,0,2251.78,-,-
-1150.5,3402.4505879283,9.99999961853027,9.99999961853027,0,0.38797,593.1891,86.38167,86.38167,1264.632,-148.1703,5.36591,78.55721,-9.204132,5.36591,0,0,1,0,0,0,0,0,3.315662,0.04154791,2.0087,5.36591,0,2251.78,-,-
-1151.5,3405.22836560011,9.99999961853027,9.99999961853027,0,0.38797,593.1891,86.38167,86.38167,1264.632,-148.1703,5.36591,78.55721,-9.204132,5.36591,0,0,1,0,0,0,0,0,3.315662,0.04154791,2.0087,5.36591,0,2251.78,-,-
-1152.5,3408.00614327192,9.99999961853027,9.99999961853027,0,0.38797,593.1891,86.38167,86.38167,1264.632,-148.1703,5.36591,78.55721,-9.204132,5.36591,0,0,1,0,0,0,0,0,3.315662,0.04154791,2.0087,5.36591,0,2251.78,-,-
-1153.5,3410.78392094374,9.99999961853027,9.99999961853027,0,0.38797,593.1891,86.38167,86.38167,1264.632,-148.1703,5.36591,78.55721,-9.204132,5.36591,0,0,1,0,0,0,0,0,3.315662,0.04154791,2.0087,5.36591,0,2251.78,-,-
-1154.5,3413.56169861555,9.99999961853027,9.99999961853027,0,0.38797,593.1891,86.38167,86.38167,1264.632,-148.1703,5.36591,78.55721,-9.204132,5.36591,0,0,1,0,0,0,0,0,3.315662,0.04154791,2.0087,5.36591,0,2251.78,-,-
-1155.5,3416.33947628737,9.99999961853027,9.99999961853027,0,0.38797,593.1891,86.38167,86.38167,1264.632,-148.1703,5.36591,78.55721,-9.204132,5.36591,0,0,1,0,0,0,0,0,3.315662,0.04154791,2.0087,5.36591,0,2251.78,-,-
-1156.5,3419.11725395918,9.99999961853027,9.99999961853027,0,0.38797,593.1891,86.38167,86.38167,1264.632,-148.1703,5.36591,78.55721,-9.204132,5.36591,0,0,1,0,0,0,0,0,3.315662,0.04154791,2.0087,5.36591,0,2251.78,-,-
-1157.5,3421.89503163099,9.99999961853027,9.99999961853027,0,0.38797,593.1891,86.38167,86.38167,1264.632,-148.1703,5.36591,78.55721,-9.204132,5.36591,0,0,1,0,0,0,0,0,3.315662,0.04154791,2.0087,5.36591,0,2251.78,-,-
-1158.5,3424.67280930281,9.99999961853027,9.99999961853027,0,0.38797,593.1891,86.38167,86.38167,1264.632,-148.1703,5.36591,78.55721,-9.204132,5.36591,0,0,1,0,0,0,0,0,3.315662,0.04154791,2.0087,5.36591,0,2251.78,-,-
-1159.5,3427.45058697462,9.99999961853027,9.99999961853027,0,0.38797,593.1891,86.38167,86.38167,1264.632,-148.1703,5.36591,78.55721,-9.204132,5.36591,0,0,1,0,0,0,0,0,3.315662,0.04154791,2.0087,5.36591,0,2251.78,-,-
-1160.5,3430.22836464643,9.99999961853027,9.99999961853027,0,0.38797,593.1891,86.38167,86.38167,1264.632,-148.1703,5.36591,78.55721,-9.204132,5.36591,0,0,1,0,0,0,0,0,3.315662,0.04154791,2.0087,5.36591,0,2251.78,-,-
-1161.5,3433.00614231825,9.99999961853027,9.99999961853027,0,0.38797,593.1891,86.38167,86.38167,1264.632,-148.1703,5.36591,78.55721,-9.204132,5.36591,0,0,1,0,0,0,0,0,3.315662,0.04154791,2.0087,5.36591,0,2251.78,-,-
-1162.5,3435.78391999006,9.99999961853027,9.99999961853027,0,0.38797,593.1891,86.38167,86.38167,1264.632,-148.1703,5.36591,78.55721,-9.204132,5.36591,0,0,1,0,0,0,0,0,3.315662,0.04154791,2.0087,5.36591,0,2251.78,-,-
-1163.5,3438.56169766188,9.99999961853027,9.99999961853027,0,0.38797,593.1891,86.38167,86.38167,1264.632,-148.1703,5.36591,78.55721,-9.204132,5.36591,0,0,1,0,0,0,0,0,3.315662,0.04154791,2.0087,5.36591,0,2251.78,-,-
-1164.5,3441.33947533369,9.99999961853027,9.99999961853027,0,0.38797,593.1891,86.38167,86.38167,1264.632,-148.1703,5.36591,78.55721,-9.204132,5.36591,0,0,1,0,0,0,0,0,3.315662,0.04154791,2.0087,5.36591,0,2251.78,-,-
-1165.5,3444.1172530055,9.99999961853027,9.99999961853027,0,0.38797,593.1891,86.38167,86.38167,1264.632,-148.1703,5.36591,78.55721,-9.204132,5.36591,0,0,1,0,0,0,0,0,3.315662,0.04154791,2.0087,5.36591,0,2251.78,-,-
-1166.5,3446.89503067732,9.99999961853027,9.99999961853027,0,0.38797,593.1891,86.38167,86.38167,1264.632,-148.1703,5.36591,78.55721,-9.204132,5.36591,0,0,1,0,0,0,0,0,3.315662,0.04154791,2.0087,5.36591,0,2251.78,-,-
-1167.5,3449.67280834913,9.99999961853027,9.99999961853027,0,0.38797,593.1891,86.38167,86.38167,1264.632,-148.1703,5.36591,78.55721,-9.204132,5.36591,0,0,1,0,0,0,0,0,3.315662,0.04154791,2.0087,5.36591,0,2251.78,-,-
-1168.5,3452.45058602095,9.99999961853027,9.99999961853027,0,0.38797,593.1891,86.38167,86.38167,1264.632,-148.1703,5.36591,78.55721,-9.204132,5.36591,0,0,1,0,0,0,0,0,3.315662,0.04154791,2.0087,5.36591,0,2251.78,-,-
-1169.5,3455.22836369276,9.99999961853027,9.99999961853027,0,0.38797,593.1891,86.38167,86.38167,1264.632,-148.1703,5.36591,78.55721,-9.204132,5.36591,0,0,1,0,0,0,0,0,3.315662,0.04154791,2.0087,5.36591,0,2251.78,-,-
-1170.5,3458.00614136457,9.99999961853027,9.99999961853027,0,0.38797,593.1891,86.38167,86.38167,1264.632,-148.1703,5.36591,78.55721,-9.204132,5.36591,0,0,1,0,0,0,0,0,3.315662,0.04154791,2.0087,5.36591,0,2251.78,-,-
-1171.5,3460.78391903639,9.99999961853027,9.99999961853027,0,0.38797,593.1891,86.38167,86.38167,1264.632,-148.1703,5.36591,78.55721,-9.204132,5.36591,0,0,1,0,0,0,0,0,3.315662,0.04154791,2.0087,5.36591,0,2251.78,-,-
-1172.5,3463.5616967082,9.99999961853027,9.99999961853027,0,0.38797,593.1891,86.38167,86.38167,1264.632,-148.1703,5.36591,78.55721,-9.204132,5.36591,0,0,1,0,0,0,0,0,3.315662,0.04154791,2.0087,5.36591,0,2251.78,-,-
-1173.5,3466.33947438002,9.99999961853027,9.99999961853027,0,0.38797,593.1891,86.38167,86.38167,1264.632,-148.1703,5.36591,78.55721,-9.204132,5.36591,0,0,1,0,0,0,0,0,3.315662,0.04154791,2.0087,5.36591,0,2251.78,-,-
-1174.5,3469.11725205183,9.99999961853027,9.99999961853027,0,0.5265904,593.1891,97.93477,97.93477,1264.632,-148.1703,6.083572,78.55721,-9.204132,6.083572,0,0,1,0,0,0,0,0,3.315641,0.04154791,2.726384,6.083572,0,2361.477,-,-
-1175.5,3471.89502972364,9.99999961853027,9.99999961853027,0,0.5265904,593.1891,97.93477,97.93477,1264.632,-148.1703,6.083572,78.55721,-9.204132,6.083572,0,0,1,0,0,0,0,0,3.315641,0.04154791,2.726384,6.083572,0,2361.477,-,-
-1176.5,3474.67280739546,9.99999961853027,9.99999961853027,0,0.5265904,593.1891,97.93477,97.93477,1264.632,-148.1703,6.083572,78.55721,-9.204132,6.083572,0,0,1,0,0,0,0,0,3.315641,0.04154791,2.726384,6.083572,0,2361.477,-,-
-1177.5,3477.45058506727,9.99999961853027,9.99999961853027,0,0.5265904,593.1891,97.93477,97.93477,1264.632,-148.1703,6.083572,78.55721,-9.204132,6.083572,0,0,1,0,0,0,0,0,3.315641,0.04154791,2.726384,6.083572,0,2361.477,-,-
-1178.5,3480.22836273909,9.99999961853027,9.99999961853027,0,0.5265904,593.1891,97.93477,97.93477,1264.632,-148.1703,6.083572,78.55721,-9.204132,6.083572,0,0,1,0,0,0,0,0,3.315641,0.04154791,2.726384,6.083572,0,2361.477,-,-
-1179.5,3483.0061404109,9.99999961853027,9.99999961853027,0,0.5265904,593.1891,97.93477,97.93477,1264.632,-148.1703,6.083572,78.55721,-9.204132,6.083572,0,0,1,0,0,0,0,0,3.315641,0.04154791,2.726384,6.083572,0,2361.477,-,-
-1180.5,3485.78391808271,9.99999961853027,9.99999961853027,0,0.5265904,593.1891,97.93477,97.93477,1264.632,-148.1703,6.083572,78.55721,-9.204132,6.083572,0,0,1,0,0,0,0,0,3.315641,0.04154791,2.726384,6.083572,0,2361.477,-,-
-1181.5,3488.56169575453,9.99999961853027,9.99999961853027,0,0.625605,593.1891,106.1868,106.1868,1264.632,-148.1703,6.596176,78.55721,-9.204132,6.596176,0,0,1,0,0,0,0,0,3.315622,0.04154791,3.239006,6.596176,0,2439.83,-,-
-1182.5,3491.33947342634,9.99999961853027,9.99999961853027,0,0.7246196,593.1891,114.4386,114.4386,1264.632,-148.1703,7.108767,78.55721,-9.204132,7.108767,0,0,1,0,0,0,0,0,3.3156,0.04154791,3.751619,7.108767,0,2518.18,-,-
-1183.5,3494.11725109816,9.99999961853027,9.99999961853027,0,0.7246196,593.1891,114.4386,114.4386,1264.632,-148.1703,7.108767,78.55721,-9.204132,7.108767,0,0,1,0,0,0,0,0,3.3156,0.04154791,3.751619,7.108767,0,2518.18,-,-
-1184.5,3496.89502876997,9.99999961853027,9.99999961853027,0,0.7246196,593.1891,114.4386,114.4386,1264.632,-148.1703,7.108767,78.55721,-9.204132,7.108767,0,0,1,0,0,0,0,0,3.3156,0.04154791,3.751619,7.108767,0,2518.18,-,-
-1185.5,3499.67280644178,9.99999961853027,9.99999961853027,0,0.7246196,593.1891,114.4386,114.4386,1264.632,-148.1703,7.108767,78.55721,-9.204132,7.108767,0,0,1,0,0,0,0,0,3.3156,0.04154791,3.751619,7.108767,0,2518.18,-,-
-1186.5,3502.4505841136,9.99999961853027,9.99999961853027,0,0.7246196,593.1891,114.4386,114.4386,1264.632,-148.1703,7.108767,78.55721,-9.204132,7.108767,0,0,1,0,0,0,0,0,3.3156,0.04154791,3.751619,7.108767,0,2518.18,-,-
-1187.5,3505.22836178541,9.99999961853027,9.99999961853027,0,0.7246196,593.1891,114.4386,114.4386,1264.632,-148.1703,7.108767,78.55721,-9.204132,7.108767,0,0,1,0,0,0,0,0,3.3156,0.04154791,3.751619,7.108767,0,2518.18,-,-
-1188.5,3508.00613945723,9.99999961853027,9.99999961853027,0,0.8236341,593.1891,122.6902,122.6902,1264.632,-148.1703,7.621344,78.55721,-9.204132,7.621344,0,0,1,0,0,0,0,0,3.315574,0.04154791,4.264221,7.621344,0,2596.529,-,-
-1189.5,3510.78391712904,9.99999961853027,9.99999961853027,0,0.9226487,593.1891,130.9415,130.9415,1264.632,-148.1703,8.133904,78.55721,-9.204132,8.133904,0,0,1,0,0,0,0,0,3.315546,0.04154791,4.77681,8.133904,0,2674.875,-,-
-1190.5,3513.56169480085,9.99999961853027,9.99999961853027,0,0.9226487,593.1891,130.9415,130.9415,1264.632,-148.1703,8.133904,78.55721,-9.204132,8.133904,0,0,1,0,0,0,0,0,3.315546,0.04154791,4.77681,8.133904,0,2674.875,-,-
-1191.5,3516.33947247267,9.99999961853027,9.99999961853027,0,0.9226487,593.1891,130.9415,130.9415,1264.632,-148.1703,8.133904,78.55721,-9.204132,8.133904,0,0,1,0,0,0,0,0,3.315546,0.04154791,4.77681,8.133904,0,2674.875,-,-
-1192.5,3519.11725014448,9.99999961853027,9.99999961853027,0,0.9226487,593.1891,130.9415,130.9415,1264.632,-148.1703,8.133904,78.55721,-9.204132,8.133904,0,0,1,0,0,0,0,0,3.315546,0.04154791,4.77681,8.133904,0,2674.875,-,-
-1193.5,3521.8950278163,9.99999961853027,9.99999961853027,0,0.9226487,593.1891,130.9415,130.9415,1264.632,-148.1703,8.133904,78.55721,-9.204132,8.133904,0,0,1,0,0,0,0,0,3.315546,0.04154791,4.77681,8.133904,0,2674.875,-,-
-1194.5,3524.67280548811,9.99999961853027,9.99999961853027,0,0.9226487,593.1891,130.9415,130.9415,1264.632,-148.1703,8.133904,78.55721,-9.204132,8.133904,0,0,1,0,0,0,0,0,3.315546,0.04154791,4.77681,8.133904,0,2674.875,-,-
-1195.5,3527.45058315992,9.99999961853027,9.99999961853027,0,0.9226487,593.1891,130.9415,130.9415,1264.632,-148.1703,8.133904,78.55721,-9.204132,8.133904,0,0,1,0,0,0,0,0,3.315546,0.04154791,4.77681,8.133904,0,2674.875,-,-
-1196.5,3530.22836083174,9.99999961853027,9.99999961853027,0,1.120678,593.1891,147.4433,147.4433,1264.632,-148.1703,9.158972,78.55721,-9.204132,9.158972,0,0,1,0,0,0,0,0,3.315479,0.04154791,5.801945,9.158972,0,2831.56,-,-
-1197.5,3533.00613850355,9.99999961853027,9.99999961853027,0,1.120678,593.1891,147.4433,147.4433,1264.632,-148.1703,9.158972,78.55721,-9.204132,9.158972,0,0,1,0,0,0,0,0,3.315479,0.04154791,5.801945,9.158972,0,2831.56,-,-
-1198.5,3535.78391617537,9.99999961853027,9.99999961853027,0,1.120678,593.1891,147.4433,147.4433,1264.632,-148.1703,9.158972,78.55721,-9.204132,9.158972,0,0,1,0,0,0,0,0,3.315479,0.04154791,5.801945,9.158972,0,2831.56,-,-
-1199.5,3538.56169384718,9.99999961853027,9.99999961853027,0,1.120678,593.1891,147.4433,147.4433,1264.632,-148.1703,9.158972,78.55721,-9.204132,9.158972,0,0,1,0,0,0,0,0,3.315479,0.04154791,5.801945,9.158972,0,2831.56,-,-
-1200.5,3541.33947151899,9.99999961853027,9.99999961853027,0,1.120678,593.1891,147.4433,147.4433,1264.632,-148.1703,9.158972,78.55721,-9.204132,9.158972,0,0,1,0,0,0,0,0,3.315479,0.04154791,5.801945,9.158972,0,2831.56,-,-
-1201.5,3544.11724919081,9.99999961853027,9.99999961853027,0,1.120678,593.1891,147.4433,147.4433,1264.632,-148.1703,9.158972,78.55721,-9.204132,9.158972,0,0,1,0,0,0,0,0,3.315479,0.04154791,5.801945,9.158972,0,2831.56,-,-
-1202.5,3546.89502686262,9.99999961853027,9.99999961853027,0,1.120678,593.1891,147.4433,147.4433,1264.632,-148.1703,9.158972,78.55721,-9.204132,9.158972,0,0,1,0,0,0,0,0,3.315479,0.04154791,5.801945,9.158972,0,2831.56,-,-
-1203.5,3549.67280453444,9.99999961853027,9.99999961853027,0,1.318707,593.1891,163.9437,163.9437,1264.632,-148.1703,10.18396,78.55721,-9.204132,10.18396,0,0,1,0,0,0,0,0,3.315398,0.04154791,6.827012,10.18396,0,2988.232,-,-
-1204.5,3552.45058220625,9.99999961853027,9.99999961853027,0,1.318707,593.1891,163.9437,163.9437,1264.632,-148.1703,10.18396,78.55721,-9.204132,10.18396,0,0,1,0,0,0,0,0,3.315398,0.04154791,6.827012,10.18396,0,2988.232,-,-
-1205.5,3555.22835987806,9.99999961853027,9.99999961853027,0,1.318707,593.1891,163.9437,163.9437,1264.632,-148.1703,10.18396,78.55721,-9.204132,10.18396,0,0,1,0,0,0,0,0,3.315398,0.04154791,6.827012,10.18396,0,2988.232,-,-
-1206.5,3558.00613754988,9.99999961853027,9.99999961853027,0,1.318707,593.1891,163.9437,163.9437,1264.632,-148.1703,10.18396,78.55721,-9.204132,10.18396,0,0,1,0,0,0,0,0,3.315398,0.04154791,6.827012,10.18396,0,2988.232,-,-
-1207.5,3560.78391522169,9.99999961853027,9.99999961853027,0,1.318707,593.1891,163.9437,163.9437,1264.632,-148.1703,10.18396,78.55721,-9.204132,10.18396,0,0,1,0,0,0,0,0,3.315398,0.04154791,6.827012,10.18396,0,2988.232,-,-
-1208.5,3563.56169289351,9.99999961853027,9.99999961853027,0,1.318707,593.1891,163.9437,163.9437,1264.632,-148.1703,10.18396,78.55721,-9.204132,10.18396,0,0,1,0,0,0,0,0,3.315398,0.04154791,6.827012,10.18396,0,2988.232,-,-
-1209.5,3566.33947056532,9.99999961853027,9.99999961853027,0,1.318707,593.1891,163.9437,163.9437,1264.632,-148.1703,10.18396,78.55721,-9.204132,10.18396,0,0,1,0,0,0,0,0,3.315398,0.04154791,6.827012,10.18396,0,2988.232,-,-
-1210.5,3569.11724823713,9.99999961853027,9.99999961853027,0,1.516736,593.1891,180.4427,180.4427,1264.632,-148.1703,11.20885,78.55721,-9.204132,11.20885,0,0,1,0,0,0,0,0,3.315305,0.04154791,7.851998,11.20885,0,3144.89,-,-
-1211.5,3571.89502590895,9.99999961853027,9.99999961853027,0,1.516736,593.1891,180.4427,180.4427,1264.632,-148.1703,11.20885,78.55721,-9.204132,11.20885,0,0,1,0,0,0,0,0,3.315305,0.04154791,7.851998,11.20885,0,3144.89,-,-
-1212.5,3574.67280358076,9.99999961853027,9.99999961853027,0,1.516736,593.1891,180.4427,180.4427,1264.632,-148.1703,11.20885,78.55721,-9.204132,11.20885,0,0,1,0,0,0,0,0,3.315305,0.04154791,7.851998,11.20885,0,3144.89,-,-
-1213.5,3577.45058125257,9.99999961853027,9.99999961853027,0,1.516736,593.1891,180.4427,180.4427,1264.632,-148.1703,11.20885,78.55721,-9.204132,11.20885,0,0,1,0,0,0,0,0,3.315305,0.04154791,7.851998,11.20885,0,3144.89,-,-
-1214.5,3580.22835892439,9.99999961853027,9.99999961853027,0,1.516736,593.1891,180.4427,180.4427,1264.632,-148.1703,11.20885,78.55721,-9.204132,11.20885,0,0,1,0,0,0,0,0,3.315305,0.04154791,7.851998,11.20885,0,3144.89,-,-
-1215.5,3583.0061365962,9.99999961853027,9.99999961853027,0,1.516736,593.1891,180.4427,180.4427,1264.632,-148.1703,11.20885,78.55721,-9.204132,11.20885,0,0,1,0,0,0,0,0,3.315305,0.04154791,7.851998,11.20885,0,3144.89,-,-
-1216.5,3585.78391426802,9.99999961853027,9.99999961853027,0,1.516736,593.1891,180.4427,180.4427,1264.632,-148.1703,11.20885,78.55721,-9.204132,11.20885,0,0,1,0,0,0,0,0,3.315305,0.04154791,7.851998,11.20885,0,3144.89,-,-
-1217.5,3588.56169193983,9.99999961853027,9.99999961853027,0,1.615751,593.1891,188.6916,188.6916,1264.632,-148.1703,11.72126,78.55721,-9.204132,11.72126,0,0,1,0,0,0,0,0,3.315254,0.04154791,8.364458,11.72126,0,3223.213,-,-
-1218.5,3591.33946961164,9.99999961853027,9.99999961853027,0,1.714765,593.1891,196.94,196.94,1264.632,-148.1703,12.23364,78.55721,-9.204132,12.23364,0,0,1,0,0,0,0,0,3.315199,0.04154791,8.876892,12.23364,0,3301.531,-,-
-1219.5,3594.11724728346,9.99999961853027,9.99999961853027,0,1.714765,593.1891,196.94,196.94,1264.632,-148.1703,12.23364,78.55721,-9.204132,12.23364,0,0,1,0,0,0,0,0,3.315199,0.04154791,8.876892,12.23364,0,3301.531,-,-
-1220.5,3596.89502495527,9.99999961853027,9.99999961853027,0,1.714765,593.1891,196.94,196.94,1264.632,-148.1703,12.23364,78.55721,-9.204132,12.23364,0,0,1,0,0,0,0,0,3.315199,0.04154791,8.876892,12.23364,0,3301.531,-,-
-1221.5,3599.67280262709,9.99999961853027,9.99999961853027,0,1.714765,593.1891,196.94,196.94,1264.632,-148.1703,12.23364,78.55721,-9.204132,12.23364,0,0,1,0,0,0,0,0,3.315199,0.04154791,8.876892,12.23364,0,3301.531,-,-
-1222.5,3602.4505802989,9.99999961853027,9.99999961853027,0,1.714765,593.1891,196.94,196.94,1264.632,-148.1703,12.23364,78.55721,-9.204132,12.23364,0,0,1,0,0,0,0,0,3.315199,0.04154791,8.876892,12.23364,0,3301.531,-,-
-1223.5,3605.22835797071,9.99999961853027,9.99999961853027,0,1.714765,593.1891,196.94,196.94,1264.632,-148.1703,12.23364,78.55721,-9.204132,12.23364,0,0,1,0,0,0,0,0,3.315199,0.04154791,8.876892,12.23364,0,3301.531,-,-
-1224.5,3608.00613564253,9.99999961853027,9.99999961853027,0,1.81378,593.1891,205.1879,205.1879,1264.632,-148.1703,12.74599,78.55721,-9.204132,12.74599,0,0,1,0,0,0,0,0,3.315141,0.04154791,9.389301,12.74599,0,3385.008,-,-
-1225.5,3610.78391331434,9.99999961853027,9.99999961853027,0,1.912794,593.1891,213.4354,213.4354,1264.632,-148.1703,13.25831,78.55721,-9.204132,13.25831,0,0,1,0,0,0,0,0,3.31508,0.04154791,9.901682,13.25831,0,3471.523,-,-
-1226.5,3613.56169098616,9.99999961853027,9.99999961853027,0,1.912794,593.1891,213.4354,213.4354,1264.632,-148.1703,13.25831,78.55721,-9.204132,13.25831,0,0,1,0,0,0,0,0,3.31508,0.04154791,9.901682,13.25831,0,3471.523,-,-
-1227.5,3616.33946865797,9.99999961853027,9.99999961853027,0,1.912794,593.1891,213.4354,213.4354,1264.632,-148.1703,13.25831,78.55721,-9.204132,13.25831,0,0,1,0,0,0,0,0,3.31508,0.04154791,9.901682,13.25831,0,3471.523,-,-
-1228.5,3619.11724632978,9.99999961853027,9.99999961853027,0,1.912794,593.1891,213.4354,213.4354,1264.632,-148.1703,13.25831,78.55721,-9.204132,13.25831,0,0,1,0,0,0,0,0,3.31508,0.04154791,9.901682,13.25831,0,3471.523,-,-
-1229.5,3621.8950240016,9.99999961853027,9.99999961853027,0,1.912794,593.1891,213.4354,213.4354,1264.632,-148.1703,13.25831,78.55721,-9.204132,13.25831,0,0,1,0,0,0,0,0,3.31508,0.04154791,9.901682,13.25831,0,3471.523,-,-
-1230.5,3624.67280167341,9.99999961853027,9.99999961853027,0,1.912794,593.1891,213.4354,213.4354,1264.632,-148.1703,13.25831,78.55721,-9.204132,13.25831,0,0,1,0,0,0,0,0,3.31508,0.04154791,9.901682,13.25831,0,3471.523,-,-
-1231.5,3627.45057934523,9.99999961853027,9.99999961853027,0,1.912794,593.1891,213.4354,213.4354,1264.632,-148.1703,13.25831,78.55721,-9.204132,13.25831,0,0,1,0,0,0,0,0,3.31508,0.04154791,9.901682,13.25831,0,3471.523,-,-
-1232.5,3630.22835701704,9.99999961853027,9.99999961853027,0,2.108194,593.1891,229.7097,229.7097,1264.632,-148.1703,14.26925,78.55721,-9.204132,14.26925,0,0,1,0,0,0,0,0,3.31495,0.04154791,10.91275,14.26925,0,3642.241,-,-
-1233.5,3633.00613468885,9.99999961853027,9.99999961853027,0,2.108194,593.1891,229.7097,229.7097,1264.632,-148.1703,14.26925,78.55721,-9.204132,14.26925,0,0,1,0,0,0,0,0,3.31495,0.04154791,10.91275,14.26925,0,3642.241,-,-
-1234.5,3635.78391236067,9.99999961853027,9.99999961853027,0,2.108194,593.1891,229.7097,229.7097,1264.632,-148.1703,14.26925,78.55721,-9.204132,14.26925,0,0,1,0,0,0,0,0,3.31495,0.04154791,10.91275,14.26925,0,3642.241,-,-
-1235.5,3638.56169003248,9.99999961853027,9.99999961853027,0,2.108194,593.1891,229.7097,229.7097,1264.632,-148.1703,14.26925,78.55721,-9.204132,14.26925,0,0,1,0,0,0,0,0,3.31495,0.04154791,10.91275,14.26925,0,3642.241,-,-
-1236.5,3641.3394677043,9.99999961853027,9.99999961853027,0,2.108194,593.1891,229.7097,229.7097,1264.632,-148.1703,14.26925,78.55721,-9.204132,14.26925,0,0,1,0,0,0,0,0,3.31495,0.04154791,10.91275,14.26925,0,3642.241,-,-
-1237.5,3644.11724537611,9.99999961853027,9.99999961853027,0,2.108194,593.1891,229.7097,229.7097,1264.632,-148.1703,14.26925,78.55721,-9.204132,14.26925,0,0,1,0,0,0,0,0,3.31495,0.04154791,10.91275,14.26925,0,3642.241,-,-
-1238.5,3646.89502304792,9.99999961853027,9.99999961853027,0,2.108194,593.1891,229.7097,229.7097,1264.632,-148.1703,14.26925,78.55721,-9.204132,14.26925,0,0,1,0,0,0,0,0,3.31495,0.04154791,10.91275,14.26925,0,3642.241,-,-
-1239.5,3649.67280071974,9.99999961853027,9.99999961853027,0,2.253637,593.1891,241.8218,241.8218,1264.632,-148.1703,15.02163,78.55721,-9.204132,15.02163,0,0,1,0,0,0,0,0,3.314845,0.04154791,11.66524,15.02163,0,3770.928,-,-
-1240.5,3652.45057839155,9.99999961853027,9.99999961853027,0,2.253637,593.1891,241.8218,241.8218,1264.632,-148.1703,15.02163,78.55721,-9.204132,15.02163,0,0,1,0,0,0,0,0,3.314845,0.04154791,11.66524,15.02163,0,3770.928,-,-
-1241.5,3655.22835606337,9.99999961853027,9.99999961853027,0,2.253637,593.1891,241.8218,241.8218,1264.632,-148.1703,15.02163,78.55721,-9.204132,15.02163,0,0,1,0,0,0,0,0,3.314845,0.04154791,11.66524,15.02163,0,3770.928,-,-
-1242.5,3658.00613373518,9.99999961853027,9.99999961853027,0,2.253637,593.1891,241.8218,241.8218,1264.632,-148.1703,15.02163,78.55721,-9.204132,15.02163,0,0,1,0,0,0,0,0,3.314845,0.04154791,11.66524,15.02163,0,3770.928,-,-
-1243.5,3660.78391140699,9.99999961853027,9.99999961853027,0,2.253637,593.1891,241.8218,241.8218,1264.632,-148.1703,15.02163,78.55721,-9.204132,15.02163,0,0,1,0,0,0,0,0,3.314845,0.04154791,11.66524,15.02163,0,3770.928,-,-
-1244.5,3663.56168907881,9.99999961853027,9.99999961853027,0,2.253637,593.1891,241.8218,241.8218,1264.632,-148.1703,15.02163,78.55721,-9.204132,15.02163,0,0,1,0,0,0,0,0,3.314845,0.04154791,11.66524,15.02163,0,3770.928,-,-
-1245.5,3666.33946675062,9.99999961853027,9.99999961853027,0,2.253637,593.1891,241.8218,241.8218,1264.632,-148.1703,15.02163,78.55721,-9.204132,15.02163,0,0,1,0,0,0,0,0,3.314845,0.04154791,11.66524,15.02163,0,3770.928,-,-
-1246.5,3669.11724442244,9.99999961853027,9.99999961853027,0,2.253637,593.1891,241.8218,241.8218,1264.632,-148.1703,15.02163,78.55721,-9.204132,15.02163,0,0,1,0,0,0,0,0,3.314845,0.04154791,11.66524,15.02163,0,3770.928,-,-
-1247.5,3671.89502209425,9.99999961853027,9.99999961853027,0,2.253637,593.1891,241.8218,241.8218,1264.632,-148.1703,15.02163,78.55721,-9.204132,15.02163,0,0,1,0,0,0,0,0,3.314845,0.04154791,11.66524,15.02163,0,3770.928,-,-
-1248.5,3674.67279976606,9.99999961853027,9.99999961853027,0,2.253637,593.1891,241.8218,241.8218,1264.632,-148.1703,15.02163,78.55721,-9.204132,15.02163,0,0,1,0,0,0,0,0,3.314845,0.04154791,11.66524,15.02163,0,3770.928,-,-
-1249.5,3677.45057743788,9.99999961853027,9.99999961853027,0,2.253637,593.1891,241.8218,241.8218,1264.632,-148.1703,15.02163,78.55721,-9.204132,15.02163,0,0,1,0,0,0,0,0,3.314845,0.04154791,11.66524,15.02163,0,3770.928,-,-
-1250.5,3680.22835510969,9.99999961853027,9.99999961853027,0,2.253637,593.1891,241.8218,241.8218,1264.632,-148.1703,15.02163,78.55721,-9.204132,15.02163,0,0,1,0,0,0,0,0,3.314845,0.04154791,11.66524,15.02163,0,3770.928,-,-
-1251.5,3683.00613278151,9.99999961853027,9.99999961853027,0,2.253637,593.1891,241.8218,241.8218,1264.632,-148.1703,15.02163,78.55721,-9.204132,15.02163,0,0,1,0,0,0,0,0,3.314845,0.04154791,11.66524,15.02163,0,3770.928,-,-
-1252.5,3685.78391045332,9.99999961853027,9.99999961853027,0,2.253637,593.1891,241.8218,241.8218,1264.632,-148.1703,15.02163,78.55721,-9.204132,15.02163,0,0,1,0,0,0,0,0,3.314845,0.04154791,11.66524,15.02163,0,3770.928,-,-
-1253.5,3688.56168812513,9.99999961853027,9.99999961853027,0,2.253637,593.1891,241.8218,241.8218,1264.632,-148.1703,15.02163,78.55721,-9.204132,15.02163,0,0,1,0,0,0,0,0,3.314845,0.04154791,11.66524,15.02163,0,3770.928,-,-
-1254.5,3691.33946579695,9.99999961853027,9.99999961853027,0,2.253637,593.1891,241.8218,241.8218,1264.632,-148.1703,15.02163,78.55721,-9.204132,15.02163,0,0,1,0,0,0,0,0,3.314845,0.04154791,11.66524,15.02163,0,3770.928,-,-
-1255.5,3694.11724346876,9.99999961853027,9.99999961853027,0,2.253637,593.1891,241.8218,241.8218,1264.632,-148.1703,15.02163,78.55721,-9.204132,15.02163,0,0,1,0,0,0,0,0,3.314845,0.04154791,11.66524,15.02163,0,3770.928,-,-
-1256.5,3696.89502114058,9.99999961853027,9.99999961853027,0,2.253637,593.1891,241.8218,241.8218,1264.632,-148.1703,15.02163,78.55721,-9.204132,15.02163,0,0,1,0,0,0,0,0,3.314845,0.04154791,11.66524,15.02163,0,3770.928,-,-
-1257.5,3699.67279881239,9.99999961853027,9.99999961853027,0,2.253637,593.1891,241.8218,241.8218,1264.632,-148.1703,15.02163,78.55721,-9.204132,15.02163,0,0,1,0,0,0,0,0,3.314845,0.04154791,11.66524,15.02163,0,3770.928,-,-
-1258.5,3702.4505764842,9.99999961853027,9.99999961853027,0,2.253637,593.1891,241.8218,241.8218,1264.632,-148.1703,15.02163,78.55721,-9.204132,15.02163,0,0,1,0,0,0,0,0,3.314845,0.04154791,11.66524,15.02163,0,3770.928,-,-
-1259.5,3705.22835415602,9.99999961853027,9.99999961853027,0,2.253637,593.1891,241.8218,241.8218,1264.632,-148.1703,15.02163,78.55721,-9.204132,15.02163,0,0,1,0,0,0,0,0,3.314845,0.04154791,11.66524,15.02163,0,3770.928,-,-
-1260.5,3708.00613182783,9.99999961853027,9.99999961853027,0,2.19951,593.1891,237.3144,237.3144,1264.632,-148.1703,14.74164,78.55721,-9.204132,14.74164,0,0,1,0,0,0,0,0,3.314885,0.04154791,11.38521,14.74164,0,3722.698,-,-
-1261.5,3710.78390949965,9.99999961853027,9.99999961853027,0,2.145383,593.1891,232.8068,232.8068,1264.632,-148.1703,14.46164,78.55721,-9.204132,14.46164,0,0,1,0,0,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3674.729,-,-
-1262.5,3713.56168717146,9.99999961853027,9.99999961853027,0,2.145383,593.1891,232.8068,232.8068,1264.632,-148.1703,14.46164,78.55721,-9.204132,14.46164,0,0,1,0,0,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3674.729,-,-
-1263.5,3716.33946484327,9.99999961853027,9.99999961853027,0,2.145383,593.1891,232.8068,232.8068,1264.632,-148.1703,14.46164,78.55721,-9.204132,14.46164,0,0,1,0,0,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3674.729,-,-
-1264.5,3719.11724251509,9.99999961853027,9.99999961853027,0,2.145383,593.1891,232.8068,232.8068,1264.632,-148.1703,14.46164,78.55721,-9.204132,14.46164,0,0,1,0,0,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3674.729,-,-
-1265.5,3721.8950201869,9.99999961853027,9.99999961853027,0,2.145383,593.1891,232.8068,232.8068,1264.632,-148.1703,14.46164,78.55721,-9.204132,14.46164,0,0,1,0,0,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3674.729,-,-
-1266.5,3724.67279785872,9.99999961853027,9.99999961853027,0,2.145383,593.1891,232.8068,232.8068,1264.632,-148.1703,14.46164,78.55721,-9.204132,14.46164,0,0,1,0,0,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3674.729,-,-
-1267.5,3727.45057553053,9.99999961853027,9.99999961853027,0,2.145383,593.1891,232.8068,232.8068,1264.632,-148.1703,14.46164,78.55721,-9.204132,14.46164,0,0,1,0,0,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3674.729,-,-
-1268.5,3730.22835320234,9.99999961853027,9.99999961853027,0,2.145383,593.1891,232.8068,232.8068,1264.632,-148.1703,14.46164,78.55721,-9.204132,14.46164,0,0,1,0,0,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3674.729,-,-
-1269.5,3733.00613087416,9.99999961853027,9.99999961853027,0,2.145383,593.1891,232.8068,232.8068,1264.632,-148.1703,14.46164,78.55721,-9.204132,14.46164,0,0,1,0,0,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3674.729,-,-
-1270.5,3735.78390854597,9.99999961853027,9.99999961853027,0,2.145383,593.1891,232.8068,232.8068,1264.632,-148.1703,14.46164,78.55721,-9.204132,14.46164,0,0,1,0,0,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3674.729,-,-
-1271.5,3738.56168621778,9.99999961853027,9.99999961853027,0,2.145383,593.1891,232.8068,232.8068,1264.632,-148.1703,14.46164,78.55721,-9.204132,14.46164,0,0,1,0,0,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3674.729,-,-
-1272.5,3741.3394638896,9.99999961853027,9.99999961853027,0,2.145383,593.1891,232.8068,232.8068,1264.632,-148.1703,14.46164,78.55721,-9.204132,14.46164,0,0,1,0,0,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3674.729,-,-
-1273.5,3744.11724156141,9.99999961853027,9.99999961853027,0,2.145383,593.1891,232.8068,232.8068,1264.632,-148.1703,14.46164,78.55721,-9.204132,14.46164,0,0,1,0,0,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3674.729,-,-
-1274.5,3746.89501923323,9.99999961853027,9.99999961853027,0,2.145383,593.1891,232.8068,232.8068,1264.632,-148.1703,14.46164,78.55721,-9.204132,14.46164,0,0,1,0,0,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3674.729,-,-
-1275.5,3749.67279690504,9.99999961853027,9.99999961853027,0,2.145383,593.1891,232.8068,232.8068,1264.632,-148.1703,14.46164,78.55721,-9.204132,14.46164,0,0,1,0,0,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3674.729,-,-
-1276.5,3752.45057457685,9.99999961853027,9.99999961853027,0,2.145383,593.1891,232.8068,232.8068,1264.632,-148.1703,14.46164,78.55721,-9.204132,14.46164,0,0,1,0,0,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3674.729,-,-
-1277.5,3755.22835224867,9.99999961853027,9.99999961853027,0,2.145383,593.1891,232.8068,232.8068,1264.632,-148.1703,14.46164,78.55721,-9.204132,14.46164,0,0,1,0,0,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3674.729,-,-
-1278.5,3758.00612992048,9.99999961853027,9.99999961853027,0,2.145383,593.1891,232.8068,232.8068,1264.632,-148.1703,14.46164,78.55721,-9.204132,14.46164,0,0,1,0,0,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3674.729,-,-
-1279.5,3760.7839075923,9.99999961853027,9.99999961853027,0,2.145383,593.1891,232.8068,232.8068,1264.632,-148.1703,14.46164,78.55721,-9.204132,14.46164,0,0,1,0,0,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3674.729,-,-
-1280.5,3763.56168526411,9.99999961853027,9.99999961853027,0,2.145383,593.1891,232.8068,232.8068,1264.632,-148.1703,14.46164,78.55721,-9.204132,14.46164,0,0,1,0,0,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3674.729,-,-
-1281.5,3766.33946293592,9.99999961853027,9.99999961853027,0,2.145383,593.1891,232.8068,232.8068,1264.632,-148.1703,14.46164,78.55721,-9.204132,14.46164,0,0,1,0,0,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3674.729,-,-
-1282.5,3769.11724060774,9.99999961853027,9.99999961853027,0,2.145383,593.1891,232.8068,232.8068,1264.632,-148.1703,14.46164,78.55721,-9.204132,14.46164,0,0,1,0,0,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3674.729,-,-
-1283.5,3771.89501827955,9.99999961853027,9.99999961853027,0,2.145383,593.1891,232.8068,232.8068,1264.632,-148.1703,14.46164,78.55721,-9.204132,14.46164,0,0,1,0,0,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3674.729,-,-
-1284.5,3774.67279595137,9.99999961853027,9.99999961853027,0,2.145383,593.1891,232.8068,232.8068,1264.632,-148.1703,14.46164,78.55721,-9.204132,14.46164,0,0,1,0,0,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3674.729,-,-
-1285.5,3777.45057362318,9.99999961853027,9.99999961853027,0,2.145383,593.1891,232.8068,232.8068,1264.632,-148.1703,14.46164,78.55721,-9.204132,14.46164,0,0,1,0,0,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3674.729,-,-
-1286.5,3780.22835129499,9.99999961853027,9.99999961853027,0,2.145383,593.1891,232.8068,232.8068,1264.632,-148.1703,14.46164,78.55721,-9.204132,14.46164,0,0,1,0,0,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3674.729,-,-
-1287.5,3783.00612896681,9.99999961853027,9.99999961853027,0,2.145383,593.1891,232.8068,232.8068,1264.632,-148.1703,14.46164,78.55721,-9.204132,14.46164,0,0,1,0,0,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3674.729,-,-
-1288.5,3785.78390663862,9.99999961853027,9.99999961853027,0,2.145383,593.1891,232.8068,232.8068,1264.632,-148.1703,14.46164,78.55721,-9.204132,14.46164,0,0,1,0,0,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3674.729,-,-
-1289.5,3788.56168431044,9.99999961853027,9.99999961853027,0,2.145383,593.1891,232.8068,232.8068,1264.632,-148.1703,14.46164,78.55721,-9.204132,14.46164,0,0,1,0,0,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3674.729,-,-
-1290.5,3791.33946198225,9.99999961853027,9.99999961853027,0,2.145383,593.1891,232.8068,232.8068,1264.632,-148.1703,14.46164,78.55721,-9.204132,14.46164,0,0,1,0,0,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3674.729,-,-
-1291.5,3794.11723965406,9.99999961853027,9.99999961853027,0,2.145383,593.1891,232.8068,232.8068,1264.632,-148.1703,14.46164,78.55721,-9.204132,14.46164,0,0,1,0,0,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3674.729,-,-
-1292.5,3796.89501732588,9.99999961853027,9.99999961853027,0,2.145383,593.1891,232.8068,232.8068,1264.632,-148.1703,14.46164,78.55721,-9.204132,14.46164,0,0,1,0,0,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3674.729,-,-
-1293.5,3799.67279499769,9.99999961853027,9.99999961853027,0,2.145383,593.1891,232.8068,232.8068,1264.632,-148.1703,14.46164,78.55721,-9.204132,14.46164,0,0,1,0,0,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3674.729,-,-
-1294.5,3802.45057266951,9.99999961853027,9.99999961853027,0,2.145383,593.1891,232.8068,232.8068,1264.632,-148.1703,14.46164,78.55721,-9.204132,14.46164,0,0,1,0,0,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3674.729,-,-
-1295.5,3805.22835034132,9.99999961853027,9.99999961853027,0,2.145383,593.1891,232.8068,232.8068,1264.632,-148.1703,14.46164,78.55721,-9.204132,14.46164,0,0,1,0,0,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3674.729,-,-
-1296.5,3808.00612801313,9.99999961853027,9.99999961853027,0,2.145383,593.1891,232.8068,232.8068,1264.632,-148.1703,14.46164,78.55721,-9.204132,14.46164,0,0,1,0,0,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3674.729,-,-
-1297.5,3810.78390568495,9.99999961853027,9.99999961853027,0,2.145383,593.1891,232.8068,232.8068,1264.632,-148.1703,14.46164,78.55721,-9.204132,14.46164,0,0,1,0,0,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3674.729,-,-
-1298.5,3813.56168335676,9.99999961853027,9.99999961853027,0,2.145383,593.1891,232.8068,232.8068,1264.632,-148.1703,14.46164,78.55721,-9.204132,14.46164,0,0,1,0,0,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3674.729,-,-
-1299.5,3816.33946102858,9.99999961853027,9.99999961853027,0,2.145383,593.1891,232.8068,232.8068,1264.632,-148.1703,14.46164,78.55721,-9.204132,14.46164,0,0,1,0,0,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3674.729,-,-
-1300.5,3819.11723870039,9.99999961853027,9.99999961853027,0,2.145383,593.1891,232.8068,232.8068,1264.632,-148.1703,14.46164,78.55721,-9.204132,14.46164,0,0,1,0,0,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3674.729,-,-
-1301.5,3821.8950163722,9.99999961853027,9.99999961853027,0,2.145383,593.1891,232.8068,232.8068,1264.632,-148.1703,14.46164,78.55721,-9.204132,14.46164,0,0,1,0,0,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3674.729,-,-
-1302.5,3824.67279404402,9.99999961853027,9.99999961853027,0,2.145383,593.1891,232.8068,232.8068,1264.632,-148.1703,14.46164,78.55721,-9.204132,14.46164,0,0,1,0,0,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3674.729,-,-
-1303.5,3827.45057171583,9.99999961853027,9.99999961853027,0,2.145383,593.1891,232.8068,232.8068,1264.632,-148.1703,14.46164,78.55721,-9.204132,14.46164,0,0,1,0,0,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3674.729,-,-
-1304.5,3830.22834938765,9.99999961853027,9.99999961853027,0,2.24564,593.1891,241.1558,241.1558,1264.632,-148.1703,14.98027,78.55721,-9.204132,14.98027,0,0,1,0,0,0,0,0,3.314851,0.04154791,11.62387,14.98027,0,3763.802,-,-
-1305.5,3833.00612705946,9.99999961853027,9.99999961853027,0,2.24564,593.1891,241.1558,241.1558,1264.632,-148.1703,14.98027,78.55721,-9.204132,14.98027,0,0,1,0,0,0,0,0,3.314851,0.04154791,11.62387,14.98027,0,3763.802,-,-
-1306.5,3835.78390473127,9.99999961853027,9.99999961853027,0,2.24564,593.1891,241.1558,241.1558,1264.632,-148.1703,14.98027,78.55721,-9.204132,14.98027,0,0,1,0,0,0,0,0,3.314851,0.04154791,11.62387,14.98027,0,3763.802,-,-
-1307.5,3838.56168240309,9.99999961853027,9.99999961853027,0,2.24564,593.1891,241.1558,241.1558,1264.632,-148.1703,14.98027,78.55721,-9.204132,14.98027,0,0,1,0,0,0,0,0,3.314851,0.04154791,11.62387,14.98027,0,3763.802,-,-
-1308.5,3841.3394600749,9.99999961853027,9.99999961853027,0,2.24564,593.1891,241.1558,241.1558,1264.632,-148.1703,14.98027,78.55721,-9.204132,14.98027,0,0,1,0,0,0,0,0,3.314851,0.04154791,11.62387,14.98027,0,3763.802,-,-
-1309.5,3844.11723774672,9.99999961853027,9.99999961853027,0,2.24564,593.1891,241.1558,241.1558,1264.632,-148.1703,14.98027,78.55721,-9.204132,14.98027,0,0,1,0,0,0,0,0,3.314851,0.04154791,11.62387,14.98027,0,3763.802,-,-
-1310.5,3846.89501541853,9.99999961853027,9.99999961853027,0,2.24564,593.1891,241.1558,241.1558,1264.632,-148.1703,14.98027,78.55721,-9.204132,14.98027,0,0,1,0,0,0,0,0,3.314851,0.04154791,11.62387,14.98027,0,3763.802,-,-
-1311.5,3849.67279309034,9.99999961853027,9.99999961853027,0,2.24564,593.1891,241.1558,241.1558,1264.632,-148.1703,14.98027,78.55721,-9.204132,14.98027,0,0,1,0,0,0,0,0,3.314851,0.04154791,11.62387,14.98027,0,3763.802,-,-
-1312.5,3852.45057076216,9.99999961853027,9.99999961853027,0,2.24564,593.1891,241.1558,241.1558,1264.632,-148.1703,14.98027,78.55721,-9.204132,14.98027,0,0,1,0,0,0,0,0,3.314851,0.04154791,11.62387,14.98027,0,3763.802,-,-
-1313.5,3855.22834843397,9.99999961853027,9.99999961853027,0,2.24564,593.1891,241.1558,241.1558,1264.632,-148.1703,14.98027,78.55721,-9.204132,14.98027,0,0,1,0,0,0,0,0,3.314851,0.04154791,11.62387,14.98027,0,3763.802,-,-
-1314.5,3858.00612610579,9.99999961853027,9.99999961853027,0,2.306275,593.1891,246.2051,246.2051,1264.632,-148.1703,15.29392,78.55721,-9.204132,15.29392,0,0,1,0,0,0,0,0,3.314805,0.04154791,11.93756,15.29392,0,3817.829,-,-
-1315.5,3860.7839037776,9.99999961853027,9.99999961853027,0,2.36691,593.1891,251.254,251.254,1264.632,-148.1703,15.60755,78.55721,-9.204132,15.60755,0,0,1,0,0,0,0,0,3.314758,0.04154791,12.25125,15.60755,0,3871.853,-,-
-1316.5,3863.56168144941,9.99999961853027,9.99999961853027,0,2.36691,593.1891,251.254,251.254,1264.632,-148.1703,15.60755,78.55721,-9.204132,15.60755,0,0,1,0,0,0,0,0,3.314758,0.04154791,12.25125,15.60755,0,3871.853,-,-
-1317.5,3866.33945912123,9.99999961853027,9.99999961853027,0,2.36691,593.1891,251.254,251.254,1264.632,-148.1703,15.60755,78.55721,-9.204132,15.60755,0,0,1,0,0,0,0,0,3.314758,0.04154791,12.25125,15.60755,0,3871.853,-,-
-1318.5,3869.11723679304,9.99999961853027,9.99999961853027,0,2.36691,593.1891,251.254,251.254,1264.632,-148.1703,15.60755,78.55721,-9.204132,15.60755,0,0,1,0,0,0,0,0,3.314758,0.04154791,12.25125,15.60755,0,3871.853,-,-
-1319.5,3871.89501446486,9.99999961853027,9.99999961853027,0,2.36691,593.1891,251.254,251.254,1264.632,-148.1703,15.60755,78.55721,-9.204132,15.60755,0,0,1,0,0,0,0,0,3.314758,0.04154791,12.25125,15.60755,0,3871.853,-,-
-1320.5,3874.67279213667,9.99999961853027,9.99999961853027,0,2.36691,593.1891,251.254,251.254,1264.632,-148.1703,15.60755,78.55721,-9.204132,15.60755,0,0,1,0,0,0,0,0,3.314758,0.04154791,12.25125,15.60755,0,3871.853,-,-
-1321.5,3877.45056980848,9.99999961853027,9.99999961853027,0,2.36691,593.1891,251.254,251.254,1264.632,-148.1703,15.60755,78.55721,-9.204132,15.60755,0,0,1,0,0,0,0,0,3.314758,0.04154791,12.25125,15.60755,0,3871.853,-,-
-1322.5,3880.2283474803,9.99999961853027,9.99999961853027,0,2.36691,593.1891,251.254,251.254,1264.632,-148.1703,15.60755,78.55721,-9.204132,15.60755,0,0,1,0,0,0,0,0,3.314758,0.04154791,12.25125,15.60755,0,3871.853,-,-
-1323.5,3883.00612515211,9.99999961853027,9.99999961853027,0,2.36691,593.1891,251.254,251.254,1264.632,-148.1703,15.60755,78.55721,-9.204132,15.60755,0,0,1,0,0,0,0,0,3.314758,0.04154791,12.25125,15.60755,0,3871.853,-,-
-1324.5,3885.78390282393,9.99999961853027,9.99999961853027,0,2.36691,593.1891,251.254,251.254,1264.632,-148.1703,15.60755,78.55721,-9.204132,15.60755,0,0,1,0,0,0,0,0,3.314758,0.04154791,12.25125,15.60755,0,3871.853,-,-
-1325.5,3888.56168049574,9.99999961853027,9.99999961853027,0,2.427546,593.1891,256.3028,256.3028,1264.632,-148.1703,15.92118,78.55721,-9.204132,15.92118,0,0,1,0,0,0,0,0,3.31471,0.04154791,12.56492,15.92118,0,3925.875,-,-
-1326.5,3891.33945816755,9.99999961853027,9.99999961853027,0,2.488181,593.1891,261.3513,261.3513,1264.632,-148.1703,16.23478,78.55721,-9.204132,16.23478,0,0,1,0,0,0,0,0,3.314661,0.04154791,12.87857,16.23478,0,3979.894,-,-
-1327.5,3894.11723583937,9.99999961853027,9.99999961853027,0,2.488181,593.1891,261.3513,261.3513,1264.632,-148.1703,16.23478,78.55721,-9.204132,16.23478,0,0,1,0,0,0,0,0,3.314661,0.04154791,12.87857,16.23478,0,3979.894,-,-
-1328.5,3896.89501351118,9.99999961853027,9.99999961853027,0,2.488181,593.1891,261.3513,261.3513,1264.632,-148.1703,16.23478,78.55721,-9.204132,16.23478,0,0,1,0,0,0,0,0,3.314661,0.04154791,12.87857,16.23478,0,3979.894,-,-
-1329.5,3899.67279118299,9.99999961853027,9.99999961853027,0,2.488181,593.1891,261.3513,261.3513,1264.632,-148.1703,16.23478,78.55721,-9.204132,16.23478,0,0,1,0,0,0,0,0,3.314661,0.04154791,12.87857,16.23478,0,3979.894,-,-
-1330.5,3902.45056885481,9.99999961853027,9.99999961853027,0,2.488181,593.1891,261.3513,261.3513,1264.632,-148.1703,16.23478,78.55721,-9.204132,16.23478,0,0,1,0,0,0,0,0,3.314661,0.04154791,12.87857,16.23478,0,3979.894,-,-
-1331.5,3905.22834652662,9.99999961853027,9.99999961853027,0,2.488181,593.1891,261.3513,261.3513,1264.632,-148.1703,16.23478,78.55721,-9.204132,16.23478,0,0,1,0,0,0,0,0,3.314661,0.04154791,12.87857,16.23478,0,3979.894,-,-
-1332.5,3908.00612419844,9.99999961853027,9.99999961853027,0,2.488181,593.1891,261.3513,261.3513,1264.632,-148.1703,16.23478,78.55721,-9.204132,16.23478,0,0,1,0,0,0,0,0,3.314661,0.04154791,12.87857,16.23478,0,3979.894,-,-
-1333.5,3910.78390187025,9.99999961853027,9.99999961853027,0,2.488181,593.1891,261.3513,261.3513,1264.632,-148.1703,16.23478,78.55721,-9.204132,16.23478,0,0,1,0,0,0,0,0,3.314661,0.04154791,12.87857,16.23478,0,3979.894,-,-
-1334.5,3913.56167954206,9.99999961853027,9.99999961853027,0,2.488181,593.1891,261.3513,261.3513,1264.632,-148.1703,16.23478,78.55721,-9.204132,16.23478,0,0,1,0,0,0,0,0,3.314661,0.04154791,12.87857,16.23478,0,3979.894,-,-
-1335.5,3916.33945721388,9.99999961853027,9.99999961853027,0,2.488181,593.1891,261.3513,261.3513,1264.632,-148.1703,16.23478,78.55721,-9.204132,16.23478,0,0,1,0,0,0,0,0,3.314661,0.04154791,12.87857,16.23478,0,3979.894,-,-
-1336.5,3919.11723488569,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1337.5,3921.89501255751,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1338.5,3924.67279022932,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1339.5,3927.45056790113,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1340.5,3930.22834557295,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1341.5,3933.00612324476,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1342.5,3935.78390091658,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1343.5,3938.56167858839,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1344.5,3941.3394562602,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1345.5,3944.11723393202,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1346.5,3946.89501160383,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1347.5,3949.67278927565,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1348.5,3952.45056694746,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1349.5,3955.22834461927,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1350.5,3958.00612229109,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1351.5,3960.7838999629,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1352.5,3963.56167763472,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1353.5,3966.33945530653,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1354.5,3969.11723297834,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1355.5,3971.89501065016,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1356.5,3974.67278832197,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1357.5,3977.45056599379,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1358.5,3980.2283436656,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1359.5,3983.00612133741,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1360.5,3985.78389900923,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1361.5,3988.56167668104,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1362.5,3991.33945435286,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1363.5,3994.11723202467,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1364.5,3996.89500969648,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1365.5,3999.6727873683,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1366.5,4002.45056504011,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1367.5,4005.22834271193,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1368.5,4008.00612038374,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1369.5,4010.78389805555,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1370.5,4013.56167572737,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1371.5,4016.33945339918,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1372.5,4019.117231071,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1373.5,4021.89500874281,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1374.5,4024.67278641462,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1375.5,4027.45056408644,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1376.5,4030.22834175825,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1377.5,4033.00611943007,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1378.5,4035.78389710188,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1379.5,4038.56167477369,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1380.5,4041.33945244551,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1381.5,4044.11723011732,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1382.5,4046.89500778914,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1383.5,4049.67278546095,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1384.5,4052.45056313276,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1385.5,4055.22834080458,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1386.5,4058.00611847639,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1387.5,4060.7838961482,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1388.5,4063.56167382002,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1389.5,4066.33945149183,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1390.5,4069.11722916365,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1391.5,4071.89500683546,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1392.5,4074.67278450727,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1393.5,4077.45056217909,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1394.5,4080.2283398509,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1395.5,4083.00611752272,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1396.5,4085.78389519453,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1397.5,4088.56167286634,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1398.5,4091.33945053816,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1399.5,4094.11722820997,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1400.5,4096.89500588179,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1401.5,4099.6727835536,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1402.5,4102.45056122541,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1403.5,4105.22833889723,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1404.5,4108.00611656904,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1405.5,4110.78389424086,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1406.5,4113.56167191267,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1407.5,4116.33944958448,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1408.5,4119.1172272563,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1409.5,4121.89500492811,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1410.5,4124.67278259993,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1411.5,4127.45056027174,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1412.5,4130.22833794355,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1413.5,4133.00611561537,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1414.5,4135.78389328718,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1415.5,4138.561670959,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1416.5,4141.33944863081,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1417.5,4144.11722630262,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1418.5,4146.89500397444,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1419.5,4149.67278164625,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1420.5,4152.45055931807,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1421.5,4155.22833698988,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1422.5,4158.00611466169,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1423.5,4160.78389233351,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1424.5,4163.56167000532,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1425.5,4166.33944767714,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1426.5,4169.11722534895,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1427.5,4171.89500302076,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1428.5,4174.67278069258,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1429.5,4177.45055836439,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1430.5,4180.22833603621,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1431.5,4183.00611370802,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1432.5,4185.78389137983,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1433.5,4188.56166905165,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1434.5,4191.33944672346,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1435.5,4194.11722439528,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1436.5,4196.89500206709,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1437.5,4199.6727797389,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1438.5,4202.45055741072,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1439.5,4205.22833508253,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1440.5,4208.00611275434,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1441.5,4210.78389042616,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1442.5,4213.56166809797,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1443.5,4216.33944576979,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1444.5,4219.1172234416,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1445.5,4221.89500111341,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1446.5,4224.67277878523,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1447.5,4227.45055645704,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1448.5,4230.22833412886,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1449.5,4233.00611180067,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1450.5,4235.78388947248,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1451.5,4238.5616671443,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1452.5,4241.33944481611,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1453.5,4244.11722248793,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1454.5,4246.89500015974,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1455.5,4249.67277783155,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1456.5,4252.45055550337,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1457.5,4255.22833317518,9.99999961853027,9.99999961853027,0,2.609452,593.1891,271.4476,271.4476,1264.632,-148.1703,16.86195,78.55721,-9.204132,16.86195,0,0,1,0,0,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4087.924,-,-
-1458.5,4258.006110847,9.99999961853027,9.99999961853027,0,2.53573,593.1891,265.31,265.31,1264.632,-148.1703,16.48069,78.55721,-9.204132,16.48069,0,0,1,0,0,0,0,0,3.314621,0.04154791,13.12452,16.48069,0,4022.252,-,-
-1459.5,4260.78388851881,9.99999961853027,9.99999961853027,0,2.462007,593.1891,259.1721,259.1721,1264.632,-148.1703,16.09941,78.55721,-9.204132,16.09941,0,0,1,0,0,0,0,0,3.314682,0.04154791,12.74318,16.09941,0,3956.576,-,-
-1460.5,4263.56166619062,9.99999961853027,9.99999961853027,0,2.462007,593.1891,259.1721,259.1721,1264.632,-148.1703,16.09941,78.55721,-9.204132,16.09941,0,0,1,0,0,0,0,0,3.314682,0.04154791,12.74318,16.09941,0,3956.576,-,-
-1461.5,4266.33944386244,9.99999961853027,9.99999961853027,0,2.462007,593.1891,259.1721,259.1721,1264.632,-148.1703,16.09941,78.55721,-9.204132,16.09941,0,0,1,0,0,0,0,0,3.314682,0.04154791,12.74318,16.09941,0,3956.576,-,-
-1462.5,4269.11722153425,9.99999961853027,9.99999961853027,0,2.462007,593.1891,259.1721,259.1721,1264.632,-148.1703,16.09941,78.55721,-9.204132,16.09941,0,0,1,0,0,0,0,0,3.314682,0.04154791,12.74318,16.09941,0,3956.576,-,-
-1463.5,4271.89499920607,9.99999961853027,9.99999961853027,0,2.462007,593.1891,259.1721,259.1721,1264.632,-148.1703,16.09941,78.55721,-9.204132,16.09941,0,0,1,0,0,0,0,0,3.314682,0.04154791,12.74318,16.09941,0,3956.576,-,-
-1464.5,4274.67277687788,9.99999961853027,9.99999961853027,0,2.462007,593.1891,259.1721,259.1721,1264.632,-148.1703,16.09941,78.55721,-9.204132,16.09941,0,0,1,0,0,0,0,0,3.314682,0.04154791,12.74318,16.09941,0,3956.576,-,-
-1465.5,4277.45055454969,9.99999961853027,9.99999961853027,0,2.462007,593.1891,259.1721,259.1721,1264.632,-148.1703,16.09941,78.55721,-9.204132,16.09941,0,0,1,0,0,0,0,0,3.314682,0.04154791,12.74318,16.09941,0,3956.576,-,-
-1466.5,4280.22833222151,9.99999961853027,9.99999961853027,0,2.361491,593.1891,250.8028,250.8028,1264.632,-148.1703,15.57952,78.55721,-9.204132,15.57952,0,0,1,0,0,0,0,0,3.314763,0.04154791,12.22321,15.57952,0,3867.025,-,-
-1467.5,4283.00610989332,9.99999961853027,9.99999961853027,0,2.361491,593.1891,250.8028,250.8028,1264.632,-148.1703,15.57952,78.55721,-9.204132,15.57952,0,0,1,0,0,0,0,0,3.314763,0.04154791,12.22321,15.57952,0,3867.025,-,-
-1468.5,4285.78388756514,9.99999961853027,9.99999961853027,0,2.361491,593.1891,250.8028,250.8028,1264.632,-148.1703,15.57952,78.55721,-9.204132,15.57952,0,0,1,0,0,0,0,0,3.314763,0.04154791,12.22321,15.57952,0,3867.025,-,-
-1469.5,4288.56166523695,9.99999961853027,9.99999961853027,0,2.361491,593.1891,250.8028,250.8028,1264.632,-148.1703,15.57952,78.55721,-9.204132,15.57952,0,0,1,0,0,0,0,0,3.314763,0.04154791,12.22321,15.57952,0,3867.025,-,-
-1470.5,4291.33944290876,9.99999961853027,9.99999961853027,0,2.361491,593.1891,250.8028,250.8028,1264.632,-148.1703,15.57952,78.55721,-9.204132,15.57952,0,0,1,0,0,0,0,0,3.314763,0.04154791,12.22321,15.57952,0,3867.025,-,-
-1471.5,4294.11722058058,9.99999961853027,9.99999961853027,0,2.361491,593.1891,250.8028,250.8028,1264.632,-148.1703,15.57952,78.55721,-9.204132,15.57952,0,0,1,0,0,0,0,0,3.314763,0.04154791,12.22321,15.57952,0,3867.025,-,-
-1472.5,4296.89499825239,9.99999961853027,9.99999961853027,0,2.361491,593.1891,250.8028,250.8028,1264.632,-148.1703,15.57952,78.55721,-9.204132,15.57952,0,0,1,0,0,0,0,0,3.314763,0.04154791,12.22321,15.57952,0,3867.025,-,-
-1473.5,4299.67277592421,9.99999961853027,9.99999961853027,0,2.260976,593.1891,242.4329,242.4329,1264.632,-148.1703,15.0596,78.55721,-9.204132,15.0596,0,0,1,0,0,0,0,0,3.31484,0.04154791,11.70321,15.0596,0,3777.467,-,-
-1474.5,4302.45055359602,9.99999961853027,9.99999961853027,0,2.260976,593.1891,242.4329,242.4329,1264.632,-148.1703,15.0596,78.55721,-9.204132,15.0596,0,0,1,0,0,0,0,0,3.31484,0.04154791,11.70321,15.0596,0,3777.467,-,-
-1475.5,4305.22833126783,9.99999961853027,9.99999961853027,0,2.260976,593.1891,242.4329,242.4329,1264.632,-148.1703,15.0596,78.55721,-9.204132,15.0596,0,0,1,0,0,0,0,0,3.31484,0.04154791,11.70321,15.0596,0,3777.467,-,-
-1476.5,4308.00610893965,9.99999961853027,9.99999961853027,0,2.260976,593.1891,242.4329,242.4329,1264.632,-148.1703,15.0596,78.55721,-9.204132,15.0596,0,0,1,0,0,0,0,0,3.31484,0.04154791,11.70321,15.0596,0,3777.467,-,-
-1477.5,4310.78388661146,9.99999961853027,9.99999961853027,0,2.260976,593.1891,242.4329,242.4329,1264.632,-148.1703,15.0596,78.55721,-9.204132,15.0596,0,0,1,0,0,0,0,0,3.31484,0.04154791,11.70321,15.0596,0,3777.467,-,-
-1478.5,4313.56166428328,9.99999961853027,9.99999961853027,0,2.260976,593.1891,242.4329,242.4329,1264.632,-148.1703,15.0596,78.55721,-9.204132,15.0596,0,0,1,0,0,0,0,0,3.31484,0.04154791,11.70321,15.0596,0,3777.467,-,-
-1479.5,4316.33944195509,9.99999961853027,9.99999961853027,0,2.260976,593.1891,242.4329,242.4329,1264.632,-148.1703,15.0596,78.55721,-9.204132,15.0596,0,0,1,0,0,0,0,0,3.31484,0.04154791,11.70321,15.0596,0,3777.467,-,-
-1480.5,4319.1172196269,9.99999961853027,9.99999961853027,0,2.16046,593.1891,234.0624,234.0624,1264.632,-148.1703,14.53963,78.55721,-9.204132,14.53963,0,0,1,0,0,0,0,0,3.314913,0.04154791,11.18317,14.53963,0,3687.903,-,-
-1481.5,4321.89499729872,9.99999961853027,9.99999961853027,0,2.16046,593.1891,234.0624,234.0624,1264.632,-148.1703,14.53963,78.55721,-9.204132,14.53963,0,0,1,0,0,0,0,0,3.314913,0.04154791,11.18317,14.53963,0,3687.903,-,-
-1482.5,4324.67277497053,9.99999961853027,9.99999961853027,0,2.16046,593.1891,234.0624,234.0624,1264.632,-148.1703,14.53963,78.55721,-9.204132,14.53963,0,0,1,0,0,0,0,0,3.314913,0.04154791,11.18317,14.53963,0,3687.903,-,-
-1483.5,4327.45055264235,9.99999961853027,9.99999961853027,0,2.16046,593.1891,234.0624,234.0624,1264.632,-148.1703,14.53963,78.55721,-9.204132,14.53963,0,0,1,0,0,0,0,0,3.314913,0.04154791,11.18317,14.53963,0,3687.903,-,-
-1484.5,4330.22833031416,9.99999961853027,9.99999961853027,0,2.16046,593.1891,234.0624,234.0624,1264.632,-148.1703,14.53963,78.55721,-9.204132,14.53963,0,0,1,0,0,0,0,0,3.314913,0.04154791,11.18317,14.53963,0,3687.903,-,-
-1485.5,4333.00610798597,9.99999961853027,9.99999961853027,0,2.16046,593.1891,234.0624,234.0624,1264.632,-148.1703,14.53963,78.55721,-9.204132,14.53963,0,0,1,0,0,0,0,0,3.314913,0.04154791,11.18317,14.53963,0,3687.903,-,-
-1486.5,4335.78388565779,9.99999961853027,9.99999961853027,0,2.16046,593.1891,234.0624,234.0624,1264.632,-148.1703,14.53963,78.55721,-9.204132,14.53963,0,0,1,0,0,0,0,0,3.314913,0.04154791,11.18317,14.53963,0,3687.903,-,-
-1487.5,4338.5616633296,9.99999961853027,9.99999961853027,0,2.110202,593.1891,229.8769,229.8769,1264.632,-148.1703,14.27964,78.55721,-9.204132,14.27964,0,0,1,0,0,0,0,0,3.314949,0.04154791,10.92314,14.27964,0,3643.995,-,-
-1488.5,4341.33944100142,9.99999961853027,9.99999961853027,0,2.059945,593.1891,225.6913,225.6913,1264.632,-148.1703,14.01963,78.55721,-9.204132,14.01963,0,0,1,0,0,0,0,0,3.314983,0.04154791,10.6631,14.01963,0,3600.088,-,-
-1489.5,4344.11721867323,9.99999961853027,9.99999961853027,0,2.059945,593.1891,225.6913,225.6913,1264.632,-148.1703,14.01963,78.55721,-9.204132,14.01963,0,0,1,0,0,0,0,0,3.314983,0.04154791,10.6631,14.01963,0,3600.088,-,-
-1490.5,4346.89499634504,9.99999961853027,9.99999961853027,0,2.059945,593.1891,225.6913,225.6913,1264.632,-148.1703,14.01963,78.55721,-9.204132,14.01963,0,0,1,0,0,0,0,0,3.314983,0.04154791,10.6631,14.01963,0,3600.088,-,-
-1491.5,4349.67277401686,9.99999961853027,9.99999961853027,0,2.059945,593.1891,225.6913,225.6913,1264.632,-148.1703,14.01963,78.55721,-9.204132,14.01963,0,0,1,0,0,0,0,0,3.314983,0.04154791,10.6631,14.01963,0,3600.088,-,-
-1492.5,4352.45055168867,9.99999961853027,9.99999961853027,0,2.059945,593.1891,225.6913,225.6913,1264.632,-148.1703,14.01963,78.55721,-9.204132,14.01963,0,0,1,0,0,0,0,0,3.314983,0.04154791,10.6631,14.01963,0,3600.088,-,-
-1493.5,4355.22832936049,9.99999961853027,9.99999961853027,0,2.059945,593.1891,225.6913,225.6913,1264.632,-148.1703,14.01963,78.55721,-9.204132,14.01963,0,0,1,0,0,0,0,0,3.314983,0.04154791,10.6631,14.01963,0,3600.088,-,-
-1494.5,4358.0061070323,9.99999961853027,9.99999961853027,0,2.009651,593.1891,221.5025,221.5025,1264.632,-148.1703,13.75943,78.55721,-9.204132,13.75943,0,0,1,0,0,0,0,0,3.315017,0.04154791,10.40287,13.75943,0,3556.148,-,-
-1495.5,4360.78388470411,9.99999961853027,9.99999961853027,0,1.959357,593.1891,217.3136,217.3136,1264.632,-148.1703,13.49922,78.55721,-9.204132,13.49922,0,0,1,0,0,0,0,0,3.31505,0.04154791,10.14262,13.49922,0,3512.206,-,-
-1496.5,4363.56166237593,9.99999961853027,9.99999961853027,0,1.959357,593.1891,217.3136,217.3136,1264.632,-148.1703,13.49922,78.55721,-9.204132,13.49922,0,0,1,0,0,0,0,0,3.31505,0.04154791,10.14262,13.49922,0,3512.206,-,-
-1497.5,4366.33944004774,9.99999961853027,9.99999961853027,0,1.959357,593.1891,217.3136,217.3136,1264.632,-148.1703,13.49922,78.55721,-9.204132,13.49922,0,0,1,0,0,0,0,0,3.31505,0.04154791,10.14262,13.49922,0,3512.206,-,-
-1498.5,4369.11721771955,9.99999961853027,9.99999961853027,0,1.959357,593.1891,217.3136,217.3136,1264.632,-148.1703,13.49922,78.55721,-9.204132,13.49922,0,0,1,0,0,0,0,0,3.31505,0.04154791,10.14262,13.49922,0,3512.206,-,-
-1499.5,4371.89499539137,9.99999961853027,9.99999961853027,0,1.959357,593.1891,217.3136,217.3136,1264.632,-148.1703,13.49922,78.55721,-9.204132,13.49922,0,0,1,0,0,0,0,0,3.31505,0.04154791,10.14262,13.49922,0,3512.206,-,-
-1500.5,4374.67277306318,9.99999961853027,9.99999961853027,0,1.959357,593.1891,217.3136,217.3136,1264.632,-148.1703,13.49922,78.55721,-9.204132,13.49922,0,0,1,0,0,0,0,0,3.31505,0.04154791,10.14262,13.49922,0,3512.206,-,-
-1501.5,4377.450550735,9.99999961853027,9.99999961853027,0,1.959357,593.1891,217.3136,217.3136,1264.632,-148.1703,13.49922,78.55721,-9.204132,13.49922,0,0,1,0,0,0,0,0,3.31505,0.04154791,10.14262,13.49922,0,3512.206,-,-
-1502.5,4380.22832840681,9.99999961853027,9.99999961853027,0,1.858117,593.1891,208.881,208.881,1264.632,-148.1703,12.9754,78.55721,-9.204132,12.9754,0,0,1,0,0,0,0,0,3.315114,0.04154791,9.618737,12.9754,0,3423.748,-,-
-1503.5,4383.00610607862,9.99999961853027,9.99999961853027,0,1.858117,593.1891,208.881,208.881,1264.632,-148.1703,12.9754,78.55721,-9.204132,12.9754,0,0,1,0,0,0,0,0,3.315114,0.04154791,9.618737,12.9754,0,3423.748,-,-
-1504.5,4385.78388375044,9.99999961853027,9.99999961853027,0,1.858117,593.1891,208.881,208.881,1264.632,-148.1703,12.9754,78.55721,-9.204132,12.9754,0,0,1,0,0,0,0,0,3.315114,0.04154791,9.618737,12.9754,0,3423.748,-,-
-1505.5,4388.56166142225,9.99999961853027,9.99999961853027,0,1.858117,593.1891,208.881,208.881,1264.632,-148.1703,12.9754,78.55721,-9.204132,12.9754,0,0,1,0,0,0,0,0,3.315114,0.04154791,9.618737,12.9754,0,3423.748,-,-
-1506.5,4391.33943909407,9.99999961853027,9.99999961853027,0,1.858117,593.1891,208.881,208.881,1264.632,-148.1703,12.9754,78.55721,-9.204132,12.9754,0,0,1,0,0,0,0,0,3.315114,0.04154791,9.618737,12.9754,0,3423.748,-,-
-1507.5,4394.11721676588,9.99999961853027,9.99999961853027,0,1.858117,593.1891,208.881,208.881,1264.632,-148.1703,12.9754,78.55721,-9.204132,12.9754,0,0,1,0,0,0,0,0,3.315114,0.04154791,9.618737,12.9754,0,3423.748,-,-
-1508.5,4396.89499443769,9.99999961853027,9.99999961853027,0,1.858117,593.1891,208.881,208.881,1264.632,-148.1703,12.9754,78.55721,-9.204132,12.9754,0,0,1,0,0,0,0,0,3.315114,0.04154791,9.618737,12.9754,0,3423.748,-,-
-1509.5,4399.67277210951,9.99999961853027,9.99999961853027,0,1.756876,593.1891,200.4479,200.4479,1264.632,-148.1703,12.45155,78.55721,-9.204132,12.45155,0,0,1,0,0,0,0,0,3.315175,0.04154791,9.094824,12.45155,0,3335.285,-,-
-1510.5,4402.45054978132,9.99999961853027,9.99999961853027,0,1.756876,593.1891,200.4479,200.4479,1264.632,-148.1703,12.45155,78.55721,-9.204132,12.45155,0,0,1,0,0,0,0,0,3.315175,0.04154791,9.094824,12.45155,0,3335.285,-,-
-1511.5,4405.22832745314,9.99999961853027,9.99999961853027,0,1.756876,593.1891,200.4479,200.4479,1264.632,-148.1703,12.45155,78.55721,-9.204132,12.45155,0,0,1,0,0,0,0,0,3.315175,0.04154791,9.094824,12.45155,0,3335.285,-,-
-1512.5,4408.00610512495,9.99999961853027,9.99999961853027,0,1.756876,593.1891,200.4479,200.4479,1264.632,-148.1703,12.45155,78.55721,-9.204132,12.45155,0,0,1,0,0,0,0,0,3.315175,0.04154791,9.094824,12.45155,0,3335.285,-,-
-1513.5,4410.78388279676,9.99999961853027,9.99999961853027,0,1.756876,593.1891,200.4479,200.4479,1264.632,-148.1703,12.45155,78.55721,-9.204132,12.45155,0,0,1,0,0,0,0,0,3.315175,0.04154791,9.094824,12.45155,0,3335.285,-,-
-1514.5,4413.56166046858,9.99999961853027,9.99999961853027,0,1.756876,593.1891,200.4479,200.4479,1264.632,-148.1703,12.45155,78.55721,-9.204132,12.45155,0,0,1,0,0,0,0,0,3.315175,0.04154791,9.094824,12.45155,0,3335.285,-,-
-1515.5,4416.33943814039,9.99999961853027,9.99999961853027,0,1.756876,593.1891,200.4479,200.4479,1264.632,-148.1703,12.45155,78.55721,-9.204132,12.45155,0,0,1,0,0,0,0,0,3.315175,0.04154791,9.094824,12.45155,0,3335.285,-,-
-1516.5,4419.11721581221,9.99999961853027,9.99999961853027,0,1.655636,593.1891,192.0143,192.0143,1264.632,-148.1703,11.92766,78.55721,-9.204132,11.92766,0,0,1,0,0,0,0,0,3.315232,0.04154791,8.57088,11.92766,0,3254.761,-,-
-1517.5,4421.89499348402,9.99999961853027,9.99999961853027,0,1.655636,593.1891,192.0143,192.0143,1264.632,-148.1703,11.92766,78.55721,-9.204132,11.92766,0,0,1,0,0,0,0,0,3.315232,0.04154791,8.57088,11.92766,0,3254.761,-,-
-1518.5,4424.67277115583,9.99999961853027,9.99999961853027,0,1.655636,593.1891,192.0143,192.0143,1264.632,-148.1703,11.92766,78.55721,-9.204132,11.92766,0,0,1,0,0,0,0,0,3.315232,0.04154791,8.57088,11.92766,0,3254.761,-,-
-1519.5,4427.45054882765,9.99999961853027,9.99999961853027,0,1.655636,593.1891,192.0143,192.0143,1264.632,-148.1703,11.92766,78.55721,-9.204132,11.92766,0,0,1,0,0,0,0,0,3.315232,0.04154791,8.57088,11.92766,0,3254.761,-,-
-1520.5,4430.22832649946,9.99999961853027,9.99999961853027,0,1.655636,593.1891,192.0143,192.0143,1264.632,-148.1703,11.92766,78.55721,-9.204132,11.92766,0,0,1,0,0,0,0,0,3.315232,0.04154791,8.57088,11.92766,0,3254.761,-,-
-1521.5,4433.00610417128,9.99999961853027,9.99999961853027,0,1.655636,593.1891,192.0143,192.0143,1264.632,-148.1703,11.92766,78.55721,-9.204132,11.92766,0,0,1,0,0,0,0,0,3.315232,0.04154791,8.57088,11.92766,0,3254.761,-,-
-1522.5,4435.78388184309,9.99999961853027,9.99999961853027,0,1.655636,593.1891,192.0143,192.0143,1264.632,-148.1703,11.92766,78.55721,-9.204132,11.92766,0,0,1,0,0,0,0,0,3.315232,0.04154791,8.57088,11.92766,0,3254.761,-,-
-1523.5,4438.5616595149,9.99999961853027,9.99999961853027,0,1.655636,593.1891,192.0143,192.0143,1264.632,-148.1703,11.92766,78.55721,-9.204132,11.92766,0,0,1,0,0,0,0,0,3.315232,0.04154791,8.57088,11.92766,0,3254.761,-,-
-1524.5,4441.33943718672,9.99999961853027,9.99999961853027,0,1.655636,593.1891,192.0143,192.0143,1264.632,-148.1703,11.92766,78.55721,-9.204132,11.92766,0,0,1,0,0,0,0,0,3.315232,0.04154791,8.57088,11.92766,0,3254.761,-,-
-1525.5,4444.11721485853,9.99999961853027,9.99999961853027,0,1.655636,593.1891,192.0143,192.0143,1264.632,-148.1703,11.92766,78.55721,-9.204132,11.92766,0,0,1,0,0,0,0,0,3.315232,0.04154791,8.57088,11.92766,0,3254.761,-,-
-1526.5,4446.89499253035,9.99999961853027,9.99999961853027,0,1.655636,593.1891,192.0143,192.0143,1264.632,-148.1703,11.92766,78.55721,-9.204132,11.92766,0,0,1,0,0,0,0,0,3.315232,0.04154791,8.57088,11.92766,0,3254.761,-,-
-1527.5,4449.67277020216,9.99999961853027,9.99999961853027,0,1.655636,593.1891,192.0143,192.0143,1264.632,-148.1703,11.92766,78.55721,-9.204132,11.92766,0,0,1,0,0,0,0,0,3.315232,0.04154791,8.57088,11.92766,0,3254.761,-,-
-1528.5,4452.45054787397,9.99999961853027,9.99999961853027,0,1.655636,593.1891,192.0143,192.0143,1264.632,-148.1703,11.92766,78.55721,-9.204132,11.92766,0,0,1,0,0,0,0,0,3.315232,0.04154791,8.57088,11.92766,0,3254.761,-,-
-1529.5,4455.22832554579,9.99999961853027,9.99999961853027,0,1.655636,593.1891,192.0143,192.0143,1264.632,-148.1703,11.92766,78.55721,-9.204132,11.92766,0,0,1,0,0,0,0,0,3.315232,0.04154791,8.57088,11.92766,0,3254.761,-,-
-1530.5,4458.0061032176,9.99999961853027,9.99999961853027,0,1.655636,593.1891,192.0143,192.0143,1264.632,-148.1703,11.92766,78.55721,-9.204132,11.92766,0,0,1,0,0,0,0,0,3.315232,0.04154791,8.57088,11.92766,0,3254.761,-,-
-1531.5,4460.78388088942,9.99999961853027,9.99999961853027,0,1.655636,593.1891,192.0143,192.0143,1264.632,-148.1703,11.92766,78.55721,-9.204132,11.92766,0,0,1,0,0,0,0,0,3.315232,0.04154791,8.57088,11.92766,0,3254.761,-,-
-1532.5,4463.56165856123,9.99999961853027,9.99999961853027,0,1.655636,593.1891,192.0143,192.0143,1264.632,-148.1703,11.92766,78.55721,-9.204132,11.92766,0,0,1,0,0,0,0,0,3.315232,0.04154791,8.57088,11.92766,0,3254.761,-,-
-1533.5,4466.33943623304,9.99999961853027,9.99999961853027,0,1.655636,593.1891,192.0143,192.0143,1264.632,-148.1703,11.92766,78.55721,-9.204132,11.92766,0,0,1,0,0,0,0,0,3.315232,0.04154791,8.57088,11.92766,0,3254.761,-,-
-1534.5,4469.11721390486,9.99999961853027,9.99999961853027,0,1.894037,593.1891,211.873,211.873,1264.632,-148.1703,13.16126,78.55721,-9.204132,13.16126,0,0,1,0,0,0,0,0,3.315092,0.04154791,9.804618,13.16126,0,3455.134,-,-
-1535.5,4471.89499157667,9.99999961853027,9.99999961853027,0,1.894037,593.1891,211.873,211.873,1264.632,-148.1703,13.16126,78.55721,-9.204132,13.16126,0,0,1,0,0,0,0,0,3.315092,0.04154791,9.804618,13.16126,0,3455.134,-,-
-1536.5,4474.67276924849,9.99999961853027,9.99999961853027,0,1.894037,593.1891,211.873,211.873,1264.632,-148.1703,13.16126,78.55721,-9.204132,13.16126,0,0,1,0,0,0,0,0,3.315092,0.04154791,9.804618,13.16126,0,3455.134,-,-
-1537.5,4477.4505469203,9.99999961853027,9.99999961853027,0,1.894037,593.1891,211.873,211.873,1264.632,-148.1703,13.16126,78.55721,-9.204132,13.16126,0,0,1,0,0,0,0,0,3.315092,0.04154791,9.804618,13.16126,0,3455.134,-,-
-1538.5,4480.22832459211,9.99999961853027,9.99999961853027,0,2.043206,593.1891,224.2972,224.2972,1264.632,-148.1703,13.93303,78.55721,-9.204132,13.93303,0,0,1,0,0,0,0,0,3.314995,0.04154791,10.57649,13.93303,0,3585.464,-,-
-1539.5,4483.00610226393,9.99999961853027,9.99999961853027,0,2.043206,593.1891,224.2972,224.2972,1264.632,-148.1703,13.93303,78.55721,-9.204132,13.93303,0,0,1,0,0,0,0,0,3.314995,0.04154791,10.57649,13.93303,0,3585.464,-,-
-1540.5,4485.78387993574,9.99999961853027,9.99999961853027,0,2.043206,593.1891,224.2972,224.2972,1264.632,-148.1703,13.93303,78.55721,-9.204132,13.93303,0,0,1,0,0,0,0,0,3.314995,0.04154791,10.57649,13.93303,0,3585.464,-,-
-1541.5,4488.56165760756,9.99999961853027,9.99999961853027,0,2.11779,593.1891,230.5089,230.5089,1264.632,-148.1703,14.31889,78.55721,-9.204132,14.31889,0,0,1,0,0,0,0,0,3.314943,0.04154791,10.9624,14.31889,0,3650.624,-,-
-1542.5,4491.33943527937,9.99999961853027,9.99999961853027,0,2.192375,593.1891,236.7202,236.7202,1264.632,-148.1703,14.70473,78.55721,-9.204132,14.70473,0,0,1,0,0,0,0,0,3.31489,0.04154791,11.34829,14.70473,0,3716.341,-,-
-1543.5,4494.11721295118,9.99999961853027,9.99999961853027,0,2.192375,593.1891,236.7202,236.7202,1264.632,-148.1703,14.70473,78.55721,-9.204132,14.70473,0,0,1,0,0,0,0,0,3.31489,0.04154791,11.34829,14.70473,0,3716.341,-,-
-1544.5,4496.894990623,9.99999961853027,9.99999961853027,0,2.192375,593.1891,236.7202,236.7202,1264.632,-148.1703,14.70473,78.55721,-9.204132,14.70473,0,0,1,0,0,0,0,0,3.31489,0.04154791,11.34829,14.70473,0,3716.341,-,-
-1545.5,4499.67276829481,9.99999961853027,9.99999961853027,0,2.341543,593.1891,249.1418,249.1418,1264.632,-148.1703,15.47635,78.55721,-9.204132,15.47635,0,0,1,0,0,0,0,0,3.314778,0.04154791,12.12002,15.47635,0,3849.252,-,-
-1546.5,4502.45054596663,9.99999961853027,9.99999961853027,0,2.341543,593.1891,249.1418,249.1418,1264.632,-148.1703,15.47635,78.55721,-9.204132,15.47635,0,0,1,0,0,0,0,0,3.314778,0.04154791,12.12002,15.47635,0,3849.252,-,-
-1547.5,4505.22832363844,9.99999961853027,9.99999961853027,0,2.341543,593.1891,249.1418,249.1418,1264.632,-148.1703,15.47635,78.55721,-9.204132,15.47635,0,0,1,0,0,0,0,0,3.314778,0.04154791,12.12002,15.47635,0,3849.252,-,-
-1548.5,4508.00610131025,9.99999961853027,9.99999961853027,0,2.416128,593.1891,255.3521,255.3521,1264.632,-148.1703,15.86212,78.55721,-9.204132,15.86212,0,0,1,0,0,0,0,0,3.314719,0.04154791,12.50585,15.86212,0,3915.703,-,-
-1549.5,4510.78387898207,9.99999961853027,9.99999961853027,0,2.490712,593.1891,261.562,261.562,1264.632,-148.1703,16.24787,78.55721,-9.204132,16.24787,0,0,1,0,0,0,0,0,3.314659,0.04154791,12.89166,16.24787,0,3982.148,-,-
-1550.5,4513.56165665388,9.99999961853027,9.99999961853027,0,2.490712,593.1891,261.562,261.562,1264.632,-148.1703,16.24787,78.55721,-9.204132,16.24787,0,0,1,0,0,0,0,0,3.314659,0.04154791,12.89166,16.24787,0,3982.148,-,-
-1551.5,4516.3394343257,9.99999961853027,9.99999961853027,0,2.490712,593.1891,261.562,261.562,1264.632,-148.1703,16.24787,78.55721,-9.204132,16.24787,0,0,1,0,0,0,0,0,3.314659,0.04154791,12.89166,16.24787,0,3982.148,-,-
-1552.5,4519.11721199751,9.99999961853027,9.99999961853027,0,2.639881,593.1891,273.9808,273.9808,1264.632,-148.1703,17.01931,78.55721,-9.204132,17.01931,0,0,1,0,0,0,0,0,3.314532,0.04154791,13.66323,17.01931,0,4115.029,-,-
-1553.5,4521.89498966932,9.99999961853027,9.99999961853027,0,2.639881,593.1891,273.9808,273.9808,1264.632,-148.1703,17.01931,78.55721,-9.204132,17.01931,0,0,1,0,0,0,0,0,3.314532,0.04154791,13.66323,17.01931,0,4115.029,-,-
-1554.5,4524.67276734114,9.99999961853027,9.99999961853027,0,2.639881,593.1891,273.9808,273.9808,1264.632,-148.1703,17.01931,78.55721,-9.204132,17.01931,0,0,1,0,0,0,0,0,3.314532,0.04154791,13.66323,17.01931,0,4115.029,-,-
-1555.5,4527.45054501295,9.99999961853027,9.99999961853027,0,2.639881,593.1891,273.9808,273.9808,1264.632,-148.1703,17.01931,78.55721,-9.204132,17.01931,0,0,1,0,0,0,0,0,3.314532,0.04154791,13.66323,17.01931,0,4115.029,-,-
-1556.5,4530.22832268476,9.99999961853027,9.99999961853027,0,2.78905,593.1891,286.3979,286.3979,1264.632,-148.1703,17.79064,78.55721,-9.204132,17.79064,0,0,1,0,0,0,0,0,3.314398,0.04154791,14.43469,17.79064,0,4247.892,-,-
-1557.5,4533.00610035658,9.99999961853027,9.99999961853027,0,2.78905,593.1891,286.3979,286.3979,1264.632,-148.1703,17.79064,78.55721,-9.204132,17.79064,0,0,1,0,0,0,0,0,3.314398,0.04154791,14.43469,17.79064,0,4247.892,-,-
-1558.5,4535.78387802839,9.99999961853027,9.99999961853027,0,2.78905,593.1891,286.3979,286.3979,1264.632,-148.1703,17.79064,78.55721,-9.204132,17.79064,0,0,1,0,0,0,0,0,3.314398,0.04154791,14.43469,17.79064,0,4247.892,-,-
-1559.5,4538.56165570021,9.99999961853027,9.99999961853027,0,2.863635,593.1891,292.6058,292.6058,1264.632,-148.1703,18.17627,78.55721,-9.204132,18.17627,0,0,1,0,0,0,0,0,3.314328,0.04154791,14.82039,18.17627,0,4314.317,-,-
-1560.5,4541.33943337202,9.99999961853027,9.99999961853027,0,2.938219,593.1891,298.8133,298.8133,1264.632,-148.1703,18.56187,78.55721,-9.204132,18.56187,0,0,1,0,0,0,0,0,3.314256,0.04154791,15.20607,18.56187,0,4380.737,-,-
-1561.5,4544.11721104383,9.99999961853027,9.99999961853027,0,2.938219,593.1891,298.8133,298.8133,1264.632,-148.1703,18.56187,78.55721,-9.204132,18.56187,0,0,1,0,0,0,0,0,3.314256,0.04154791,15.20607,18.56187,0,4380.737,-,-
-1562.5,4546.89498871565,9.99999961853027,9.99999961853027,0,2.938219,593.1891,298.8133,298.8133,1264.632,-148.1703,18.56187,78.55721,-9.204132,18.56187,0,0,1,0,0,0,0,0,3.314256,0.04154791,15.20607,18.56187,0,4380.737,-,-
-1563.5,4549.67276638746,9.99999961853027,9.99999961853027,0,3.087388,593.1891,311.227,311.227,1264.632,-148.1703,19.33299,78.55721,-9.204132,19.33299,0,0,1,0,0,0,0,0,3.314108,0.04154791,15.97734,19.33299,0,4513.564,-,-
-1564.5,4552.45054405928,9.99999961853027,9.99999961853027,0,3.087388,593.1891,311.227,311.227,1264.632,-148.1703,19.33299,78.55721,-9.204132,19.33299,0,0,1,0,0,0,0,0,3.314108,0.04154791,15.97734,19.33299,0,4513.564,-,-
-1565.5,4555.22832173109,9.99999961853027,9.99999961853027,0,3.087388,593.1891,311.227,311.227,1264.632,-148.1703,19.33299,78.55721,-9.204132,19.33299,0,0,1,0,0,0,0,0,3.314108,0.04154791,15.97734,19.33299,0,4513.564,-,-
-1566.5,4558.0060994029,9.99999961853027,9.99999961853027,0,3.161972,593.1891,317.4332,317.4332,1264.632,-148.1703,19.71851,78.55721,-9.204132,19.71851,0,0,1,0,0,0,0,0,3.31403,0.04154791,16.36293,19.71851,0,4579.97,-,-
-1567.5,4560.78387707472,9.99999961853027,9.99999961853027,0,3.236557,593.1891,323.6389,323.6389,1264.632,-148.1703,20.104,78.55721,-9.204132,20.104,0,0,1,0,0,0,0,0,3.313951,0.04154791,16.7485,20.104,0,4646.371,-,-
-1568.5,4563.56165474653,9.99999961853027,9.99999961853027,0,3.236557,593.1891,323.6389,323.6389,1264.632,-148.1703,20.104,78.55721,-9.204132,20.104,0,0,1,0,0,0,0,0,3.313951,0.04154791,16.7485,20.104,0,4646.371,-,-
-1569.5,4566.33943241835,9.99999961853027,9.99999961853027,0,3.236557,593.1891,323.6389,323.6389,1264.632,-148.1703,20.104,78.55721,-9.204132,20.104,0,0,1,0,0,0,0,0,3.313951,0.04154791,16.7485,20.104,0,4646.371,-,-
-1570.5,4569.11721009016,9.99999961853027,9.99999961853027,0,3.385725,593.1891,336.0489,336.0489,1264.632,-148.1703,20.87489,78.55721,-9.204132,20.87489,0,0,1,0,0,0,0,0,3.313788,0.04154791,17.51955,20.87489,0,4779.157,-,-
-1571.5,4571.89498776197,9.99999961853027,9.99999961853027,0,3.385725,593.1891,336.0489,336.0489,1264.632,-148.1703,20.87489,78.55721,-9.204132,20.87489,0,0,1,0,0,0,0,0,3.313788,0.04154791,17.51955,20.87489,0,4779.157,-,-
-1572.5,4574.67276543379,9.99999961853027,9.99999961853027,0,3.385725,593.1891,336.0489,336.0489,1264.632,-148.1703,20.87489,78.55721,-9.204132,20.87489,0,0,1,0,0,0,0,0,3.313788,0.04154791,17.51955,20.87489,0,4779.157,-,-
-1573.5,4577.4505431056,9.99999961853027,9.99999961853027,0,3.385725,593.1891,336.0489,336.0489,1264.632,-148.1703,20.87489,78.55721,-9.204132,20.87489,0,0,1,0,0,0,0,0,3.313788,0.04154791,17.51955,20.87489,0,4779.157,-,-
-1574.5,4580.22832077742,9.99999961853027,9.99999961853027,0,3.534894,593.1891,348.4568,348.4568,1264.632,-148.1703,21.64566,78.55721,-9.204132,21.64566,0,0,1,0,0,0,0,0,3.313617,0.04154791,18.29049,21.64566,0,4911.923,-,-
-1575.5,4583.00609844923,9.99999961853027,9.99999961853027,0,3.534894,593.1891,348.4568,348.4568,1264.632,-148.1703,21.64566,78.55721,-9.204132,21.64566,0,0,1,0,0,0,0,0,3.313617,0.04154791,18.29049,21.64566,0,4911.923,-,-
-1576.5,4585.78387612104,9.99999961853027,9.99999961853027,0,3.534894,593.1891,348.4568,348.4568,1264.632,-148.1703,21.64566,78.55721,-9.204132,21.64566,0,0,1,0,0,0,0,0,3.313617,0.04154791,18.29049,21.64566,0,4911.923,-,-
-1577.5,4588.56165379286,9.99999961853027,9.99999961853027,0,3.609479,593.1891,354.6601,354.6601,1264.632,-148.1703,22.03099,78.55721,-9.204132,22.03099,0,0,1,0,0,0,0,0,3.313529,0.04154791,18.67591,22.03099,0,4978.297,-,-
-1578.5,4591.33943146467,9.99999961853027,9.99999961853027,0,3.684063,593.1891,360.8627,360.8627,1264.632,-148.1703,22.41629,78.55721,-9.204132,22.41629,0,0,1,0,0,0,0,0,3.313439,0.04154791,19.06131,22.41629,0,5044.666,-,-
-1579.5,4594.11720913649,9.99999961853027,9.99999961853027,0,3.684063,593.1891,360.8627,360.8627,1264.632,-148.1703,22.41629,78.55721,-9.204132,22.41629,0,0,1,0,0,0,0,0,3.313439,0.04154791,19.06131,22.41629,0,5044.666,-,-
-1580.5,4596.8949868083,9.99999961853027,9.99999961853027,0,3.684063,593.1891,360.8627,360.8627,1264.632,-148.1703,22.41629,78.55721,-9.204132,22.41629,0,0,1,0,0,0,0,0,3.313439,0.04154791,19.06131,22.41629,0,5044.666,-,-
-1581.5,4599.67276448011,9.99999961853027,9.99999961853027,0,3.822083,593.1891,372.3394,372.3394,1264.632,-148.1703,23.12921,78.55721,-9.204132,23.12921,0,0,1,0,0,0,0,0,3.313267,0.04154791,19.77439,23.12921,0,5167.467,-,-
-1582.5,4602.45054215193,9.99999961853027,9.99999961853027,0,3.822083,593.1891,372.3394,372.3394,1264.632,-148.1703,23.12921,78.55721,-9.204132,23.12921,0,0,1,0,0,0,0,0,3.313267,0.04154791,19.77439,23.12921,0,5167.467,-,-
-1583.5,4605.22831982374,9.99999961853027,9.99999961853027,0,3.822083,593.1891,372.3394,372.3394,1264.632,-148.1703,23.12921,78.55721,-9.204132,23.12921,0,0,1,0,0,0,0,0,3.313267,0.04154791,19.77439,23.12921,0,5167.467,-,-
-1584.5,4608.00609749556,9.99999961853027,9.99999961853027,0,3.887377,593.1891,377.7682,377.7682,1264.632,-148.1703,23.46644,78.55721,-9.204132,23.46644,0,0,1,0,0,0,0,0,3.313184,0.04154791,20.1117,23.46644,0,5225.554,-,-
-1585.5,4610.78387516737,9.99999961853027,9.99999961853027,0,3.952671,593.1891,383.1964,383.1964,1264.632,-148.1703,23.80363,78.55721,-9.204132,23.80363,0,0,1,0,0,0,0,0,3.3131,0.04154791,20.44898,23.80363,0,5283.636,-,-
-1586.5,4613.56165283918,9.99999961853027,9.99999961853027,0,3.952671,593.1891,383.1964,383.1964,1264.632,-148.1703,23.80363,78.55721,-9.204132,23.80363,0,0,1,0,0,0,0,0,3.3131,0.04154791,20.44898,23.80363,0,5283.636,-,-
-1587.5,4616.339430511,9.99999961853027,9.99999961853027,0,3.952671,593.1891,383.1964,383.1964,1264.632,-148.1703,23.80363,78.55721,-9.204132,23.80363,0,0,1,0,0,0,0,0,3.3131,0.04154791,20.44898,23.80363,0,5283.636,-,-
-1588.5,4619.11720818281,9.99999961853027,9.99999961853027,0,4.083258,593.1891,394.0515,394.0515,1264.632,-148.1703,24.47794,78.55721,-9.204132,24.47794,0,0,1,0,0,0,0,0,3.312926,0.04154791,21.12346,24.47794,0,5399.786,-,-
-1589.5,4621.89498585463,9.99999961853027,9.99999961853027,0,4.083258,593.1891,394.0515,394.0515,1264.632,-148.1703,24.47794,78.55721,-9.204132,24.47794,0,0,1,0,0,0,0,0,3.312926,0.04154791,21.12346,24.47794,0,5399.786,-,-
-1590.5,4624.67276352644,9.99999961853027,9.99999961853027,0,4.083258,593.1891,394.0515,394.0515,1264.632,-148.1703,24.47794,78.55721,-9.204132,24.47794,0,0,1,0,0,0,0,0,3.312926,0.04154791,21.12346,24.47794,0,5399.786,-,-
-1591.5,4627.45054119825,9.99999961853027,9.99999961853027,0,4.083258,593.1891,394.0515,394.0515,1264.632,-148.1703,24.47794,78.55721,-9.204132,24.47794,0,0,1,0,0,0,0,0,3.312926,0.04154791,21.12346,24.47794,0,5399.786,-,-
-1592.5,4630.22831887007,9.99999961853027,9.99999961853027,0,4.213845,593.1891,404.9049,404.9049,1264.632,-148.1703,25.15213,78.55721,-9.204132,25.15213,0,0,1,0,0,0,0,0,3.312747,0.04154791,21.79784,25.15213,0,5520.332,-,-
-1593.5,4633.00609654188,9.99999961853027,9.99999961853027,0,4.213845,593.1891,404.9049,404.9049,1264.632,-148.1703,25.15213,78.55721,-9.204132,25.15213,0,0,1,0,0,0,0,0,3.312747,0.04154791,21.79784,25.15213,0,5520.332,-,-
-1594.5,4635.7838742137,9.99999961853027,9.99999961853027,0,4.213845,593.1891,404.9049,404.9049,1264.632,-148.1703,25.15213,78.55721,-9.204132,25.15213,0,0,1,0,0,0,0,0,3.312747,0.04154791,21.79784,25.15213,0,5520.332,-,-
-1595.5,4638.56165188551,9.99999961853027,9.99999961853027,0,4.279139,593.1891,410.3309,410.3309,1264.632,-148.1703,25.48919,78.55721,-9.204132,25.48919,0,0,1,0,0,0,0,0,3.312655,0.04154791,22.13498,25.48919,0,5583.273,-,-
-1596.5,4641.33942955732,9.99999961853027,9.99999961853027,0,4.344433,593.1891,415.7564,415.7564,1264.632,-148.1703,25.82621,78.55721,-9.204132,25.82621,0,0,1,0,0,0,0,0,3.312562,0.04154791,22.4721,25.82621,0,5646.209,-,-
-1597.5,4644.11720722914,9.99999961853027,9.99999961853027,0,4.344433,593.1891,415.7564,415.7564,1264.632,-148.1703,25.82621,78.55721,-9.204132,25.82621,0,0,1,0,0,0,0,0,3.312562,0.04154791,22.4721,25.82621,0,5646.209,-,-
-1598.5,4646.89498490095,9.99999961853027,9.99999961853027,0,4.344433,593.1891,415.7564,415.7564,1264.632,-148.1703,25.82621,78.55721,-9.204132,25.82621,0,0,1,0,0,0,0,0,3.312562,0.04154791,22.4721,25.82621,0,5646.209,-,-
-1599.5,4649.67276257277,9.99999961853027,9.99999961853027,0,4.47502,593.1891,426.606,426.606,1264.632,-148.1703,26.50017,78.55721,-9.204132,26.50017,0,0,1,0,0,0,0,0,3.312372,0.04154791,23.14625,26.50017,0,5772.064,-,-
-1600.5,4652.45054024458,9.99999961853027,9.99999961853027,0,4.47502,593.1891,426.606,426.606,1264.632,-148.1703,26.50017,78.55721,-9.204132,26.50017,0,0,1,0,0,0,0,0,3.312372,0.04154791,23.14625,26.50017,0,5772.064,-,-
-1601.5,4655.22831791639,9.99999961853027,9.99999961853027,0,4.47502,593.1891,426.606,426.606,1264.632,-148.1703,26.50017,78.55721,-9.204132,26.50017,0,0,1,0,0,0,0,0,3.312372,0.04154791,23.14625,26.50017,0,5772.064,-,-
-1602.5,4658.00609558821,9.99999961853027,9.99999961853027,0,4.47502,593.1891,426.606,426.606,1264.632,-148.1703,26.50017,78.55721,-9.204132,26.50017,0,0,1,0,0,0,0,0,3.312372,0.04154791,23.14625,26.50017,0,5772.064,-,-
-1603.5,4660.78387326002,9.99999961853027,9.99999961853027,0,4.47502,593.1891,426.606,426.606,1264.632,-148.1703,26.50017,78.55721,-9.204132,26.50017,0,0,1,0,0,0,0,0,3.312372,0.04154791,23.14625,26.50017,0,5772.064,-,-
-1604.5,4663.56165093184,9.99999961853027,9.99999961853027,0,4.47502,593.1891,426.606,426.606,1264.632,-148.1703,26.50017,78.55721,-9.204132,26.50017,0,0,1,0,0,0,0,0,3.312372,0.04154791,23.14625,26.50017,0,5772.064,-,-
-1605.5,4666.33942860365,9.99999961853027,9.99999961853027,0,4.47502,593.1891,426.606,426.606,1264.632,-148.1703,26.50017,78.55721,-9.204132,26.50017,0,0,1,0,0,0,0,0,3.312372,0.04154791,23.14625,26.50017,0,5772.064,-,-
-1606.5,4669.11720627546,9.99999961853027,9.99999961853027,0,4.47502,593.1891,426.606,426.606,1264.632,-148.1703,26.50017,78.55721,-9.204132,26.50017,0,0,1,0,0,0,0,0,3.312372,0.04154791,23.14625,26.50017,0,5772.064,-,-
-1607.5,4671.89498394728,9.99999961853027,9.99999961853027,0,4.47502,593.1891,426.606,426.606,1264.632,-148.1703,26.50017,78.55721,-9.204132,26.50017,0,0,1,0,0,0,0,0,3.312372,0.04154791,23.14625,26.50017,0,5772.064,-,-
-1608.5,4674.67276161909,9.99999961853027,9.99999961853027,0,4.47502,593.1891,426.606,426.606,1264.632,-148.1703,26.50017,78.55721,-9.204132,26.50017,0,0,1,0,0,0,0,0,3.312372,0.04154791,23.14625,26.50017,0,5772.064,-,-
-1609.5,4677.45053929091,9.99999961853027,9.99999961853027,0,4.47502,593.1891,426.606,426.606,1264.632,-148.1703,26.50017,78.55721,-9.204132,26.50017,0,0,1,0,0,0,0,0,3.312372,0.04154791,23.14625,26.50017,0,5772.064,-,-
-1610.5,4680.22831696272,9.99999961853027,9.99999961853027,0,4.47502,593.1891,426.606,426.606,1264.632,-148.1703,26.50017,78.55721,-9.204132,26.50017,0,0,1,0,0,0,0,0,3.312372,0.04154791,23.14625,26.50017,0,5772.064,-,-
-1611.5,4683.00609463453,9.99999961853027,9.99999961853027,0,4.47502,593.1891,426.606,426.606,1264.632,-148.1703,26.50017,78.55721,-9.204132,26.50017,0,0,1,0,0,0,0,0,3.312372,0.04154791,23.14625,26.50017,0,5772.064,-,-
-1612.5,4685.78387230635,9.99999961853027,9.99999961853027,0,4.47502,593.1891,426.606,426.606,1264.632,-148.1703,26.50017,78.55721,-9.204132,26.50017,0,0,1,0,0,0,0,0,3.312372,0.04154791,23.14625,26.50017,0,5772.064,-,-
-1613.5,4688.56164997816,9.99999961853027,9.99999961853027,0,4.47502,593.1891,426.606,426.606,1264.632,-148.1703,26.50017,78.55721,-9.204132,26.50017,0,0,1,0,0,0,0,0,3.312372,0.04154791,23.14625,26.50017,0,5772.064,-,-
-1614.5,4691.33942764997,9.99999961853027,9.99999961853027,0,4.47502,593.1891,426.606,426.606,1264.632,-148.1703,26.50017,78.55721,-9.204132,26.50017,0,0,1,0,0,0,0,0,3.312372,0.04154791,23.14625,26.50017,0,5772.064,-,-
-1615.5,4694.11720532179,9.99999961853027,9.99999961853027,0,4.47502,593.1891,426.606,426.606,1264.632,-148.1703,26.50017,78.55721,-9.204132,26.50017,0,0,1,0,0,0,0,0,3.312372,0.04154791,23.14625,26.50017,0,5772.064,-,-
-1616.5,4696.8949829936,9.99999961853027,9.99999961853027,0,4.47502,593.1891,426.606,426.606,1264.632,-148.1703,26.50017,78.55721,-9.204132,26.50017,0,0,1,0,0,0,0,0,3.312372,0.04154791,23.14625,26.50017,0,5772.064,-,-
-1617.5,4699.67276066542,9.99999961853027,9.99999961853027,0,4.47502,593.1891,426.606,426.606,1264.632,-148.1703,26.50017,78.55721,-9.204132,26.50017,0,0,1,0,0,0,0,0,3.312372,0.04154791,23.14625,26.50017,0,5772.064,-,-
-1618.5,4702.45053833723,9.99999961853027,9.99999961853027,0,4.47502,593.1891,426.606,426.606,1264.632,-148.1703,26.50017,78.55721,-9.204132,26.50017,0,0,1,0,0,0,0,0,3.312372,0.04154791,23.14625,26.50017,0,5772.064,-,-
-1619.5,4705.22831600904,9.99999961853027,9.99999961853027,0,4.47502,593.1891,426.606,426.606,1264.632,-148.1703,26.50017,78.55721,-9.204132,26.50017,0,0,1,0,0,0,0,0,3.312372,0.04154791,23.14625,26.50017,0,5772.064,-,-
-1620.5,4708.00609368086,9.99999961853027,9.99999961853027,0,4.47502,593.1891,426.606,426.606,1264.632,-148.1703,26.50017,78.55721,-9.204132,26.50017,0,0,1,0,0,0,0,0,3.312372,0.04154791,23.14625,26.50017,0,5772.064,-,-
-1621.5,4710.78387135267,9.99999961853027,9.99999961853027,0,4.47502,593.1891,426.606,426.606,1264.632,-148.1703,26.50017,78.55721,-9.204132,26.50017,0,0,1,0,0,0,0,0,3.312372,0.04154791,23.14625,26.50017,0,5772.064,-,-
-1622.5,4713.56164902449,9.99999961853027,9.99999961853027,0,4.47502,593.1891,426.606,426.606,1264.632,-148.1703,26.50017,78.55721,-9.204132,26.50017,0,0,1,0,0,0,0,0,3.312372,0.04154791,23.14625,26.50017,0,5772.064,-,-
-1623.5,4716.3394266963,9.99999961853027,9.99999961853027,0,4.47502,593.1891,426.606,426.606,1264.632,-148.1703,26.50017,78.55721,-9.204132,26.50017,0,0,1,0,0,0,0,0,3.312372,0.04154791,23.14625,26.50017,0,5772.064,-,-
-1624.5,4719.11720436811,9.99999961853027,9.99999961853027,0,4.374867,593.1891,418.2851,418.2851,1264.632,-148.1703,25.98329,78.55721,-9.204132,25.98329,0,0,1,0,0,0,0,0,3.312518,0.04154791,22.62923,25.98329,0,5675.542,-,-
-1625.5,4721.89498203993,9.99999961853027,9.99999961853027,0,4.374867,593.1891,418.2851,418.2851,1264.632,-148.1703,25.98329,78.55721,-9.204132,25.98329,0,0,1,0,0,0,0,0,3.312518,0.04154791,22.62923,25.98329,0,5675.542,-,-
-1626.5,4724.67275971174,9.99999961853027,9.99999961853027,0,4.374867,593.1891,418.2851,418.2851,1264.632,-148.1703,25.98329,78.55721,-9.204132,25.98329,0,0,1,0,0,0,0,0,3.312518,0.04154791,22.62923,25.98329,0,5675.542,-,-
-1627.5,4727.45053738356,9.99999961853027,9.99999961853027,0,4.374867,593.1891,418.2851,418.2851,1264.632,-148.1703,25.98329,78.55721,-9.204132,25.98329,0,0,1,0,0,0,0,0,3.312518,0.04154791,22.62923,25.98329,0,5675.542,-,-
-1628.5,4730.22831505537,9.99999961853027,9.99999961853027,0,4.374867,593.1891,418.2851,418.2851,1264.632,-148.1703,25.98329,78.55721,-9.204132,25.98329,0,0,1,0,0,0,0,0,3.312518,0.04154791,22.62923,25.98329,0,5675.542,-,-
-1629.5,4733.00609272718,9.99999961853027,9.99999961853027,0,4.374867,593.1891,418.2851,418.2851,1264.632,-148.1703,25.98329,78.55721,-9.204132,25.98329,0,0,1,0,0,0,0,0,3.312518,0.04154791,22.62923,25.98329,0,5675.542,-,-
-1630.5,4735.783870399,9.99999961853027,9.99999961853027,0,4.374867,593.1891,418.2851,418.2851,1264.632,-148.1703,25.98329,78.55721,-9.204132,25.98329,0,0,1,0,0,0,0,0,3.312518,0.04154791,22.62923,25.98329,0,5675.542,-,-
-1631.5,4738.56164807081,9.99999961853027,9.99999961853027,0,4.374867,593.1891,418.2851,418.2851,1264.632,-148.1703,25.98329,78.55721,-9.204132,25.98329,0,0,1,0,0,0,0,0,3.312518,0.04154791,22.62923,25.98329,0,5675.542,-,-
-1632.5,4741.33942574263,9.99999961853027,9.99999961853027,0,4.374867,593.1891,418.2851,418.2851,1264.632,-148.1703,25.98329,78.55721,-9.204132,25.98329,0,0,1,0,0,0,0,0,3.312518,0.04154791,22.62923,25.98329,0,5675.542,-,-
-1633.5,4744.11720341444,9.99999961853027,9.99999961853027,0,4.374867,593.1891,418.2851,418.2851,1264.632,-148.1703,25.98329,78.55721,-9.204132,25.98329,0,0,1,0,0,0,0,0,3.312518,0.04154791,22.62923,25.98329,0,5675.542,-,-
-1634.5,4746.89498108625,9.99999961853027,9.99999961853027,0,4.374867,593.1891,418.2851,418.2851,1264.632,-148.1703,25.98329,78.55721,-9.204132,25.98329,0,0,1,0,0,0,0,0,3.312518,0.04154791,22.62923,25.98329,0,5675.542,-,-
-1635.5,4749.67275875807,9.99999961853027,9.99999961853027,0,4.374867,593.1891,418.2851,418.2851,1264.632,-148.1703,25.98329,78.55721,-9.204132,25.98329,0,0,1,0,0,0,0,0,3.312518,0.04154791,22.62923,25.98329,0,5675.542,-,-
-1636.5,4752.45053642988,9.99999961853027,9.99999961853027,0,4.374867,593.1891,418.2851,418.2851,1264.632,-148.1703,25.98329,78.55721,-9.204132,25.98329,0,0,1,0,0,0,0,0,3.312518,0.04154791,22.62923,25.98329,0,5675.542,-,-
-1637.5,4755.2283141017,9.99999961853027,9.99999961853027,0,4.374867,593.1891,418.2851,418.2851,1264.632,-148.1703,25.98329,78.55721,-9.204132,25.98329,0,0,1,0,0,0,0,0,3.312518,0.04154791,22.62923,25.98329,0,5675.542,-,-
-1638.5,4758.00609177351,9.99999961853027,9.99999961853027,0,4.374867,593.1891,418.2851,418.2851,1264.632,-148.1703,25.98329,78.55721,-9.204132,25.98329,0,0,1,0,0,0,0,0,3.312518,0.04154791,22.62923,25.98329,0,5675.542,-,-
-1639.5,4760.78386944532,9.99999961853027,9.99999961853027,0,4.374867,593.1891,418.2851,418.2851,1264.632,-148.1703,25.98329,78.55721,-9.204132,25.98329,0,0,1,0,0,0,0,0,3.312518,0.04154791,22.62923,25.98329,0,5675.542,-,-
-1640.5,4763.56164711714,9.99999961853027,9.99999961853027,0,4.374867,593.1891,418.2851,418.2851,1264.632,-148.1703,25.98329,78.55721,-9.204132,25.98329,0,0,1,0,0,0,0,0,3.312518,0.04154791,22.62923,25.98329,0,5675.542,-,-
-1641.5,4766.33942478895,9.99999961853027,9.99999961853027,0,4.374867,593.1891,418.2851,418.2851,1264.632,-148.1703,25.98329,78.55721,-9.204132,25.98329,0,0,1,0,0,0,0,0,3.312518,0.04154791,22.62923,25.98329,0,5675.542,-,-
-1642.5,4769.11720246077,9.99999961853027,9.99999961853027,0,4.374867,593.1891,418.2851,418.2851,1264.632,-148.1703,25.98329,78.55721,-9.204132,25.98329,0,0,1,0,0,0,0,0,3.312518,0.04154791,22.62923,25.98329,0,5675.542,-,-
-1643.5,4771.89498013258,9.99999961853027,9.99999961853027,0,4.374867,593.1891,418.2851,418.2851,1264.632,-148.1703,25.98329,78.55721,-9.204132,25.98329,0,0,1,0,0,0,0,0,3.312518,0.04154791,22.62923,25.98329,0,5675.542,-,-
-1644.5,4774.67275780439,9.99999961853027,9.99999961853027,0,4.374867,593.1891,418.2851,418.2851,1264.632,-148.1703,25.98329,78.55721,-9.204132,25.98329,0,0,1,0,0,0,0,0,3.312518,0.04154791,22.62923,25.98329,0,5675.542,-,-
-1645.5,4777.45053547621,9.99999961853027,9.99999961853027,0,4.374867,593.1891,418.2851,418.2851,1264.632,-148.1703,25.98329,78.55721,-9.204132,25.98329,0,0,1,0,0,0,0,0,3.312518,0.04154791,22.62923,25.98329,0,5675.542,-,-
-1646.5,4780.22831314802,9.99999961853027,9.99999961853027,0,4.26369,593.1891,409.0471,409.0471,1264.632,-148.1703,25.40944,78.55721,-9.204132,25.40944,0,0,1,0,0,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5568.381,-,-
-1647.5,4783.00609081984,9.99999961853027,9.99999961853027,0,4.26369,593.1891,409.0471,409.0471,1264.632,-148.1703,25.40944,78.55721,-9.204132,25.40944,0,0,1,0,0,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5568.381,-,-
-1648.5,4785.78386849165,9.99999961853027,9.99999961853027,0,4.26369,593.1891,409.0471,409.0471,1264.632,-148.1703,25.40944,78.55721,-9.204132,25.40944,0,0,1,0,0,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5568.381,-,-
-1649.5,4788.56164616346,9.99999961853027,9.99999961853027,0,4.26369,593.1891,409.0471,409.0471,1264.632,-148.1703,25.40944,78.55721,-9.204132,25.40944,0,0,1,0,0,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5568.381,-,-
-1650.5,4791.33942383528,9.99999961853027,9.99999961853027,0,4.26369,593.1891,409.0471,409.0471,1264.632,-148.1703,25.40944,78.55721,-9.204132,25.40944,0,0,1,0,0,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5568.381,-,-
-1651.5,4794.11720150709,9.99999961853027,9.99999961853027,0,4.26369,593.1891,409.0471,409.0471,1264.632,-148.1703,25.40944,78.55721,-9.204132,25.40944,0,0,1,0,0,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5568.381,-,-
-1652.5,4796.89497917891,9.99999961853027,9.99999961853027,0,4.26369,593.1891,409.0471,409.0471,1264.632,-148.1703,25.40944,78.55721,-9.204132,25.40944,0,0,1,0,0,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5568.381,-,-
-1653.5,4799.67275685072,9.99999961853027,9.99999961853027,0,4.26369,593.1891,409.0471,409.0471,1264.632,-148.1703,25.40944,78.55721,-9.204132,25.40944,0,0,1,0,0,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5568.381,-,-
-1654.5,4802.45053452253,9.99999961853027,9.99999961853027,0,4.26369,593.1891,409.0471,409.0471,1264.632,-148.1703,25.40944,78.55721,-9.204132,25.40944,0,0,1,0,0,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5568.381,-,-
-1655.5,4805.22831219435,9.99999961853027,9.99999961853027,0,4.26369,593.1891,409.0471,409.0471,1264.632,-148.1703,25.40944,78.55721,-9.204132,25.40944,0,0,1,0,0,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5568.381,-,-
-1656.5,4808.00608986616,9.99999961853027,9.99999961853027,0,4.26369,593.1891,409.0471,409.0471,1264.632,-148.1703,25.40944,78.55721,-9.204132,25.40944,0,0,1,0,0,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5568.381,-,-
-1657.5,4810.78386753798,9.99999961853027,9.99999961853027,0,4.26369,593.1891,409.0471,409.0471,1264.632,-148.1703,25.40944,78.55721,-9.204132,25.40944,0,0,1,0,0,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5568.381,-,-
-1658.5,4813.56164520979,9.99999961853027,9.99999961853027,0,4.26369,593.1891,409.0471,409.0471,1264.632,-148.1703,25.40944,78.55721,-9.204132,25.40944,0,0,1,0,0,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5568.381,-,-
-1659.5,4816.3394228816,9.99999961853027,9.99999961853027,0,4.26369,593.1891,409.0471,409.0471,1264.632,-148.1703,25.40944,78.55721,-9.204132,25.40944,0,0,1,0,0,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5568.381,-,-
-1660.5,4819.11720055342,9.99999961853027,9.99999961853027,0,4.26369,593.1891,409.0471,409.0471,1264.632,-148.1703,25.40944,78.55721,-9.204132,25.40944,0,0,1,0,0,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5568.381,-,-
-1661.5,4821.89497822523,9.99999961853027,9.99999961853027,0,4.26369,593.1891,409.0471,409.0471,1264.632,-148.1703,25.40944,78.55721,-9.204132,25.40944,0,0,1,0,0,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5568.381,-,-
-1662.5,4824.67275589705,9.99999961853027,9.99999961853027,0,4.26369,593.1891,409.0471,409.0471,1264.632,-148.1703,25.40944,78.55721,-9.204132,25.40944,0,0,1,0,0,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5568.381,-,-
-1663.5,4827.45053356886,9.99999961853027,9.99999961853027,0,4.26369,593.1891,409.0471,409.0471,1264.632,-148.1703,25.40944,78.55721,-9.204132,25.40944,0,0,1,0,0,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5568.381,-,-
-1664.5,4830.22831124067,9.99999961853027,9.99999961853027,0,4.26369,593.1891,409.0471,409.0471,1264.632,-148.1703,25.40944,78.55721,-9.204132,25.40944,0,0,1,0,0,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5568.381,-,-
-1665.5,4833.00608891249,9.99999961853027,9.99999961853027,0,4.26369,593.1891,409.0471,409.0471,1264.632,-148.1703,25.40944,78.55721,-9.204132,25.40944,0,0,1,0,0,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5568.381,-,-
-1666.5,4835.7838665843,9.99999961853027,9.99999961853027,0,4.26369,593.1891,409.0471,409.0471,1264.632,-148.1703,25.40944,78.55721,-9.204132,25.40944,0,0,1,0,0,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5568.381,-,-
-1667.5,4838.56164425612,9.99999961853027,9.99999961853027,0,4.26369,593.1891,409.0471,409.0471,1264.632,-148.1703,25.40944,78.55721,-9.204132,25.40944,0,0,1,0,0,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5568.381,-,-
-1668.5,4841.33942192793,9.99999961853027,9.99999961853027,0,4.26369,593.1891,409.0471,409.0471,1264.632,-148.1703,25.40944,78.55721,-9.204132,25.40944,0,0,1,0,0,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5568.381,-,-
-1669.5,4844.11719959974,9.99999961853027,9.99999961853027,0,4.26369,593.1891,409.0471,409.0471,1264.632,-148.1703,25.40944,78.55721,-9.204132,25.40944,0,0,1,0,0,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5568.381,-,-
-1670.5,4846.89497727156,9.99999961853027,9.99999961853027,0,4.26369,593.1891,409.0471,409.0471,1264.632,-148.1703,25.40944,78.55721,-9.204132,25.40944,0,0,1,0,0,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5568.381,-,-
-1671.5,4849.67275494337,9.99999961853027,9.99999961853027,0,4.26369,593.1891,409.0471,409.0471,1264.632,-148.1703,25.40944,78.55721,-9.204132,25.40944,0,0,1,0,0,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5568.381,-,-
-1672.5,4852.45053261518,9.99999961853027,9.99999961853027,0,4.26369,593.1891,409.0471,409.0471,1264.632,-148.1703,25.40944,78.55721,-9.204132,25.40944,0,0,1,0,0,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5568.381,-,-
-1673.5,4855.228310287,9.99999961853027,9.99999961853027,0,4.26369,593.1891,409.0471,409.0471,1264.632,-148.1703,25.40944,78.55721,-9.204132,25.40944,0,0,1,0,0,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5568.381,-,-
-1674.5,4858.00608795881,9.99999961853027,9.99999961853027,0,4.26369,593.1891,409.0471,409.0471,1264.632,-148.1703,25.40944,78.55721,-9.204132,25.40944,0,0,1,0,0,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5568.381,-,-
-1675.5,4860.78386563063,9.99999961853027,9.99999961853027,0,4.26369,593.1891,409.0471,409.0471,1264.632,-148.1703,25.40944,78.55721,-9.204132,25.40944,0,0,1,0,0,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5568.381,-,-
-1676.5,4863.56164330244,9.99999961853027,9.99999961853027,0,4.26369,593.1891,409.0471,409.0471,1264.632,-148.1703,25.40944,78.55721,-9.204132,25.40944,0,0,1,0,0,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5568.381,-,-
-1677.5,4866.33942097425,9.99999961853027,9.99999961853027,0,4.26369,593.1891,409.0471,409.0471,1264.632,-148.1703,25.40944,78.55721,-9.204132,25.40944,0,0,1,0,0,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5568.381,-,-
-1678.5,4869.11719864607,9.99999961853027,9.99999961853027,0,4.26369,593.1891,409.0471,409.0471,1264.632,-148.1703,25.40944,78.55721,-9.204132,25.40944,0,0,1,0,0,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5568.381,-,-
-1679.5,4871.89497631788,9.99999961853027,9.99999961853027,0,4.26369,593.1891,409.0471,409.0471,1264.632,-148.1703,25.40944,78.55721,-9.204132,25.40944,0,0,1,0,0,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5568.381,-,-
-1680.5,4874.6727539897,9.99999961853027,9.99999961853027,0,4.26369,593.1891,409.0471,409.0471,1264.632,-148.1703,25.40944,78.55721,-9.204132,25.40944,0,0,1,0,0,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5568.381,-,-
-1681.5,4877.45053166151,9.99999961853027,9.99999961853027,0,4.26369,593.1891,409.0471,409.0471,1264.632,-148.1703,25.40944,78.55721,-9.204132,25.40944,0,0,1,0,0,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5568.381,-,-
-1682.5,4880.22830933332,9.99999961853027,9.99999961853027,0,4.26369,593.1891,409.0471,409.0471,1264.632,-148.1703,25.40944,78.55721,-9.204132,25.40944,0,0,1,0,0,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5568.381,-,-
-1683.5,4883.00608700514,9.99999961853027,9.99999961853027,0,4.26369,593.1891,409.0471,409.0471,1264.632,-148.1703,25.40944,78.55721,-9.204132,25.40944,0,0,1,0,0,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5568.381,-,-
-1684.5,4885.78386467695,9.99999961853027,9.99999961853027,0,4.26369,593.1891,409.0471,409.0471,1264.632,-148.1703,25.40944,78.55721,-9.204132,25.40944,0,0,1,0,0,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5568.381,-,-
-1685.5,4888.56164234877,9.99999961853027,9.99999961853027,0,4.26369,593.1891,409.0471,409.0471,1264.632,-148.1703,25.40944,78.55721,-9.204132,25.40944,0,0,1,0,0,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5568.381,-,-
-1686.5,4891.33942002058,9.99999961853027,9.99999961853027,0,4.26369,593.1891,409.0471,409.0471,1264.632,-148.1703,25.40944,78.55721,-9.204132,25.40944,0,0,1,0,0,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5568.381,-,-
-1687.5,4894.11719769239,9.99999961853027,9.99999961853027,0,4.26369,593.1891,409.0471,409.0471,1264.632,-148.1703,25.40944,78.55721,-9.204132,25.40944,0,0,1,0,0,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5568.381,-,-
-1688.5,4896.89497536421,9.99999961853027,9.99999961853027,0,4.26369,593.1891,409.0471,409.0471,1264.632,-148.1703,25.40944,78.55721,-9.204132,25.40944,0,0,1,0,0,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5568.381,-,-
-1689.5,4899.67275303602,9.99999961853027,9.99999961853027,0,4.162775,593.1891,400.6606,400.6606,1264.632,-148.1703,24.88848,78.55721,-9.204132,24.88848,0,0,1,0,0,0,0,0,3.312818,0.04154791,21.53412,24.88848,0,5471.098,-,-
-1690.5,4902.45053070784,9.99999961853027,9.99999961853027,0,4.162775,593.1891,400.6606,400.6606,1264.632,-148.1703,24.88848,78.55721,-9.204132,24.88848,0,0,1,0,0,0,0,0,3.312818,0.04154791,21.53412,24.88848,0,5471.098,-,-
-1691.5,4905.22830837965,9.99999961853027,9.99999961853027,0,4.162775,593.1891,400.6606,400.6606,1264.632,-148.1703,24.88848,78.55721,-9.204132,24.88848,0,0,1,0,0,0,0,0,3.312818,0.04154791,21.53412,24.88848,0,5471.098,-,-
-1692.5,4908.00608605146,9.99999961853027,9.99999961853027,0,4.162775,593.1891,400.6606,400.6606,1264.632,-148.1703,24.88848,78.55721,-9.204132,24.88848,0,0,1,0,0,0,0,0,3.312818,0.04154791,21.53412,24.88848,0,5471.098,-,-
-1693.5,4910.78386372328,9.99999961853027,9.99999961853027,0,4.162775,593.1891,400.6606,400.6606,1264.632,-148.1703,24.88848,78.55721,-9.204132,24.88848,0,0,1,0,0,0,0,0,3.312818,0.04154791,21.53412,24.88848,0,5471.098,-,-
-1694.5,4913.56164139509,9.99999961853027,9.99999961853027,0,4.162775,593.1891,400.6606,400.6606,1264.632,-148.1703,24.88848,78.55721,-9.204132,24.88848,0,0,1,0,0,0,0,0,3.312818,0.04154791,21.53412,24.88848,0,5471.098,-,-
-1695.5,4916.33941906691,9.99999961853027,9.99999961853027,0,4.162775,593.1891,400.6606,400.6606,1264.632,-148.1703,24.88848,78.55721,-9.204132,24.88848,0,0,1,0,0,0,0,0,3.312818,0.04154791,21.53412,24.88848,0,5471.098,-,-
-1696.5,4919.11719673872,9.99999961853027,9.99999961853027,0,4.014036,593.1891,388.2976,388.2976,1264.632,-148.1703,24.12051,78.55721,-9.204132,24.12051,0,0,1,0,0,0,0,0,3.313019,0.04154791,20.76595,24.12051,0,5338.219,-,-
-1697.5,4921.89497441053,9.99999961853027,9.99999961853027,0,4.014036,593.1891,388.2976,388.2976,1264.632,-148.1703,24.12051,78.55721,-9.204132,24.12051,0,0,1,0,0,0,0,0,3.313019,0.04154791,20.76595,24.12051,0,5338.219,-,-
-1698.5,4924.67275208235,9.99999961853027,9.99999961853027,0,4.014036,593.1891,388.2976,388.2976,1264.632,-148.1703,24.12051,78.55721,-9.204132,24.12051,0,0,1,0,0,0,0,0,3.313019,0.04154791,20.76595,24.12051,0,5338.219,-,-
-1699.5,4927.45052975416,9.99999961853027,9.99999961853027,0,4.014036,593.1891,388.2976,388.2976,1264.632,-148.1703,24.12051,78.55721,-9.204132,24.12051,0,0,1,0,0,0,0,0,3.313019,0.04154791,20.76595,24.12051,0,5338.219,-,-
-1700.5,4930.22830742598,9.99999961853027,9.99999961853027,0,4.014036,593.1891,388.2976,388.2976,1264.632,-148.1703,24.12051,78.55721,-9.204132,24.12051,0,0,1,0,0,0,0,0,3.313019,0.04154791,20.76595,24.12051,0,5338.219,-,-
-1701.5,4933.00608509779,9.99999961853027,9.99999961853027,0,4.014036,593.1891,388.2976,388.2976,1264.632,-148.1703,24.12051,78.55721,-9.204132,24.12051,0,0,1,0,0,0,0,0,3.313019,0.04154791,20.76595,24.12051,0,5338.219,-,-
-1702.5,4935.7838627696,9.99999961853027,9.99999961853027,0,4.014036,593.1891,388.2976,388.2976,1264.632,-148.1703,24.12051,78.55721,-9.204132,24.12051,0,0,1,0,0,0,0,0,3.313019,0.04154791,20.76595,24.12051,0,5338.219,-,-
-1703.5,4938.56164044142,9.99999961853027,9.99999961853027,0,3.939658,593.1891,382.1147,382.1147,1264.632,-148.1703,23.73643,78.55721,-9.204132,23.73643,0,0,1,0,0,0,0,0,3.313117,0.04154791,20.38177,23.73643,0,5272.062,-,-
-1704.5,4941.33941811323,9.99999961853027,9.99999961853027,0,3.865281,593.1891,375.9311,375.9311,1264.632,-148.1703,23.35232,78.55721,-9.204132,23.35232,0,0,1,0,0,0,0,0,3.313213,0.04154791,19.99756,23.35232,0,5205.897,-,-
-1705.5,4944.11719578505,9.99999961853027,9.99999961853027,0,3.865281,593.1891,375.9311,375.9311,1264.632,-148.1703,23.35232,78.55721,-9.204132,23.35232,0,0,1,0,0,0,0,0,3.313213,0.04154791,19.99756,23.35232,0,5205.897,-,-
-1706.5,4946.89497345686,9.99999961853027,9.99999961853027,0,3.865281,593.1891,375.9311,375.9311,1264.632,-148.1703,23.35232,78.55721,-9.204132,23.35232,0,0,1,0,0,0,0,0,3.313213,0.04154791,19.99756,23.35232,0,5205.897,-,-
-1707.5,4949.67275112867,9.99999961853027,9.99999961853027,0,3.865281,593.1891,375.9311,375.9311,1264.632,-148.1703,23.35232,78.55721,-9.204132,23.35232,0,0,1,0,0,0,0,0,3.313213,0.04154791,19.99756,23.35232,0,5205.897,-,-
-1708.5,4952.45052880049,9.99999961853027,9.99999961853027,0,3.865281,593.1891,375.9311,375.9311,1264.632,-148.1703,23.35232,78.55721,-9.204132,23.35232,0,0,1,0,0,0,0,0,3.313213,0.04154791,19.99756,23.35232,0,5205.897,-,-
-1709.5,4955.2283064723,9.99999961853027,9.99999961853027,0,3.865281,593.1891,375.9311,375.9311,1264.632,-148.1703,23.35232,78.55721,-9.204132,23.35232,0,0,1,0,0,0,0,0,3.313213,0.04154791,19.99756,23.35232,0,5205.897,-,-
-1710.5,4958.00608414412,9.99999961853027,9.99999961853027,0,3.790904,593.1891,369.747,369.747,1264.632,-148.1703,22.96817,78.55721,-9.204132,22.96817,0,0,1,0,0,0,0,0,3.313307,0.04154791,19.61332,22.96817,0,5139.727,-,-
-1711.5,4960.78386181593,9.99999961853027,9.99999961853027,0,3.716526,593.1891,363.5623,363.5623,1264.632,-148.1703,22.58398,78.55721,-9.204132,22.58398,0,0,1,0,0,0,0,0,3.313399,0.04154791,19.22904,22.58398,0,5073.551,-,-
-1712.5,4963.56163948774,9.99999961853027,9.99999961853027,0,3.716526,593.1891,363.5623,363.5623,1264.632,-148.1703,22.58398,78.55721,-9.204132,22.58398,0,0,1,0,0,0,0,0,3.313399,0.04154791,19.22904,22.58398,0,5073.551,-,-
-1713.5,4966.33941715956,9.99999961853027,9.99999961853027,0,3.716526,593.1891,363.5623,363.5623,1264.632,-148.1703,22.58398,78.55721,-9.204132,22.58398,0,0,1,0,0,0,0,0,3.313399,0.04154791,19.22904,22.58398,0,5073.551,-,-
-1714.5,4969.11719483137,9.99999961853027,9.99999961853027,0,3.716526,593.1891,363.5623,363.5623,1264.632,-148.1703,22.58398,78.55721,-9.204132,22.58398,0,0,1,0,0,0,0,0,3.313399,0.04154791,19.22904,22.58398,0,5073.551,-,-
-1715.5,4971.89497250319,9.99999961853027,9.99999961853027,0,3.716526,593.1891,363.5623,363.5623,1264.632,-148.1703,22.58398,78.55721,-9.204132,22.58398,0,0,1,0,0,0,0,0,3.313399,0.04154791,19.22904,22.58398,0,5073.551,-,-
-1716.5,4974.672750175,9.99999961853027,9.99999961853027,0,3.716526,593.1891,363.5623,363.5623,1264.632,-148.1703,22.58398,78.55721,-9.204132,22.58398,0,0,1,0,0,0,0,0,3.313399,0.04154791,19.22904,22.58398,0,5073.551,-,-
-1717.5,4977.45052784681,9.99999961853027,9.99999961853027,0,3.716526,593.1891,363.5623,363.5623,1264.632,-148.1703,22.58398,78.55721,-9.204132,22.58398,0,0,1,0,0,0,0,0,3.313399,0.04154791,19.22904,22.58398,0,5073.551,-,-
-1718.5,4980.22830551863,9.99999961853027,9.99999961853027,0,3.567958,593.1891,351.2068,351.2068,1264.632,-148.1703,21.81648,78.55721,-9.204132,21.81648,0,0,1,0,0,0,0,0,3.313578,0.04154791,18.46135,21.81648,0,4941.347,-,-
-1719.5,4983.00608319044,9.99999961853027,9.99999961853027,0,3.567958,593.1891,351.2068,351.2068,1264.632,-148.1703,21.81648,78.55721,-9.204132,21.81648,0,0,1,0,0,0,0,0,3.313578,0.04154791,18.46135,21.81648,0,4941.347,-,-
-1720.5,4985.78386086226,9.99999961853027,9.99999961853027,0,3.567958,593.1891,351.2068,351.2068,1264.632,-148.1703,21.81648,78.55721,-9.204132,21.81648,0,0,1,0,0,0,0,0,3.313578,0.04154791,18.46135,21.81648,0,4941.347,-,-
-1721.5,4988.56163853407,9.99999961853027,9.99999961853027,0,3.567958,593.1891,351.2068,351.2068,1264.632,-148.1703,21.81648,78.55721,-9.204132,21.81648,0,0,1,0,0,0,0,0,3.313578,0.04154791,18.46135,21.81648,0,4941.347,-,-
-1722.5,4991.33941620588,9.99999961853027,9.99999961853027,0,3.567958,593.1891,351.2068,351.2068,1264.632,-148.1703,21.81648,78.55721,-9.204132,21.81648,0,0,1,0,0,0,0,0,3.313578,0.04154791,18.46135,21.81648,0,4941.347,-,-
-1723.5,4994.1171938777,9.99999961853027,9.99999961853027,0,3.567958,593.1891,351.2068,351.2068,1264.632,-148.1703,21.81648,78.55721,-9.204132,21.81648,0,0,1,0,0,0,0,0,3.313578,0.04154791,18.46135,21.81648,0,4941.347,-,-
-1724.5,4996.89497154951,9.99999961853027,9.99999961853027,0,3.567958,593.1891,351.2068,351.2068,1264.632,-148.1703,21.81648,78.55721,-9.204132,21.81648,0,0,1,0,0,0,0,0,3.313578,0.04154791,18.46135,21.81648,0,4941.347,-,-
-1725.5,4999.67274922132,9.99999961853027,9.99999961853027,0,3.419514,593.1891,338.8596,338.8596,1264.632,-148.1703,21.04949,78.55721,-9.204132,21.04949,0,0,1,0,0,0,0,0,3.31375,0.04154791,17.69419,21.04949,0,4809.232,-,-
-1726.5,5002.45052689314,9.99999961853027,9.99999961853027,0,3.419514,593.1891,338.8596,338.8596,1264.632,-148.1703,21.04949,78.55721,-9.204132,21.04949,0,0,1,0,0,0,0,0,3.31375,0.04154791,17.69419,21.04949,0,4809.232,-,-
-1727.5,5005.22830456495,9.99999961853027,9.99999961853027,0,3.419514,593.1891,338.8596,338.8596,1264.632,-148.1703,21.04949,78.55721,-9.204132,21.04949,0,0,1,0,0,0,0,0,3.31375,0.04154791,17.69419,21.04949,0,4809.232,-,-
-1728.5,5008.00608223677,9.99999961853027,9.99999961853027,0,3.419514,593.1891,338.8596,338.8596,1264.632,-148.1703,21.04949,78.55721,-9.204132,21.04949,0,0,1,0,0,0,0,0,3.31375,0.04154791,17.69419,21.04949,0,4809.232,-,-
-1729.5,5010.78385990858,9.99999961853027,9.99999961853027,0,3.419514,593.1891,338.8596,338.8596,1264.632,-148.1703,21.04949,78.55721,-9.204132,21.04949,0,0,1,0,0,0,0,0,3.31375,0.04154791,17.69419,21.04949,0,4809.232,-,-
-1730.5,5013.56163758039,9.99999961853027,9.99999961853027,0,3.419514,593.1891,338.8596,338.8596,1264.632,-148.1703,21.04949,78.55721,-9.204132,21.04949,0,0,1,0,0,0,0,0,3.31375,0.04154791,17.69419,21.04949,0,4809.232,-,-
-1731.5,5016.33941525221,9.99999961853027,9.99999961853027,0,3.419514,593.1891,338.8596,338.8596,1264.632,-148.1703,21.04949,78.55721,-9.204132,21.04949,0,0,1,0,0,0,0,0,3.31375,0.04154791,17.69419,21.04949,0,4809.232,-,-
-1732.5,5019.11719292402,9.99999961853027,9.99999961853027,0,3.271069,593.1891,326.5103,326.5103,1264.632,-148.1703,20.28237,78.55721,-9.204132,20.28237,0,0,1,0,0,0,0,0,3.313914,0.04154791,16.92691,20.28237,0,4677.095,-,-
-1733.5,5021.89497059584,9.99999961853027,9.99999961853027,0,3.271069,593.1891,326.5103,326.5103,1264.632,-148.1703,20.28237,78.55721,-9.204132,20.28237,0,0,1,0,0,0,0,0,3.313914,0.04154791,16.92691,20.28237,0,4677.095,-,-
-1734.5,5024.67274826765,9.99999961853027,9.99999961853027,0,3.271069,593.1891,326.5103,326.5103,1264.632,-148.1703,20.28237,78.55721,-9.204132,20.28237,0,0,1,0,0,0,0,0,3.313914,0.04154791,16.92691,20.28237,0,4677.095,-,-
-1735.5,5027.45052593946,9.99999961853027,9.99999961853027,0,3.271069,593.1891,326.5103,326.5103,1264.632,-148.1703,20.28237,78.55721,-9.204132,20.28237,0,0,1,0,0,0,0,0,3.313914,0.04154791,16.92691,20.28237,0,4677.095,-,-
-1736.5,5030.22830361128,9.99999961853027,9.99999961853027,0,3.271069,593.1891,326.5103,326.5103,1264.632,-148.1703,20.28237,78.55721,-9.204132,20.28237,0,0,1,0,0,0,0,0,3.313914,0.04154791,16.92691,20.28237,0,4677.095,-,-
-1737.5,5033.00608128309,9.99999961853027,9.99999961853027,0,3.271069,593.1891,326.5103,326.5103,1264.632,-148.1703,20.28237,78.55721,-9.204132,20.28237,0,0,1,0,0,0,0,0,3.313914,0.04154791,16.92691,20.28237,0,4677.095,-,-
-1738.5,5035.78385895491,9.99999961853027,9.99999961853027,0,3.271069,593.1891,326.5103,326.5103,1264.632,-148.1703,20.28237,78.55721,-9.204132,20.28237,0,0,1,0,0,0,0,0,3.313914,0.04154791,16.92691,20.28237,0,4677.095,-,-
-1739.5,5038.56163662672,9.99999961853027,9.99999961853027,0,3.19708,593.1891,320.3544,320.3544,1264.632,-148.1703,19.89997,78.55721,-9.204132,19.89997,0,0,1,0,0,0,0,0,3.313993,0.04154791,16.54443,19.89997,0,4611.227,-,-
-1740.5,5041.33941429853,9.99999961853027,9.99999961853027,0,3.123091,593.1891,314.1979,314.1979,1264.632,-148.1703,19.51754,78.55721,-9.204132,19.51754,0,0,1,0,0,0,0,0,3.314071,0.04154791,16.16192,19.51754,0,4545.353,-,-
-1741.5,5044.11719197035,9.99999961853027,9.99999961853027,0,3.123091,593.1891,314.1979,314.1979,1264.632,-148.1703,19.51754,78.55721,-9.204132,19.51754,0,0,1,0,0,0,0,0,3.314071,0.04154791,16.16192,19.51754,0,4545.353,-,-
-1742.5,5046.89496964216,9.99999961853027,9.99999961853027,0,3.123091,593.1891,314.1979,314.1979,1264.632,-148.1703,19.51754,78.55721,-9.204132,19.51754,0,0,1,0,0,0,0,0,3.314071,0.04154791,16.16192,19.51754,0,4545.353,-,-
-1743.5,5049.67274731398,9.99999961853027,9.99999961853027,0,3.123091,593.1891,314.1979,314.1979,1264.632,-148.1703,19.51754,78.55721,-9.204132,19.51754,0,0,1,0,0,0,0,0,3.314071,0.04154791,16.16192,19.51754,0,4545.353,-,-
-1744.5,5052.45052498579,9.99999961853027,9.99999961853027,0,3.123091,593.1891,314.1979,314.1979,1264.632,-148.1703,19.51754,78.55721,-9.204132,19.51754,0,0,1,0,0,0,0,0,3.314071,0.04154791,16.16192,19.51754,0,4545.353,-,-
-1745.5,5055.2283026576,9.99999961853027,9.99999961853027,0,3.123091,593.1891,314.1979,314.1979,1264.632,-148.1703,19.51754,78.55721,-9.204132,19.51754,0,0,1,0,0,0,0,0,3.314071,0.04154791,16.16192,19.51754,0,4545.353,-,-
-1746.5,5058.00608032942,9.99999961853027,9.99999961853027,0,3.049387,593.1891,308.0648,308.0648,1264.632,-148.1703,19.13656,78.55721,-9.204132,19.13656,0,0,1,0,0,0,0,0,3.314146,0.04154791,15.78086,19.13656,0,4479.728,-,-
-1747.5,5060.78385800123,9.99999961853027,9.99999961853027,0,2.975682,593.1891,301.9312,301.9312,1264.632,-148.1703,18.75554,78.55721,-9.204132,18.75554,0,0,1,0,0,0,0,0,3.31422,0.04154791,15.39978,18.75554,0,4414.098,-,-
-1748.5,5063.56163567305,9.99999961853027,9.99999961853027,0,2.975682,593.1891,301.9312,301.9312,1264.632,-148.1703,18.75554,78.55721,-9.204132,18.75554,0,0,1,0,0,0,0,0,3.31422,0.04154791,15.39978,18.75554,0,4414.098,-,-
-1749.5,5066.33941334486,9.99999961853027,9.99999961853027,0,2.975682,593.1891,301.9312,301.9312,1264.632,-148.1703,18.75554,78.55721,-9.204132,18.75554,0,0,1,0,0,0,0,0,3.31422,0.04154791,15.39978,18.75554,0,4414.098,-,-
-1750.5,5069.11719101667,9.99999961853027,9.99999961853027,0,2.975682,593.1891,301.9312,301.9312,1264.632,-148.1703,18.75554,78.55721,-9.204132,18.75554,0,0,1,0,0,0,0,0,3.31422,0.04154791,15.39978,18.75554,0,4414.098,-,-
-1751.5,5071.89496868849,9.99999961853027,9.99999961853027,0,2.975682,593.1891,301.9312,301.9312,1264.632,-148.1703,18.75554,78.55721,-9.204132,18.75554,0,0,1,0,0,0,0,0,3.31422,0.04154791,15.39978,18.75554,0,4414.098,-,-
-1752.5,5074.6727463603,9.99999961853027,9.99999961853027,0,2.975682,593.1891,301.9312,301.9312,1264.632,-148.1703,18.75554,78.55721,-9.204132,18.75554,0,0,1,0,0,0,0,0,3.31422,0.04154791,15.39978,18.75554,0,4414.098,-,-
-1753.5,5077.45052403212,9.99999961853027,9.99999961853027,0,2.975682,593.1891,301.9312,301.9312,1264.632,-148.1703,18.75554,78.55721,-9.204132,18.75554,0,0,1,0,0,0,0,0,3.31422,0.04154791,15.39978,18.75554,0,4414.098,-,-
-1754.5,5080.22830170393,9.99999961853027,9.99999961853027,0,2.828273,593.1891,289.6626,289.6626,1264.632,-148.1703,17.99344,78.55721,-9.204132,17.99344,0,0,1,0,0,0,0,0,3.314361,0.04154791,14.63753,17.99344,0,4282.824,-,-
-1755.5,5083.00607937574,9.99999961853027,9.99999961853027,0,2.828273,593.1891,289.6626,289.6626,1264.632,-148.1703,17.99344,78.55721,-9.204132,17.99344,0,0,1,0,0,0,0,0,3.314361,0.04154791,14.63753,17.99344,0,4282.824,-,-
-1756.5,5085.78385704756,9.99999961853027,9.99999961853027,0,2.828273,593.1891,289.6626,289.6626,1264.632,-148.1703,17.99344,78.55721,-9.204132,17.99344,0,0,1,0,0,0,0,0,3.314361,0.04154791,14.63753,17.99344,0,4282.824,-,-
-1757.5,5088.56163471937,9.99999961853027,9.99999961853027,0,2.828273,593.1891,289.6626,289.6626,1264.632,-148.1703,17.99344,78.55721,-9.204132,17.99344,0,0,1,0,0,0,0,0,3.314361,0.04154791,14.63753,17.99344,0,4282.824,-,-
-1758.5,5091.33941239119,9.99999961853027,9.99999961853027,0,2.828273,593.1891,289.6626,289.6626,1264.632,-148.1703,17.99344,78.55721,-9.204132,17.99344,0,0,1,0,0,0,0,0,3.314361,0.04154791,14.63753,17.99344,0,4282.824,-,-
-1759.5,5094.117190063,9.99999961853027,9.99999961853027,0,2.828273,593.1891,289.6626,289.6626,1264.632,-148.1703,17.99344,78.55721,-9.204132,17.99344,0,0,1,0,0,0,0,0,3.314361,0.04154791,14.63753,17.99344,0,4282.824,-,-
-1760.5,5096.89496773481,9.99999961853027,9.99999961853027,0,2.828273,593.1891,289.6626,289.6626,1264.632,-148.1703,17.99344,78.55721,-9.204132,17.99344,0,0,1,0,0,0,0,0,3.314361,0.04154791,14.63753,17.99344,0,4282.824,-,-
-1761.5,5099.67274540663,9.99999961853027,9.99999961853027,0,2.828273,593.1891,289.6626,289.6626,1264.632,-148.1703,17.99344,78.55721,-9.204132,17.99344,0,0,1,0,0,0,0,0,3.314361,0.04154791,14.63753,17.99344,0,4282.824,-,-
-1762.5,5102.45052307844,9.99999961853027,9.99999961853027,0,2.828273,593.1891,289.6626,289.6626,1264.632,-148.1703,17.99344,78.55721,-9.204132,17.99344,0,0,1,0,0,0,0,0,3.314361,0.04154791,14.63753,17.99344,0,4282.824,-,-
-1763.5,5105.22830075026,9.99999961853027,9.99999961853027,0,2.828273,593.1891,289.6626,289.6626,1264.632,-148.1703,17.99344,78.55721,-9.204132,17.99344,0,0,1,0,0,0,0,0,3.314361,0.04154791,14.63753,17.99344,0,4282.824,-,-
-1764.5,5108.00607842207,9.99999961853027,9.99999961853027,0,2.828273,593.1891,289.6626,289.6626,1264.632,-148.1703,17.99344,78.55721,-9.204132,17.99344,0,0,1,0,0,0,0,0,3.314361,0.04154791,14.63753,17.99344,0,4282.824,-,-
-1765.5,5110.78385609388,9.99999961853027,9.99999961853027,0,2.828273,593.1891,289.6626,289.6626,1264.632,-148.1703,17.99344,78.55721,-9.204132,17.99344,0,0,1,0,0,0,0,0,3.314361,0.04154791,14.63753,17.99344,0,4282.824,-,-
-1766.5,5113.5616337657,9.99999961853027,9.99999961853027,0,2.828273,593.1891,289.6626,289.6626,1264.632,-148.1703,17.99344,78.55721,-9.204132,17.99344,0,0,1,0,0,0,0,0,3.314361,0.04154791,14.63753,17.99344,0,4282.824,-,-
-1767.5,5116.33941143751,9.99999961853027,9.99999961853027,0,2.828273,593.1891,289.6626,289.6626,1264.632,-148.1703,17.99344,78.55721,-9.204132,17.99344,0,0,1,0,0,0,0,0,3.314361,0.04154791,14.63753,17.99344,0,4282.824,-,-
-1768.5,5119.11718910933,9.99999961853027,9.99999961853027,0,2.828273,593.1891,289.6626,289.6626,1264.632,-148.1703,17.99344,78.55721,-9.204132,17.99344,0,0,1,0,0,0,0,0,3.314361,0.04154791,14.63753,17.99344,0,4282.824,-,-
-1769.5,5121.89496678114,9.99999961853027,9.99999961853027,0,2.828273,593.1891,289.6626,289.6626,1264.632,-148.1703,17.99344,78.55721,-9.204132,17.99344,0,0,1,0,0,0,0,0,3.314361,0.04154791,14.63753,17.99344,0,4282.824,-,-
-1770.5,5124.67274445295,9.99999961853027,9.99999961853027,0,2.828273,593.1891,289.6626,289.6626,1264.632,-148.1703,17.99344,78.55721,-9.204132,17.99344,0,0,1,0,0,0,0,0,3.314361,0.04154791,14.63753,17.99344,0,4282.824,-,-
-1771.5,5127.45052212477,9.99999961853027,9.99999961853027,0,2.828273,593.1891,289.6626,289.6626,1264.632,-148.1703,17.99344,78.55721,-9.204132,17.99344,0,0,1,0,0,0,0,0,3.314361,0.04154791,14.63753,17.99344,0,4282.824,-,-
-1772.5,5130.22829979658,9.99999961853027,9.99999961853027,0,2.679824,593.1891,277.3058,277.3058,1264.632,-148.1703,17.22585,78.55721,-9.204132,17.22585,0,0,1,0,0,0,0,0,3.314497,0.04154791,13.86981,17.22585,0,4150.607,-,-
-1773.5,5133.0060774684,9.99999961853027,9.99999961853027,0,2.679824,593.1891,277.3058,277.3058,1264.632,-148.1703,17.22585,78.55721,-9.204132,17.22585,0,0,1,0,0,0,0,0,3.314497,0.04154791,13.86981,17.22585,0,4150.607,-,-
-1774.5,5135.78385514021,9.99999961853027,9.99999961853027,0,2.679824,593.1891,277.3058,277.3058,1264.632,-148.1703,17.22585,78.55721,-9.204132,17.22585,0,0,1,0,0,0,0,0,3.314497,0.04154791,13.86981,17.22585,0,4150.607,-,-
-1775.5,5138.56163281202,9.99999961853027,9.99999961853027,0,2.679824,593.1891,277.3058,277.3058,1264.632,-148.1703,17.22585,78.55721,-9.204132,17.22585,0,0,1,0,0,0,0,0,3.314497,0.04154791,13.86981,17.22585,0,4150.607,-,-
-1776.5,5141.33941048384,9.99999961853027,9.99999961853027,0,2.679824,593.1891,277.3058,277.3058,1264.632,-148.1703,17.22585,78.55721,-9.204132,17.22585,0,0,1,0,0,0,0,0,3.314497,0.04154791,13.86981,17.22585,0,4150.607,-,-
-1777.5,5144.11718815565,9.99999961853027,9.99999961853027,0,2.679824,593.1891,277.3058,277.3058,1264.632,-148.1703,17.22585,78.55721,-9.204132,17.22585,0,0,1,0,0,0,0,0,3.314497,0.04154791,13.86981,17.22585,0,4150.607,-,-
-1778.5,5146.89496582747,9.99999961853027,9.99999961853027,0,2.679824,593.1891,277.3058,277.3058,1264.632,-148.1703,17.22585,78.55721,-9.204132,17.22585,0,0,1,0,0,0,0,0,3.314497,0.04154791,13.86981,17.22585,0,4150.607,-,-
-1779.5,5149.67274349928,9.99999961853027,9.99999961853027,0,2.561917,593.1891,267.4902,267.4902,1264.632,-148.1703,16.61612,78.55721,-9.204132,16.61612,0,0,1,0,0,0,0,0,3.314599,0.04154791,13.25997,16.61612,0,4045.58,-,-
-1780.5,5152.45052117109,9.99999961853027,9.99999961853027,0,2.561917,593.1891,267.4902,267.4902,1264.632,-148.1703,16.61612,78.55721,-9.204132,16.61612,0,0,1,0,0,0,0,0,3.314599,0.04154791,13.25997,16.61612,0,4045.58,-,-
-1781.5,5155.22829884291,9.99999961853027,9.99999961853027,0,2.561917,593.1891,267.4902,267.4902,1264.632,-148.1703,16.61612,78.55721,-9.204132,16.61612,0,0,1,0,0,0,0,0,3.314599,0.04154791,13.25997,16.61612,0,4045.58,-,-
-1782.5,5158.00607651472,9.99999961853027,9.99999961853027,0,2.561917,593.1891,267.4902,267.4902,1264.632,-148.1703,16.61612,78.55721,-9.204132,16.61612,0,0,1,0,0,0,0,0,3.314599,0.04154791,13.25997,16.61612,0,4045.58,-,-
-1783.5,5160.78385418653,9.99999961853027,9.99999961853027,0,2.561917,593.1891,267.4902,267.4902,1264.632,-148.1703,16.61612,78.55721,-9.204132,16.61612,0,0,1,0,0,0,0,0,3.314599,0.04154791,13.25997,16.61612,0,4045.58,-,-
-1784.5,5163.56163185835,9.99999961853027,9.99999961853027,0,2.561917,593.1891,267.4902,267.4902,1264.632,-148.1703,16.61612,78.55721,-9.204132,16.61612,0,0,1,0,0,0,0,0,3.314599,0.04154791,13.25997,16.61612,0,4045.58,-,-
-1785.5,5166.33940953016,9.99999961853027,9.99999961853027,0,2.561917,593.1891,267.4902,267.4902,1264.632,-148.1703,16.61612,78.55721,-9.204132,16.61612,0,0,1,0,0,0,0,0,3.314599,0.04154791,13.25997,16.61612,0,4045.58,-,-
-1786.5,5169.11718720198,9.99999961853027,9.99999961853027,0,2.443964,593.1891,257.6697,257.6697,1264.632,-148.1703,16.00609,78.55721,-9.204132,16.00609,0,0,1,0,0,0,0,0,3.314697,0.04154791,12.64984,16.00609,0,3940.501,-,-
-1787.5,5171.89496487379,9.99999961853027,9.99999961853027,0,2.443964,593.1891,257.6697,257.6697,1264.632,-148.1703,16.00609,78.55721,-9.204132,16.00609,0,0,1,0,0,0,0,0,3.314697,0.04154791,12.64984,16.00609,0,3940.501,-,-
-1788.5,5174.6727425456,9.99999961853027,9.99999961853027,0,2.443964,593.1891,257.6697,257.6697,1264.632,-148.1703,16.00609,78.55721,-9.204132,16.00609,0,0,1,0,0,0,0,0,3.314697,0.04154791,12.64984,16.00609,0,3940.501,-,-
-1789.5,5177.45052021742,9.99999961853027,9.99999961853027,0,2.443964,593.1891,257.6697,257.6697,1264.632,-148.1703,16.00609,78.55721,-9.204132,16.00609,0,0,1,0,0,0,0,0,3.314697,0.04154791,12.64984,16.00609,0,3940.501,-,-
-1790.5,5180.22829788923,9.99999961853027,9.99999961853027,0,2.443964,593.1891,257.6697,257.6697,1264.632,-148.1703,16.00609,78.55721,-9.204132,16.00609,0,0,1,0,0,0,0,0,3.314697,0.04154791,12.64984,16.00609,0,3940.501,-,-
-1791.5,5183.00607556105,9.99999961853027,9.99999961853027,0,2.443964,593.1891,257.6697,257.6697,1264.632,-148.1703,16.00609,78.55721,-9.204132,16.00609,0,0,1,0,0,0,0,0,3.314697,0.04154791,12.64984,16.00609,0,3940.501,-,-
-1792.5,5185.78385323286,9.99999961853027,9.99999961853027,0,2.443964,593.1891,257.6697,257.6697,1264.632,-148.1703,16.00609,78.55721,-9.204132,16.00609,0,0,1,0,0,0,0,0,3.314697,0.04154791,12.64984,16.00609,0,3940.501,-,-
-1793.5,5188.56163090467,9.99999961853027,9.99999961853027,0,2.384856,593.1891,252.7482,252.7482,1264.632,-148.1703,15.70037,78.55721,-9.204132,15.70037,0,0,1,0,0,0,0,0,3.314744,0.04154791,12.34408,15.70037,0,3887.841,-,-
-1794.5,5191.33940857649,9.99999961853027,9.99999961853027,0,2.325747,593.1891,247.8264,247.8264,1264.632,-148.1703,15.39464,78.55721,-9.204132,15.39464,0,0,1,0,0,0,0,0,3.31479,0.04154791,12.0383,15.39464,0,3835.177,-,-
-1795.5,5194.1171862483,9.99999961853027,9.99999961853027,0,2.325747,593.1891,247.8264,247.8264,1264.632,-148.1703,15.39464,78.55721,-9.204132,15.39464,0,0,1,0,0,0,0,0,3.31479,0.04154791,12.0383,15.39464,0,3835.177,-,-
-1796.5,5196.89496392012,9.99999961853027,9.99999961853027,0,2.325747,593.1891,247.8264,247.8264,1264.632,-148.1703,15.39464,78.55721,-9.204132,15.39464,0,0,1,0,0,0,0,0,3.31479,0.04154791,12.0383,15.39464,0,3835.177,-,-
-1797.5,5199.67274159193,9.99999961853027,9.99999961853027,0,2.325747,593.1891,247.8264,247.8264,1264.632,-148.1703,15.39464,78.55721,-9.204132,15.39464,0,0,1,0,0,0,0,0,3.31479,0.04154791,12.0383,15.39464,0,3835.177,-,-
-1798.5,5202.45051926374,9.99999961853027,9.99999961853027,0,2.325747,593.1891,247.8264,247.8264,1264.632,-148.1703,15.39464,78.55721,-9.204132,15.39464,0,0,1,0,0,0,0,0,3.31479,0.04154791,12.0383,15.39464,0,3835.177,-,-
-1799.5,5205.22829693556,9.99999961853027,9.99999961853027,0,2.325747,593.1891,247.8264,247.8264,1264.632,-148.1703,15.39464,78.55721,-9.204132,15.39464,0,0,1,0,0,0,0,0,3.31479,0.04154791,12.0383,15.39464,0,3835.177,-,-
-1800.5,5208.00607460737,9.99999961853027,9.99999961853027,0,2.266638,593.1891,242.9045,242.9045,1264.632,-148.1703,15.08889,78.55721,-9.204132,15.08889,0,0,1,0,0,0,0,0,3.314835,0.04154791,11.73251,15.08889,0,3782.512,-,-
-1801.5,5210.78385227919,9.99999961853027,9.99999961853027,0,2.20753,593.1891,237.9823,237.9823,1264.632,-148.1703,14.78313,78.55721,-9.204132,14.78313,0,0,1,0,0,0,0,0,3.314879,0.04154791,11.4267,14.78313,0,3729.845,-,-
-1802.5,5213.561629951,9.99999961853027,9.99999961853027,0,2.20753,593.1891,237.9823,237.9823,1264.632,-148.1703,14.78313,78.55721,-9.204132,14.78313,0,0,1,0,0,0,0,0,3.314879,0.04154791,11.4267,14.78313,0,3729.845,-,-
-1803.5,5216.33940762281,9.99999961853027,9.99999961853027,0,2.20753,593.1891,237.9823,237.9823,1264.632,-148.1703,14.78313,78.55721,-9.204132,14.78313,0,0,1,0,0,0,0,0,3.314879,0.04154791,11.4267,14.78313,0,3729.845,-,-
-1804.5,5219.11718529463,9.99999961853027,9.99999961853027,0,2.20753,593.1891,237.9823,237.9823,1264.632,-148.1703,14.78313,78.55721,-9.204132,14.78313,0,0,1,0,0,0,0,0,3.314879,0.04154791,11.4267,14.78313,0,3729.845,-,-
-1805.5,5221.89496296644,9.99999961853027,9.99999961853027,0,2.20753,593.1891,237.9823,237.9823,1264.632,-148.1703,14.78313,78.55721,-9.204132,14.78313,0,0,1,0,0,0,0,0,3.314879,0.04154791,11.4267,14.78313,0,3729.845,-,-
-1806.5,5224.67274063826,9.99999961853027,9.99999961853027,0,2.20753,593.1891,237.9823,237.9823,1264.632,-148.1703,14.78313,78.55721,-9.204132,14.78313,0,0,1,0,0,0,0,0,3.314879,0.04154791,11.4267,14.78313,0,3729.845,-,-
-1807.5,5227.45051831007,9.99999961853027,9.99999961853027,0,2.20753,593.1891,237.9823,237.9823,1264.632,-148.1703,14.78313,78.55721,-9.204132,14.78313,0,0,1,0,0,0,0,0,3.314879,0.04154791,11.4267,14.78313,0,3729.845,-,-
-1808.5,5230.22829598188,9.99999961853027,9.99999961853027,0,2.089313,593.1891,228.1372,228.1372,1264.632,-148.1703,14.17157,78.55721,-9.204132,14.17157,0,0,1,0,0,0,0,0,3.314963,0.04154791,10.81505,14.17157,0,3625.745,-,-
-1809.5,5233.0060736537,9.99999961853027,9.99999961853027,0,2.089313,593.1891,228.1372,228.1372,1264.632,-148.1703,14.17157,78.55721,-9.204132,14.17157,0,0,1,0,0,0,0,0,3.314963,0.04154791,10.81505,14.17157,0,3625.745,-,-
-1810.5,5235.78385132551,9.99999961853027,9.99999961853027,0,2.089313,593.1891,228.1372,228.1372,1264.632,-148.1703,14.17157,78.55721,-9.204132,14.17157,0,0,1,0,0,0,0,0,3.314963,0.04154791,10.81505,14.17157,0,3625.745,-,-
-1811.5,5238.56162899733,9.99999961853027,9.99999961853027,0,2.089313,593.1891,228.1372,228.1372,1264.632,-148.1703,14.17157,78.55721,-9.204132,14.17157,0,0,1,0,0,0,0,0,3.314963,0.04154791,10.81505,14.17157,0,3625.745,-,-
-1812.5,5241.33940666914,9.99999961853027,9.99999961853027,0,2.089313,593.1891,228.1372,228.1372,1264.632,-148.1703,14.17157,78.55721,-9.204132,14.17157,0,0,1,0,0,0,0,0,3.314963,0.04154791,10.81505,14.17157,0,3625.745,-,-
-1813.5,5244.11718434095,9.99999961853027,9.99999961853027,0,2.089313,593.1891,228.1372,228.1372,1264.632,-148.1703,14.17157,78.55721,-9.204132,14.17157,0,0,1,0,0,0,0,0,3.314963,0.04154791,10.81505,14.17157,0,3625.745,-,-
-1814.5,5246.89496201277,9.99999961853027,9.99999961853027,0,2.089313,593.1891,228.1372,228.1372,1264.632,-148.1703,14.17157,78.55721,-9.204132,14.17157,0,0,1,0,0,0,0,0,3.314963,0.04154791,10.81505,14.17157,0,3625.745,-,-
-1815.5,5249.67273968458,9.99999961853027,9.99999961853027,0,1.971096,593.1891,218.2913,218.2913,1264.632,-148.1703,13.55996,78.55721,-9.204132,13.55996,0,0,1,0,0,0,0,0,3.315043,0.04154791,10.20337,13.55996,0,3522.462,-,-
-1816.5,5252.4505173564,9.99999961853027,9.99999961853027,0,1.971096,593.1891,218.2913,218.2913,1264.632,-148.1703,13.55996,78.55721,-9.204132,13.55996,0,0,1,0,0,0,0,0,3.315043,0.04154791,10.20337,13.55996,0,3522.462,-,-
-1817.5,5255.22829502821,9.99999961853027,9.99999961853027,0,1.971096,593.1891,218.2913,218.2913,1264.632,-148.1703,13.55996,78.55721,-9.204132,13.55996,0,0,1,0,0,0,0,0,3.315043,0.04154791,10.20337,13.55996,0,3522.462,-,-
-1818.5,5258.00607270002,9.99999961853027,9.99999961853027,0,1.971096,593.1891,218.2913,218.2913,1264.632,-148.1703,13.55996,78.55721,-9.204132,13.55996,0,0,1,0,0,0,0,0,3.315043,0.04154791,10.20337,13.55996,0,3522.462,-,-
-1819.5,5260.78385037184,9.99999961853027,9.99999961853027,0,1.971096,593.1891,218.2913,218.2913,1264.632,-148.1703,13.55996,78.55721,-9.204132,13.55996,0,0,1,0,0,0,0,0,3.315043,0.04154791,10.20337,13.55996,0,3522.462,-,-
-1820.5,5263.56162804365,9.99999961853027,9.99999961853027,0,1.971096,593.1891,218.2913,218.2913,1264.632,-148.1703,13.55996,78.55721,-9.204132,13.55996,0,0,1,0,0,0,0,0,3.315043,0.04154791,10.20337,13.55996,0,3522.462,-,-
-1821.5,5266.33940571547,9.99999961853027,9.99999961853027,0,1.971096,593.1891,218.2913,218.2913,1264.632,-148.1703,13.55996,78.55721,-9.204132,13.55996,0,0,1,0,0,0,0,0,3.315043,0.04154791,10.20337,13.55996,0,3522.462,-,-
-1822.5,5269.11718338728,9.99999961853027,9.99999961853027,0,1.852879,593.1891,208.4447,208.4447,1264.632,-148.1703,12.9483,78.55721,-9.204132,12.9483,0,0,1,0,0,0,0,0,3.315118,0.04154791,9.591632,12.9483,0,3419.171,-,-
-1823.5,5271.89496105909,9.99999961853027,9.99999961853027,0,1.852879,593.1891,208.4447,208.4447,1264.632,-148.1703,12.9483,78.55721,-9.204132,12.9483,0,0,1,0,0,0,0,0,3.315118,0.04154791,9.591632,12.9483,0,3419.171,-,-
-1824.5,5274.67273873091,9.99999961853027,9.99999961853027,0,1.852879,593.1891,208.4447,208.4447,1264.632,-148.1703,12.9483,78.55721,-9.204132,12.9483,0,0,1,0,0,0,0,0,3.315118,0.04154791,9.591632,12.9483,0,3419.171,-,-
-1825.5,5277.45051640272,9.99999961853027,9.99999961853027,0,1.852879,593.1891,208.4447,208.4447,1264.632,-148.1703,12.9483,78.55721,-9.204132,12.9483,0,0,1,0,0,0,0,0,3.315118,0.04154791,9.591632,12.9483,0,3419.171,-,-
-1826.5,5280.22829407454,9.99999961853027,9.99999961853027,0,1.852879,593.1891,208.4447,208.4447,1264.632,-148.1703,12.9483,78.55721,-9.204132,12.9483,0,0,1,0,0,0,0,0,3.315118,0.04154791,9.591632,12.9483,0,3419.171,-,-
-1827.5,5283.00607174635,9.99999961853027,9.99999961853027,0,1.852879,593.1891,208.4447,208.4447,1264.632,-148.1703,12.9483,78.55721,-9.204132,12.9483,0,0,1,0,0,0,0,0,3.315118,0.04154791,9.591632,12.9483,0,3419.171,-,-
-1828.5,5285.78384941816,9.99999961853027,9.99999961853027,0,1.852879,593.1891,208.4447,208.4447,1264.632,-148.1703,12.9483,78.55721,-9.204132,12.9483,0,0,1,0,0,0,0,0,3.315118,0.04154791,9.591632,12.9483,0,3419.171,-,-
-1829.5,5288.56162708998,9.99999961853027,9.99999961853027,0,1.79377,593.1891,203.5211,203.5211,1264.632,-148.1703,12.64245,78.55721,-9.204132,12.64245,0,0,1,0,0,0,0,0,3.315153,0.04154791,9.285749,12.64245,0,3367.523,-,-
-1830.5,5291.33940476179,9.99999961853027,9.99999961853027,0,1.734661,593.1891,198.5974,198.5974,1264.632,-148.1703,12.33659,78.55721,-9.204132,12.33659,0,0,1,0,0,0,0,0,3.315188,0.04154791,8.979857,12.33659,0,3317.268,-,-
-1831.5,5294.11718243361,9.99999961853027,9.99999961853027,0,1.734661,593.1891,198.5974,198.5974,1264.632,-148.1703,12.33659,78.55721,-9.204132,12.33659,0,0,1,0,0,0,0,0,3.315188,0.04154791,8.979857,12.33659,0,3317.268,-,-
-1832.5,5296.89496010542,9.99999961853027,9.99999961853027,0,1.734661,593.1891,198.5974,198.5974,1264.632,-148.1703,12.33659,78.55721,-9.204132,12.33659,0,0,1,0,0,0,0,0,3.315188,0.04154791,8.979857,12.33659,0,3317.268,-,-
-1833.5,5299.67273777723,9.99999961853027,9.99999961853027,0,1.734661,593.1891,198.5974,198.5974,1264.632,-148.1703,12.33659,78.55721,-9.204132,12.33659,0,0,1,0,0,0,0,0,3.315188,0.04154791,8.979857,12.33659,0,3317.268,-,-
-1834.5,5302.45051544905,9.99999961853027,9.99999961853027,0,1.734661,593.1891,198.5974,198.5974,1264.632,-148.1703,12.33659,78.55721,-9.204132,12.33659,0,0,1,0,0,0,0,0,3.315188,0.04154791,8.979857,12.33659,0,3317.268,-,-
-1835.5,5305.22829312086,9.99999961853027,9.99999961853027,0,1.734661,593.1891,198.5974,198.5974,1264.632,-148.1703,12.33659,78.55721,-9.204132,12.33659,0,0,1,0,0,0,0,0,3.315188,0.04154791,8.979857,12.33659,0,3317.268,-,-
-1836.5,5308.00607079268,9.99999961853027,9.99999961853027,0,1.642363,593.1891,190.9085,190.9085,1264.632,-148.1703,11.85897,78.55721,-9.204132,11.85897,0,0,1,0,0,0,0,0,3.31524,0.04154791,8.502186,11.85897,0,3244.262,-,-
-1837.5,5310.78384846449,9.99999961853027,9.99999961853027,0,1.550064,593.1891,183.2193,183.2193,1264.632,-148.1703,11.38133,78.55721,-9.204132,11.38133,0,0,1,0,0,0,0,0,3.315289,0.04154791,8.02449,11.38133,0,3171.253,-,-
-1838.5,5313.5616261363,9.99999961853027,9.99999961853027,0,1.550064,593.1891,183.2193,183.2193,1264.632,-148.1703,11.38133,78.55721,-9.204132,11.38133,0,0,1,0,0,0,0,0,3.315289,0.04154791,8.02449,11.38133,0,3171.253,-,-
-1839.5,5316.33940380812,9.99999961853027,9.99999961853027,0,1.550064,593.1891,183.2193,183.2193,1264.632,-148.1703,11.38133,78.55721,-9.204132,11.38133,0,0,1,0,0,0,0,0,3.315289,0.04154791,8.02449,11.38133,0,3171.253,-,-
-1840.5,5319.11718147993,9.99999961853027,9.99999961853027,0,1.550064,593.1891,183.2193,183.2193,1264.632,-148.1703,11.38133,78.55721,-9.204132,11.38133,0,0,1,0,0,0,0,0,3.315289,0.04154791,8.02449,11.38133,0,3171.253,-,-
-1841.5,5321.89495915174,9.99999961853027,9.99999961853027,0,1.550064,593.1891,183.2193,183.2193,1264.632,-148.1703,11.38133,78.55721,-9.204132,11.38133,0,0,1,0,0,0,0,0,3.315289,0.04154791,8.02449,11.38133,0,3171.253,-,-
-1842.5,5324.67273682356,9.99999961853027,9.99999961853027,0,1.550064,593.1891,183.2193,183.2193,1264.632,-148.1703,11.38133,78.55721,-9.204132,11.38133,0,0,1,0,0,0,0,0,3.315289,0.04154791,8.02449,11.38133,0,3171.253,-,-
-1843.5,5327.45051449537,9.99999961853027,9.99999961853027,0,1.550064,593.1891,183.2193,183.2193,1264.632,-148.1703,11.38133,78.55721,-9.204132,11.38133,0,0,1,0,0,0,0,0,3.315289,0.04154791,8.02449,11.38133,0,3171.253,-,-
-1844.5,5330.22829216719,9.99999961853027,9.99999961853027,0,1.432002,593.1891,173.3832,173.3832,1264.632,-148.1703,10.77032,78.55721,-9.204132,10.77032,0,0,1,0,0,0,0,0,3.315347,0.04154791,7.413429,10.77032,0,3077.86,-,-
-1845.5,5333.006069839,9.99999961853027,9.99999961853027,0,1.432002,593.1891,173.3832,173.3832,1264.632,-148.1703,10.77032,78.55721,-9.204132,10.77032,0,0,1,0,0,0,0,0,3.315347,0.04154791,7.413429,10.77032,0,3077.86,-,-
-1846.5,5335.78384751081,9.99999961853027,9.99999961853027,0,1.432002,593.1891,173.3832,173.3832,1264.632,-148.1703,10.77032,78.55721,-9.204132,10.77032,0,0,1,0,0,0,0,0,3.315347,0.04154791,7.413429,10.77032,0,3077.86,-,-
-1847.5,5338.56162518263,9.99999961853027,9.99999961853027,0,1.432002,593.1891,173.3832,173.3832,1264.632,-148.1703,10.77032,78.55721,-9.204132,10.77032,0,0,1,0,0,0,0,0,3.315347,0.04154791,7.413429,10.77032,0,3077.86,-,-
-1848.5,5341.33940285444,9.99999961853027,9.99999961853027,0,1.432002,593.1891,173.3832,173.3832,1264.632,-148.1703,10.77032,78.55721,-9.204132,10.77032,0,0,1,0,0,0,0,0,3.315347,0.04154791,7.413429,10.77032,0,3077.86,-,-
-1849.5,5344.11718052626,9.99999961853027,9.99999961853027,0,1.432002,593.1891,173.3832,173.3832,1264.632,-148.1703,10.77032,78.55721,-9.204132,10.77032,0,0,1,0,0,0,0,0,3.315347,0.04154791,7.413429,10.77032,0,3077.86,-,-
-1850.5,5346.89495819807,9.99999961853027,9.99999961853027,0,1.432002,593.1891,173.3832,173.3832,1264.632,-148.1703,10.77032,78.55721,-9.204132,10.77032,0,0,1,0,0,0,0,0,3.315347,0.04154791,7.413429,10.77032,0,3077.86,-,-
-1851.5,5349.67273586988,9.99999961853027,9.99999961853027,0,1.432002,593.1891,173.3832,173.3832,1264.632,-148.1703,10.77032,78.55721,-9.204132,10.77032,0,0,1,0,0,0,0,0,3.315347,0.04154791,7.413429,10.77032,0,3077.86,-,-
-1852.5,5352.4505135417,9.99999961853027,9.99999961853027,0,1.432002,593.1891,173.3832,173.3832,1264.632,-148.1703,10.77032,78.55721,-9.204132,10.77032,0,0,1,0,0,0,0,0,3.315347,0.04154791,7.413429,10.77032,0,3077.86,-,-
-1853.5,5355.22829121351,9.99999961853027,9.99999961853027,0,1.432002,593.1891,173.3832,173.3832,1264.632,-148.1703,10.77032,78.55721,-9.204132,10.77032,0,0,1,0,0,0,0,0,3.315347,0.04154791,7.413429,10.77032,0,3077.86,-,-
-1854.5,5358.00606888533,9.99999961853027,9.99999961853027,0,1.365621,593.1891,167.8526,167.8526,1264.632,-148.1703,10.42677,78.55721,-9.204132,10.42677,0,0,1,0,0,0,0,0,3.315377,0.04154791,7.069844,10.42677,0,3025.346,-,-
-1855.5,5360.78384655714,9.99999961853027,9.99999961853027,0,1.299241,593.1891,162.3218,162.3218,1264.632,-148.1703,10.08321,78.55721,-9.204132,10.08321,0,0,1,0,0,0,0,0,3.315407,0.04154791,6.72625,10.08321,0,2972.832,-,-
-1856.5,5363.56162422895,9.99999961853027,9.99999961853027,0,1.299241,593.1891,162.3218,162.3218,1264.632,-148.1703,10.08321,78.55721,-9.204132,10.08321,0,0,1,0,0,0,0,0,3.315407,0.04154791,6.72625,10.08321,0,2972.832,-,-
-1857.5,5366.33940190077,9.99999961853027,9.99999961853027,0,1.299241,593.1891,162.3218,162.3218,1264.632,-148.1703,10.08321,78.55721,-9.204132,10.08321,0,0,1,0,0,0,0,0,3.315407,0.04154791,6.72625,10.08321,0,2972.832,-,-
-1858.5,5369.11717957258,9.99999961853027,9.99999961853027,0,1.299241,593.1891,162.3218,162.3218,1264.632,-148.1703,10.08321,78.55721,-9.204132,10.08321,0,0,1,0,0,0,0,0,3.315407,0.04154791,6.72625,10.08321,0,2972.832,-,-
-1859.5,5371.8949572444,9.99999961853027,9.99999961853027,0,1.299241,593.1891,162.3218,162.3218,1264.632,-148.1703,10.08321,78.55721,-9.204132,10.08321,0,0,1,0,0,0,0,0,3.315407,0.04154791,6.72625,10.08321,0,2972.832,-,-
-1860.5,5374.67273491621,9.99999961853027,9.99999961853027,0,1.299241,593.1891,162.3218,162.3218,1264.632,-148.1703,10.08321,78.55721,-9.204132,10.08321,0,0,1,0,0,0,0,0,3.315407,0.04154791,6.72625,10.08321,0,2972.832,-,-
-1861.5,5377.45051258802,9.99999961853027,9.99999961853027,0,1.299241,593.1891,162.3218,162.3218,1264.632,-148.1703,10.08321,78.55721,-9.204132,10.08321,0,0,1,0,0,0,0,0,3.315407,0.04154791,6.72625,10.08321,0,2972.832,-,-
-1862.5,5380.22829025984,9.99999961853027,9.99999961853027,0,1.299241,593.1891,162.3218,162.3218,1264.632,-148.1703,10.08321,78.55721,-9.204132,10.08321,0,0,1,0,0,0,0,0,3.315407,0.04154791,6.72625,10.08321,0,2972.832,-,-
-1863.5,5383.00606793165,9.99999961853027,9.99999961853027,0,1.299241,593.1891,162.3218,162.3218,1264.632,-148.1703,10.08321,78.55721,-9.204132,10.08321,0,0,1,0,0,0,0,0,3.315407,0.04154791,6.72625,10.08321,0,2972.832,-,-
-1864.5,5385.78384560347,9.99999961853027,9.99999961853027,0,1.299241,593.1891,162.3218,162.3218,1264.632,-148.1703,10.08321,78.55721,-9.204132,10.08321,0,0,1,0,0,0,0,0,3.315407,0.04154791,6.72625,10.08321,0,2972.832,-,-
-1865.5,5388.56162327528,9.99999961853027,9.99999961853027,0,1.23286,593.1891,156.7908,156.7908,1264.632,-148.1703,9.73963,78.55721,-9.204132,9.73963,0,0,1,0,0,0,0,0,3.315435,0.04154791,6.382647,9.73963,0,2920.315,-,-
-1866.5,5391.33940094709,9.99999961853027,9.99999961853027,0,1.166479,593.1891,151.2597,151.2597,1264.632,-148.1703,9.396045,78.55721,-9.204132,9.396045,0,0,1,0,0,0,0,0,3.315461,0.04154791,6.039035,9.396045,0,2867.797,-,-
-1867.5,5394.11717861891,9.99999961853027,9.99999961853027,0,1.166479,593.1891,151.2597,151.2597,1264.632,-148.1703,9.396045,78.55721,-9.204132,9.396045,0,0,1,0,0,0,0,0,3.315461,0.04154791,6.039035,9.396045,0,2867.797,-,-
-1868.5,5396.89495629072,9.99999961853027,9.99999961853027,0,1.166479,593.1891,151.2597,151.2597,1264.632,-148.1703,9.396045,78.55721,-9.204132,9.396045,0,0,1,0,0,0,0,0,3.315461,0.04154791,6.039035,9.396045,0,2867.797,-,-
-1869.5,5399.67273396254,9.99999961853027,9.99999961853027,0,1.166479,593.1891,151.2597,151.2597,1264.632,-148.1703,9.396045,78.55721,-9.204132,9.396045,0,0,1,0,0,0,0,0,3.315461,0.04154791,6.039035,9.396045,0,2867.797,-,-
-1870.5,5402.45051163435,9.99999961853027,9.99999961853027,0,1.166479,593.1891,151.2597,151.2597,1264.632,-148.1703,9.396045,78.55721,-9.204132,9.396045,0,0,1,0,0,0,0,0,3.315461,0.04154791,6.039035,9.396045,0,2867.797,-,-
-1871.5,5405.22828930616,9.99999961853027,9.99999961853027,0,1.166479,593.1891,151.2597,151.2597,1264.632,-148.1703,9.396045,78.55721,-9.204132,9.396045,0,0,1,0,0,0,0,0,3.315461,0.04154791,6.039035,9.396045,0,2867.797,-,-
-1872.5,5408.00606697798,9.99999961853027,9.99999961853027,0,1.166479,593.1891,151.2597,151.2597,1264.632,-148.1703,9.396045,78.55721,-9.204132,9.396045,0,0,1,0,0,0,0,0,3.315461,0.04154791,6.039035,9.396045,0,2867.797,-,-
-1873.5,5410.78384464979,9.99999961853027,9.99999961853027,0,1.166479,593.1891,151.2597,151.2597,1264.632,-148.1703,9.396045,78.55721,-9.204132,9.396045,0,0,1,0,0,0,0,0,3.315461,0.04154791,6.039035,9.396045,0,2867.797,-,-
-1874.5,5413.56162232161,9.99999961853027,9.99999961853027,0,1.166479,593.1891,151.2597,151.2597,1264.632,-148.1703,9.396045,78.55721,-9.204132,9.396045,0,0,1,0,0,0,0,0,3.315461,0.04154791,6.039035,9.396045,0,2867.797,-,-
-1875.5,5416.33939999342,9.99999961853027,9.99999961853027,0,1.166479,593.1891,151.2597,151.2597,1264.632,-148.1703,9.396045,78.55721,-9.204132,9.396045,0,0,1,0,0,0,0,0,3.315461,0.04154791,6.039035,9.396045,0,2867.797,-,-
-1876.5,5419.11717766523,9.99999961853027,9.99999961853027,0,1.033718,593.1891,140.197,140.197,1264.632,-148.1703,8.708846,78.55721,-9.204132,8.708846,0,0,1,0,0,0,0,0,3.31551,0.04154791,5.351789,8.708846,0,2762.757,-,-
-1877.5,5421.89495533705,9.99999961853027,9.99999961853027,0,1.033718,593.1891,140.197,140.197,1264.632,-148.1703,8.708846,78.55721,-9.204132,8.708846,0,0,1,0,0,0,0,0,3.31551,0.04154791,5.351789,8.708846,0,2762.757,-,-
-1878.5,5424.67273300886,9.99999961853027,9.99999961853027,0,1.033718,593.1891,140.197,140.197,1264.632,-148.1703,8.708846,78.55721,-9.204132,8.708846,0,0,1,0,0,0,0,0,3.31551,0.04154791,5.351789,8.708846,0,2762.757,-,-
-1879.5,5427.45051068068,9.99999961853027,9.99999961853027,0,1.033718,593.1891,140.197,140.197,1264.632,-148.1703,8.708846,78.55721,-9.204132,8.708846,0,0,1,0,0,0,0,0,3.31551,0.04154791,5.351789,8.708846,0,2762.757,-,-
-1880.5,5430.22828835249,9.99999961853027,9.99999961853027,0,1.033718,593.1891,140.197,140.197,1264.632,-148.1703,8.708846,78.55721,-9.204132,8.708846,0,0,1,0,0,0,0,0,3.31551,0.04154791,5.351789,8.708846,0,2762.757,-,-
-1881.5,5433.0060660243,9.99999961853027,9.99999961853027,0,1.033718,593.1891,140.197,140.197,1264.632,-148.1703,8.708846,78.55721,-9.204132,8.708846,0,0,1,0,0,0,0,0,3.31551,0.04154791,5.351789,8.708846,0,2762.757,-,-
-1882.5,5435.78384369612,9.99999961853027,9.99999961853027,0,1.033718,593.1891,140.197,140.197,1264.632,-148.1703,8.708846,78.55721,-9.204132,8.708846,0,0,1,0,0,0,0,0,3.31551,0.04154791,5.351789,8.708846,0,2762.757,-,-
-1883.5,5438.56162136793,9.99999961853027,9.99999961853027,0,1.033718,593.1891,140.197,140.197,1264.632,-148.1703,8.708846,78.55721,-9.204132,8.708846,0,0,1,0,0,0,0,0,3.31551,0.04154791,5.351789,8.708846,0,2762.757,-,-
-1884.5,5441.33939903975,9.99999961853027,9.99999961853027,0,1.033718,593.1891,140.197,140.197,1264.632,-148.1703,8.708846,78.55721,-9.204132,8.708846,0,0,1,0,0,0,0,0,3.31551,0.04154791,5.351789,8.708846,0,2762.757,-,-
-1885.5,5444.11717671156,9.99999961853027,9.99999961853027,0,1.033718,593.1891,140.197,140.197,1264.632,-148.1703,8.708846,78.55721,-9.204132,8.708846,0,0,1,0,0,0,0,0,3.31551,0.04154791,5.351789,8.708846,0,2762.757,-,-
-1886.5,5446.89495438337,9.99999961853027,9.99999961853027,0,1.033718,593.1891,140.197,140.197,1264.632,-148.1703,8.708846,78.55721,-9.204132,8.708846,0,0,1,0,0,0,0,0,3.31551,0.04154791,5.351789,8.708846,0,2762.757,-,-
-1887.5,5449.67273205519,9.99999961853027,9.99999961853027,0,0.9009566,593.1891,129.1338,129.1338,1264.632,-148.1703,8.021614,78.55721,-9.204132,8.021614,0,0,1,0,0,0,0,0,3.315552,0.04154791,4.664514,8.021614,0,2657.712,-,-
-1888.5,5452.450509727,9.99999961853027,9.99999961853027,0,0.9009566,593.1891,129.1338,129.1338,1264.632,-148.1703,8.021614,78.55721,-9.204132,8.021614,0,0,1,0,0,0,0,0,3.315552,0.04154791,4.664514,8.021614,0,2657.712,-,-
-1889.5,5455.22828739882,9.99999961853027,9.99999961853027,0,0.9009566,593.1891,129.1338,129.1338,1264.632,-148.1703,8.021614,78.55721,-9.204132,8.021614,0,0,1,0,0,0,0,0,3.315552,0.04154791,4.664514,8.021614,0,2657.712,-,-
-1890.5,5458.00606507063,9.99999961853027,9.99999961853027,0,0.9009566,593.1891,129.1338,129.1338,1264.632,-148.1703,8.021614,78.55721,-9.204132,8.021614,0,0,1,0,0,0,0,0,3.315552,0.04154791,4.664514,8.021614,0,2657.712,-,-
-1891.5,5460.78384274244,9.99999961853027,9.99999961853027,0,0.9009566,593.1891,129.1338,129.1338,1264.632,-148.1703,8.021614,78.55721,-9.204132,8.021614,0,0,1,0,0,0,0,0,3.315552,0.04154791,4.664514,8.021614,0,2657.712,-,-
-1892.5,5463.56162041426,9.99999961853027,9.99999961853027,0,0.9009566,593.1891,129.1338,129.1338,1264.632,-148.1703,8.021614,78.55721,-9.204132,8.021614,0,0,1,0,0,0,0,0,3.315552,0.04154791,4.664514,8.021614,0,2657.712,-,-
-1893.5,5466.33939808607,9.99999961853027,9.99999961853027,0,0.9009566,593.1891,129.1338,129.1338,1264.632,-148.1703,8.021614,78.55721,-9.204132,8.021614,0,0,1,0,0,0,0,0,3.315552,0.04154791,4.664514,8.021614,0,2657.712,-,-
-1894.5,5469.11717575789,9.99999961853027,9.99999961853027,0,0.9009566,593.1891,129.1338,129.1338,1264.632,-148.1703,8.021614,78.55721,-9.204132,8.021614,0,0,1,0,0,0,0,0,3.315552,0.04154791,4.664514,8.021614,0,2657.712,-,-
-1895.5,5471.8949534297,9.99999961853027,9.99999961853027,0,0.9009566,593.1891,129.1338,129.1338,1264.632,-148.1703,8.021614,78.55721,-9.204132,8.021614,0,0,1,0,0,0,0,0,3.315552,0.04154791,4.664514,8.021614,0,2657.712,-,-
-1896.5,5474.67273110151,9.99999961853027,9.99999961853027,0,0.9009566,593.1891,129.1338,129.1338,1264.632,-148.1703,8.021614,78.55721,-9.204132,8.021614,0,0,1,0,0,0,0,0,3.315552,0.04154791,4.664514,8.021614,0,2657.712,-,-
-1897.5,5477.45050877333,9.99999961853027,9.99999961853027,0,0.9009566,593.1891,129.1338,129.1338,1264.632,-148.1703,8.021614,78.55721,-9.204132,8.021614,0,0,1,0,0,0,0,0,3.315552,0.04154791,4.664514,8.021614,0,2657.712,-,-
-1898.5,5480.22828644514,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1899.5,5483.00606411695,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1900.5,5485.78384178877,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1901.5,5488.56161946058,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1902.5,5491.3393971324,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1903.5,5494.11717480421,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1904.5,5496.89495247602,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1905.5,5499.67273014784,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1906.5,5502.45050781965,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1907.5,5505.22828549147,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1908.5,5508.00606316328,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1909.5,5510.78384083509,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1910.5,5513.56161850691,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1911.5,5516.33939617872,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1912.5,5519.11717385054,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1913.5,5521.89495152235,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1914.5,5524.67272919416,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1915.5,5527.45050686598,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1916.5,5530.22828453779,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1917.5,5533.00606220961,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1918.5,5535.78383988142,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1919.5,5538.56161755323,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1920.5,5541.33939522505,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1921.5,5544.11717289686,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1922.5,5546.89495056868,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1923.5,5549.67272824049,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1924.5,5552.4505059123,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1925.5,5555.22828358412,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1926.5,5558.00606125593,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1927.5,5560.78383892775,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1928.5,5563.56161659956,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1929.5,5566.33939427137,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1930.5,5569.11717194319,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1931.5,5571.894949615,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1932.5,5574.67272728682,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1933.5,5577.45050495863,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1934.5,5580.22828263044,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1935.5,5583.00606030226,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1936.5,5585.78383797407,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1937.5,5588.56161564589,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1938.5,5591.3393933177,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1939.5,5594.11717098951,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1940.5,5596.89494866133,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1941.5,5599.67272633314,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1942.5,5602.45050400496,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1943.5,5605.22828167677,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1944.5,5608.00605934858,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1945.5,5610.7838370204,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1946.5,5613.56161469221,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1947.5,5616.33939236403,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1948.5,5619.11717003584,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1949.5,5621.89494770765,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1950.5,5624.67272537947,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1951.5,5627.45050305128,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1952.5,5630.22828072309,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1953.5,5633.00605839491,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1954.5,5635.78383606672,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1955.5,5638.56161373854,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1956.5,5641.33939141035,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1957.5,5644.11716908216,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1958.5,5646.89494675398,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1959.5,5649.67272442579,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1960.5,5652.45050209761,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1961.5,5655.22827976942,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1962.5,5658.00605744123,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1963.5,5660.78383511305,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1964.5,5663.56161278486,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1965.5,5666.33939045668,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1966.5,5669.11716812849,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1967.5,5671.8949458003,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1968.5,5674.67272347212,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1969.5,5677.45050114393,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1970.5,5680.22827881575,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1971.5,5683.00605648756,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1972.5,5685.78383415937,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1973.5,5688.56161183119,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1974.5,5691.339389503,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1975.5,5694.11716717482,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1976.5,5696.89494484663,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1977.5,5699.67272251844,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1978.5,5702.45050019026,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1979.5,5705.22827786207,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1980.5,5708.00605553389,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1981.5,5710.7838332057,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1982.5,5713.56161087751,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1983.5,5716.33938854933,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1984.5,5719.11716622114,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1985.5,5721.89494389296,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1986.5,5724.67272156477,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1987.5,5727.45049923658,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1988.5,5730.2282769084,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1989.5,5733.00605458021,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1990.5,5735.78383225203,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1991.5,5738.56160992384,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1992.5,5741.33938759565,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1993.5,5744.11716526747,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1994.5,5746.89494293928,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1995.5,5749.6727206111,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1996.5,5752.45049828291,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1997.5,5755.22827595472,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1998.5,5758.00605362654,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-1999.5,5760.78383129835,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-2000.5,5763.56160897017,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-2001.5,5766.33938664198,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-2002.5,5769.11716431379,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-2003.5,5771.89494198561,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-2004.5,5774.67271965742,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-2005.5,5777.45049732924,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-2006.5,5780.22827500105,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-2007.5,5783.00605267286,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-2008.5,5785.78383034468,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-2009.5,5788.56160801649,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-2010.5,5791.3393856883,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-2011.5,5794.11716336012,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-2012.5,5796.89494103193,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-2013.5,5799.67271870375,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-2014.5,5802.45049637556,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-2015.5,5805.22827404737,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-2016.5,5808.00605171919,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-2017.5,5810.783829391,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-2018.5,5813.56160706282,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-2019.5,5816.33938473463,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-2020.5,5819.11716240644,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-2021.5,5821.89494007826,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-2022.5,5824.67271775007,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-2023.5,5827.45049542189,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-2024.5,5830.2282730937,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-2025.5,5833.00605076551,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-2026.5,5835.78382843733,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-2027.5,5838.56160610914,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-2028.5,5841.33938378096,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-2029.5,5844.11716145277,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-2030.5,5846.89493912458,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-2031.5,5849.6727167964,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-2032.5,5852.45049446821,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-2033.5,5855.22827214003,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-2034.5,5858.00604981184,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-2035.5,5860.78382748365,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-2036.5,5863.56160515547,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-2037.5,5866.33938282728,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-2038.5,5869.1171604991,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-2039.5,5871.89493817091,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-2040.5,5874.67271584272,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-2041.5,5877.45049351454,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-2042.5,5880.22827118635,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-2043.5,5883.00604885817,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-2044.5,5885.78382652998,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-2045.5,5888.56160420179,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-2046.5,5891.33938187361,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-2047.5,5894.11715954542,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-2048.5,5896.89493721724,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-2049.5,5899.67271488905,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-2050.5,5902.45049256086,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-2051.5,5905.22827023268,9.99999961853027,9.99999961853027,0,0.7681953,593.1891,118.0701,118.0701,1264.632,-148.1703,7.334351,78.55721,-9.204132,7.334351,0,0,1,0,0,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2552.662,-,-
-2052.5,5908.00604790449,9.99999961853027,9.99999961853027,0,0.7138201,593.1891,113.5386,113.5386,1264.632,-148.1703,7.052859,78.55721,-9.204132,7.052859,0,0,1,0,0,0,0,0,3.315602,0.04154791,3.695709,7.052859,0,2509.635,-,-
-2053.5,5910.78382557631,9.99999961853027,9.99999961853027,0,0.6594449,593.1891,109.007,109.007,1264.632,-148.1703,6.771364,78.55721,-9.204132,6.771364,0,0,1,0,0,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2466.608,-,-
-2054.5,5913.56160324812,9.99999961853027,9.99999961853027,0,0.6594449,593.1891,109.007,109.007,1264.632,-148.1703,6.771364,78.55721,-9.204132,6.771364,0,0,1,0,0,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2466.608,-,-
-2055.5,5916.33938091993,9.99999961853027,9.99999961853027,0,0.6594449,593.1891,109.007,109.007,1264.632,-148.1703,6.771364,78.55721,-9.204132,6.771364,0,0,1,0,0,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2466.608,-,-
-2056.5,5919.11715859175,9.99999961853027,9.99999961853027,0,0.6594449,593.1891,109.007,109.007,1264.632,-148.1703,6.771364,78.55721,-9.204132,6.771364,0,0,1,0,0,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2466.608,-,-
-2057.5,5921.89493626356,9.99999961853027,9.99999961853027,0,0.6594449,593.1891,109.007,109.007,1264.632,-148.1703,6.771364,78.55721,-9.204132,6.771364,0,0,1,0,0,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2466.608,-,-
-2058.5,5924.67271393538,9.99999961853027,9.99999961853027,0,0.6594449,593.1891,109.007,109.007,1264.632,-148.1703,6.771364,78.55721,-9.204132,6.771364,0,0,1,0,0,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2466.608,-,-
-2059.5,5927.45049160719,9.99999961853027,9.99999961853027,0,0.6594449,593.1891,109.007,109.007,1264.632,-148.1703,6.771364,78.55721,-9.204132,6.771364,0,0,1,0,0,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2466.608,-,-
-2060.5,5930.228269279,9.99999961853027,9.99999961853027,0,0.6594449,593.1891,109.007,109.007,1264.632,-148.1703,6.771364,78.55721,-9.204132,6.771364,0,0,1,0,0,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2466.608,-,-
-2061.5,5933.00604695082,9.99999961853027,9.99999961853027,0,0.6594449,593.1891,109.007,109.007,1264.632,-148.1703,6.771364,78.55721,-9.204132,6.771364,0,0,1,0,0,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2466.608,-,-
-2062.5,5935.78382462263,9.99999961853027,9.99999961853027,0,0.6594449,593.1891,109.007,109.007,1264.632,-148.1703,6.771364,78.55721,-9.204132,6.771364,0,0,1,0,0,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2466.608,-,-
-2063.5,5938.56160229445,9.99999961853027,9.99999961853027,0,0.6594449,593.1891,109.007,109.007,1264.632,-148.1703,6.771364,78.55721,-9.204132,6.771364,0,0,1,0,0,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2466.608,-,-
-2064.5,5941.33937996626,9.99999961853027,9.99999961853027,0,0.6594449,593.1891,109.007,109.007,1264.632,-148.1703,6.771364,78.55721,-9.204132,6.771364,0,0,1,0,0,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2466.608,-,-
-2065.5,5944.11715763807,9.99999961853027,9.99999961853027,0,0.6594449,593.1891,109.007,109.007,1264.632,-148.1703,6.771364,78.55721,-9.204132,6.771364,0,0,1,0,0,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2466.608,-,-
-2066.5,5946.89493530989,9.99999961853027,9.99999961853027,0,0.6594449,593.1891,109.007,109.007,1264.632,-148.1703,6.771364,78.55721,-9.204132,6.771364,0,0,1,0,0,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2466.608,-,-
-2067.5,5949.6727129817,9.99999961853027,9.99999961853027,0,0.6594449,593.1891,109.007,109.007,1264.632,-148.1703,6.771364,78.55721,-9.204132,6.771364,0,0,1,0,0,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2466.608,-,-
-2068.5,5952.45049065351,9.99999961853027,9.99999961853027,0,0.6594449,593.1891,109.007,109.007,1264.632,-148.1703,6.771364,78.55721,-9.204132,6.771364,0,0,1,0,0,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2466.608,-,-
-2069.5,5955.22826832533,9.99999961853027,9.99999961853027,0,0.6594449,593.1891,109.007,109.007,1264.632,-148.1703,6.771364,78.55721,-9.204132,6.771364,0,0,1,0,0,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2466.608,-,-
-2070.5,5958.00604599714,9.99999961853027,9.99999961853027,0,0.6594449,593.1891,109.007,109.007,1264.632,-148.1703,6.771364,78.55721,-9.204132,6.771364,0,0,1,0,0,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2466.608,-,-
-2071.5,5960.78382366896,9.99999961853027,9.99999961853027,0,0.6594449,593.1891,109.007,109.007,1264.632,-148.1703,6.771364,78.55721,-9.204132,6.771364,0,0,1,0,0,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2466.608,-,-
-2072.5,5963.56160134077,9.99999961853027,9.99999961853027,0,0.6594449,593.1891,109.007,109.007,1264.632,-148.1703,6.771364,78.55721,-9.204132,6.771364,0,0,1,0,0,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2466.608,-,-
-2073.5,5966.33937901258,9.99999961853027,9.99999961853027,0,0.6594449,593.1891,109.007,109.007,1264.632,-148.1703,6.771364,78.55721,-9.204132,6.771364,0,0,1,0,0,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2466.608,-,-
-2074.5,5969.1171566844,9.99999961853027,9.99999961853027,0,0.6594449,593.1891,109.007,109.007,1264.632,-148.1703,6.771364,78.55721,-9.204132,6.771364,0,0,1,0,0,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2466.608,-,-
-2075.5,5971.89493435621,9.99999961853027,9.99999961853027,0,0.6594449,593.1891,109.007,109.007,1264.632,-148.1703,6.771364,78.55721,-9.204132,6.771364,0,0,1,0,0,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2466.608,-,-
-2076.5,5974.67271202803,9.99999961853027,9.99999961853027,0,0.6594449,593.1891,109.007,109.007,1264.632,-148.1703,6.771364,78.55721,-9.204132,6.771364,0,0,1,0,0,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2466.608,-,-
-2077.5,5977.45048969984,9.99999961853027,9.99999961853027,0,0.6594449,593.1891,109.007,109.007,1264.632,-148.1703,6.771364,78.55721,-9.204132,6.771364,0,0,1,0,0,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2466.608,-,-
-2078.5,5980.22826737165,9.99999961853027,9.99999961853027,0,0.6594449,593.1891,109.007,109.007,1264.632,-148.1703,6.771364,78.55721,-9.204132,6.771364,0,0,1,0,0,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2466.608,-,-
-2079.5,5983.00604504347,9.99999961853027,9.99999961853027,0,0.6594449,593.1891,109.007,109.007,1264.632,-148.1703,6.771364,78.55721,-9.204132,6.771364,0,0,1,0,0,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2466.608,-,-
-2080.5,5985.78382271528,9.99999961853027,9.99999961853027,0,0.6594449,593.1891,109.007,109.007,1264.632,-148.1703,6.771364,78.55721,-9.204132,6.771364,0,0,1,0,0,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2466.608,-,-
-2081.5,5988.5616003871,9.99999961853027,9.99999961853027,0,0.6594449,593.1891,109.007,109.007,1264.632,-148.1703,6.771364,78.55721,-9.204132,6.771364,0,0,1,0,0,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2466.608,-,-
-2082.5,5991.33937805891,9.99999961853027,9.99999961853027,0,0.6594449,593.1891,109.007,109.007,1264.632,-148.1703,6.771364,78.55721,-9.204132,6.771364,0,0,1,0,0,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2466.608,-,-
-2083.5,5994.11715573072,9.99999961853027,9.99999961853027,0,0.6594449,593.1891,109.007,109.007,1264.632,-148.1703,6.771364,78.55721,-9.204132,6.771364,0,0,1,0,0,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2466.608,-,-
-2084.5,5996.89493340254,9.99999961853027,9.99999961853027,0,0.6594449,593.1891,109.007,109.007,1264.632,-148.1703,6.771364,78.55721,-9.204132,6.771364,0,0,1,0,0,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2466.608,-,-
-2085.5,5999.67271107435,9.99999961853027,9.99999961853027,0,0.6594449,593.1891,109.007,109.007,1264.632,-148.1703,6.771364,78.55721,-9.204132,6.771364,0,0,1,0,0,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2466.608,-,-
-2086.5,6002.45048874617,9.99999961853027,9.99999961853027,0,0.6594449,593.1891,109.007,109.007,1264.632,-148.1703,6.771364,78.55721,-9.204132,6.771364,0,0,1,0,0,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2466.608,-,-
-2087.5,6005.22826641798,9.99999961853027,9.99999961853027,0,0.6594449,593.1891,109.007,109.007,1264.632,-148.1703,6.771364,78.55721,-9.204132,6.771364,0,0,1,0,0,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2466.608,-,-
-2088.5,6008.00604408979,9.99999961853027,9.99999961853027,0,0.6594449,593.1891,109.007,109.007,1264.632,-148.1703,6.771364,78.55721,-9.204132,6.771364,0,0,1,0,0,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2466.608,-,-
-2089.5,6010.78382176161,9.99999961853027,9.99999961853027,0,0.6594449,593.1891,109.007,109.007,1264.632,-148.1703,6.771364,78.55721,-9.204132,6.771364,0,0,1,0,0,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2466.608,-,-
-2090.5,6013.56159943342,9.99999961853027,9.99999961853027,0,0.6594449,593.1891,109.007,109.007,1264.632,-148.1703,6.771364,78.55721,-9.204132,6.771364,0,0,1,0,0,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2466.608,-,-
-2091.5,6016.33937710524,9.99999961853027,9.99999961853027,0,0.6594449,593.1891,109.007,109.007,1264.632,-148.1703,6.771364,78.55721,-9.204132,6.771364,0,0,1,0,0,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2466.608,-,-
-2092.5,6019.11715477705,9.99999961853027,9.99999961853027,0,0.6594449,593.1891,109.007,109.007,1264.632,-148.1703,6.771364,78.55721,-9.204132,6.771364,0,0,1,0,0,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2466.608,-,-
-2093.5,6021.89493244886,9.99999961853027,9.99999961853027,0,0.6594449,593.1891,109.007,109.007,1264.632,-148.1703,6.771364,78.55721,-9.204132,6.771364,0,0,1,0,0,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2466.608,-,-
-2094.5,6024.67271012068,9.99999961853027,9.99999961853027,0,0.6594449,593.1891,109.007,109.007,1264.632,-148.1703,6.771364,78.55721,-9.204132,6.771364,0,0,1,0,0,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2466.608,-,-
-2095.5,6027.45048779249,9.99999961853027,9.99999961853027,0,0.6594449,593.1891,109.007,109.007,1264.632,-148.1703,6.771364,78.55721,-9.204132,6.771364,0,0,1,0,0,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2466.608,-,-
-2096.5,6030.22826546431,9.99999961853027,9.99999961853027,0,0.5532359,593.1891,100.1555,100.1555,1264.632,-148.1703,6.221519,78.55721,-9.204132,6.221519,0,0,1,0,0,0,0,0,3.315636,0.04154791,2.864335,6.221519,0,2382.562,-,-
-2097.5,6033.00604313612,9.99999961853027,9.99999961853027,0,0.5532359,593.1891,100.1555,100.1555,1264.632,-148.1703,6.221519,78.55721,-9.204132,6.221519,0,0,1,0,0,0,0,0,3.315636,0.04154791,2.864335,6.221519,0,2382.562,-,-
-2098.5,6035.78382080793,9.99999961853027,9.99999961853027,0,0.5532359,593.1891,100.1555,100.1555,1264.632,-148.1703,6.221519,78.55721,-9.204132,6.221519,0,0,1,0,0,0,0,0,3.315636,0.04154791,2.864335,6.221519,0,2382.562,-,-
-2099.5,6038.56159847975,9.99999961853027,9.99999961853027,0,0.5532359,593.1891,100.1555,100.1555,1264.632,-148.1703,6.221519,78.55721,-9.204132,6.221519,0,0,1,0,0,0,0,0,3.315636,0.04154791,2.864335,6.221519,0,2382.562,-,-
-2100.5,6041.33937615156,9.99999961853027,9.99999961853027,0,0.5532359,593.1891,100.1555,100.1555,1264.632,-148.1703,6.221519,78.55721,-9.204132,6.221519,0,0,1,0,0,0,0,0,3.315636,0.04154791,2.864335,6.221519,0,2382.562,-,-
-2101.5,6044.11715382338,9.99999961853027,9.99999961853027,0,0.5532359,593.1891,100.1555,100.1555,1264.632,-148.1703,6.221519,78.55721,-9.204132,6.221519,0,0,1,0,0,0,0,0,3.315636,0.04154791,2.864335,6.221519,0,2382.562,-,-
-2102.5,6046.89493149519,9.99999961853027,9.99999961853027,0,0.5532359,593.1891,100.1555,100.1555,1264.632,-148.1703,6.221519,78.55721,-9.204132,6.221519,0,0,1,0,0,0,0,0,3.315636,0.04154791,2.864335,6.221519,0,2382.562,-,-
-2103.5,6049.672709167,9.99999961853027,9.99999961853027,0,0.5532359,593.1891,100.1555,100.1555,1264.632,-148.1703,6.221519,78.55721,-9.204132,6.221519,0,0,1,0,0,0,0,0,3.315636,0.04154791,2.864335,6.221519,0,2382.562,-,-
-2104.5,6052.45048683882,9.99999961853027,9.99999961853027,0,0.5532359,593.1891,100.1555,100.1555,1264.632,-148.1703,6.221519,78.55721,-9.204132,6.221519,0,0,1,0,0,0,0,0,3.315636,0.04154791,2.864335,6.221519,0,2382.562,-,-
-2105.5,6055.22826451063,9.99999961853027,9.99999961853027,0,0.5532359,593.1891,100.1555,100.1555,1264.632,-148.1703,6.221519,78.55721,-9.204132,6.221519,0,0,1,0,0,0,0,0,3.315636,0.04154791,2.864335,6.221519,0,2382.562,-,-
-2106.5,6058.00604218245,9.99999961853027,9.99999961853027,0,0.5532359,593.1891,100.1555,100.1555,1264.632,-148.1703,6.221519,78.55721,-9.204132,6.221519,0,0,1,0,0,0,0,0,3.315636,0.04154791,2.864335,6.221519,0,2382.562,-,-
-2107.5,6060.78381985426,9.99999961853027,9.99999961853027,0,0.5532359,593.1891,100.1555,100.1555,1264.632,-148.1703,6.221519,78.55721,-9.204132,6.221519,0,0,1,0,0,0,0,0,3.315636,0.04154791,2.864335,6.221519,0,2382.562,-,-
-2108.5,6063.56159752607,9.99999961853027,9.99999961853027,0,0.5532359,593.1891,100.1555,100.1555,1264.632,-148.1703,6.221519,78.55721,-9.204132,6.221519,0,0,1,0,0,0,0,0,3.315636,0.04154791,2.864335,6.221519,0,2382.562,-,-
-2109.5,6066.33937519789,9.99999961853027,9.99999961853027,0,0.5532359,593.1891,100.1555,100.1555,1264.632,-148.1703,6.221519,78.55721,-9.204132,6.221519,0,0,1,0,0,0,0,0,3.315636,0.04154791,2.864335,6.221519,0,2382.562,-,-
-2110.5,6069.1171528697,9.99999961853027,9.99999961853027,0,0.5532359,593.1891,100.1555,100.1555,1264.632,-148.1703,6.221519,78.55721,-9.204132,6.221519,0,0,1,0,0,0,0,0,3.315636,0.04154791,2.864335,6.221519,0,2382.562,-,-
-2111.5,6071.89493054152,9.99999961853027,9.99999961853027,0,0.5532359,593.1891,100.1555,100.1555,1264.632,-148.1703,6.221519,78.55721,-9.204132,6.221519,0,0,1,0,0,0,0,0,3.315636,0.04154791,2.864335,6.221519,0,2382.562,-,-
-2112.5,6074.67270821333,9.99999961853027,9.99999961853027,0,0.5532359,593.1891,100.1555,100.1555,1264.632,-148.1703,6.221519,78.55721,-9.204132,6.221519,0,0,1,0,0,0,0,0,3.315636,0.04154791,2.864335,6.221519,0,2382.562,-,-
-2113.5,6077.45048588514,9.99999961853027,9.99999961853027,0,0.5532359,593.1891,100.1555,100.1555,1264.632,-148.1703,6.221519,78.55721,-9.204132,6.221519,0,0,1,0,0,0,0,0,3.315636,0.04154791,2.864335,6.221519,0,2382.562,-,-
-2114.5,6080.22826355696,9.99999961853027,9.99999961853027,0,0.5532359,593.1891,100.1555,100.1555,1264.632,-148.1703,6.221519,78.55721,-9.204132,6.221519,0,0,1,0,0,0,0,0,3.315636,0.04154791,2.864335,6.221519,0,2382.562,-,-
-2115.5,6083.00604122877,9.99999961853027,9.99999961853027,0,0.5532359,593.1891,100.1555,100.1555,1264.632,-148.1703,6.221519,78.55721,-9.204132,6.221519,0,0,1,0,0,0,0,0,3.315636,0.04154791,2.864335,6.221519,0,2382.562,-,-
-2116.5,6085.78381890059,9.99999961853027,9.99999961853027,0,0.5532359,593.1891,100.1555,100.1555,1264.632,-148.1703,6.221519,78.55721,-9.204132,6.221519,0,0,1,0,0,0,0,0,3.315636,0.04154791,2.864335,6.221519,0,2382.562,-,-
-2117.5,6088.5615965724,9.99999961853027,9.99999961853027,0,0.5532359,593.1891,100.1555,100.1555,1264.632,-148.1703,6.221519,78.55721,-9.204132,6.221519,0,0,1,0,0,0,0,0,3.315636,0.04154791,2.864335,6.221519,0,2382.562,-,-
-2118.5,6091.33937424421,9.99999961853027,9.99999961853027,0,0.5532359,593.1891,100.1555,100.1555,1264.632,-148.1703,6.221519,78.55721,-9.204132,6.221519,0,0,1,0,0,0,0,0,3.315636,0.04154791,2.864335,6.221519,0,2382.562,-,-
-2119.5,6094.11715191603,9.99999961853027,9.99999961853027,0,0.5532359,593.1891,100.1555,100.1555,1264.632,-148.1703,6.221519,78.55721,-9.204132,6.221519,0,0,1,0,0,0,0,0,3.315636,0.04154791,2.864335,6.221519,0,2382.562,-,-
-2120.5,6096.89492958784,9.99999961853027,9.99999961853027,0,0.5532359,593.1891,100.1555,100.1555,1264.632,-148.1703,6.221519,78.55721,-9.204132,6.221519,0,0,1,0,0,0,0,0,3.315636,0.04154791,2.864335,6.221519,0,2382.562,-,-
-2121.5,6099.67270725966,9.99999961853027,9.99999961853027,0,0.5532359,593.1891,100.1555,100.1555,1264.632,-148.1703,6.221519,78.55721,-9.204132,6.221519,0,0,1,0,0,0,0,0,3.315636,0.04154791,2.864335,6.221519,0,2382.562,-,-
-2122.5,6102.45048493147,9.99999961853027,9.99999961853027,0,0.5532359,593.1891,100.1555,100.1555,1264.632,-148.1703,6.221519,78.55721,-9.204132,6.221519,0,0,1,0,0,0,0,0,3.315636,0.04154791,2.864335,6.221519,0,2382.562,-,-
-2123.5,6105.22826260328,9.99999961853027,9.99999961853027,0,0.5532359,593.1891,100.1555,100.1555,1264.632,-148.1703,6.221519,78.55721,-9.204132,6.221519,0,0,1,0,0,0,0,0,3.315636,0.04154791,2.864335,6.221519,0,2382.562,-,-
-2124.5,6108.0060402751,9.99999961853027,9.99999961853027,0,0.7021304,593.1891,112.5644,112.5644,1264.632,-148.1703,6.992343,78.55721,-9.204132,6.992343,0,0,1,0,0,0,0,0,3.315605,0.04154791,3.63519,6.992343,0,2500.385,-,-
-2125.5,6110.78381794691,9.99999961853027,9.99999961853027,0,0.8510249,593.1891,124.9728,124.9728,1264.632,-148.1703,7.763136,78.55721,-9.204132,7.763136,0,0,1,0,0,0,0,0,3.315567,0.04154791,4.406022,7.763136,0,2618.203,-,-
-2126.5,6113.56159561872,9.99999961853027,9.99999961853027,0,0.8510249,593.1891,124.9728,124.9728,1264.632,-148.1703,7.763136,78.55721,-9.204132,7.763136,0,0,1,0,0,0,0,0,3.315567,0.04154791,4.406022,7.763136,0,2618.203,-,-
-2127.5,6116.33937329054,9.99999961853027,9.99999961853027,0,0.8510249,593.1891,124.9728,124.9728,1264.632,-148.1703,7.763136,78.55721,-9.204132,7.763136,0,0,1,0,0,0,0,0,3.315567,0.04154791,4.406022,7.763136,0,2618.203,-,-
-2128.5,6119.11715096235,9.99999961853027,9.99999961853027,0,1.056041,593.1891,142.0573,142.0573,1264.632,-148.1703,8.8244,78.55721,-9.204132,8.8244,0,0,1,0,0,0,0,0,3.315502,0.04154791,5.46735,8.8244,0,2780.42,-,-
-2129.5,6121.89492863417,9.99999961853027,9.99999961853027,0,1.056041,593.1891,142.0573,142.0573,1264.632,-148.1703,8.8244,78.55721,-9.204132,8.8244,0,0,1,0,0,0,0,0,3.315502,0.04154791,5.46735,8.8244,0,2780.42,-,-
-2130.5,6124.67270630598,9.99999961853027,9.99999961853027,0,1.056041,593.1891,142.0573,142.0573,1264.632,-148.1703,8.8244,78.55721,-9.204132,8.8244,0,0,1,0,0,0,0,0,3.315502,0.04154791,5.46735,8.8244,0,2780.42,-,-
-2131.5,6127.45048397779,9.99999961853027,9.99999961853027,0,1.056041,593.1891,142.0573,142.0573,1264.632,-148.1703,8.8244,78.55721,-9.204132,8.8244,0,0,1,0,0,0,0,0,3.315502,0.04154791,5.46735,8.8244,0,2780.42,-,-
-2132.5,6130.22826164961,9.99999961853027,9.99999961853027,0,1.261058,593.1891,159.1404,159.1404,1264.632,-148.1703,9.88558,78.55721,-9.204132,9.88558,0,0,1,0,0,0,0,0,3.315423,0.04154791,6.528609,9.88558,0,2942.624,-,-
-2133.5,6133.00603932142,9.99999961853027,9.99999961853027,0,1.261058,593.1891,159.1404,159.1404,1264.632,-148.1703,9.88558,78.55721,-9.204132,9.88558,0,0,1,0,0,0,0,0,3.315423,0.04154791,6.528609,9.88558,0,2942.624,-,-
-2134.5,6135.78381699324,9.99999961853027,9.99999961853027,0,1.261058,593.1891,159.1404,159.1404,1264.632,-148.1703,9.88558,78.55721,-9.204132,9.88558,0,0,1,0,0,0,0,0,3.315423,0.04154791,6.528609,9.88558,0,2942.624,-,-
-2135.5,6138.56159466505,9.99999961853027,9.99999961853027,0,1.363566,593.1891,167.6814,167.6814,1264.632,-148.1703,10.41613,78.55721,-9.204132,10.41613,0,0,1,0,0,0,0,0,3.315378,0.04154791,7.059208,10.41613,0,3023.72,-,-
-2136.5,6141.33937233686,9.99999961853027,9.99999961853027,0,1.466075,593.1891,176.222,176.222,1264.632,-148.1703,10.94666,78.55721,-9.204132,10.94666,0,0,1,0,0,0,0,0,3.315331,0.04154791,7.589786,10.94666,0,3104.814,-,-
-2137.5,6144.11715000868,9.99999961853027,9.99999961853027,0,1.466075,593.1891,176.222,176.222,1264.632,-148.1703,10.94666,78.55721,-9.204132,10.94666,0,0,1,0,0,0,0,0,3.315331,0.04154791,7.589786,10.94666,0,3104.814,-,-
-2138.5,6146.89492768049,9.99999961853027,9.99999961853027,0,1.466075,593.1891,176.222,176.222,1264.632,-148.1703,10.94666,78.55721,-9.204132,10.94666,0,0,1,0,0,0,0,0,3.315331,0.04154791,7.589786,10.94666,0,3104.814,-,-
-2139.5,6149.67270535231,9.99999961853027,9.99999961853027,0,1.671091,593.1891,193.3018,193.3018,1264.632,-148.1703,12.00764,78.55721,-9.204132,12.00764,0,0,1,0,0,0,0,0,3.315224,0.04154791,8.650867,12.00764,0,3266.986,-,-
-2140.5,6152.45048302412,9.99999961853027,9.99999961853027,0,1.671091,593.1891,193.3018,193.3018,1264.632,-148.1703,12.00764,78.55721,-9.204132,12.00764,0,0,1,0,0,0,0,0,3.315224,0.04154791,8.650867,12.00764,0,3266.986,-,-
-2141.5,6155.22826069593,9.99999961853027,9.99999961853027,0,1.671091,593.1891,193.3018,193.3018,1264.632,-148.1703,12.00764,78.55721,-9.204132,12.00764,0,0,1,0,0,0,0,0,3.315224,0.04154791,8.650867,12.00764,0,3266.986,-,-
-2142.5,6158.00603836775,9.99999961853027,9.99999961853027,0,1.7736,593.1891,201.8409,201.8409,1264.632,-148.1703,12.53808,78.55721,-9.204132,12.53808,0,0,1,0,0,0,0,0,3.315165,0.04154791,9.181367,12.53808,0,3349.897,-,-
-2143.5,6160.78381603956,9.99999961853027,9.99999961853027,0,1.876108,593.1891,210.3796,210.3796,1264.632,-148.1703,13.06849,78.55721,-9.204132,13.06849,0,0,1,0,0,0,0,0,3.315103,0.04154791,9.711839,13.06849,0,3439.468,-,-
-2144.5,6163.56159371138,9.99999961853027,9.99999961853027,0,1.876108,593.1891,210.3796,210.3796,1264.632,-148.1703,13.06849,78.55721,-9.204132,13.06849,0,0,1,0,0,0,0,0,3.315103,0.04154791,9.711839,13.06849,0,3439.468,-,-
-2145.5,6166.33937138319,9.99999961853027,9.99999961853027,0,1.876108,593.1891,210.3796,210.3796,1264.632,-148.1703,13.06849,78.55721,-9.204132,13.06849,0,0,1,0,0,0,0,0,3.315103,0.04154791,9.711839,13.06849,0,3439.468,-,-
-2146.5,6169.117149055,9.99999961853027,9.99999961853027,0,2.081125,593.1891,227.4553,227.4553,1264.632,-148.1703,14.12921,78.55721,-9.204132,14.12921,0,0,1,0,0,0,0,0,3.314969,0.04154791,10.77269,14.12921,0,3618.592,-,-
-2147.5,6171.89492672682,9.99999961853027,9.99999961853027,0,2.081125,593.1891,227.4553,227.4553,1264.632,-148.1703,14.12921,78.55721,-9.204132,14.12921,0,0,1,0,0,0,0,0,3.314969,0.04154791,10.77269,14.12921,0,3618.592,-,-
-2148.5,6174.67270439863,9.99999961853027,9.99999961853027,0,2.081125,593.1891,227.4553,227.4553,1264.632,-148.1703,14.12921,78.55721,-9.204132,14.12921,0,0,1,0,0,0,0,0,3.314969,0.04154791,10.77269,14.12921,0,3618.592,-,-
-2149.5,6177.45048207045,9.99999961853027,9.99999961853027,0,2.081125,593.1891,227.4553,227.4553,1264.632,-148.1703,14.12921,78.55721,-9.204132,14.12921,0,0,1,0,0,0,0,0,3.314969,0.04154791,10.77269,14.12921,0,3618.592,-,-
-2150.5,6180.22825974226,9.99999961853027,9.99999961853027,0,2.286141,593.1891,244.5285,244.5285,1264.632,-148.1703,15.18977,78.55721,-9.204132,15.18977,0,0,1,0,0,0,0,0,3.314821,0.04154791,11.8334,15.18977,0,3799.889,-,-
-2151.5,6183.00603741407,9.99999961853027,9.99999961853027,0,2.286141,593.1891,244.5285,244.5285,1264.632,-148.1703,15.18977,78.55721,-9.204132,15.18977,0,0,1,0,0,0,0,0,3.314821,0.04154791,11.8334,15.18977,0,3799.889,-,-
-2152.5,6185.78381508589,9.99999961853027,9.99999961853027,0,2.286141,593.1891,244.5285,244.5285,1264.632,-148.1703,15.18977,78.55721,-9.204132,15.18977,0,0,1,0,0,0,0,0,3.314821,0.04154791,11.8334,15.18977,0,3799.889,-,-
-2153.5,6188.5615927577,9.99999961853027,9.99999961853027,0,2.388649,593.1891,253.0641,253.0641,1264.632,-148.1703,15.71999,78.55721,-9.204132,15.71999,0,0,1,0,0,0,0,0,3.314741,0.04154791,12.3637,15.71999,0,3891.221,-,-
-2154.5,6191.33937042952,9.99999961853027,9.99999961853027,0,2.491158,593.1891,261.5991,261.5991,1264.632,-148.1703,16.25017,78.55721,-9.204132,16.25017,0,0,1,0,0,0,0,0,3.314658,0.04154791,12.89397,16.25017,0,3982.545,-,-
-2155.5,6194.11714810133,9.99999961853027,9.99999961853027,0,2.491158,593.1891,261.5991,261.5991,1264.632,-148.1703,16.25017,78.55721,-9.204132,16.25017,0,0,1,0,0,0,0,0,3.314658,0.04154791,12.89397,16.25017,0,3982.545,-,-
-2156.5,6196.89492577314,9.99999961853027,9.99999961853027,0,2.491158,593.1891,261.5991,261.5991,1264.632,-148.1703,16.25017,78.55721,-9.204132,16.25017,0,0,1,0,0,0,0,0,3.314658,0.04154791,12.89397,16.25017,0,3982.545,-,-
-2157.5,6199.67270344496,9.99999961853027,9.99999961853027,0,2.691878,593.1891,278.3092,278.3092,1264.632,-148.1703,17.28819,78.55721,-9.204132,17.28819,0,0,1,0,0,0,0,0,3.314486,0.04154791,13.93215,17.28819,0,4161.343,-,-
-2158.5,6202.45048111677,9.99999961853027,9.99999961853027,0,2.691878,593.1891,278.3092,278.3092,1264.632,-148.1703,17.28819,78.55721,-9.204132,17.28819,0,0,1,0,0,0,0,0,3.314486,0.04154791,13.93215,17.28819,0,4161.343,-,-
-2159.5,6205.22825878859,9.99999961853027,9.99999961853027,0,2.691878,593.1891,278.3092,278.3092,1264.632,-148.1703,17.28819,78.55721,-9.204132,17.28819,0,0,1,0,0,0,0,0,3.314486,0.04154791,13.93215,17.28819,0,4161.343,-,-
-2160.5,6208.0060364604,9.99999961853027,9.99999961853027,0,2.783646,593.1891,285.9481,285.9481,1264.632,-148.1703,17.7627,78.55721,-9.204132,17.7627,0,0,1,0,0,0,0,0,3.314403,0.04154791,14.40675,17.7627,0,4243.079,-,-
-2161.5,6210.78381413221,9.99999961853027,9.99999961853027,0,2.875415,593.1891,293.5863,293.5863,1264.632,-148.1703,18.23717,78.55721,-9.204132,18.23717,0,0,1,0,0,0,0,0,3.314317,0.04154791,14.88131,18.23717,0,4324.808,-,-
-2162.5,6213.56159180403,9.99999961853027,9.99999961853027,0,2.875415,593.1891,293.5863,293.5863,1264.632,-148.1703,18.23717,78.55721,-9.204132,18.23717,0,0,1,0,0,0,0,0,3.314317,0.04154791,14.88131,18.23717,0,4324.808,-,-
-2163.5,6216.33936947584,9.99999961853027,9.99999961853027,0,2.875415,593.1891,293.5863,293.5863,1264.632,-148.1703,18.23717,78.55721,-9.204132,18.23717,0,0,1,0,0,0,0,0,3.314317,0.04154791,14.88131,18.23717,0,4324.808,-,-
-2164.5,6219.11714714766,9.99999961853027,9.99999961853027,0,3.058952,593.1891,308.8607,308.8607,1264.632,-148.1703,19.186,78.55721,-9.204132,19.186,0,0,1,0,0,0,0,0,3.314137,0.04154791,15.83032,19.186,0,4488.244,-,-
-2165.5,6221.89492481947,9.99999961853027,9.99999961853027,0,3.058952,593.1891,308.8607,308.8607,1264.632,-148.1703,19.186,78.55721,-9.204132,19.186,0,0,1,0,0,0,0,0,3.314137,0.04154791,15.83032,19.186,0,4488.244,-,-
-2166.5,6224.67270249128,9.99999961853027,9.99999961853027,0,3.058952,593.1891,308.8607,308.8607,1264.632,-148.1703,19.186,78.55721,-9.204132,19.186,0,0,1,0,0,0,0,0,3.314137,0.04154791,15.83032,19.186,0,4488.244,-,-
-2167.5,6227.4504801631,9.99999961853027,9.99999961853027,0,3.058952,593.1891,308.8607,308.8607,1264.632,-148.1703,19.186,78.55721,-9.204132,19.186,0,0,1,0,0,0,0,0,3.314137,0.04154791,15.83032,19.186,0,4488.244,-,-
-2168.5,6230.22825783491,9.99999961853027,9.99999961853027,0,3.242488,593.1891,324.1324,324.1324,1264.632,-148.1703,20.13466,78.55721,-9.204132,20.13466,0,0,1,0,0,0,0,0,3.313945,0.04154791,16.77916,20.13466,0,4651.651,-,-
-2169.5,6233.00603550673,9.99999961853027,9.99999961853027,0,3.242488,593.1891,324.1324,324.1324,1264.632,-148.1703,20.13466,78.55721,-9.204132,20.13466,0,0,1,0,0,0,0,0,3.313945,0.04154791,16.77916,20.13466,0,4651.651,-,-
-2170.5,6235.78381317854,9.99999961853027,9.99999961853027,0,3.242488,593.1891,324.1324,324.1324,1264.632,-148.1703,20.13466,78.55721,-9.204132,20.13466,0,0,1,0,0,0,0,0,3.313945,0.04154791,16.77916,20.13466,0,4651.651,-,-
-2171.5,6238.56159085035,9.99999961853027,9.99999961853027,0,3.334257,593.1891,331.7672,331.7672,1264.632,-148.1703,20.60892,78.55721,-9.204132,20.60892,0,0,1,0,0,0,0,0,3.313845,0.04154791,17.25352,20.60892,0,4733.343,-,-
-2172.5,6241.33936852217,9.99999961853027,9.99999961853027,0,3.426025,593.1891,339.4012,339.4012,1264.632,-148.1703,21.08313,78.55721,-9.204132,21.08313,0,0,1,0,0,0,0,0,3.313742,0.04154791,17.72784,21.08313,0,4815.028,-,-
-2173.5,6244.11714619398,9.99999961853027,9.99999961853027,0,3.426025,593.1891,339.4012,339.4012,1264.632,-148.1703,21.08313,78.55721,-9.204132,21.08313,0,0,1,0,0,0,0,0,3.313742,0.04154791,17.72784,21.08313,0,4815.028,-,-
-2174.5,6246.8949238658,9.99999961853027,9.99999961853027,0,3.426025,593.1891,339.4012,339.4012,1264.632,-148.1703,21.08313,78.55721,-9.204132,21.08313,0,0,1,0,0,0,0,0,3.313742,0.04154791,17.72784,21.08313,0,4815.028,-,-
-2175.5,6249.67270153761,9.99999961853027,9.99999961853027,0,3.609561,593.1891,354.6669,354.6669,1264.632,-148.1703,22.03142,78.55721,-9.204132,22.03142,0,0,1,0,0,0,0,0,3.313529,0.04154791,18.67634,22.03142,0,4978.371,-,-
-2176.5,6252.45047920942,9.99999961853027,9.99999961853027,0,3.609561,593.1891,354.6669,354.6669,1264.632,-148.1703,22.03142,78.55721,-9.204132,22.03142,0,0,1,0,0,0,0,0,3.313529,0.04154791,18.67634,22.03142,0,4978.371,-,-
-2177.5,6255.22825688124,9.99999961853027,9.99999961853027,0,3.609561,593.1891,354.6669,354.6669,1264.632,-148.1703,22.03142,78.55721,-9.204132,22.03142,0,0,1,0,0,0,0,0,3.313529,0.04154791,18.67634,22.03142,0,4978.371,-,-
-2178.5,6258.00603455305,9.99999961853027,9.99999961853027,0,3.70133,593.1891,362.2986,362.2986,1264.632,-148.1703,22.50549,78.55721,-9.204132,22.50549,0,0,1,0,0,0,0,0,3.313418,0.04154791,19.15052,22.50549,0,5060.029,-,-
-2179.5,6260.78381222487,9.99999961853027,9.99999961853027,0,3.793098,593.1891,369.9295,369.9295,1264.632,-148.1703,22.97951,78.55721,-9.204132,22.97951,0,0,1,0,0,0,0,0,3.313304,0.04154791,19.62465,22.97951,0,5141.68,-,-
-2180.5,6263.56158989668,9.99999961853027,9.99999961853027,0,3.793098,593.1891,369.9295,369.9295,1264.632,-148.1703,22.97951,78.55721,-9.204132,22.97951,0,0,1,0,0,0,0,0,3.313304,0.04154791,19.62465,22.97951,0,5141.68,-,-
-2181.5,6266.33936756849,9.99999961853027,9.99999961853027,0,3.793098,593.1891,369.9295,369.9295,1264.632,-148.1703,22.97951,78.55721,-9.204132,22.97951,0,0,1,0,0,0,0,0,3.313304,0.04154791,19.62465,22.97951,0,5141.68,-,-
-2182.5,6269.11714524031,9.99999961853027,9.99999961853027,0,3.976635,593.1891,385.1886,385.1886,1264.632,-148.1703,23.92738,78.55721,-9.204132,23.92738,0,0,1,0,0,0,0,0,3.313068,0.04154791,20.57277,23.92738,0,5304.953,-,-
-2183.5,6271.89492291212,9.99999961853027,9.99999961853027,0,3.976635,593.1891,385.1886,385.1886,1264.632,-148.1703,23.92738,78.55721,-9.204132,23.92738,0,0,1,0,0,0,0,0,3.313068,0.04154791,20.57277,23.92738,0,5304.953,-,-
-2184.5,6274.67270058393,9.99999961853027,9.99999961853027,0,3.976635,593.1891,385.1886,385.1886,1264.632,-148.1703,23.92738,78.55721,-9.204132,23.92738,0,0,1,0,0,0,0,0,3.313068,0.04154791,20.57277,23.92738,0,5304.953,-,-
-2185.5,6277.45047825575,9.99999961853027,9.99999961853027,0,3.976635,593.1891,385.1886,385.1886,1264.632,-148.1703,23.92738,78.55721,-9.204132,23.92738,0,0,1,0,0,0,0,0,3.313068,0.04154791,20.57277,23.92738,0,5304.953,-,-
-2186.5,6280.22825592756,9.99999961853027,9.99999961853027,0,4.160172,593.1891,400.4442,400.4442,1264.632,-148.1703,24.87504,78.55721,-9.204132,24.87504,0,0,1,0,0,0,0,0,3.312821,0.04154791,21.52067,24.87504,0,5468.588,-,-
-2187.5,6283.00603359938,9.99999961853027,9.99999961853027,0,4.160172,593.1891,400.4442,400.4442,1264.632,-148.1703,24.87504,78.55721,-9.204132,24.87504,0,0,1,0,0,0,0,0,3.312821,0.04154791,21.52067,24.87504,0,5468.588,-,-
-2188.5,6285.78381127119,9.99999961853027,9.99999961853027,0,4.160172,593.1891,400.4442,400.4442,1264.632,-148.1703,24.87504,78.55721,-9.204132,24.87504,0,0,1,0,0,0,0,0,3.312821,0.04154791,21.52067,24.87504,0,5468.588,-,-
-2189.5,6288.561588943,9.99999961853027,9.99999961853027,0,4.25194,593.1891,408.0707,408.0707,1264.632,-148.1703,25.34879,78.55721,-9.204132,25.34879,0,0,1,0,0,0,0,0,3.312694,0.04154791,21.99454,25.34879,0,5557.055,-,-
-2190.5,6291.33936661482,9.99999961853027,9.99999961853027,0,4.343708,593.1891,415.6962,415.6962,1264.632,-148.1703,25.82247,78.55721,-9.204132,25.82247,0,0,1,0,0,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,5645.511,-,-
-2191.5,6294.11714428663,9.99999961853027,9.99999961853027,0,4.343708,593.1891,415.6962,415.6962,1264.632,-148.1703,25.82247,78.55721,-9.204132,25.82247,0,0,1,0,0,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,5645.511,-,-
-2192.5,6296.89492195845,9.99999961853027,9.99999961853027,0,4.343708,593.1891,415.6962,415.6962,1264.632,-148.1703,25.82247,78.55721,-9.204132,25.82247,0,0,1,0,0,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,5645.511,-,-
-2193.5,6299.67269963026,9.99999961853027,9.99999961853027,0,4.343708,593.1891,415.6962,415.6962,1264.632,-148.1703,25.82247,78.55721,-9.204132,25.82247,0,0,1,0,0,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,5645.511,-,-
-2194.5,6302.45047730207,9.99999961853027,9.99999961853027,0,4.343708,593.1891,415.6962,415.6962,1264.632,-148.1703,25.82247,78.55721,-9.204132,25.82247,0,0,1,0,0,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,5645.511,-,-
-2195.5,6305.22825497389,9.99999961853027,9.99999961853027,0,4.343708,593.1891,415.6962,415.6962,1264.632,-148.1703,25.82247,78.55721,-9.204132,25.82247,0,0,1,0,0,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,5645.511,-,-
-2196.5,6308.0060326457,9.99999961853027,9.99999961853027,0,4.343708,593.1891,415.6962,415.6962,1264.632,-148.1703,25.82247,78.55721,-9.204132,25.82247,0,0,1,0,0,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,5645.511,-,-
-2197.5,6310.78381031752,9.99999961853027,9.99999961853027,0,4.343708,593.1891,415.6962,415.6962,1264.632,-148.1703,25.82247,78.55721,-9.204132,25.82247,0,0,1,0,0,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,5645.511,-,-
-2198.5,6313.56158798933,9.99999961853027,9.99999961853027,0,4.343708,593.1891,415.6962,415.6962,1264.632,-148.1703,25.82247,78.55721,-9.204132,25.82247,0,0,1,0,0,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,5645.511,-,-
-2199.5,6316.33936566114,9.99999961853027,9.99999961853027,0,4.343708,593.1891,415.6962,415.6962,1264.632,-148.1703,25.82247,78.55721,-9.204132,25.82247,0,0,1,0,0,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,5645.511,-,-
-2200.5,6319.11714333296,9.99999961853027,9.99999961853027,0,4.343708,593.1891,415.6962,415.6962,1264.632,-148.1703,25.82247,78.55721,-9.204132,25.82247,0,0,1,0,0,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,5645.511,-,-
-2201.5,6321.89492100477,9.99999961853027,9.99999961853027,0,4.343708,593.1891,415.6962,415.6962,1264.632,-148.1703,25.82247,78.55721,-9.204132,25.82247,0,0,1,0,0,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,5645.511,-,-
-2202.5,6324.67269867659,9.99999961853027,9.99999961853027,0,4.343708,593.1891,415.6962,415.6962,1264.632,-148.1703,25.82247,78.55721,-9.204132,25.82247,0,0,1,0,0,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,5645.511,-,-
-2203.5,6327.4504763484,9.99999961853027,9.99999961853027,0,4.343708,593.1891,415.6962,415.6962,1264.632,-148.1703,25.82247,78.55721,-9.204132,25.82247,0,0,1,0,0,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,5645.511,-,-
-2204.5,6330.22825402021,9.99999961853027,9.99999961853027,0,4.343708,593.1891,415.6962,415.6962,1264.632,-148.1703,25.82247,78.55721,-9.204132,25.82247,0,0,1,0,0,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,5645.511,-,-
-2205.5,6333.00603169203,9.99999961853027,9.99999961853027,0,4.343708,593.1891,415.6962,415.6962,1264.632,-148.1703,25.82247,78.55721,-9.204132,25.82247,0,0,1,0,0,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,5645.511,-,-
-2206.5,6335.78380936384,9.99999961853027,9.99999961853027,0,4.343708,593.1891,415.6962,415.6962,1264.632,-148.1703,25.82247,78.55721,-9.204132,25.82247,0,0,1,0,0,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,5645.511,-,-
-2207.5,6338.56158703566,9.99999961853027,9.99999961853027,0,4.343708,593.1891,415.6962,415.6962,1264.632,-148.1703,25.82247,78.55721,-9.204132,25.82247,0,0,1,0,0,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,5645.511,-,-
-2208.5,6341.33936470747,9.99999961853027,9.99999961853027,0,4.343708,593.1891,415.6962,415.6962,1264.632,-148.1703,25.82247,78.55721,-9.204132,25.82247,0,0,1,0,0,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,5645.511,-,-
-2209.5,6344.11714237928,9.99999961853027,9.99999961853027,0,4.343708,593.1891,415.6962,415.6962,1264.632,-148.1703,25.82247,78.55721,-9.204132,25.82247,0,0,1,0,0,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,5645.511,-,-
-2210.5,6346.8949200511,9.99999961853027,9.99999961853027,0,4.343708,593.1891,415.6962,415.6962,1264.632,-148.1703,25.82247,78.55721,-9.204132,25.82247,0,0,1,0,0,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,5645.511,-,-
-2211.5,6349.67269772291,9.99999961853027,9.99999961853027,0,4.343708,593.1891,415.6962,415.6962,1264.632,-148.1703,25.82247,78.55721,-9.204132,25.82247,0,0,1,0,0,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,5645.511,-,-
-2212.5,6352.45047539473,9.99999961853027,9.99999961853027,0,4.343708,593.1891,415.6962,415.6962,1264.632,-148.1703,25.82247,78.55721,-9.204132,25.82247,0,0,1,0,0,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,5645.511,-,-
-2213.5,6355.22825306654,9.99999961853027,9.99999961853027,0,4.343708,593.1891,415.6962,415.6962,1264.632,-148.1703,25.82247,78.55721,-9.204132,25.82247,0,0,1,0,0,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,5645.511,-,-
-2214.5,6358.00603073835,9.99999961853027,9.99999961853027,0,4.343708,593.1891,415.6962,415.6962,1264.632,-148.1703,25.82247,78.55721,-9.204132,25.82247,0,0,1,0,0,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,5645.511,-,-
-2215.5,6360.78380841017,9.99999961853027,9.99999961853027,0,4.343708,593.1891,415.6962,415.6962,1264.632,-148.1703,25.82247,78.55721,-9.204132,25.82247,0,0,1,0,0,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,5645.511,-,-
-2216.5,6363.56158608198,9.99999961853027,9.99999961853027,0,4.343708,593.1891,415.6962,415.6962,1264.632,-148.1703,25.82247,78.55721,-9.204132,25.82247,0,0,1,0,0,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,5645.511,-,-
-2217.5,6366.3393637538,9.99999961853027,9.99999961853027,0,4.343708,593.1891,415.6962,415.6962,1264.632,-148.1703,25.82247,78.55721,-9.204132,25.82247,0,0,1,0,0,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,5645.511,-,-
-2218.5,6369.11714142561,9.99999961853027,9.99999961853027,0,4.343708,593.1891,415.6962,415.6962,1264.632,-148.1703,25.82247,78.55721,-9.204132,25.82247,0,0,1,0,0,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,5645.511,-,-
-2219.5,6371.89491909742,9.99999961853027,9.99999961853027,0,4.343708,593.1891,415.6962,415.6962,1264.632,-148.1703,25.82247,78.55721,-9.204132,25.82247,0,0,1,0,0,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,5645.511,-,-
-2220.5,6374.67269676924,9.99999961853027,9.99999961853027,0,4.343708,593.1891,415.6962,415.6962,1264.632,-148.1703,25.82247,78.55721,-9.204132,25.82247,0,0,1,0,0,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,5645.511,-,-
-2221.5,6377.45047444105,9.99999961853027,9.99999961853027,0,4.343708,593.1891,415.6962,415.6962,1264.632,-148.1703,25.82247,78.55721,-9.204132,25.82247,0,0,1,0,0,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,5645.511,-,-
-2222.5,6380.22825211287,9.99999961853027,9.99999961853027,0,4.232448,593.1891,406.4509,406.4509,1264.632,-148.1703,25.24817,78.55721,-9.204132,25.24817,0,0,1,0,0,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5538.265,-,-
-2223.5,6383.00602978468,9.99999961853027,9.99999961853027,0,4.232448,593.1891,406.4509,406.4509,1264.632,-148.1703,25.24817,78.55721,-9.204132,25.24817,0,0,1,0,0,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5538.265,-,-
-2224.5,6385.78380745649,9.99999961853027,9.99999961853027,0,4.232448,593.1891,406.4509,406.4509,1264.632,-148.1703,25.24817,78.55721,-9.204132,25.24817,0,0,1,0,0,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5538.265,-,-
-2225.5,6388.56158512831,9.99999961853027,9.99999961853027,0,4.232448,593.1891,406.4509,406.4509,1264.632,-148.1703,25.24817,78.55721,-9.204132,25.24817,0,0,1,0,0,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5538.265,-,-
-2226.5,6391.33936280012,9.99999961853027,9.99999961853027,0,4.232448,593.1891,406.4509,406.4509,1264.632,-148.1703,25.24817,78.55721,-9.204132,25.24817,0,0,1,0,0,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5538.265,-,-
-2227.5,6394.11714047194,9.99999961853027,9.99999961853027,0,4.232448,593.1891,406.4509,406.4509,1264.632,-148.1703,25.24817,78.55721,-9.204132,25.24817,0,0,1,0,0,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5538.265,-,-
-2228.5,6396.89491814375,9.99999961853027,9.99999961853027,0,4.232448,593.1891,406.4509,406.4509,1264.632,-148.1703,25.24817,78.55721,-9.204132,25.24817,0,0,1,0,0,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5538.265,-,-
-2229.5,6399.67269581556,9.99999961853027,9.99999961853027,0,4.232448,593.1891,406.4509,406.4509,1264.632,-148.1703,25.24817,78.55721,-9.204132,25.24817,0,0,1,0,0,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5538.265,-,-
-2230.5,6402.45047348738,9.99999961853027,9.99999961853027,0,4.232448,593.1891,406.4509,406.4509,1264.632,-148.1703,25.24817,78.55721,-9.204132,25.24817,0,0,1,0,0,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5538.265,-,-
-2231.5,6405.22825115919,9.99999961853027,9.99999961853027,0,4.232448,593.1891,406.4509,406.4509,1264.632,-148.1703,25.24817,78.55721,-9.204132,25.24817,0,0,1,0,0,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5538.265,-,-
-2232.5,6408.00602883101,9.99999961853027,9.99999961853027,0,4.232448,593.1891,406.4509,406.4509,1264.632,-148.1703,25.24817,78.55721,-9.204132,25.24817,0,0,1,0,0,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5538.265,-,-
-2233.5,6410.78380650282,9.99999961853027,9.99999961853027,0,4.232448,593.1891,406.4509,406.4509,1264.632,-148.1703,25.24817,78.55721,-9.204132,25.24817,0,0,1,0,0,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5538.265,-,-
-2234.5,6413.56158417463,9.99999961853027,9.99999961853027,0,4.232448,593.1891,406.4509,406.4509,1264.632,-148.1703,25.24817,78.55721,-9.204132,25.24817,0,0,1,0,0,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5538.265,-,-
-2235.5,6416.33936184645,9.99999961853027,9.99999961853027,0,4.232448,593.1891,406.4509,406.4509,1264.632,-148.1703,25.24817,78.55721,-9.204132,25.24817,0,0,1,0,0,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5538.265,-,-
-2236.5,6419.11713951826,9.99999961853027,9.99999961853027,0,4.232448,593.1891,406.4509,406.4509,1264.632,-148.1703,25.24817,78.55721,-9.204132,25.24817,0,0,1,0,0,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5538.265,-,-
-2237.5,6421.89491719007,9.99999961853027,9.99999961853027,0,4.232448,593.1891,406.4509,406.4509,1264.632,-148.1703,25.24817,78.55721,-9.204132,25.24817,0,0,1,0,0,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5538.265,-,-
-2238.5,6424.67269486189,9.99999961853027,9.99999961853027,0,4.232448,593.1891,406.4509,406.4509,1264.632,-148.1703,25.24817,78.55721,-9.204132,25.24817,0,0,1,0,0,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5538.265,-,-
-2239.5,6427.4504725337,9.99999961853027,9.99999961853027,0,4.232448,593.1891,406.4509,406.4509,1264.632,-148.1703,25.24817,78.55721,-9.204132,25.24817,0,0,1,0,0,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5538.265,-,-
-2240.5,6430.22825020552,9.99999961853027,9.99999961853027,0,4.232448,593.1891,406.4509,406.4509,1264.632,-148.1703,25.24817,78.55721,-9.204132,25.24817,0,0,1,0,0,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5538.265,-,-
-2241.5,6433.00602787733,9.99999961853027,9.99999961853027,0,4.232448,593.1891,406.4509,406.4509,1264.632,-148.1703,25.24817,78.55721,-9.204132,25.24817,0,0,1,0,0,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5538.265,-,-
-2242.5,6435.78380554914,9.99999961853027,9.99999961853027,0,4.232448,593.1891,406.4509,406.4509,1264.632,-148.1703,25.24817,78.55721,-9.204132,25.24817,0,0,1,0,0,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5538.265,-,-
-2243.5,6438.56158322096,9.99999961853027,9.99999961853027,0,4.232448,593.1891,406.4509,406.4509,1264.632,-148.1703,25.24817,78.55721,-9.204132,25.24817,0,0,1,0,0,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5538.265,-,-
-2244.5,6441.33936089277,9.99999961853027,9.99999961853027,0,4.232448,593.1891,406.4509,406.4509,1264.632,-148.1703,25.24817,78.55721,-9.204132,25.24817,0,0,1,0,0,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5538.265,-,-
-2245.5,6444.11713856459,9.99999961853027,9.99999961853027,0,4.232448,593.1891,406.4509,406.4509,1264.632,-148.1703,25.24817,78.55721,-9.204132,25.24817,0,0,1,0,0,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5538.265,-,-
-2246.5,6446.8949162364,9.99999961853027,9.99999961853027,0,4.232448,593.1891,406.4509,406.4509,1264.632,-148.1703,25.24817,78.55721,-9.204132,25.24817,0,0,1,0,0,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5538.265,-,-
-2247.5,6449.67269390821,9.99999961853027,9.99999961853027,0,4.232448,593.1891,406.4509,406.4509,1264.632,-148.1703,25.24817,78.55721,-9.204132,25.24817,0,0,1,0,0,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5538.265,-,-
-2248.5,6452.45047158003,9.99999961853027,9.99999961853027,0,4.232448,593.1891,406.4509,406.4509,1264.632,-148.1703,25.24817,78.55721,-9.204132,25.24817,0,0,1,0,0,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5538.265,-,-
-2249.5,6455.22824925184,9.99999961853027,9.99999961853027,0,4.232448,593.1891,406.4509,406.4509,1264.632,-148.1703,25.24817,78.55721,-9.204132,25.24817,0,0,1,0,0,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5538.265,-,-
-2250.5,6458.00602692366,9.99999961853027,9.99999961853027,0,4.232448,593.1891,406.4509,406.4509,1264.632,-148.1703,25.24817,78.55721,-9.204132,25.24817,0,0,1,0,0,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5538.265,-,-
-2251.5,6460.78380459547,9.99999961853027,9.99999961853027,0,4.232448,593.1891,406.4509,406.4509,1264.632,-148.1703,25.24817,78.55721,-9.204132,25.24817,0,0,1,0,0,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5538.265,-,-
-2252.5,6463.56158226728,9.99999961853027,9.99999961853027,0,4.232448,593.1891,406.4509,406.4509,1264.632,-148.1703,25.24817,78.55721,-9.204132,25.24817,0,0,1,0,0,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5538.265,-,-
-2253.5,6466.3393599391,9.99999961853027,9.99999961853027,0,4.232448,593.1891,406.4509,406.4509,1264.632,-148.1703,25.24817,78.55721,-9.204132,25.24817,0,0,1,0,0,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5538.265,-,-
-2254.5,6469.57301396132,11.6411544799805,14.9999994277954,0.9117525,4.232448,623.5207,1341.796,1330.026,1341.86,-148.1176,87.61246,87.61667,-9.671329,86.84396,0.7685047,0,1,0,0,0,0,57.435,3.85639,0.06554467,25.48702,86.84396,0,16902.37,-,-
-2255.5,6473.90035456419,15.5784261703491,19.9999992370605,1.275621,4.232448,834.4079,1755.139,1681.866,1878.568,-150.8924,153.3623,164.1474,-13.18483,146.9598,6.402516,0,1,0,0,0,0,107.5348,5.160698,0.1570797,34.10725,146.9598,0,29240.04,-,-
-2256.5,6479.16070765257,18.9372711181641,19.9999992370605,0.590404,4.232448,1014.314,1086.859,1021.654,2300,-161.3598,115.4447,244.3029,-17.13942,108.5187,6.925967,0,1,0,0,0,0,60.50209,6.27339,0.2821639,41.46106,108.5187,0,21729.01,-,-
-2257.5,6484.7162629962,19.9999992370605,19.9999992370605,0,4.232448,1071.235,474.3977,452.361,2300,-166.7673,53.21769,258.0128,-18.70787,50.74562,2.472073,0,1,0,0,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,10889.52,-,-
-2258.5,6490.27181833982,19.9999992370605,19.9999992370605,0,4.232448,1071.235,452.361,452.361,2300,-166.7673,50.74562,258.0128,-18.70787,50.74562,0,0,1,0,0,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,10541.78,-,-
-2259.5,6495.82737368345,19.9999992370605,19.9999992370605,0,4.232448,1071.235,452.361,452.361,2300,-166.7673,50.74562,258.0128,-18.70787,50.74562,0,0,1,0,0,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,10541.78,-,-
-2260.5,6501.38292902708,19.9999992370605,19.9999992370605,0,4.232448,1071.235,452.361,452.361,2300,-166.7673,50.74562,258.0128,-18.70787,50.74562,0,0,1,0,0,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,10541.78,-,-
-2261.5,6506.93848437071,19.9999992370605,19.9999992370605,0,4.232448,1071.235,452.361,452.361,2300,-166.7673,50.74562,258.0128,-18.70787,50.74562,0,0,1,0,0,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,10541.78,-,-
-2262.5,6512.49403971434,19.9999992370605,19.9999992370605,0,4.232448,1071.235,452.361,452.361,2300,-166.7673,50.74562,258.0128,-18.70787,50.74562,0,0,1,0,0,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,10541.78,-,-
-2263.5,6518.04959505796,19.9999992370605,19.9999992370605,0,4.232448,1071.235,452.361,452.361,2300,-166.7673,50.74562,258.0128,-18.70787,50.74562,0,0,1,0,0,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,10541.78,-,-
-2264.5,6523.60515040159,19.9999992370605,19.9999992370605,0,4.232448,1071.235,452.361,452.361,2300,-166.7673,50.74562,258.0128,-18.70787,50.74562,0,0,1,0,0,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,10541.78,-,-
-2265.5,6529.16070574522,19.9999992370605,19.9999992370605,0,4.232448,1071.235,452.361,452.361,2300,-166.7673,50.74562,258.0128,-18.70787,50.74562,0,0,1,0,0,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,10541.78,-,-
-2266.5,6534.71626108885,19.9999992370605,19.9999992370605,0,4.232448,1071.235,452.361,452.361,2300,-166.7673,50.74562,258.0128,-18.70787,50.74562,0,0,1,0,0,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,10541.78,-,-
-2267.5,6540.27181643248,19.9999992370605,19.9999992370605,0,4.232448,1071.235,452.361,452.361,2300,-166.7673,50.74562,258.0128,-18.70787,50.74562,0,0,1,0,0,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,10541.78,-,-
-2268.5,6545.8273717761,19.9999992370605,19.9999992370605,0,4.232448,1071.235,452.361,452.361,2300,-166.7673,50.74562,258.0128,-18.70787,50.74562,0,0,1,0,0,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,10541.78,-,-
-2269.5,6551.38292711973,19.9999992370605,19.9999992370605,0,4.232448,1071.235,452.361,452.361,2300,-166.7673,50.74562,258.0128,-18.70787,50.74562,0,0,1,0,0,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,10541.78,-,-
-2270.5,6556.93848246336,19.9999992370605,19.9999992370605,0,4.232448,1071.235,452.361,452.361,2300,-166.7673,50.74562,258.0128,-18.70787,50.74562,0,0,1,0,0,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,10541.78,-,-
-2271.5,6562.49403780699,19.9999992370605,19.9999992370605,0,4.232448,1071.235,452.361,452.361,2300,-166.7673,50.74562,258.0128,-18.70787,50.74562,0,0,1,0,0,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,10541.78,-,-
-2272.5,6568.04959315062,19.9999992370605,19.9999992370605,0,4.232448,1071.235,452.361,452.361,2300,-166.7673,50.74562,258.0128,-18.70787,50.74562,0,0,1,0,0,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,10541.78,-,-
-2273.5,6573.60514849424,19.9999992370605,19.9999992370605,0,4.232448,1071.235,452.361,452.361,2300,-166.7673,50.74562,258.0128,-18.70787,50.74562,0,0,1,0,0,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,10541.78,-,-
-2274.5,6579.16070383787,19.9999992370605,19.9999992370605,0,4.232448,1071.235,452.361,452.361,2300,-166.7673,50.74562,258.0128,-18.70787,50.74562,0,0,1,0,0,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,10541.78,-,-
-2275.5,6584.7162591815,19.9999992370605,19.9999992370605,0,4.232448,1071.235,452.361,452.361,2300,-166.7673,50.74562,258.0128,-18.70787,50.74562,0,0,1,0,0,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,10541.78,-,-
-2276.5,6590.27181452513,19.9999992370605,19.9999992370605,0,4.232448,1071.235,452.361,452.361,2300,-166.7673,50.74562,258.0128,-18.70787,50.74562,0,0,1,0,0,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,10541.78,-,-
-2277.5,6595.82736986876,19.9999992370605,19.9999992370605,0,4.232448,1071.235,452.361,452.361,2300,-166.7673,50.74562,258.0128,-18.70787,50.74562,0,0,1,0,0,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,10541.78,-,-
-2278.5,6601.38292521238,19.9999992370605,19.9999992370605,0,4.232448,1071.235,452.361,452.361,2300,-166.7673,50.74562,258.0128,-18.70787,50.74562,0,0,1,0,0,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,10541.78,-,-
-2279.5,6606.93848055601,19.9999992370605,19.9999992370605,0,4.232448,1071.235,452.361,452.361,2300,-166.7673,50.74562,258.0128,-18.70787,50.74562,0,0,1,0,0,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,10541.78,-,-
-2280.5,6612.49403589964,19.9999992370605,19.9999992370605,0,4.232448,1071.235,452.361,452.361,2300,-166.7673,50.74562,258.0128,-18.70787,50.74562,0,0,1,0,0,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,10541.78,-,-
-2281.5,6618.04959124327,19.9999992370605,19.9999992370605,0,4.232448,1071.235,452.361,452.361,2300,-166.7673,50.74562,258.0128,-18.70787,50.74562,0,0,1,0,0,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,10541.78,-,-
-2282.5,6623.6051465869,19.9999992370605,19.9999992370605,0,4.232448,1071.235,452.361,452.361,2300,-166.7673,50.74562,258.0128,-18.70787,50.74562,0,0,1,0,0,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,10541.78,-,-
-2283.5,6629.16070193052,19.9999992370605,19.9999992370605,0,4.232448,1071.235,452.361,452.361,2300,-166.7673,50.74562,258.0128,-18.70787,50.74562,0,0,1,0,0,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,10541.78,-,-
-2284.5,6634.71625727415,19.9999992370605,19.9999992370605,0,4.232448,1071.235,452.361,452.361,2300,-166.7673,50.74562,258.0128,-18.70787,50.74562,0,0,1,0,0,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,10541.78,-,-
-2285.5,6640.27181261778,19.9999992370605,19.9999992370605,0,4.232448,1071.235,452.361,452.361,2300,-166.7673,50.74562,258.0128,-18.70787,50.74562,0,0,1,0,0,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,10541.78,-,-
-2286.5,6645.82736796141,19.9999992370605,19.9999992370605,0,4.232448,1071.235,452.361,452.361,2300,-166.7673,50.74562,258.0128,-18.70787,50.74562,0,0,1,0,0,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,10541.78,-,-
-2287.5,6651.38292330503,19.9999992370605,19.9999992370605,0,4.232448,1071.235,452.361,452.361,2300,-166.7673,50.74562,258.0128,-18.70787,50.74562,0,0,1,0,0,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,10541.78,-,-
-2288.5,6656.93847864866,19.9999992370605,19.9999992370605,0,4.232448,1071.235,452.361,452.361,2300,-166.7673,50.74562,258.0128,-18.70787,50.74562,0,0,1,0,0,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,10541.78,-,-
-2289.5,6662.49403399229,19.9999992370605,19.9999992370605,0,4.232448,1071.235,452.361,452.361,2300,-166.7673,50.74562,258.0128,-18.70787,50.74562,0,0,1,0,0,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,10541.78,-,-
-2290.5,6668.04958933592,19.9999992370605,19.9999992370605,0,4.232448,1071.235,452.361,452.361,2300,-166.7673,50.74562,258.0128,-18.70787,50.74562,0,0,1,0,0,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,10541.78,-,-
-2291.5,6673.60514467955,19.9999992370605,19.9999992370605,0,4.232448,1071.235,452.361,452.361,2300,-166.7673,50.74562,258.0128,-18.70787,50.74562,0,0,1,0,0,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,10541.78,-,-
-2292.5,6679.16070002317,19.9999992370605,19.9999992370605,0,4.232448,1071.235,452.361,452.361,2300,-166.7673,50.74562,258.0128,-18.70787,50.74562,0,0,1,0,0,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,10541.78,-,-
-2293.5,6684.7162553668,19.9999992370605,19.9999992370605,0,4.232448,1071.235,452.361,452.361,2300,-166.7673,50.74562,258.0128,-18.70787,50.74562,0,0,1,0,0,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,10541.78,-,-
-2294.5,6690.27181071043,19.9999992370605,19.9999992370605,0,4.232448,1071.235,452.361,452.361,2300,-166.7673,50.74562,258.0128,-18.70787,50.74562,0,0,1,0,0,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,10541.78,-,-
-2295.5,6695.82736605406,19.9999992370605,19.9999992370605,0,4.232448,1071.235,452.361,452.361,2300,-166.7673,50.74562,258.0128,-18.70787,50.74562,0,0,1,0,0,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,10541.78,-,-
-2296.5,6701.38292139769,19.9999992370605,19.9999992370605,0,4.232448,1071.235,452.361,452.361,2300,-166.7673,50.74562,258.0128,-18.70787,50.74562,0,0,1,0,0,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,10541.78,-,-
-2297.5,6706.93847674131,19.9999992370605,19.9999992370605,0,4.232448,1071.235,452.361,452.361,2300,-166.7673,50.74562,258.0128,-18.70787,50.74562,0,0,1,0,0,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,10541.78,-,-
-2298.5,6712.49403208494,19.9999992370605,19.9999992370605,0,4.120835,1071.235,442.0879,442.0879,2300,-166.7673,49.59319,258.0128,-18.70787,49.59319,0,0,1,0,0,0,0,0,6.62575,0.3323833,42.63506,49.59319,0,10379.67,-,-
-2299.5,6718.04958742857,19.9999992370605,19.9999992370605,0,4.120835,1071.235,442.0879,442.0879,2300,-166.7673,49.59319,258.0128,-18.70787,49.59319,0,0,1,0,0,0,0,0,6.62575,0.3323833,42.63506,49.59319,0,10379.67,-,-
-2300.5,6723.6051427722,19.9999992370605,19.9999992370605,0,4.120835,1071.235,442.0879,442.0879,2300,-166.7673,49.59319,258.0128,-18.70787,49.59319,0,0,1,0,0,0,0,0,6.62575,0.3323833,42.63506,49.59319,0,10379.67,-,-
-2301.5,6729.16069811583,19.9999992370605,19.9999992370605,0,4.120835,1071.235,442.0879,442.0879,2300,-166.7673,49.59319,258.0128,-18.70787,49.59319,0,0,1,0,0,0,0,0,6.62575,0.3323833,42.63506,49.59319,0,10379.67,-,-
-2302.5,6734.71625345945,19.9999992370605,19.9999992370605,0,4.120835,1071.235,442.0879,442.0879,2300,-166.7673,49.59319,258.0128,-18.70787,49.59319,0,0,1,0,0,0,0,0,6.62575,0.3323833,42.63506,49.59319,0,10379.67,-,-
-2303.5,6740.27180880308,19.9999992370605,19.9999992370605,0,4.120835,1071.235,442.0879,442.0879,2300,-166.7673,49.59319,258.0128,-18.70787,49.59319,0,0,1,0,0,0,0,0,6.62575,0.3323833,42.63506,49.59319,0,10379.67,-,-
-2304.5,6745.82736414671,19.9999992370605,19.9999992370605,0,4.120835,1071.235,442.0879,442.0879,2300,-166.7673,49.59319,258.0128,-18.70787,49.59319,0,0,1,0,0,0,0,0,6.62575,0.3323833,42.63506,49.59319,0,10379.67,-,-
-2305.5,6751.38291949034,19.9999992370605,19.9999992370605,0,4.120835,1071.235,442.0879,442.0879,2300,-166.7673,49.59319,258.0128,-18.70787,49.59319,0,0,1,0,0,0,0,0,6.62575,0.3323833,42.63506,49.59319,0,10379.67,-,-
-2306.5,6756.93847483397,19.9999992370605,19.9999992370605,0,4.120835,1071.235,442.0879,442.0879,2300,-166.7673,49.59319,258.0128,-18.70787,49.59319,0,0,1,0,0,0,0,0,6.62575,0.3323833,42.63506,49.59319,0,10379.67,-,-
-2307.5,6762.49403017759,19.9999992370605,19.9999992370605,0,3.997297,1071.235,430.7156,430.7156,2300,-166.7673,48.31745,258.0128,-18.70787,48.31745,0,0,1,0,0,0,0,0,6.626082,0.3323833,41.35898,48.31745,0,10200.21,-,-
-2308.5,6768.04958552122,19.9999992370605,19.9999992370605,0,3.997297,1071.235,430.7156,430.7156,2300,-166.7673,48.31745,258.0128,-18.70787,48.31745,0,0,1,0,0,0,0,0,6.626082,0.3323833,41.35898,48.31745,0,10200.21,-,-
-2309.5,6773.60514086485,19.9999992370605,19.9999992370605,0,3.997297,1071.235,430.7156,430.7156,2300,-166.7673,48.31745,258.0128,-18.70787,48.31745,0,0,1,0,0,0,0,0,6.626082,0.3323833,41.35898,48.31745,0,10200.21,-,-
-2310.5,6779.16069620848,19.9999992370605,19.9999992370605,0,3.997297,1071.235,430.7156,430.7156,2300,-166.7673,48.31745,258.0128,-18.70787,48.31745,0,0,1,0,0,0,0,0,6.626082,0.3323833,41.35898,48.31745,0,10200.21,-,-
-2311.5,6784.7162515521,19.9999992370605,19.9999992370605,0,3.997297,1071.235,430.7156,430.7156,2300,-166.7673,48.31745,258.0128,-18.70787,48.31745,0,0,1,0,0,0,0,0,6.626082,0.3323833,41.35898,48.31745,0,10200.21,-,-
-2312.5,6790.27180689573,19.9999992370605,19.9999992370605,0,3.997297,1071.235,430.7156,430.7156,2300,-166.7673,48.31745,258.0128,-18.70787,48.31745,0,0,1,0,0,0,0,0,6.626082,0.3323833,41.35898,48.31745,0,10200.21,-,-
-2313.5,6795.82736223936,19.9999992370605,19.9999992370605,0,3.997297,1071.235,430.7156,430.7156,2300,-166.7673,48.31745,258.0128,-18.70787,48.31745,0,0,1,0,0,0,0,0,6.626082,0.3323833,41.35898,48.31745,0,10200.21,-,-
-2314.5,6801.38291758299,19.9999992370605,19.9999992370605,0,3.997297,1071.235,430.7156,430.7156,2300,-166.7673,48.31745,258.0128,-18.70787,48.31745,0,0,1,0,0,0,0,0,6.626082,0.3323833,41.35898,48.31745,0,10200.21,-,-
-2315.5,6806.93847292662,19.9999992370605,19.9999992370605,0,3.997297,1071.235,430.7156,430.7156,2300,-166.7673,48.31745,258.0128,-18.70787,48.31745,0,0,1,0,0,0,0,0,6.626082,0.3323833,41.35898,48.31745,0,10200.21,-,-
-2316.5,6812.49402827024,19.9999992370605,19.9999992370605,0,3.874629,1071.235,419.4214,419.4214,2300,-166.7673,47.05048,258.0128,-18.70787,47.05048,0,0,1,0,0,0,0,0,6.626401,0.3323833,40.09169,47.05048,0,10021.99,-,-
-2317.5,6818.04958361387,19.9999992370605,19.9999992370605,0,3.874629,1071.235,419.4214,419.4214,2300,-166.7673,47.05048,258.0128,-18.70787,47.05048,0,0,1,0,0,0,0,0,6.626401,0.3323833,40.09169,47.05048,0,10021.99,-,-
-2318.5,6823.6051389575,19.9999992370605,19.9999992370605,0,3.874629,1071.235,419.4214,419.4214,2300,-166.7673,47.05048,258.0128,-18.70787,47.05048,0,0,1,0,0,0,0,0,6.626401,0.3323833,40.09169,47.05048,0,10021.99,-,-
-2319.5,6829.16069430113,19.9999992370605,19.9999992370605,0,3.874629,1071.235,419.4214,419.4214,2300,-166.7673,47.05048,258.0128,-18.70787,47.05048,0,0,1,0,0,0,0,0,6.626401,0.3323833,40.09169,47.05048,0,10021.99,-,-
-2320.5,6834.71624964476,19.9999992370605,19.9999992370605,0,3.874629,1071.235,419.4214,419.4214,2300,-166.7673,47.05048,258.0128,-18.70787,47.05048,0,0,1,0,0,0,0,0,6.626401,0.3323833,40.09169,47.05048,0,10021.99,-,-
-2321.5,6840.27180498838,19.9999992370605,19.9999992370605,0,3.874629,1071.235,419.4214,419.4214,2300,-166.7673,47.05048,258.0128,-18.70787,47.05048,0,0,1,0,0,0,0,0,6.626401,0.3323833,40.09169,47.05048,0,10021.99,-,-
-2322.5,6845.82736033201,19.9999992370605,19.9999992370605,0,3.874629,1071.235,419.4214,419.4214,2300,-166.7673,47.05048,258.0128,-18.70787,47.05048,0,0,1,0,0,0,0,0,6.626401,0.3323833,40.09169,47.05048,0,10021.99,-,-
-2323.5,6851.38291567564,19.9999992370605,19.9999992370605,0,3.874629,1071.235,419.4214,419.4214,2300,-166.7673,47.05048,258.0128,-18.70787,47.05048,0,0,1,0,0,0,0,0,6.626401,0.3323833,40.09169,47.05048,0,10021.99,-,-
-2324.5,6856.93847101927,19.9999992370605,19.9999992370605,0,3.874629,1071.235,419.4214,419.4214,2300,-166.7673,47.05048,258.0128,-18.70787,47.05048,0,0,1,0,0,0,0,0,6.626401,0.3323833,40.09169,47.05048,0,10021.99,-,-
-2325.5,6862.4940263629,19.9999992370605,19.9999992370605,0,3.751712,1071.235,408.1028,408.1028,2300,-166.7673,45.78076,258.0128,-18.70787,45.78076,0,0,1,0,0,0,0,0,6.626711,0.3323833,38.82166,45.78076,0,9843.385,-,-
-2326.5,6868.04958170652,19.9999992370605,19.9999992370605,0,3.751712,1071.235,408.1028,408.1028,2300,-166.7673,45.78076,258.0128,-18.70787,45.78076,0,0,1,0,0,0,0,0,6.626711,0.3323833,38.82166,45.78076,0,9843.385,-,-
-2327.5,6873.60513705015,19.9999992370605,19.9999992370605,0,3.751712,1071.235,408.1028,408.1028,2300,-166.7673,45.78076,258.0128,-18.70787,45.78076,0,0,1,0,0,0,0,0,6.626711,0.3323833,38.82166,45.78076,0,9843.385,-,-
-2328.5,6879.16069239378,19.9999992370605,19.9999992370605,0,3.751712,1071.235,408.1028,408.1028,2300,-166.7673,45.78076,258.0128,-18.70787,45.78076,0,0,1,0,0,0,0,0,6.626711,0.3323833,38.82166,45.78076,0,9843.385,-,-
-2329.5,6884.71624773741,19.9999992370605,19.9999992370605,0,3.751712,1071.235,408.1028,408.1028,2300,-166.7673,45.78076,258.0128,-18.70787,45.78076,0,0,1,0,0,0,0,0,6.626711,0.3323833,38.82166,45.78076,0,9843.385,-,-
-2330.5,6890.27180308104,19.9999992370605,19.9999992370605,0,3.751712,1071.235,408.1028,408.1028,2300,-166.7673,45.78076,258.0128,-18.70787,45.78076,0,0,1,0,0,0,0,0,6.626711,0.3323833,38.82166,45.78076,0,9843.385,-,-
-2331.5,6895.82735842466,19.9999992370605,19.9999992370605,0,3.751712,1071.235,408.1028,408.1028,2300,-166.7673,45.78076,258.0128,-18.70787,45.78076,0,0,1,0,0,0,0,0,6.626711,0.3323833,38.82166,45.78076,0,9843.385,-,-
-2332.5,6901.38291376829,19.9999992370605,19.9999992370605,0,3.751712,1071.235,408.1028,408.1028,2300,-166.7673,45.78076,258.0128,-18.70787,45.78076,0,0,1,0,0,0,0,0,6.626711,0.3323833,38.82166,45.78076,0,9843.385,-,-
-2333.5,6906.93846911192,19.9999992370605,19.9999992370605,0,3.751712,1071.235,408.1028,408.1028,2300,-166.7673,45.78076,258.0128,-18.70787,45.78076,0,0,1,0,0,0,0,0,6.626711,0.3323833,38.82166,45.78076,0,9843.385,-,-
-2334.5,6912.49402445555,19.9999992370605,19.9999992370605,0,3.751712,1071.235,408.1028,408.1028,2300,-166.7673,45.78076,258.0128,-18.70787,45.78076,0,0,1,0,0,0,0,0,6.626711,0.3323833,38.82166,45.78076,0,9843.385,-,-
-2335.5,6918.04957979918,19.9999992370605,19.9999992370605,0,3.751712,1071.235,408.1028,408.1028,2300,-166.7673,45.78076,258.0128,-18.70787,45.78076,0,0,1,0,0,0,0,0,6.626711,0.3323833,38.82166,45.78076,0,9843.385,-,-
-2336.5,6923.6051351428,19.9999992370605,19.9999992370605,0,3.751712,1071.235,408.1028,408.1028,2300,-166.7673,45.78076,258.0128,-18.70787,45.78076,0,0,1,0,0,0,0,0,6.626711,0.3323833,38.82166,45.78076,0,9843.385,-,-
-2337.5,6929.16069048643,19.9999992370605,19.9999992370605,0,3.751712,1071.235,408.1028,408.1028,2300,-166.7673,45.78076,258.0128,-18.70787,45.78076,0,0,1,0,0,0,0,0,6.626711,0.3323833,38.82166,45.78076,0,9843.385,-,-
-2338.5,6934.71624583006,19.9999992370605,19.9999992370605,0,3.751712,1071.235,408.1028,408.1028,2300,-166.7673,45.78076,258.0128,-18.70787,45.78076,0,0,1,0,0,0,0,0,6.626711,0.3323833,38.82166,45.78076,0,9843.385,-,-
-2339.5,6940.27180117369,19.9999992370605,19.9999992370605,0,3.751712,1071.235,408.1028,408.1028,2300,-166.7673,45.78076,258.0128,-18.70787,45.78076,0,0,1,0,0,0,0,0,6.626711,0.3323833,38.82166,45.78076,0,9843.385,-,-
-2340.5,6945.82735651731,19.9999992370605,19.9999992370605,0,3.751712,1071.235,408.1028,408.1028,2300,-166.7673,45.78076,258.0128,-18.70787,45.78076,0,0,1,0,0,0,0,0,6.626711,0.3323833,38.82166,45.78076,0,9843.385,-,-
-2341.5,6951.38291186094,19.9999992370605,19.9999992370605,0,3.751712,1071.235,408.1028,408.1028,2300,-166.7673,45.78076,258.0128,-18.70787,45.78076,0,0,1,0,0,0,0,0,6.626711,0.3323833,38.82166,45.78076,0,9843.385,-,-
-2342.5,6956.93846720457,19.9999992370605,19.9999992370605,0,3.751712,1071.235,408.1028,408.1028,2300,-166.7673,45.78076,258.0128,-18.70787,45.78076,0,0,1,0,0,0,0,0,6.626711,0.3323833,38.82166,45.78076,0,9843.385,-,-
-2343.5,6962.4940225482,19.9999992370605,19.9999992370605,0,3.751712,1071.235,408.1028,408.1028,2300,-166.7673,45.78076,258.0128,-18.70787,45.78076,0,0,1,0,0,0,0,0,6.626711,0.3323833,38.82166,45.78076,0,9843.385,-,-
-2344.5,6968.04957789183,19.9999992370605,19.9999992370605,0,3.751712,1071.235,408.1028,408.1028,2300,-166.7673,45.78076,258.0128,-18.70787,45.78076,0,0,1,0,0,0,0,0,6.626711,0.3323833,38.82166,45.78076,0,9843.385,-,-
-2345.5,6973.60513323545,19.9999992370605,19.9999992370605,0,3.751712,1071.235,408.1028,408.1028,2300,-166.7673,45.78076,258.0128,-18.70787,45.78076,0,0,1,0,0,0,0,0,6.626711,0.3323833,38.82166,45.78076,0,9843.385,-,-
-2346.5,6979.16068857908,19.9999992370605,19.9999992370605,0,3.751712,1071.235,408.1028,408.1028,2300,-166.7673,45.78076,258.0128,-18.70787,45.78076,0,0,1,0,0,0,0,0,6.626711,0.3323833,38.82166,45.78076,0,9843.385,-,-
-2347.5,6984.71624392271,19.9999992370605,19.9999992370605,0,3.751712,1071.235,408.1028,408.1028,2300,-166.7673,45.78076,258.0128,-18.70787,45.78076,0,0,1,0,0,0,0,0,6.626711,0.3323833,38.82166,45.78076,0,9843.385,-,-
-2348.5,6990.27179926634,19.9999992370605,19.9999992370605,0,3.751712,1071.235,408.1028,408.1028,2300,-166.7673,45.78076,258.0128,-18.70787,45.78076,0,0,1,0,0,0,0,0,6.626711,0.3323833,38.82166,45.78076,0,9843.385,-,-
-2349.5,6995.82735460997,19.9999992370605,19.9999992370605,0,3.751712,1071.235,408.1028,408.1028,2300,-166.7673,45.78076,258.0128,-18.70787,45.78076,0,0,1,0,0,0,0,0,6.626711,0.3323833,38.82166,45.78076,0,9843.385,-,-
-2350.5,7001.38290995359,19.9999992370605,19.9999992370605,0,3.751712,1071.235,408.1028,408.1028,2300,-166.7673,45.78076,258.0128,-18.70787,45.78076,0,0,1,0,0,0,0,0,6.626711,0.3323833,38.82166,45.78076,0,9843.385,-,-
-2351.5,7006.93846529722,19.9999992370605,19.9999992370605,0,3.751712,1071.235,408.1028,408.1028,2300,-166.7673,45.78076,258.0128,-18.70787,45.78076,0,0,1,0,0,0,0,0,6.626711,0.3323833,38.82166,45.78076,0,9843.385,-,-
-2352.5,7012.49402064085,19.9999992370605,19.9999992370605,0,3.47973,1071.235,383.0518,383.0518,2300,-166.7673,42.97055,258.0128,-18.70787,42.97055,0,0,1,0,0,0,0,0,6.627362,0.3323833,36.01081,42.97055,0,9397.405,-,-
-2353.5,7018.04957598448,19.9999992370605,19.9999992370605,0,3.392671,1071.235,375.0316,375.0316,2300,-166.7673,42.07085,258.0128,-18.70787,42.07085,0,0,1,0,0,0,0,0,6.62756,0.3323833,35.11091,42.07085,0,9246.866,-,-
-2354.5,7023.60513132811,19.9999992370605,19.9999992370605,0,3.305613,1071.235,367.0107,367.0107,2300,-166.7673,41.17107,258.0128,-18.70787,41.17107,0,0,1,0,0,0,0,0,6.627753,0.3323833,34.21094,41.17107,0,9096.314,-,-
-2355.5,7029.16068667173,19.9999992370605,19.9999992370605,0,3.131496,1071.235,350.9667,350.9667,2300,-166.7673,39.37126,258.0128,-18.70787,39.37126,0,0,1,0,0,0,0,0,6.628124,0.3323833,32.41076,39.37126,0,8795.168,-,-
-2356.5,7034.71624201536,19.9999992370605,19.9999992370605,0,3.131496,1071.235,350.9667,350.9667,2300,-166.7673,39.37126,258.0128,-18.70787,39.37126,0,0,1,0,0,0,0,0,6.628124,0.3323833,32.41076,39.37126,0,8795.168,-,-
-2357.5,7040.27179735899,19.9999992370605,19.9999992370605,0,2.95738,1071.235,334.92,334.92,2300,-166.7673,37.57114,258.0128,-18.70787,37.57114,0,0,1,0,0,0,0,0,6.628475,0.3323833,30.61029,37.57114,0,8493.971,-,-
-2358.5,7045.82735270262,19.9999992370605,19.9999992370605,0,2.95738,1071.235,334.92,334.92,2300,-166.7673,37.57114,258.0128,-18.70787,37.57114,0,0,1,0,0,0,0,0,6.628475,0.3323833,30.61029,37.57114,0,8493.971,-,-
-2359.5,7051.38290804625,19.9999992370605,19.9999992370605,0,2.783263,1071.235,318.8705,318.8705,2300,-166.7673,35.77073,258.0128,-18.70787,35.77073,0,0,1,0,0,0,0,0,6.628807,0.3323833,28.80954,35.77073,0,8218.398,-,-
-2360.5,7056.93846338987,19.9999992370605,19.9999992370605,0,2.783263,1071.235,318.8705,318.8705,2300,-166.7673,35.77073,258.0128,-18.70787,35.77073,0,0,1,0,0,0,0,0,6.628807,0.3323833,28.80954,35.77073,0,8218.398,-,-
-2361.5,7062.4940187335,19.9999992370605,19.9999992370605,0,2.609147,1071.235,302.8185,302.8185,2300,-166.7673,33.97002,258.0128,-18.70787,33.97002,0,0,1,0,0,0,0,0,6.629117,0.3323833,27.00852,33.97002,0,7958.757,-,-
-2362.5,7068.04957407713,19.9999992370605,19.9999992370605,0,2.522089,1071.235,294.7916,294.7916,2300,-166.7673,33.06957,258.0128,-18.70787,33.06957,0,0,1,0,0,0,0,0,6.629265,0.3323833,26.10792,33.06957,0,7828.922,-,-
-2363.5,7073.60512942076,19.9999992370605,19.9999992370605,0,2.43503,1071.235,286.7642,286.7642,2300,-166.7673,32.16906,258.0128,-18.70787,32.16906,0,0,1,0,0,0,0,0,6.629408,0.3323833,25.20727,32.16906,0,7699.079,-,-
-2364.5,7079.16068476439,19.9999992370605,19.9999992370605,0,2.260914,1071.235,270.7076,270.7076,2300,-166.7673,30.36784,258.0128,-18.70787,30.36784,0,0,1,0,0,0,0,0,6.629679,0.3323833,23.40578,30.36784,0,7439.364,-,-
-2365.5,7084.71624010801,19.9999992370605,19.9999992370605,0,2.260914,1071.235,270.7076,270.7076,2300,-166.7673,30.36784,258.0128,-18.70787,30.36784,0,0,1,0,0,0,0,0,6.629679,0.3323833,23.40578,30.36784,0,7439.364,-,-
-2366.5,7090.27179545164,19.9999992370605,19.9999992370605,0,2.086797,1071.235,254.649,254.649,2300,-166.7673,28.56639,258.0128,-18.70787,28.56639,0,0,1,0,0,0,0,0,6.62993,0.3323833,21.60408,28.56639,0,7179.616,-,-
-2367.5,7095.82735079527,19.9999992370605,19.9999992370605,0,2.086797,1071.235,254.649,254.649,2300,-166.7673,28.56639,258.0128,-18.70787,28.56639,0,0,1,0,0,0,0,0,6.62993,0.3323833,21.60408,28.56639,0,7179.616,-,-
-2368.5,7101.3829061389,19.9999992370605,19.9999992370605,0,1.912681,1071.235,238.5885,238.5885,2300,-166.7673,26.76473,258.0128,-18.70787,26.76473,0,0,1,0,0,0,0,0,6.630161,0.3323833,19.80219,26.76473,0,6919.836,-,-
-2369.5,7106.93846148252,19.9999992370605,19.9999992370605,0,1.912681,1071.235,238.5885,238.5885,2300,-166.7673,26.76473,258.0128,-18.70787,26.76473,0,0,1,0,0,0,0,0,6.630161,0.3323833,19.80219,26.76473,0,6919.836,-,-
-2370.5,7112.49401682615,19.9999992370605,19.9999992370605,0,1.738564,1071.235,222.5261,222.5261,2300,-166.7673,24.96286,258.0128,-18.70787,24.96286,0,0,1,0,0,0,0,0,6.630372,0.3323833,18.00011,24.96286,0,6660.028,-,-
-2371.5,7118.04957216978,19.9999992370605,19.9999992370605,0,1.651506,1071.235,214.4943,214.4943,2300,-166.7673,24.06186,258.0128,-18.70787,24.06186,0,0,1,0,0,0,0,0,6.630469,0.3323833,17.09901,24.06186,0,6530.114,-,-
-2372.5,7123.60512751341,19.9999992370605,19.9999992370605,0,1.564447,1071.235,206.4621,206.4621,2300,-166.7673,23.16082,258.0128,-18.70787,23.16082,0,0,1,0,0,0,0,0,6.630562,0.3323833,16.19787,23.16082,0,6400.193,-,-
-2373.5,7129.16068285704,19.9999992370605,19.9999992370605,0,1.390331,1071.235,190.3967,190.3967,2300,-166.7673,21.3586,258.0128,-18.70787,21.3586,0,0,1,0,0,0,0,0,6.630733,0.3323833,14.39548,21.3586,0,6123.289,-,-
-2374.5,7134.71623820066,19.9999992370605,19.9999992370605,0,1.390331,1071.235,190.3967,190.3967,2300,-166.7673,21.3586,258.0128,-18.70787,21.3586,0,0,1,0,0,0,0,0,6.630733,0.3323833,14.39548,21.3586,0,6123.289,-,-
-2375.5,7140.27179354429,19.9999992370605,19.9999992370605,0,1.216214,1071.235,174.3299,174.3299,2300,-166.7673,19.55623,258.0128,-18.70787,19.55623,0,0,1,0,0,0,0,0,6.630883,0.3323833,12.59297,19.55623,0,5834.889,-,-
-2376.5,7145.82734888792,19.9999992370605,19.9999992370605,0,1.216214,1071.235,174.3299,174.3299,2300,-166.7673,19.55623,258.0128,-18.70787,19.55623,0,0,1,0,0,0,0,0,6.630883,0.3323833,12.59297,19.55623,0,5834.889,-,-
-2377.5,7151.38290423155,19.9999992370605,19.9999992370605,0,1.042098,1071.235,158.2618,158.2618,2300,-166.7673,17.75373,258.0128,-18.70787,17.75373,0,0,1,0,0,0,0,0,6.631013,0.3323833,10.79033,17.75373,0,5546.468,-,-
-2378.5,7156.93845957518,19.9999992370605,19.9999992370605,0,1.042098,1071.235,158.2618,158.2618,2300,-166.7673,17.75373,258.0128,-18.70787,17.75373,0,0,1,0,0,0,0,0,6.631013,0.3323833,10.79033,17.75373,0,5546.468,-,-
-2379.5,7162.4940149188,19.9999992370605,19.9999992370605,0,0.8683537,1071.235,142.2272,142.2272,2300,-166.7673,15.95497,258.0128,-18.70787,15.95497,0,0,1,0,0,0,0,0,6.631124,0.3323833,8.991464,15.95497,0,5258.646,-,-
-2380.5,7168.04957026243,19.9999992370605,19.9999992370605,0,0.781606,1071.235,134.221,134.221,2300,-166.7673,15.05684,258.0128,-18.70787,15.05684,0,0,1,0,0,0,0,0,6.631171,0.3323833,8.093283,15.05684,0,5114.934,-,-
-2381.5,7173.60512560606,19.9999992370605,19.9999992370605,0,0.6948583,1071.235,126.2145,126.2145,2300,-166.7673,14.15868,258.0128,-18.70787,14.15868,0,0,1,0,0,0,0,0,6.631213,0.3323833,7.195084,14.15868,0,4977.493,-,-
-2382.5,7179.16068094969,19.9999992370605,19.9999992370605,0,0.5213628,1071.235,110.2011,110.2011,2300,-166.7673,12.3623,258.0128,-18.70787,12.3623,0,0,1,0,0,0,0,0,6.631283,0.3323833,5.398638,12.3623,0,4729.445,-,-
-2383.5,7184.71623629332,19.9999992370605,19.9999992370605,0,0.5213628,1071.235,110.2011,110.2011,2300,-166.7673,12.3623,258.0128,-18.70787,12.3623,0,0,1,0,0,0,0,0,6.631283,0.3323833,5.398638,12.3623,0,4729.445,-,-
-2384.5,7190.27179163694,19.9999992370605,19.9999992370605,0,0.3478673,1071.235,94.18711,94.18711,2300,-166.7673,10.56586,258.0128,-18.70787,10.56586,0,0,1,0,0,0,0,0,6.631333,0.3323833,3.602144,10.56586,0,4481.388,-,-
-2385.5,7195.82734698057,19.9999992370605,19.9999992370605,0,0.3478673,1071.235,94.18711,94.18711,2300,-166.7673,10.56586,258.0128,-18.70787,10.56586,0,0,1,0,0,0,0,0,6.631333,0.3323833,3.602144,10.56586,0,4481.388,-,-
-2386.5,7201.3829023242,19.9999992370605,19.9999992370605,0,0.24377,1071.235,84.57847,84.57847,2300,-166.7673,9.487968,258.0128,-18.70787,9.487968,0,0,1,0,0,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,4332.55,-,-
-2387.5,7206.93845766783,19.9999992370605,19.9999992370605,0,0.24377,1071.235,84.57847,84.57847,2300,-166.7673,9.487968,258.0128,-18.70787,9.487968,0,0,1,0,0,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,4332.55,-,-
-2388.5,7212.49401301146,19.9999992370605,19.9999992370605,0,0.24377,1071.235,84.57847,84.57847,2300,-166.7673,9.487968,258.0128,-18.70787,9.487968,0,0,1,0,0,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,4332.55,-,-
-2389.5,7218.04956835508,19.9999992370605,19.9999992370605,0,0.24377,1071.235,84.57847,84.57847,2300,-166.7673,9.487968,258.0128,-18.70787,9.487968,0,0,1,0,0,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,4332.55,-,-
-2390.5,7223.60512369871,19.9999992370605,19.9999992370605,0,0.24377,1071.235,84.57847,84.57847,2300,-166.7673,9.487968,258.0128,-18.70787,9.487968,0,0,1,0,0,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,4332.55,-,-
-2391.5,7229.16067904234,19.9999992370605,19.9999992370605,0,0.24377,1071.235,84.57847,84.57847,2300,-166.7673,9.487968,258.0128,-18.70787,9.487968,0,0,1,0,0,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,4332.55,-,-
-2392.5,7234.71623438597,19.9999992370605,19.9999992370605,0,0.24377,1071.235,84.57847,84.57847,2300,-166.7673,9.487968,258.0128,-18.70787,9.487968,0,0,1,0,0,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,4332.55,-,-
-2393.5,7240.2717897296,19.9999992370605,19.9999992370605,0,0.24377,1071.235,84.57847,84.57847,2300,-166.7673,9.487968,258.0128,-18.70787,9.487968,0,0,1,0,0,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,4332.55,-,-
-2394.5,7245.82734507322,19.9999992370605,19.9999992370605,0,0.24377,1071.235,84.57847,84.57847,2300,-166.7673,9.487968,258.0128,-18.70787,9.487968,0,0,1,0,0,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,4332.55,-,-
-2395.5,7251.38290041685,19.9999992370605,19.9999992370605,0,0.24377,1071.235,84.57847,84.57847,2300,-166.7673,9.487968,258.0128,-18.70787,9.487968,0,0,1,0,0,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,4332.55,-,-
-2396.5,7256.93845576048,19.9999992370605,19.9999992370605,0,0.24377,1071.235,84.57847,84.57847,2300,-166.7673,9.487968,258.0128,-18.70787,9.487968,0,0,1,0,0,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,4332.55,-,-
-2397.5,7262.49401110411,19.9999992370605,19.9999992370605,0,0.24377,1071.235,84.57847,84.57847,2300,-166.7673,9.487968,258.0128,-18.70787,9.487968,0,0,1,0,0,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,4332.55,-,-
-2398.5,7268.04956644773,19.9999992370605,19.9999992370605,0,0.24377,1071.235,84.57847,84.57847,2300,-166.7673,9.487968,258.0128,-18.70787,9.487968,0,0,1,0,0,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,4332.55,-,-
-2399.5,7273.60512179136,19.9999992370605,19.9999992370605,0,0.24377,1071.235,84.57847,84.57847,2300,-166.7673,9.487968,258.0128,-18.70787,9.487968,0,0,1,0,0,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,4332.55,-,-
-2400.5,7279.16067713499,19.9999992370605,19.9999992370605,0,0.24377,1071.235,84.57847,84.57847,2300,-166.7673,9.487968,258.0128,-18.70787,9.487968,0,0,1,0,0,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,4332.55,-,-
-2401.5,7284.71623247862,19.9999992370605,19.9999992370605,0,0.24377,1071.235,84.57847,84.57847,2300,-166.7673,9.487968,258.0128,-18.70787,9.487968,0,0,1,0,0,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,4332.55,-,-
-2402.5,7290.27178782225,19.9999992370605,19.9999992370605,0,0.24377,1071.235,84.57847,84.57847,2300,-166.7673,9.487968,258.0128,-18.70787,9.487968,0,0,1,0,0,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,4332.55,-,-
-2403.5,7295.82734316587,19.9999992370605,19.9999992370605,0,0.24377,1071.235,84.57847,84.57847,2300,-166.7673,9.487968,258.0128,-18.70787,9.487968,0,0,1,0,0,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,4332.55,-,-
-2404.5,7301.3828985095,19.9999992370605,19.9999992370605,0,0.24377,1071.235,84.57847,84.57847,2300,-166.7673,9.487968,258.0128,-18.70787,9.487968,0,0,1,0,0,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,4332.55,-,-
-2405.5,7306.93845385313,19.9999992370605,19.9999992370605,0,0.24377,1071.235,84.57847,84.57847,2300,-166.7673,9.487968,258.0128,-18.70787,9.487968,0,0,1,0,0,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,4332.55,-,-
-2406.5,7312.49400919676,19.9999992370605,19.9999992370605,0,0.24377,1071.235,84.57847,84.57847,2300,-166.7673,9.487968,258.0128,-18.70787,9.487968,0,0,1,0,0,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,4332.55,-,-
-2407.5,7318.04956454039,19.9999992370605,19.9999992370605,0,0.24377,1071.235,84.57847,84.57847,2300,-166.7673,9.487968,258.0128,-18.70787,9.487968,0,0,1,0,0,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,4332.55,-,-
-2408.5,7323.60511988401,19.9999992370605,19.9999992370605,0,0.24377,1071.235,84.57847,84.57847,2300,-166.7673,9.487968,258.0128,-18.70787,9.487968,0,0,1,0,0,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,4332.55,-,-
-2409.5,7329.16067522764,19.9999992370605,19.9999992370605,0,0.24377,1071.235,84.57847,84.57847,2300,-166.7673,9.487968,258.0128,-18.70787,9.487968,0,0,1,0,0,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,4332.55,-,-
-2410.5,7334.71623057127,19.9999992370605,19.9999992370605,0,0.24377,1071.235,84.57847,84.57847,2300,-166.7673,9.487968,258.0128,-18.70787,9.487968,0,0,1,0,0,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,4332.55,-,-
-2411.5,7340.2717859149,19.9999992370605,19.9999992370605,0,0.24377,1071.235,84.57847,84.57847,2300,-166.7673,9.487968,258.0128,-18.70787,9.487968,0,0,1,0,0,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,4332.55,-,-
-2412.5,7345.82734125853,19.9999992370605,19.9999992370605,0,0.24377,1071.235,84.57847,84.57847,2300,-166.7673,9.487968,258.0128,-18.70787,9.487968,0,0,1,0,0,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,4332.55,-,-
-2413.5,7351.38289660215,19.9999992370605,19.9999992370605,0,0.24377,1071.235,84.57847,84.57847,2300,-166.7673,9.487968,258.0128,-18.70787,9.487968,0,0,1,0,0,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,4332.55,-,-
-2414.5,7356.93845194578,19.9999992370605,19.9999992370605,0,0.24377,1071.235,84.57847,84.57847,2300,-166.7673,9.487968,258.0128,-18.70787,9.487968,0,0,1,0,0,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,4332.55,-,-
-2415.5,7362.49400728941,19.9999992370605,19.9999992370605,0,0.24377,1071.235,84.57847,84.57847,2300,-166.7673,9.487968,258.0128,-18.70787,9.487968,0,0,1,0,0,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,4332.55,-,-
-2416.5,7368.04956263304,19.9999992370605,19.9999992370605,0,0.24377,1071.235,84.57847,84.57847,2300,-166.7673,9.487968,258.0128,-18.70787,9.487968,0,0,1,0,0,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,4332.55,-,-
-2417.5,7373.60511797667,19.9999992370605,19.9999992370605,0,0.24377,1071.235,84.57847,84.57847,2300,-166.7673,9.487968,258.0128,-18.70787,9.487968,0,0,1,0,0,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,4332.55,-,-
-2418.5,7379.16067332029,19.9999992370605,19.9999992370605,0,0.24377,1071.235,84.57847,84.57847,2300,-166.7673,9.487968,258.0128,-18.70787,9.487968,0,0,1,0,0,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,4332.55,-,-
-2419.5,7384.71622866392,19.9999992370605,19.9999992370605,0,0.24377,1071.235,84.57847,84.57847,2300,-166.7673,9.487968,258.0128,-18.70787,9.487968,0,0,1,0,0,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,4332.55,-,-
-2420.5,7390.27178400755,19.9999992370605,19.9999992370605,0,0.24377,1071.235,84.57847,84.57847,2300,-166.7673,9.487968,258.0128,-18.70787,9.487968,0,0,1,0,0,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,4332.55,-,-
-2421.5,7395.82733935118,19.9999992370605,19.9999992370605,0,0.24377,1071.235,84.57847,84.57847,2300,-166.7673,9.487968,258.0128,-18.70787,9.487968,0,0,1,0,0,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,4332.55,-,-
-2422.5,7401.38289469481,19.9999992370605,19.9999992370605,0,0.24377,1071.235,84.57847,84.57847,2300,-166.7673,9.487968,258.0128,-18.70787,9.487968,0,0,1,0,0,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,4332.55,-,-
-2423.5,7406.93845003843,19.9999992370605,19.9999992370605,0,0.24377,1071.235,84.57847,84.57847,2300,-166.7673,9.487968,258.0128,-18.70787,9.487968,0,0,1,0,0,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,4332.55,-,-
-2424.5,7412.49400538206,19.9999992370605,19.9999992370605,0,0.24377,1071.235,84.57847,84.57847,2300,-166.7673,9.487968,258.0128,-18.70787,9.487968,0,0,1,0,0,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,4332.55,-,-
-2425.5,7418.04956072569,19.9999992370605,19.9999992370605,0,0.24377,1071.235,84.57847,84.57847,2300,-166.7673,9.487968,258.0128,-18.70787,9.487968,0,0,1,0,0,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,4332.55,-,-
-2426.5,7423.60511606932,19.9999992370605,19.9999992370605,0,0.24377,1071.235,84.57847,84.57847,2300,-166.7673,9.487968,258.0128,-18.70787,9.487968,0,0,1,0,0,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,4332.55,-,-
-2427.5,7429.16067141294,19.9999992370605,19.9999992370605,0,0.123555,1071.235,73.48192,73.48192,2300,-166.7673,8.243163,258.0128,-18.70787,8.243163,0,0,1,0,0,0,0,0,6.631368,0.3323833,1.279412,8.243163,0,4160.665,-,-
-2428.5,7434.71622675657,19.9999992370605,19.9999992370605,0,0.123555,1071.235,73.48192,73.48192,2300,-166.7673,8.243163,258.0128,-18.70787,8.243163,0,0,1,0,0,0,0,0,6.631368,0.3323833,1.279412,8.243163,0,4160.665,-,-
-2429.5,7440.2717821002,19.9999992370605,19.9999992370605,0,0.123555,1071.235,73.48192,73.48192,2300,-166.7673,8.243163,258.0128,-18.70787,8.243163,0,0,1,0,0,0,0,0,6.631368,0.3323833,1.279412,8.243163,0,4160.665,-,-
-2430.5,7445.82733744383,19.9999992370605,19.9999992370605,0,0.123555,1071.235,73.48192,73.48192,2300,-166.7673,8.243163,258.0128,-18.70787,8.243163,0,0,1,0,0,0,0,0,6.631368,0.3323833,1.279412,8.243163,0,4160.665,-,-
-2431.5,7451.38289278746,19.9999992370605,19.9999992370605,0,0.00906,1071.235,62.91323,62.91323,2300,-166.7673,7.057573,258.0128,-18.70787,7.057573,0,0,1,0,0,0,0,0,6.631373,0.3323833,0.0938163,7.057573,0,3996.956,-,-
-2432.5,7456.93844813108,19.9999992370605,19.9999992370605,0,0.00906,1071.235,62.91323,62.91323,2300,-166.7673,7.057573,258.0128,-18.70787,7.057573,0,0,1,0,0,0,0,0,6.631373,0.3323833,0.0938163,7.057573,0,3996.956,-,-
-2433.5,7462.49400347471,19.9999992370605,19.9999992370605,0,0.00906,1071.235,62.91323,62.91323,2300,-166.7673,7.057573,258.0128,-18.70787,7.057573,0,0,1,0,0,0,0,0,6.631373,0.3323833,0.0938163,7.057573,0,3996.956,-,-
-2434.5,7468.04955881834,19.9999992370605,19.9999992370605,0,-0.04818292,1071.235,57.62927,57.62927,2300,-166.7673,6.464821,258.0128,-18.70787,6.464821,0,0,1,0,0,0,0,0,6.631372,0.3323833,-0.4989341,6.464821,0,3915.107,-,-
-2435.5,7473.60511416197,19.9999992370605,19.9999992370605,0,-0.1054259,1071.235,52.3453,52.3453,2300,-166.7673,5.872068,258.0128,-18.70787,5.872068,0,0,1,0,0,0,0,0,6.63137,0.3323833,-1.091684,5.872068,0,3833.258,-,-
-2436.5,7479.1606695056,19.9999992370605,19.9999992370605,0,-0.1054259,1071.235,52.3453,52.3453,2300,-166.7673,5.872068,258.0128,-18.70787,5.872068,0,0,1,0,0,0,0,0,6.63137,0.3323833,-1.091684,5.872068,0,3833.258,-,-
-2437.5,7484.71622484922,19.9999992370605,19.9999992370605,0,-0.1054259,1071.235,52.3453,52.3453,2300,-166.7673,5.872068,258.0128,-18.70787,5.872068,0,0,1,0,0,0,0,0,6.63137,0.3323833,-1.091684,5.872068,0,3833.258,-,-
-2438.5,7490.27178019285,19.9999992370605,19.9999992370605,0,-0.2199163,1071.235,41.77692,41.77692,2300,-166.7673,4.686513,258.0128,-18.70787,4.686513,0,0,1,0,0,0,0,0,6.631357,0.3323833,-2.277228,4.686513,0,3669.554,-,-
-2439.5,7495.82733553648,19.9999992370605,19.9999992370605,0,-0.2199163,1071.235,41.77692,41.77692,2300,-166.7673,4.686513,258.0128,-18.70787,4.686513,0,0,1,0,0,0,0,0,6.631357,0.3323833,-2.277228,4.686513,0,3669.554,-,-
-2440.5,7501.38289088011,19.9999992370605,19.9999992370605,0,-0.2199163,1071.235,41.77692,41.77692,2300,-166.7673,4.686513,258.0128,-18.70787,4.686513,0,0,1,0,0,0,0,0,6.631357,0.3323833,-2.277228,4.686513,0,3669.554,-,-
-2441.5,7506.93844622374,19.9999992370605,19.9999992370605,0,-0.2199163,1071.235,41.77692,41.77692,2300,-166.7673,4.686513,258.0128,-18.70787,4.686513,0,0,1,0,0,0,0,0,6.631357,0.3323833,-2.277228,4.686513,0,3669.554,-,-
-2442.5,7512.49400156736,19.9999992370605,19.9999992370605,0,-0.3344068,1071.235,31.20853,31.20853,2300,-166.7673,3.500957,258.0128,-18.70787,3.500957,0,0,1,0,0,0,0,0,6.631336,0.3323833,-3.462763,3.500957,0,3505.85,-,-
-2443.5,7518.04955691099,19.9999992370605,19.9999992370605,0,-0.3344068,1071.235,31.20853,31.20853,2300,-166.7673,3.500957,258.0128,-18.70787,3.500957,0,0,1,0,0,0,0,0,6.631336,0.3323833,-3.462763,3.500957,0,3505.85,-,-
-2444.5,7523.60511225462,19.9999992370605,19.9999992370605,0,-0.3344068,1071.235,31.20853,31.20853,2300,-166.7673,3.500957,258.0128,-18.70787,3.500957,0,0,1,0,0,0,0,0,6.631336,0.3323833,-3.462763,3.500957,0,3505.85,-,-
-2445.5,7529.16066759825,19.9999992370605,19.9999992370605,0,-0.4488972,1071.235,20.6402,20.6402,2300,-166.7673,2.315406,258.0128,-18.70787,2.315406,0,0,1,0,0,0,0,0,6.631307,0.3323833,-4.648283,2.315406,0,3342.146,-,-
-2446.5,7534.71622294188,19.9999992370605,19.9999992370605,0,-0.4488972,1071.235,20.6402,20.6402,2300,-166.7673,2.315406,258.0128,-18.70787,2.315406,0,0,1,0,0,0,0,0,6.631307,0.3323833,-4.648283,2.315406,0,3342.146,-,-
-2447.5,7540.2717782855,19.9999992370605,19.9999992370605,0,-0.4488972,1071.235,20.6402,20.6402,2300,-166.7673,2.315406,258.0128,-18.70787,2.315406,0,0,1,0,0,0,0,0,6.631307,0.3323833,-4.648283,2.315406,0,3342.146,-,-
-2448.5,7545.82733362913,19.9999992370605,19.9999992370605,0,-0.4488972,1071.235,20.6402,20.6402,2300,-166.7673,2.315406,258.0128,-18.70787,2.315406,0,0,1,0,0,0,0,0,6.631307,0.3323833,-4.648283,2.315406,0,3342.146,-,-
-2449.5,7551.38288897276,19.9999992370605,19.9999992370605,0,-0.5633877,1071.235,10.07193,10.07193,2300,-166.7673,1.129864,258.0128,-18.70787,1.129864,0,0,1,0,0,0,0,0,6.631268,0.3323833,-5.833787,1.129864,0,3178.444,-,-
-2450.5,7556.93844431639,19.9999992370605,19.9999992370605,0,-0.5633877,1071.235,10.07193,10.07193,2300,-166.7673,1.129864,258.0128,-18.70787,1.129864,0,0,1,0,0,0,0,0,6.631268,0.3323833,-5.833787,1.129864,0,3178.444,-,-
-2451.5,7562.49399966002,19.9999992370605,19.9999992370605,0,-0.5633877,1071.235,10.07193,10.07193,2300,-166.7673,1.129864,258.0128,-18.70787,1.129864,0,0,1,0,0,0,0,0,6.631268,0.3323833,-5.833787,1.129864,0,3178.444,-,-
-2452.5,7568.04955500364,19.9999992370605,19.9999992370605,0,-0.6206329,1071.235,4.787858,4.787858,2300,-166.7673,0.5370994,258.0128,-18.70787,0.5370994,0,0,1,0,0,0,0,0,6.631246,0.3323833,-6.426529,0.5370994,0,3096.594,-,-
-2453.5,7573.60511034727,19.9999992370605,19.9999992370605,0,-0.6778781,1071.235,-0.4961884,-0.4961884,2300,-166.7673,-0.05566216,258.0128,-18.70787,-0.05566216,0,0,1,0,0,0,0,0,6.631221,0.3323833,-7.019267,-0.05566216,0,3013.545,-,-
-2454.5,7579.1606656909,19.9999992370605,19.9999992370605,0,-0.6778781,1071.235,-0.4961884,-0.4961884,2300,-166.7673,-0.05566216,258.0128,-18.70787,-0.05566216,0,0,1,0,0,0,0,0,6.631221,0.3323833,-7.019267,-0.05566216,0,3013.545,-,-
-2455.5,7584.71622103453,19.9999992370605,19.9999992370605,0,-0.6778781,1071.235,-0.4961884,-0.4961884,2300,-166.7673,-0.05566216,258.0128,-18.70787,-0.05566216,0,0,1,0,0,0,0,0,6.631221,0.3323833,-7.019267,-0.05566216,0,3013.545,-,-
-2456.5,7590.27177637815,19.9999992370605,19.9999992370605,0,-0.7923686,1071.235,-11.06414,-11.06414,2300,-166.7673,-1.24117,258.0128,-18.70787,-1.24117,0,0,1,0,0,0,0,0,6.631166,0.3323833,-8.204719,-1.24117,0,2824.312,-,-
-2457.5,7595.82733172178,19.9999992370605,19.9999992370605,0,-0.7923686,1071.235,-11.06414,-11.06414,2300,-166.7673,-1.24117,258.0128,-18.70787,-1.24117,0,0,1,0,0,0,0,0,6.631166,0.3323833,-8.204719,-1.24117,0,2824.312,-,-
-2458.5,7601.38288706541,19.9999992370605,19.9999992370605,0,-0.7923686,1071.235,-11.06414,-11.06414,2300,-166.7673,-1.24117,258.0128,-18.70787,-1.24117,0,0,1,0,0,0,0,0,6.631166,0.3323833,-8.204719,-1.24117,0,2824.312,-,-
-2459.5,7606.93844240904,19.9999992370605,19.9999992370605,0,-0.7923686,1071.235,-11.06414,-11.06414,2300,-166.7673,-1.24117,258.0128,-18.70787,-1.24117,0,0,1,0,0,0,0,0,6.631166,0.3323833,-8.204719,-1.24117,0,2824.312,-,-
-2460.5,7612.49399775267,19.9999992370605,19.9999992370605,0,-0.8954099,1071.235,-20.57513,-20.57513,2300,-166.7673,-2.308107,258.0128,-18.70787,-2.308107,0,0,1,0,0,0,0,0,6.631108,0.3323833,-9.271598,-2.308107,0,2654.006,-,-
-2461.5,7618.04955309629,19.9999992370605,19.9999992370605,0,-0.8954099,1071.235,-20.57513,-20.57513,2300,-166.7673,-2.308107,258.0128,-18.70787,-2.308107,0,0,1,0,0,0,0,0,6.631108,0.3323833,-9.271598,-2.308107,0,2654.006,-,-
-2462.5,7623.60510843992,19.9999992370605,19.9999992370605,0,-0.8954099,1071.235,-20.57513,-20.57513,2300,-166.7673,-2.308107,258.0128,-18.70787,-2.308107,0,0,1,0,0,0,0,0,6.631108,0.3323833,-9.271598,-2.308107,0,2654.006,-,-
-2463.5,7629.16066378355,19.9999992370605,19.9999992370605,0,-0.8954099,1071.235,-20.57513,-20.57513,2300,-166.7673,-2.308107,258.0128,-18.70787,-2.308107,0,0,1,0,0,0,0,0,6.631108,0.3323833,-9.271598,-2.308107,0,2654.006,-,-
-2464.5,7634.71621912718,19.9999992370605,19.9999992370605,0,-0.8954099,1071.235,-20.57513,-20.57513,2300,-166.7673,-2.308107,258.0128,-18.70787,-2.308107,0,0,1,0,0,0,0,0,6.631108,0.3323833,-9.271598,-2.308107,0,2654.006,-,-
-2465.5,7640.27177447081,19.9999992370605,19.9999992370605,0,-0.8954099,1071.235,-20.57513,-20.57513,2300,-166.7673,-2.308107,258.0128,-18.70787,-2.308107,0,0,1,0,0,0,0,0,6.631108,0.3323833,-9.271598,-2.308107,0,2654.006,-,-
-2466.5,7645.82732981443,19.9999992370605,19.9999992370605,0,-0.8954099,1071.235,-20.57513,-20.57513,2300,-166.7673,-2.308107,258.0128,-18.70787,-2.308107,0,0,1,0,0,0,0,0,6.631108,0.3323833,-9.271598,-2.308107,0,2654.006,-,-
-2467.5,7651.38288515806,19.9999992370605,19.9999992370605,0,-0.8954099,1071.235,-20.57513,-20.57513,2300,-166.7673,-2.308107,258.0128,-18.70787,-2.308107,0,0,1,0,0,0,0,0,6.631108,0.3323833,-9.271598,-2.308107,0,2654.006,-,-
-2468.5,7656.93844050169,19.9999992370605,19.9999992370605,0,-0.8954099,1071.235,-20.57513,-20.57513,2300,-166.7673,-2.308107,258.0128,-18.70787,-2.308107,0,0,1,0,0,0,0,0,6.631108,0.3323833,-9.271598,-2.308107,0,2654.006,-,-
-2469.5,7662.49399584532,19.9999992370605,19.9999992370605,0,-0.8954099,1071.235,-20.57513,-20.57513,2300,-166.7673,-2.308107,258.0128,-18.70787,-2.308107,0,0,1,0,0,0,0,0,6.631108,0.3323833,-9.271598,-2.308107,0,2654.006,-,-
-2470.5,7668.04955118895,19.9999992370605,19.9999992370605,0,-0.8954099,1071.235,-20.57513,-20.57513,2300,-166.7673,-2.308107,258.0128,-18.70787,-2.308107,0,0,1,0,0,0,0,0,6.631108,0.3323833,-9.271598,-2.308107,0,2654.006,-,-
-2471.5,7673.60510653257,19.9999992370605,19.9999992370605,0,-0.8954099,1071.235,-20.57513,-20.57513,2300,-166.7673,-2.308107,258.0128,-18.70787,-2.308107,0,0,1,0,0,0,0,0,6.631108,0.3323833,-9.271598,-2.308107,0,2654.006,-,-
-2472.5,7679.1606618762,19.9999992370605,19.9999992370605,0,-0.8954099,1071.235,-20.57513,-20.57513,2300,-166.7673,-2.308107,258.0128,-18.70787,-2.308107,0,0,1,0,0,0,0,0,6.631108,0.3323833,-9.271598,-2.308107,0,2654.006,-,-
-2473.5,7684.71621721983,19.9999992370605,19.9999992370605,0,-0.8954099,1071.235,-20.57513,-20.57513,2300,-166.7673,-2.308107,258.0128,-18.70787,-2.308107,0,0,1,0,0,0,0,0,6.631108,0.3323833,-9.271598,-2.308107,0,2654.006,-,-
-2474.5,7690.27177256346,19.9999992370605,19.9999992370605,0,-0.8954099,1071.235,-20.57513,-20.57513,2300,-166.7673,-2.308107,258.0128,-18.70787,-2.308107,0,0,1,0,0,0,0,0,6.631108,0.3323833,-9.271598,-2.308107,0,2654.006,-,-
-2475.5,7695.82732790709,19.9999992370605,19.9999992370605,0,-0.8954099,1071.235,-20.57513,-20.57513,2300,-166.7673,-2.308107,258.0128,-18.70787,-2.308107,0,0,1,0,0,0,0,0,6.631108,0.3323833,-9.271598,-2.308107,0,2654.006,-,-
-2476.5,7701.38288325071,19.9999992370605,19.9999992370605,0,-0.8954099,1071.235,-20.57513,-20.57513,2300,-166.7673,-2.308107,258.0128,-18.70787,-2.308107,0,0,1,0,0,0,0,0,6.631108,0.3323833,-9.271598,-2.308107,0,2654.006,-,-
-2477.5,7706.93843859434,19.9999992370605,19.9999992370605,0,-0.8954099,1071.235,-20.57513,-20.57513,2300,-166.7673,-2.308107,258.0128,-18.70787,-2.308107,0,0,1,0,0,0,0,0,6.631108,0.3323833,-9.271598,-2.308107,0,2654.006,-,-
-2478.5,7712.49399393797,19.9999992370605,19.9999992370605,0,-0.8954099,1071.235,-20.57513,-20.57513,2300,-166.7673,-2.308107,258.0128,-18.70787,-2.308107,0,0,1,0,0,0,0,0,6.631108,0.3323833,-9.271598,-2.308107,0,2654.006,-,-
-2479.5,7718.0495492816,19.9999992370605,19.9999992370605,0,-0.8954099,1071.235,-20.57513,-20.57513,2300,-166.7673,-2.308107,258.0128,-18.70787,-2.308107,0,0,1,0,0,0,0,0,6.631108,0.3323833,-9.271598,-2.308107,0,2654.006,-,-
-2480.5,7723.60510462523,19.9999992370605,19.9999992370605,0,-0.8954099,1071.235,-20.57513,-20.57513,2300,-166.7673,-2.308107,258.0128,-18.70787,-2.308107,0,0,1,0,0,0,0,0,6.631108,0.3323833,-9.271598,-2.308107,0,2654.006,-,-
-2481.5,7729.16065996885,19.9999992370605,19.9999992370605,0,-0.8954099,1071.235,-20.57513,-20.57513,2300,-166.7673,-2.308107,258.0128,-18.70787,-2.308107,0,0,1,0,0,0,0,0,6.631108,0.3323833,-9.271598,-2.308107,0,2654.006,-,-
-2482.5,7734.71621531248,19.9999992370605,19.9999992370605,0,-0.8954099,1071.235,-20.57513,-20.57513,2300,-166.7673,-2.308107,258.0128,-18.70787,-2.308107,0,0,1,0,0,0,0,0,6.631108,0.3323833,-9.271598,-2.308107,0,2654.006,-,-
-2483.5,7740.27177065611,19.9999992370605,19.9999992370605,0,-0.8954099,1071.235,-20.57513,-20.57513,2300,-166.7673,-2.308107,258.0128,-18.70787,-2.308107,0,0,1,0,0,0,0,0,6.631108,0.3323833,-9.271598,-2.308107,0,2654.006,-,-
-2484.5,7745.82732599974,19.9999992370605,19.9999992370605,0,-0.8954099,1071.235,-20.57513,-20.57513,2300,-166.7673,-2.308107,258.0128,-18.70787,-2.308107,0,0,1,0,0,0,0,0,6.631108,0.3323833,-9.271598,-2.308107,0,2654.006,-,-
-2485.5,7751.38288134336,19.9999992370605,19.9999992370605,0,-0.8954099,1071.235,-20.57513,-20.57513,2300,-166.7673,-2.308107,258.0128,-18.70787,-2.308107,0,0,1,0,0,0,0,0,6.631108,0.3323833,-9.271598,-2.308107,0,2654.006,-,-
-2486.5,7756.93843668699,19.9999992370605,19.9999992370605,0,-0.8954099,1071.235,-20.57513,-20.57513,2300,-166.7673,-2.308107,258.0128,-18.70787,-2.308107,0,0,1,0,0,0,0,0,6.631108,0.3323833,-9.271598,-2.308107,0,2654.006,-,-
-2487.5,7762.49399203062,19.9999992370605,19.9999992370605,0,-0.7841441,1071.235,-10.305,-10.305,2300,-166.7673,-1.156009,258.0128,-18.70787,-1.156009,0,0,1,0,0,0,0,0,6.63117,0.3323833,-8.119562,-1.156009,0,2837.906,-,-
-2488.5,7768.04954737425,19.9999992370605,19.9999992370605,0,-0.7841441,1071.235,-10.305,-10.305,2300,-166.7673,-1.156009,258.0128,-18.70787,-1.156009,0,0,1,0,0,0,0,0,6.63117,0.3323833,-8.119562,-1.156009,0,2837.906,-,-
-2489.5,7773.60510271788,19.9999992370605,19.9999992370605,0,-0.7841441,1071.235,-10.305,-10.305,2300,-166.7673,-1.156009,258.0128,-18.70787,-1.156009,0,0,1,0,0,0,0,0,6.63117,0.3323833,-8.119562,-1.156009,0,2837.906,-,-
-2490.5,7779.1606580615,19.9999992370605,19.9999992370605,0,-0.7841441,1071.235,-10.305,-10.305,2300,-166.7673,-1.156009,258.0128,-18.70787,-1.156009,0,0,1,0,0,0,0,0,6.63117,0.3323833,-8.119562,-1.156009,0,2837.906,-,-
-2491.5,7784.71621340513,19.9999992370605,19.9999992370605,0,-0.7841441,1071.235,-10.305,-10.305,2300,-166.7673,-1.156009,258.0128,-18.70787,-1.156009,0,0,1,0,0,0,0,0,6.63117,0.3323833,-8.119562,-1.156009,0,2837.906,-,-
-2492.5,7790.27176874876,19.9999992370605,19.9999992370605,0,-0.7841441,1071.235,-10.305,-10.305,2300,-166.7673,-1.156009,258.0128,-18.70787,-1.156009,0,0,1,0,0,0,0,0,6.63117,0.3323833,-8.119562,-1.156009,0,2837.906,-,-
-2493.5,7795.82732409239,19.9999992370605,19.9999992370605,0,-0.7841441,1071.235,-10.305,-10.305,2300,-166.7673,-1.156009,258.0128,-18.70787,-1.156009,0,0,1,0,0,0,0,0,6.63117,0.3323833,-8.119562,-1.156009,0,2837.906,-,-
-2494.5,7801.38287943602,19.9999992370605,19.9999992370605,0,-0.6638566,1071.235,0.7980705,0.7980705,2300,-166.7673,0.08952713,258.0128,-18.70787,0.08952713,0,0,1,0,0,0,0,0,6.631227,0.3323833,-6.874084,0.08952713,0,3034.792,-,-
-2495.5,7806.93843477964,19.9999992370605,19.9999992370605,0,-0.6638566,1071.235,0.7980705,0.7980705,2300,-166.7673,0.08952713,258.0128,-18.70787,0.08952713,0,0,1,0,0,0,0,0,6.631227,0.3323833,-6.874084,0.08952713,0,3034.792,-,-
-2496.5,7812.49399012327,19.9999992370605,19.9999992370605,0,-0.6638566,1071.235,0.7980705,0.7980705,2300,-166.7673,0.08952713,258.0128,-18.70787,0.08952713,0,0,1,0,0,0,0,0,6.631227,0.3323833,-6.874084,0.08952713,0,3034.792,-,-
-2497.5,7818.0495454669,19.9999992370605,19.9999992370605,0,-0.6638566,1071.235,0.7980705,0.7980705,2300,-166.7673,0.08952713,258.0128,-18.70787,0.08952713,0,0,1,0,0,0,0,0,6.631227,0.3323833,-6.874084,0.08952713,0,3034.792,-,-
-2498.5,7823.60510081053,19.9999992370605,19.9999992370605,0,-0.6638566,1071.235,0.7980705,0.7980705,2300,-166.7673,0.08952713,258.0128,-18.70787,0.08952713,0,0,1,0,0,0,0,0,6.631227,0.3323833,-6.874084,0.08952713,0,3034.792,-,-
-2499.5,7829.16065615416,19.9999992370605,19.9999992370605,0,-0.6638566,1071.235,0.7980705,0.7980705,2300,-166.7673,0.08952713,258.0128,-18.70787,0.08952713,0,0,1,0,0,0,0,0,6.631227,0.3323833,-6.874084,0.08952713,0,3034.792,-,-
-2500.5,7834.71621149778,19.9999992370605,19.9999992370605,0,-0.6638566,1071.235,0.7980705,0.7980705,2300,-166.7673,0.08952713,258.0128,-18.70787,0.08952713,0,0,1,0,0,0,0,0,6.631227,0.3323833,-6.874084,0.08952713,0,3034.792,-,-
-2501.5,7840.27176684141,19.9999992370605,19.9999992370605,0,-0.5435692,1071.235,11.90131,11.90131,2300,-166.7673,1.335083,258.0128,-18.70787,1.335083,0,0,1,0,0,0,0,0,6.631276,0.3323833,-5.628576,1.335083,0,3206.781,-,-
-2502.5,7845.82732218504,19.9999992370605,19.9999992370605,0,-0.5435692,1071.235,11.90131,11.90131,2300,-166.7673,1.335083,258.0128,-18.70787,1.335083,0,0,1,0,0,0,0,0,6.631276,0.3323833,-5.628576,1.335083,0,3206.781,-,-
-2503.5,7851.38287752867,19.9999992370605,19.9999992370605,0,-0.5435692,1071.235,11.90131,11.90131,2300,-166.7673,1.335083,258.0128,-18.70787,1.335083,0,0,1,0,0,0,0,0,6.631276,0.3323833,-5.628576,1.335083,0,3206.781,-,-
-2504.5,7856.9384328723,19.9999992370605,19.9999992370605,0,-0.5435692,1071.235,11.90131,11.90131,2300,-166.7673,1.335083,258.0128,-18.70787,1.335083,0,0,1,0,0,0,0,0,6.631276,0.3323833,-5.628576,1.335083,0,3206.781,-,-
-2505.5,7862.49398821592,19.9999992370605,19.9999992370605,0,-0.5435692,1071.235,11.90131,11.90131,2300,-166.7673,1.335083,258.0128,-18.70787,1.335083,0,0,1,0,0,0,0,0,6.631276,0.3323833,-5.628576,1.335083,0,3206.781,-,-
-2506.5,7868.04954355955,19.9999992370605,19.9999992370605,0,-0.5435692,1071.235,11.90131,11.90131,2300,-166.7673,1.335083,258.0128,-18.70787,1.335083,0,0,1,0,0,0,0,0,6.631276,0.3323833,-5.628576,1.335083,0,3206.781,-,-
-2507.5,7873.60509890318,19.9999992370605,19.9999992370605,0,-0.5435692,1071.235,11.90131,11.90131,2300,-166.7673,1.335083,258.0128,-18.70787,1.335083,0,0,1,0,0,0,0,0,6.631276,0.3323833,-5.628576,1.335083,0,3206.781,-,-
-2508.5,7879.16065424681,19.9999992370605,19.9999992370605,0,-0.4232818,1071.235,23.00469,23.00469,2300,-166.7673,2.580654,258.0128,-18.70787,2.580654,0,0,1,0,0,0,0,0,6.631314,0.3323833,-4.383043,2.580654,0,3378.772,-,-
-2509.5,7884.71620959044,19.9999992370605,19.9999992370605,0,-0.4232818,1071.235,23.00469,23.00469,2300,-166.7673,2.580654,258.0128,-18.70787,2.580654,0,0,1,0,0,0,0,0,6.631314,0.3323833,-4.383043,2.580654,0,3378.772,-,-
-2510.5,7890.27176493406,19.9999992370605,19.9999992370605,0,-0.4232818,1071.235,23.00469,23.00469,2300,-166.7673,2.580654,258.0128,-18.70787,2.580654,0,0,1,0,0,0,0,0,6.631314,0.3323833,-4.383043,2.580654,0,3378.772,-,-
-2511.5,7895.82732027769,19.9999992370605,19.9999992370605,0,-0.4232818,1071.235,23.00469,23.00469,2300,-166.7673,2.580654,258.0128,-18.70787,2.580654,0,0,1,0,0,0,0,0,6.631314,0.3323833,-4.383043,2.580654,0,3378.772,-,-
-2512.5,7901.38287562132,19.9999992370605,19.9999992370605,0,-0.4232818,1071.235,23.00469,23.00469,2300,-166.7673,2.580654,258.0128,-18.70787,2.580654,0,0,1,0,0,0,0,0,6.631314,0.3323833,-4.383043,2.580654,0,3378.772,-,-
-2513.5,7906.93843096495,19.9999992370605,19.9999992370605,0,-0.4232818,1071.235,23.00469,23.00469,2300,-166.7673,2.580654,258.0128,-18.70787,2.580654,0,0,1,0,0,0,0,0,6.631314,0.3323833,-4.383043,2.580654,0,3378.772,-,-
-2514.5,7912.49398630857,19.9999992370605,19.9999992370605,0,-0.4232818,1071.235,23.00469,23.00469,2300,-166.7673,2.580654,258.0128,-18.70787,2.580654,0,0,1,0,0,0,0,0,6.631314,0.3323833,-4.383043,2.580654,0,3378.772,-,-
-2515.5,7918.0495416522,19.9999992370605,19.9999992370605,0,-0.363138,1071.235,28.55641,28.55641,2300,-166.7673,3.203443,258.0128,-18.70787,3.203443,0,0,1,0,0,0,0,0,6.63133,0.3323833,-3.76027,3.203443,0,3464.768,-,-
-2516.5,7923.60509699583,19.9999992370605,19.9999992370605,0,-0.3029943,1071.235,34.10815,34.10815,2300,-166.7673,3.826234,258.0128,-18.70787,3.826234,0,0,1,0,0,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,3550.765,-,-
-2517.5,7929.16065233946,19.9999992370605,19.9999992370605,0,-0.3029943,1071.235,34.10815,34.10815,2300,-166.7673,3.826234,258.0128,-18.70787,3.826234,0,0,1,0,0,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,3550.765,-,-
-2518.5,7934.71620768309,19.9999992370605,19.9999992370605,0,-0.3029943,1071.235,34.10815,34.10815,2300,-166.7673,3.826234,258.0128,-18.70787,3.826234,0,0,1,0,0,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,3550.765,-,-
-2519.5,7940.27176302671,19.9999992370605,19.9999992370605,0,-0.3029943,1071.235,34.10815,34.10815,2300,-166.7673,3.826234,258.0128,-18.70787,3.826234,0,0,1,0,0,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,3550.765,-,-
-2520.5,7945.82731837034,19.9999992370605,19.9999992370605,0,-0.3029943,1071.235,34.10815,34.10815,2300,-166.7673,3.826234,258.0128,-18.70787,3.826234,0,0,1,0,0,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,3550.765,-,-
-2521.5,7951.38287371397,19.9999992370605,19.9999992370605,0,-0.3029943,1071.235,34.10815,34.10815,2300,-166.7673,3.826234,258.0128,-18.70787,3.826234,0,0,1,0,0,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,3550.765,-,-
-2522.5,7956.9384290576,19.9999992370605,19.9999992370605,0,-0.3029943,1071.235,34.10815,34.10815,2300,-166.7673,3.826234,258.0128,-18.70787,3.826234,0,0,1,0,0,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,3550.765,-,-
-2523.5,7962.49398440123,19.9999992370605,19.9999992370605,0,-0.3029943,1071.235,34.10815,34.10815,2300,-166.7673,3.826234,258.0128,-18.70787,3.826234,0,0,1,0,0,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,3550.765,-,-
-2524.5,7968.04953974485,19.9999992370605,19.9999992370605,0,-0.3029943,1071.235,34.10815,34.10815,2300,-166.7673,3.826234,258.0128,-18.70787,3.826234,0,0,1,0,0,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,3550.765,-,-
-2525.5,7973.60509508848,19.9999992370605,19.9999992370605,0,-0.3029943,1071.235,34.10815,34.10815,2300,-166.7673,3.826234,258.0128,-18.70787,3.826234,0,0,1,0,0,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,3550.765,-,-
-2526.5,7979.16065043211,19.9999992370605,19.9999992370605,0,-0.3029943,1071.235,34.10815,34.10815,2300,-166.7673,3.826234,258.0128,-18.70787,3.826234,0,0,1,0,0,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,3550.765,-,-
-2527.5,7984.71620577574,19.9999992370605,19.9999992370605,0,-0.3029943,1071.235,34.10815,34.10815,2300,-166.7673,3.826234,258.0128,-18.70787,3.826234,0,0,1,0,0,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,3550.765,-,-
-2528.5,7990.27176111937,19.9999992370605,19.9999992370605,0,-0.3029943,1071.235,34.10815,34.10815,2300,-166.7673,3.826234,258.0128,-18.70787,3.826234,0,0,1,0,0,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,3550.765,-,-
-2529.5,7995.82731646299,19.9999992370605,19.9999992370605,0,-0.3029943,1071.235,34.10815,34.10815,2300,-166.7673,3.826234,258.0128,-18.70787,3.826234,0,0,1,0,0,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,3550.765,-,-
-2530.5,8001.38287180662,19.9999992370605,19.9999992370605,0,-0.3029943,1071.235,34.10815,34.10815,2300,-166.7673,3.826234,258.0128,-18.70787,3.826234,0,0,1,0,0,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,3550.765,-,-
-2531.5,8006.93842715025,19.9999992370605,19.9999992370605,0,-0.3029943,1071.235,34.10815,34.10815,2300,-166.7673,3.826234,258.0128,-18.70787,3.826234,0,0,1,0,0,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,3550.765,-,-
-2532.5,8012.49398249388,19.9999992370605,19.9999992370605,0,-0.3029943,1071.235,34.10815,34.10815,2300,-166.7673,3.826234,258.0128,-18.70787,3.826234,0,0,1,0,0,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,3550.765,-,-
-2533.5,8018.04953783751,19.9999992370605,19.9999992370605,0,-0.3029943,1071.235,34.10815,34.10815,2300,-166.7673,3.826234,258.0128,-18.70787,3.826234,0,0,1,0,0,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,3550.765,-,-
-2534.5,8023.60509318113,19.9999992370605,19.9999992370605,0,-0.3029943,1071.235,34.10815,34.10815,2300,-166.7673,3.826234,258.0128,-18.70787,3.826234,0,0,1,0,0,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,3550.765,-,-
-2535.5,8029.16064852476,19.9999992370605,19.9999992370605,0,-0.3029943,1071.235,34.10815,34.10815,2300,-166.7673,3.826234,258.0128,-18.70787,3.826234,0,0,1,0,0,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,3550.765,-,-
-2536.5,8034.71620386839,19.9999992370605,19.9999992370605,0,-0.3029943,1071.235,34.10815,34.10815,2300,-166.7673,3.826234,258.0128,-18.70787,3.826234,0,0,1,0,0,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,3550.765,-,-
-2537.5,8040.27175921202,19.9999992370605,19.9999992370605,0,-0.3029943,1071.235,34.10815,34.10815,2300,-166.7673,3.826234,258.0128,-18.70787,3.826234,0,0,1,0,0,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,3550.765,-,-
-2538.5,8045.82731455565,19.9999992370605,19.9999992370605,0,-0.3029943,1071.235,34.10815,34.10815,2300,-166.7673,3.826234,258.0128,-18.70787,3.826234,0,0,1,0,0,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,3550.765,-,-
-2539.5,8051.38286989927,19.9999992370605,19.9999992370605,0,-0.3029943,1071.235,34.10815,34.10815,2300,-166.7673,3.826234,258.0128,-18.70787,3.826234,0,0,1,0,0,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,3550.765,-,-
-2540.5,8056.9384252429,19.9999992370605,19.9999992370605,0,-0.3029943,1071.235,34.10815,34.10815,2300,-166.7673,3.826234,258.0128,-18.70787,3.826234,0,0,1,0,0,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,3550.765,-,-
-2541.5,8062.49398058653,19.9999992370605,19.9999992370605,0,-0.3029943,1071.235,34.10815,34.10815,2300,-166.7673,3.826234,258.0128,-18.70787,3.826234,0,0,1,0,0,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,3550.765,-,-
-2542.5,8068.04953593016,19.9999992370605,19.9999992370605,0,-0.3029943,1071.235,34.10815,34.10815,2300,-166.7673,3.826234,258.0128,-18.70787,3.826234,0,0,1,0,0,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,3550.765,-,-
-2543.5,8073.60509127378,19.9999992370605,19.9999992370605,0,-0.3029943,1071.235,34.10815,34.10815,2300,-166.7673,3.826234,258.0128,-18.70787,3.826234,0,0,1,0,0,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,3550.765,-,-
-2544.5,8079.16064661741,19.9999992370605,19.9999992370605,0,-0.3029943,1071.235,34.10815,34.10815,2300,-166.7673,3.826234,258.0128,-18.70787,3.826234,0,0,1,0,0,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,3550.765,-,-
-2545.5,8084.71620196104,19.9999992370605,19.9999992370605,0,-0.3029943,1071.235,34.10815,34.10815,2300,-166.7673,3.826234,258.0128,-18.70787,3.826234,0,0,1,0,0,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,3550.765,-,-
-2546.5,8090.27175730467,19.9999992370605,19.9999992370605,0,-0.3029943,1071.235,34.10815,34.10815,2300,-166.7673,3.826234,258.0128,-18.70787,3.826234,0,0,1,0,0,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,3550.765,-,-
-2547.5,8095.8273126483,19.9999992370605,19.9999992370605,0,-0.3029943,1071.235,34.10815,34.10815,2300,-166.7673,3.826234,258.0128,-18.70787,3.826234,0,0,1,0,0,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,3550.765,-,-
-2548.5,8101.38286799192,19.9999992370605,19.9999992370605,0,-0.3029943,1071.235,34.10815,34.10815,2300,-166.7673,3.826234,258.0128,-18.70787,3.826234,0,0,1,0,0,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,3550.765,-,-
-2549.5,8106.93842333555,19.9999992370605,19.9999992370605,0,-0.3029943,1071.235,34.10815,34.10815,2300,-166.7673,3.826234,258.0128,-18.70787,3.826234,0,0,1,0,0,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,3550.765,-,-
-2550.5,8112.49397867918,19.9999992370605,19.9999992370605,0,-0.3029943,1071.235,34.10815,34.10815,2300,-166.7673,3.826234,258.0128,-18.70787,3.826234,0,0,1,0,0,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,3550.765,-,-
-2551.5,8118.04953402281,19.9999992370605,19.9999992370605,0,-0.3029943,1071.235,34.10815,34.10815,2300,-166.7673,3.826234,258.0128,-18.70787,3.826234,0,0,1,0,0,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,3550.765,-,-
-2552.5,8123.60508936644,19.9999992370605,19.9999992370605,0,-0.3029943,1071.235,34.10815,34.10815,2300,-166.7673,3.826234,258.0128,-18.70787,3.826234,0,0,1,0,0,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,3550.765,-,-
-2553.5,8129.16064471006,19.9999992370605,19.9999992370605,0,-0.3029943,1071.235,34.10815,34.10815,2300,-166.7673,3.826234,258.0128,-18.70787,3.826234,0,0,1,0,0,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,3550.765,-,-
-2554.5,8134.71620005369,19.9999992370605,19.9999992370605,0,-0.3029943,1071.235,34.10815,34.10815,2300,-166.7673,3.826234,258.0128,-18.70787,3.826234,0,0,1,0,0,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,3550.765,-,-
-2555.5,8140.27175539732,19.9999992370605,19.9999992370605,0,-0.3029943,1071.235,34.10815,34.10815,2300,-166.7673,3.826234,258.0128,-18.70787,3.826234,0,0,1,0,0,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,3550.765,-,-
-2556.5,8145.82731074095,19.9999992370605,19.9999992370605,0,-0.3029943,1071.235,34.10815,34.10815,2300,-166.7673,3.826234,258.0128,-18.70787,3.826234,0,0,1,0,0,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,3550.765,-,-
-2557.5,8151.38286608458,19.9999992370605,19.9999992370605,0,-0.3029943,1071.235,34.10815,34.10815,2300,-166.7673,3.826234,258.0128,-18.70787,3.826234,0,0,1,0,0,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,3550.765,-,-
-2558.5,8156.9384214282,19.9999992370605,19.9999992370605,0,-0.3029943,1071.235,34.10815,34.10815,2300,-166.7673,3.826234,258.0128,-18.70787,3.826234,0,0,1,0,0,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,3550.765,-,-
-2559.5,8162.49397677183,19.9999992370605,19.9999992370605,0,-0.3029943,1071.235,34.10815,34.10815,2300,-166.7673,3.826234,258.0128,-18.70787,3.826234,0,0,1,0,0,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,3550.765,-,-
-2560.5,8168.04953211546,19.9999992370605,19.9999992370605,0,-0.3029943,1071.235,34.10815,34.10815,2300,-166.7673,3.826234,258.0128,-18.70787,3.826234,0,0,1,0,0,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,3550.765,-,-
-2561.5,8173.60508745909,19.9999992370605,19.9999992370605,0,-0.3029943,1071.235,34.10815,34.10815,2300,-166.7673,3.826234,258.0128,-18.70787,3.826234,0,0,1,0,0,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,3550.765,-,-
-2562.5,8179.16064280272,19.9999992370605,19.9999992370605,0,-0.1941715,1071.235,44.15337,44.15337,2300,-166.7673,4.953102,258.0128,-18.70787,4.953102,0,0,1,0,0,0,0,0,6.631361,0.3323833,-2.010642,4.953102,0,3706.365,-,-
-2563.5,8184.71619814634,19.9999992370605,19.9999992370605,0,-0.1941715,1071.235,44.15337,44.15337,2300,-166.7673,4.953102,258.0128,-18.70787,4.953102,0,0,1,0,0,0,0,0,6.631361,0.3323833,-2.010642,4.953102,0,3706.365,-,-
-2564.5,8190.27175348997,19.9999992370605,19.9999992370605,0,-0.0799,1071.235,54.70155,54.70155,2300,-166.7673,6.136391,258.0128,-18.70787,6.136391,0,0,1,0,0,0,0,0,6.631371,0.3323833,-0.8273641,6.136391,0,3869.757,-,-
-2565.5,8195.8273088336,19.9999992370605,19.9999992370605,0,-0.0799,1071.235,54.70155,54.70155,2300,-166.7673,6.136391,258.0128,-18.70787,6.136391,0,0,1,0,0,0,0,0,6.631371,0.3323833,-0.8273641,6.136391,0,3869.757,-,-
-2566.5,8201.38286417723,19.9999992370605,19.9999992370605,0,0.0343,1071.235,65.24306,65.24306,2300,-166.7673,7.318933,258.0128,-18.70787,7.318933,0,0,1,0,0,0,0,0,6.631373,0.3323833,0.3551764,7.318933,0,4033.044,-,-
-2567.5,8206.93841952085,19.9999992370605,19.9999992370605,0,0.0343,1071.235,65.24306,65.24306,2300,-166.7673,7.318933,258.0128,-18.70787,7.318933,0,0,1,0,0,0,0,0,6.631373,0.3323833,0.3551764,7.318933,0,4033.044,-,-
-2568.5,8212.49397486448,19.9999992370605,19.9999992370605,0,0.1485235,1071.235,75.78666,75.78666,2300,-166.7673,8.501708,258.0128,-18.70787,8.501708,0,0,1,0,0,0,0,0,6.631366,0.3323833,1.537959,8.501708,0,4196.365,-,-
-2569.5,8218.04953020811,19.9999992370605,19.9999992370605,0,0.2056393,1071.235,81.0588,81.0588,2300,-166.7673,9.093134,258.0128,-18.70787,9.093134,0,0,1,0,0,0,0,0,6.63136,0.3323833,2.129391,9.093134,0,4278.03,-,-
-2570.5,8223.60508555174,19.9999992370605,19.9999992370605,0,0.2627552,1071.235,86.33089,86.33089,2300,-166.7673,9.684554,258.0128,-18.70787,9.684554,0,0,1,0,0,0,0,0,6.631351,0.3323833,2.72082,9.684554,0,4359.695,-,-
-2571.5,8229.16064089537,19.9999992370605,19.9999992370605,0,0.3769868,1071.235,96.87494,96.87494,2300,-166.7673,10.86738,258.0128,-18.70787,10.86738,0,0,1,0,0,0,0,0,6.631326,0.3323833,3.903671,10.86738,0,4523.022,-,-
-2572.5,8234.71619623899,19.9999992370605,19.9999992370605,0,0.3769868,1071.235,96.87494,96.87494,2300,-166.7673,10.86738,258.0128,-18.70787,10.86738,0,0,1,0,0,0,0,0,6.631326,0.3323833,3.903671,10.86738,0,4523.022,-,-
-2573.5,8240.27175158262,19.9999992370605,19.9999992370605,0,0.4912184,1071.235,107.4188,107.4188,2300,-166.7673,12.05018,258.0128,-18.70787,12.05018,0,0,1,0,0,0,0,0,6.631293,0.3323833,5.086505,12.05018,0,4686.347,-,-
-2574.5,8245.82730692625,19.9999992370605,19.9999992370605,0,0.4912184,1071.235,107.4188,107.4188,2300,-166.7673,12.05018,258.0128,-18.70787,12.05018,0,0,1,0,0,0,0,0,6.631293,0.3323833,5.086505,12.05018,0,4686.347,-,-
-2575.5,8251.38286226988,19.9999992370605,19.9999992370605,0,0.6054501,1071.235,117.9624,117.9624,2300,-166.7673,13.23296,258.0128,-18.70787,13.23296,0,0,1,0,0,0,0,0,6.631252,0.3323833,6.26932,13.23296,0,4849.667,-,-
-2576.5,8256.93841761351,19.9999992370605,19.9999992370605,0,0.6054501,1071.235,117.9624,117.9624,2300,-166.7673,13.23296,258.0128,-18.70787,13.23296,0,0,1,0,0,0,0,0,6.631252,0.3323833,6.26932,13.23296,0,4849.667,-,-
-2577.5,8262.49397295713,19.9999992370605,19.9999992370605,0,0.7196818,1071.235,128.5056,128.5056,2300,-166.7673,14.4157,258.0128,-18.70787,14.4157,0,0,1,0,0,0,0,0,6.631202,0.3323833,7.452112,14.4157,0,5012.982,-,-
-2578.5,8268.04952830076,19.9999992370605,19.9999992370605,0,0.7767977,1071.235,133.7772,133.7772,2300,-166.7673,15.00705,258.0128,-18.70787,15.00705,0,0,1,0,0,0,0,0,6.631173,0.3323833,8.043497,15.00705,0,5106.968,-,-
-2579.5,8273.60508364439,19.9999992370605,19.9999992370605,0,0.8339134,1071.235,139.0486,139.0486,2300,-166.7673,15.5984,258.0128,-18.70787,15.5984,0,0,1,0,0,0,0,0,6.631143,0.3323833,8.634872,15.5984,0,5201.59,-,-
-2580.5,8279.16063898802,19.9999992370605,19.9999992370605,0,0.9481452,1071.235,149.5912,149.5912,2300,-166.7673,16.78106,258.0128,-18.70787,16.78106,0,0,1,0,0,0,0,0,6.631075,0.3323833,9.817601,16.78106,0,5390.83,-,-
-2581.5,8284.71619433165,19.9999992370605,19.9999992370605,0,0.9481452,1071.235,149.5912,149.5912,2300,-166.7673,16.78106,258.0128,-18.70787,16.78106,0,0,1,0,0,0,0,0,6.631075,0.3323833,9.817601,16.78106,0,5390.83,-,-
-2582.5,8290.27174967527,19.9999992370605,19.9999992370605,0,1.062377,1071.235,160.1333,160.1333,2300,-166.7673,17.96367,258.0128,-18.70787,17.96367,0,0,1,0,0,0,0,0,6.630999,0.3323833,11.00029,17.96367,0,5580.061,-,-
-2583.5,8295.8273050189,19.9999992370605,19.9999992370605,0,1.062377,1071.235,160.1333,160.1333,2300,-166.7673,17.96367,258.0128,-18.70787,17.96367,0,0,1,0,0,0,0,0,6.630999,0.3323833,11.00029,17.96367,0,5580.061,-,-
-2584.5,8301.38286036253,19.9999992370605,19.9999992370605,0,1.176608,1071.235,170.675,170.675,2300,-166.7673,19.14623,258.0128,-18.70787,19.14623,0,0,1,0,0,0,0,0,6.630915,0.3323833,12.18294,19.14623,0,5769.285,-,-
-2585.5,8306.93841570616,19.9999992370605,19.9999992370605,0,1.176608,1071.235,170.675,170.675,2300,-166.7673,19.14623,258.0128,-18.70787,19.14623,0,0,1,0,0,0,0,0,6.630915,0.3323833,12.18294,19.14623,0,5769.285,-,-
-2586.5,8312.49397104979,19.9999992370605,19.9999992370605,0,1.29084,1071.235,181.2162,181.2162,2300,-166.7673,20.32874,258.0128,-18.70787,20.32874,0,0,1,0,0,0,0,0,6.630821,0.3323833,13.36554,20.32874,0,5958.499,-,-
-2587.5,8318.04952639341,19.9999992370605,19.9999992370605,0,1.347956,1071.235,186.4866,186.4866,2300,-166.7673,20.91997,258.0128,-18.70787,20.91997,0,0,1,0,0,0,0,0,6.630771,0.3323833,13.95681,20.91997,0,6053.102,-,-
-2588.5,8323.60508173704,19.9999992370605,19.9999992370605,0,1.405072,1071.235,191.7569,191.7569,2300,-166.7673,21.51118,258.0128,-18.70787,21.51118,0,0,1,0,0,0,0,0,6.630719,0.3323833,14.54808,21.51118,0,6147.704,-,-
-2589.5,8329.16063708067,19.9999992370605,19.9999992370605,0,1.519303,1071.235,202.2969,202.2969,2300,-166.7673,22.69356,258.0128,-18.70787,22.69356,0,0,1,0,0,0,0,0,6.630608,0.3323833,15.73057,22.69356,0,6332.82,-,-
-2590.5,8334.7161924243,19.9999992370605,19.9999992370605,0,1.519303,1071.235,202.2969,202.2969,2300,-166.7673,22.69356,258.0128,-18.70787,22.69356,0,0,1,0,0,0,0,0,6.630608,0.3323833,15.73057,22.69356,0,6332.82,-,-
-2591.5,8340.27174776793,19.9999992370605,19.9999992370605,0,1.633535,1071.235,212.8364,212.8364,2300,-166.7673,23.87587,258.0128,-18.70787,23.87587,0,0,1,0,0,0,0,0,6.630489,0.3323833,16.913,23.87587,0,6503.296,-,-
-2592.5,8345.82730311155,19.9999992370605,19.9999992370605,0,1.633535,1071.235,212.8364,212.8364,2300,-166.7673,23.87587,258.0128,-18.70787,23.87587,0,0,1,0,0,0,0,0,6.630489,0.3323833,16.913,23.87587,0,6503.296,-,-
-2593.5,8351.38285845518,19.9999992370605,19.9999992370605,0,1.747767,1071.235,223.3751,223.3751,2300,-166.7673,25.0581,258.0128,-18.70787,25.0581,0,0,1,0,0,0,0,0,6.630361,0.3323833,18.09536,25.0581,0,6673.76,-,-
-2594.5,8356.93841379881,19.9999992370605,19.9999992370605,0,1.747767,1071.235,223.3751,223.3751,2300,-166.7673,25.0581,258.0128,-18.70787,25.0581,0,0,1,0,0,0,0,0,6.630361,0.3323833,18.09536,25.0581,0,6673.76,-,-
-2595.5,8362.49396914244,19.9999992370605,19.9999992370605,0,1.861998,1071.235,233.9132,233.9132,2300,-166.7673,26.24026,258.0128,-18.70787,26.24026,0,0,1,0,0,0,0,0,6.630224,0.3323833,19.27765,26.24026,0,6844.213,-,-
-2596.5,8368.04952448606,19.9999992370605,19.9999992370605,0,1.919114,1071.235,239.1819,239.1819,2300,-166.7673,26.8313,258.0128,-18.70787,26.8313,0,0,1,0,0,0,0,0,6.630153,0.3323833,19.86877,26.8313,0,6929.436,-,-
-2597.5,8373.60507982969,19.9999992370605,19.9999992370605,0,1.97623,1071.235,244.4505,244.4505,2300,-166.7673,27.42233,258.0128,-18.70787,27.42233,0,0,1,0,0,0,0,0,6.630079,0.3323833,20.45987,27.42233,0,7014.655,-,-
-2598.5,8379.16063517332,19.9999992370605,19.9999992370605,0,1.97623,1071.235,244.4505,244.4505,2300,-166.7673,27.42233,258.0128,-18.70787,27.42233,0,0,1,0,0,0,0,0,6.630079,0.3323833,20.45987,27.42233,0,7014.655,-,-
-2599.5,8384.71619051695,19.9999992370605,19.9999992370605,0,1.97623,1071.235,244.4505,244.4505,2300,-166.7673,27.42233,258.0128,-18.70787,27.42233,0,0,1,0,0,0,0,0,6.630079,0.3323833,20.45987,27.42233,0,7014.655,-,-
-2600.5,8390.27174586058,19.9999992370605,19.9999992370605,0,1.97623,1071.235,244.4505,244.4505,2300,-166.7673,27.42233,258.0128,-18.70787,27.42233,0,0,1,0,0,0,0,0,6.630079,0.3323833,20.45987,27.42233,0,7014.655,-,-
-2601.5,8395.8273012042,19.9999992370605,19.9999992370605,0,1.97623,1071.235,244.4505,244.4505,2300,-166.7673,27.42233,258.0128,-18.70787,27.42233,0,0,1,0,0,0,0,0,6.630079,0.3323833,20.45987,27.42233,0,7014.655,-,-
-2602.5,8401.38285654783,19.9999992370605,19.9999992370605,0,1.97623,1071.235,244.4505,244.4505,2300,-166.7673,27.42233,258.0128,-18.70787,27.42233,0,0,1,0,0,0,0,0,6.630079,0.3323833,20.45987,27.42233,0,7014.655,-,-
-2603.5,8406.93841189146,19.9999992370605,19.9999992370605,0,1.97623,1071.235,244.4505,244.4505,2300,-166.7673,27.42233,258.0128,-18.70787,27.42233,0,0,1,0,0,0,0,0,6.630079,0.3323833,20.45987,27.42233,0,7014.655,-,-
-2604.5,8412.49396723509,19.9999992370605,19.9999992370605,0,1.97623,1071.235,244.4505,244.4505,2300,-166.7673,27.42233,258.0128,-18.70787,27.42233,0,0,1,0,0,0,0,0,6.630079,0.3323833,20.45987,27.42233,0,7014.655,-,-
-2605.5,8418.04952257872,19.9999992370605,19.9999992370605,0,1.916164,1071.235,238.9098,238.9098,2300,-166.7673,26.80078,258.0128,-18.70787,26.80078,0,0,1,0,0,0,0,0,6.630157,0.3323833,19.83824,26.80078,0,6925.034,-,-
-2606.5,8423.60507792234,19.9999992370605,19.9999992370605,0,1.856098,1071.235,233.3689,233.3689,2300,-166.7673,26.1792,258.0128,-18.70787,26.1792,0,0,1,0,0,0,0,0,6.630231,0.3323833,19.21658,26.1792,0,6835.409,-,-
-2607.5,8429.16063326597,19.9999992370605,19.9999992370605,0,1.856098,1071.235,233.3689,233.3689,2300,-166.7673,26.1792,258.0128,-18.70787,26.1792,0,0,1,0,0,0,0,0,6.630231,0.3323833,19.21658,26.1792,0,6835.409,-,-
-2608.5,8434.7161886096,19.9999992370605,19.9999992370605,0,1.856098,1071.235,233.3689,233.3689,2300,-166.7673,26.1792,258.0128,-18.70787,26.1792,0,0,1,0,0,0,0,0,6.630231,0.3323833,19.21658,26.1792,0,6835.409,-,-
-2609.5,8440.27174395323,19.9999992370605,19.9999992370605,0,1.746887,1071.235,223.2939,223.2939,2300,-166.7673,25.049,258.0128,-18.70787,25.049,0,0,1,0,0,0,0,0,6.630362,0.3323833,18.08625,25.049,0,6672.448,-,-
-2610.5,8445.82729929686,19.9999992370605,19.9999992370605,0,1.746887,1071.235,223.2939,223.2939,2300,-166.7673,25.049,258.0128,-18.70787,25.049,0,0,1,0,0,0,0,0,6.630362,0.3323833,18.08625,25.049,0,6672.448,-,-
-2611.5,8451.38285464048,19.9999992370605,19.9999992370605,0,1.746887,1071.235,223.2939,223.2939,2300,-166.7673,25.049,258.0128,-18.70787,25.049,0,0,1,0,0,0,0,0,6.630362,0.3323833,18.08625,25.049,0,6672.448,-,-
-2612.5,8456.93840998411,19.9999992370605,19.9999992370605,0,1.746887,1071.235,223.2939,223.2939,2300,-166.7673,25.049,258.0128,-18.70787,25.049,0,0,1,0,0,0,0,0,6.630362,0.3323833,18.08625,25.049,0,6672.448,-,-
-2613.5,8462.49396532774,19.9999992370605,19.9999992370605,0,1.637676,1071.235,213.2184,213.2184,2300,-166.7673,23.91873,258.0128,-18.70787,23.91873,0,0,1,0,0,0,0,0,6.630485,0.3323833,16.95586,23.91873,0,6509.475,-,-
-2614.5,8468.04952067137,19.9999992370605,19.9999992370605,0,1.637676,1071.235,213.2184,213.2184,2300,-166.7673,23.91873,258.0128,-18.70787,23.91873,0,0,1,0,0,0,0,0,6.630485,0.3323833,16.95586,23.91873,0,6509.475,-,-
-2615.5,8473.605076015,19.9999992370605,19.9999992370605,0,1.637676,1071.235,213.2184,213.2184,2300,-166.7673,23.91873,258.0128,-18.70787,23.91873,0,0,1,0,0,0,0,0,6.630485,0.3323833,16.95586,23.91873,0,6509.475,-,-
-2616.5,8479.16063135862,19.9999992370605,19.9999992370605,0,1.528465,1071.235,203.1422,203.1422,2300,-166.7673,22.78838,258.0128,-18.70787,22.78838,0,0,1,0,0,0,0,0,6.630599,0.3323833,15.8254,22.78838,0,6346.493,-,-
-2617.5,8484.71618670225,19.9999992370605,19.9999992370605,0,1.528465,1071.235,203.1422,203.1422,2300,-166.7673,22.78838,258.0128,-18.70787,22.78838,0,0,1,0,0,0,0,0,6.630599,0.3323833,15.8254,22.78838,0,6346.493,-,-
-2618.5,8490.27174204588,19.9999992370605,19.9999992370605,0,1.528465,1071.235,203.1422,203.1422,2300,-166.7673,22.78838,258.0128,-18.70787,22.78838,0,0,1,0,0,0,0,0,6.630599,0.3323833,15.8254,22.78838,0,6346.493,-,-
-2619.5,8495.82729738951,19.9999992370605,19.9999992370605,0,1.528465,1071.235,203.1422,203.1422,2300,-166.7673,22.78838,258.0128,-18.70787,22.78838,0,0,1,0,0,0,0,0,6.630599,0.3323833,15.8254,22.78838,0,6346.493,-,-
-2620.5,8501.38285273314,19.9999992370605,19.9999992370605,0,1.419254,1071.235,193.0654,193.0654,2300,-166.7673,21.65798,258.0128,-18.70787,21.65798,0,0,1,0,0,0,0,0,6.630706,0.3323833,14.69489,21.65798,0,6171.192,-,-
-2621.5,8506.93840807676,19.9999992370605,19.9999992370605,0,1.419254,1071.235,193.0654,193.0654,2300,-166.7673,21.65798,258.0128,-18.70787,21.65798,0,0,1,0,0,0,0,0,6.630706,0.3323833,14.69489,21.65798,0,6171.192,-,-
-2622.5,8512.49396342039,19.9999992370605,19.9999992370605,0,1.419254,1071.235,193.0654,193.0654,2300,-166.7673,21.65798,258.0128,-18.70787,21.65798,0,0,1,0,0,0,0,0,6.630706,0.3323833,14.69489,21.65798,0,6171.192,-,-
-2623.5,8518.04951876402,19.9999992370605,19.9999992370605,0,1.364648,1071.235,188.0269,188.0269,2300,-166.7673,21.09275,258.0128,-18.70787,21.09275,0,0,1,0,0,0,0,0,6.630756,0.3323833,14.12961,21.09275,0,6080.75,-,-
-2624.5,8523.60507410765,19.9999992370605,19.9999992370605,0,1.310043,1071.235,182.9882,182.9882,2300,-166.7673,20.52752,258.0128,-18.70787,20.52752,0,0,1,0,0,0,0,0,6.630805,0.3323833,13.56433,20.52752,0,5990.305,-,-
-2625.5,8529.16062945127,19.9999992370605,19.9999992370605,0,1.310043,1071.235,182.9882,182.9882,2300,-166.7673,20.52752,258.0128,-18.70787,20.52752,0,0,1,0,0,0,0,0,6.630805,0.3323833,13.56433,20.52752,0,5990.305,-,-
-2626.5,8534.7161847949,19.9999992370605,19.9999992370605,0,1.310043,1071.235,182.9882,182.9882,2300,-166.7673,20.52752,258.0128,-18.70787,20.52752,0,0,1,0,0,0,0,0,6.630805,0.3323833,13.56433,20.52752,0,5990.305,-,-
-2627.5,8540.27174013853,19.9999992370605,19.9999992370605,0,1.200832,1071.235,172.9103,172.9103,2300,-166.7673,19.39699,258.0128,-18.70787,19.39699,0,0,1,0,0,0,0,0,6.630895,0.3323833,12.43371,19.39699,0,5809.409,-,-
-2628.5,8545.82729548216,19.9999992370605,19.9999992370605,0,1.200832,1071.235,172.9103,172.9103,2300,-166.7673,19.39699,258.0128,-18.70787,19.39699,0,0,1,0,0,0,0,0,6.630895,0.3323833,12.43371,19.39699,0,5809.409,-,-
-2629.5,8551.38285082579,19.9999992370605,19.9999992370605,0,1.200832,1071.235,172.9103,172.9103,2300,-166.7673,19.39699,258.0128,-18.70787,19.39699,0,0,1,0,0,0,0,0,6.630895,0.3323833,12.43371,19.39699,0,5809.409,-,-
-2630.5,8556.93840616941,19.9999992370605,19.9999992370605,0,1.200832,1071.235,172.9103,172.9103,2300,-166.7673,19.39699,258.0128,-18.70787,19.39699,0,0,1,0,0,0,0,0,6.630895,0.3323833,12.43371,19.39699,0,5809.409,-,-
-2631.5,8562.49396151304,19.9999992370605,19.9999992370605,0,1.091621,1071.235,162.8321,162.8321,2300,-166.7673,18.26642,258.0128,-18.70787,18.26642,0,0,1,0,0,0,0,0,6.630979,0.3323833,11.30306,18.26642,0,5628.504,-,-
-2632.5,8568.04951685667,19.9999992370605,19.9999992370605,0,1.091621,1071.235,162.8321,162.8321,2300,-166.7673,18.26642,258.0128,-18.70787,18.26642,0,0,1,0,0,0,0,0,6.630979,0.3323833,11.30306,18.26642,0,5628.504,-,-
-2633.5,8573.6050722003,19.9999992370605,19.9999992370605,0,1.091621,1071.235,162.8321,162.8321,2300,-166.7673,18.26642,258.0128,-18.70787,18.26642,0,0,1,0,0,0,0,0,6.630979,0.3323833,11.30306,18.26642,0,5628.504,-,-
-2634.5,8579.16062754393,19.9999992370605,19.9999992370605,0,0.9824094,1071.235,152.7534,152.7534,2300,-166.7673,17.1358,258.0128,-18.70787,17.1358,0,0,1,0,0,0,0,0,6.631053,0.3323833,10.17236,17.1358,0,5447.591,-,-
-2635.5,8584.71618288755,19.9999992370605,19.9999992370605,0,0.9824094,1071.235,152.7534,152.7534,2300,-166.7673,17.1358,258.0128,-18.70787,17.1358,0,0,1,0,0,0,0,0,6.631053,0.3323833,10.17236,17.1358,0,5447.591,-,-
-2636.5,8590.27173823118,19.9999992370605,19.9999992370605,0,0.9824094,1071.235,152.7534,152.7534,2300,-166.7673,17.1358,258.0128,-18.70787,17.1358,0,0,1,0,0,0,0,0,6.631053,0.3323833,10.17236,17.1358,0,5447.591,-,-
-2637.5,8595.82729357481,19.9999992370605,19.9999992370605,0,0.9824094,1071.235,152.7534,152.7534,2300,-166.7673,17.1358,258.0128,-18.70787,17.1358,0,0,1,0,0,0,0,0,6.631053,0.3323833,10.17236,17.1358,0,5447.591,-,-
-2638.5,8601.38284891844,19.9999992370605,19.9999992370605,0,0.9824094,1071.235,152.7534,152.7534,2300,-166.7673,17.1358,258.0128,-18.70787,17.1358,0,0,1,0,0,0,0,0,6.631053,0.3323833,10.17236,17.1358,0,5447.591,-,-
-2639.5,8606.93840426207,19.9999992370605,19.9999992370605,0,0.9824094,1071.235,152.7534,152.7534,2300,-166.7673,17.1358,258.0128,-18.70787,17.1358,0,0,1,0,0,0,0,0,6.631053,0.3323833,10.17236,17.1358,0,5447.591,-,-
-2640.5,8612.49395960569,19.9999992370605,19.9999992370605,0,0.9824094,1071.235,152.7534,152.7534,2300,-166.7673,17.1358,258.0128,-18.70787,17.1358,0,0,1,0,0,0,0,0,6.631053,0.3323833,10.17236,17.1358,0,5447.591,-,-
-2641.5,8618.04951494932,19.9999992370605,19.9999992370605,0,0.9824094,1071.235,152.7534,152.7534,2300,-166.7673,17.1358,258.0128,-18.70787,17.1358,0,0,1,0,0,0,0,0,6.631053,0.3323833,10.17236,17.1358,0,5447.591,-,-
-2642.5,8623.60507029295,19.9999992370605,19.9999992370605,0,0.9824094,1071.235,152.7534,152.7534,2300,-166.7673,17.1358,258.0128,-18.70787,17.1358,0,0,1,0,0,0,0,0,6.631053,0.3323833,10.17236,17.1358,0,5447.591,-,-
-2643.5,8629.16062563658,19.9999992370605,19.9999992370605,0,0.9824094,1071.235,152.7534,152.7534,2300,-166.7673,17.1358,258.0128,-18.70787,17.1358,0,0,1,0,0,0,0,0,6.631053,0.3323833,10.17236,17.1358,0,5447.591,-,-
-2644.5,8634.71618098021,19.9999992370605,19.9999992370605,0,0.9824094,1071.235,152.7534,152.7534,2300,-166.7673,17.1358,258.0128,-18.70787,17.1358,0,0,1,0,0,0,0,0,6.631053,0.3323833,10.17236,17.1358,0,5447.591,-,-
-2645.5,8640.27173632383,19.9999992370605,19.9999992370605,0,0.9824094,1071.235,152.7534,152.7534,2300,-166.7673,17.1358,258.0128,-18.70787,17.1358,0,0,1,0,0,0,0,0,6.631053,0.3323833,10.17236,17.1358,0,5447.591,-,-
-2646.5,8645.82729166746,19.9999992370605,19.9999992370605,0,0.9824094,1071.235,152.7534,152.7534,2300,-166.7673,17.1358,258.0128,-18.70787,17.1358,0,0,1,0,0,0,0,0,6.631053,0.3323833,10.17236,17.1358,0,5447.591,-,-
-2647.5,8651.38284701109,19.9999992370605,19.9999992370605,0,0.9824094,1071.235,152.7534,152.7534,2300,-166.7673,17.1358,258.0128,-18.70787,17.1358,0,0,1,0,0,0,0,0,6.631053,0.3323833,10.17236,17.1358,0,5447.591,-,-
-2648.5,8656.93840235472,19.9999992370605,19.9999992370605,0,0.9824094,1071.235,152.7534,152.7534,2300,-166.7673,17.1358,258.0128,-18.70787,17.1358,0,0,1,0,0,0,0,0,6.631053,0.3323833,10.17236,17.1358,0,5447.591,-,-
-2649.5,8662.49395769835,19.9999992370605,19.9999992370605,0,0.9824094,1071.235,152.7534,152.7534,2300,-166.7673,17.1358,258.0128,-18.70787,17.1358,0,0,1,0,0,0,0,0,6.631053,0.3323833,10.17236,17.1358,0,5447.591,-,-
-2650.5,8668.04951304197,19.9999992370605,19.9999992370605,0,0.9824094,1071.235,152.7534,152.7534,2300,-166.7673,17.1358,258.0128,-18.70787,17.1358,0,0,1,0,0,0,0,0,6.631053,0.3323833,10.17236,17.1358,0,5447.591,-,-
-2651.5,8673.6050683856,19.9999992370605,19.9999992370605,0,0.9824094,1071.235,152.7534,152.7534,2300,-166.7673,17.1358,258.0128,-18.70787,17.1358,0,0,1,0,0,0,0,0,6.631053,0.3323833,10.17236,17.1358,0,5447.591,-,-
-2652.5,8679.16062372923,19.9999992370605,19.9999992370605,0,0.8810398,1071.235,143.398,143.398,2300,-166.7673,16.08631,258.0128,-18.70787,16.08631,0,0,1,0,0,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,5279.662,-,-
-2653.5,8684.71617907286,19.9999992370605,19.9999992370605,0,0.8810398,1071.235,143.398,143.398,2300,-166.7673,16.08631,258.0128,-18.70787,16.08631,0,0,1,0,0,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,5279.662,-,-
-2654.5,8690.27173441648,19.9999992370605,19.9999992370605,0,0.8810398,1071.235,143.398,143.398,2300,-166.7673,16.08631,258.0128,-18.70787,16.08631,0,0,1,0,0,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,5279.662,-,-
-2655.5,8695.82728976011,19.9999992370605,19.9999992370605,0,0.8810398,1071.235,143.398,143.398,2300,-166.7673,16.08631,258.0128,-18.70787,16.08631,0,0,1,0,0,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,5279.662,-,-
-2656.5,8701.38284510374,19.9999992370605,19.9999992370605,0,0.8810398,1071.235,143.398,143.398,2300,-166.7673,16.08631,258.0128,-18.70787,16.08631,0,0,1,0,0,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,5279.662,-,-
-2657.5,8706.93840044737,19.9999992370605,19.9999992370605,0,0.8810398,1071.235,143.398,143.398,2300,-166.7673,16.08631,258.0128,-18.70787,16.08631,0,0,1,0,0,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,5279.662,-,-
-2658.5,8712.493955791,19.9999992370605,19.9999992370605,0,0.8810398,1071.235,143.398,143.398,2300,-166.7673,16.08631,258.0128,-18.70787,16.08631,0,0,1,0,0,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,5279.662,-,-
-2659.5,8718.04951113462,19.9999992370605,19.9999992370605,0,0.8810398,1071.235,143.398,143.398,2300,-166.7673,16.08631,258.0128,-18.70787,16.08631,0,0,1,0,0,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,5279.662,-,-
-2660.5,8723.60506647825,19.9999992370605,19.9999992370605,0,0.8810398,1071.235,143.398,143.398,2300,-166.7673,16.08631,258.0128,-18.70787,16.08631,0,0,1,0,0,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,5279.662,-,-
-2661.5,8729.16062182188,19.9999992370605,19.9999992370605,0,0.8810398,1071.235,143.398,143.398,2300,-166.7673,16.08631,258.0128,-18.70787,16.08631,0,0,1,0,0,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,5279.662,-,-
-2662.5,8734.71617716551,19.9999992370605,19.9999992370605,0,0.8810398,1071.235,143.398,143.398,2300,-166.7673,16.08631,258.0128,-18.70787,16.08631,0,0,1,0,0,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,5279.662,-,-
-2663.5,8740.27173250914,19.9999992370605,19.9999992370605,0,0.8810398,1071.235,143.398,143.398,2300,-166.7673,16.08631,258.0128,-18.70787,16.08631,0,0,1,0,0,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,5279.662,-,-
-2664.5,8745.82728785276,19.9999992370605,19.9999992370605,0,0.8810398,1071.235,143.398,143.398,2300,-166.7673,16.08631,258.0128,-18.70787,16.08631,0,0,1,0,0,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,5279.662,-,-
-2665.5,8751.38284319639,19.9999992370605,19.9999992370605,0,0.8810398,1071.235,143.398,143.398,2300,-166.7673,16.08631,258.0128,-18.70787,16.08631,0,0,1,0,0,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,5279.662,-,-
-2666.5,8756.93839854002,19.9999992370605,19.9999992370605,0,0.8810398,1071.235,143.398,143.398,2300,-166.7673,16.08631,258.0128,-18.70787,16.08631,0,0,1,0,0,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,5279.662,-,-
-2667.5,8762.49395388365,19.9999992370605,19.9999992370605,0,0.8810398,1071.235,143.398,143.398,2300,-166.7673,16.08631,258.0128,-18.70787,16.08631,0,0,1,0,0,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,5279.662,-,-
-2668.5,8768.04950922728,19.9999992370605,19.9999992370605,0,0.8810398,1071.235,143.398,143.398,2300,-166.7673,16.08631,258.0128,-18.70787,16.08631,0,0,1,0,0,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,5279.662,-,-
-2669.5,8773.6050645709,19.9999992370605,19.9999992370605,0,0.8810398,1071.235,143.398,143.398,2300,-166.7673,16.08631,258.0128,-18.70787,16.08631,0,0,1,0,0,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,5279.662,-,-
-2670.5,8779.16061991453,19.9999992370605,19.9999992370605,0,0.8810398,1071.235,143.398,143.398,2300,-166.7673,16.08631,258.0128,-18.70787,16.08631,0,0,1,0,0,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,5279.662,-,-
-2671.5,8784.71617525816,19.9999992370605,19.9999992370605,0,0.8810398,1071.235,143.398,143.398,2300,-166.7673,16.08631,258.0128,-18.70787,16.08631,0,0,1,0,0,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,5279.662,-,-
-2672.5,8790.27173060179,19.9999992370605,19.9999992370605,0,0.8810398,1071.235,143.398,143.398,2300,-166.7673,16.08631,258.0128,-18.70787,16.08631,0,0,1,0,0,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,5279.662,-,-
-2673.5,8795.82728594542,19.9999992370605,19.9999992370605,0,0.8810398,1071.235,143.398,143.398,2300,-166.7673,16.08631,258.0128,-18.70787,16.08631,0,0,1,0,0,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,5279.662,-,-
-2674.5,8801.38284128904,19.9999992370605,19.9999992370605,0,0.8810398,1071.235,143.398,143.398,2300,-166.7673,16.08631,258.0128,-18.70787,16.08631,0,0,1,0,0,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,5279.662,-,-
-2675.5,8806.93839663267,19.9999992370605,19.9999992370605,0,0.8810398,1071.235,143.398,143.398,2300,-166.7673,16.08631,258.0128,-18.70787,16.08631,0,0,1,0,0,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,5279.662,-,-
-2676.5,8812.4939519763,19.9999992370605,19.9999992370605,0,0.8810398,1071.235,143.398,143.398,2300,-166.7673,16.08631,258.0128,-18.70787,16.08631,0,0,1,0,0,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,5279.662,-,-
-2677.5,8818.04950731993,19.9999992370605,19.9999992370605,0,0.8810398,1071.235,143.398,143.398,2300,-166.7673,16.08631,258.0128,-18.70787,16.08631,0,0,1,0,0,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,5279.662,-,-
-2678.5,8823.60506266356,19.9999992370605,19.9999992370605,0,0.8810398,1071.235,143.398,143.398,2300,-166.7673,16.08631,258.0128,-18.70787,16.08631,0,0,1,0,0,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,5279.662,-,-
-2679.5,8829.16061800718,19.9999992370605,19.9999992370605,0,0.8810398,1071.235,143.398,143.398,2300,-166.7673,16.08631,258.0128,-18.70787,16.08631,0,0,1,0,0,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,5279.662,-,-
-2680.5,8834.71617335081,19.9999992370605,19.9999992370605,0,0.8810398,1071.235,143.398,143.398,2300,-166.7673,16.08631,258.0128,-18.70787,16.08631,0,0,1,0,0,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,5279.662,-,-
-2681.5,8840.27172869444,19.9999992370605,19.9999992370605,0,0.8810398,1071.235,143.398,143.398,2300,-166.7673,16.08631,258.0128,-18.70787,16.08631,0,0,1,0,0,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,5279.662,-,-
-2682.5,8845.82728403807,19.9999992370605,19.9999992370605,0,0.8810398,1071.235,143.398,143.398,2300,-166.7673,16.08631,258.0128,-18.70787,16.08631,0,0,1,0,0,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,5279.662,-,-
-2683.5,8851.38283938169,19.9999992370605,19.9999992370605,0,0.8810398,1071.235,143.398,143.398,2300,-166.7673,16.08631,258.0128,-18.70787,16.08631,0,0,1,0,0,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,5279.662,-,-
-2684.5,8856.93839472532,19.9999992370605,19.9999992370605,0,0.8810398,1071.235,143.398,143.398,2300,-166.7673,16.08631,258.0128,-18.70787,16.08631,0,0,1,0,0,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,5279.662,-,-
-2685.5,8862.49395006895,19.9999992370605,19.9999992370605,0,0.8810398,1071.235,143.398,143.398,2300,-166.7673,16.08631,258.0128,-18.70787,16.08631,0,0,1,0,0,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,5279.662,-,-
-2686.5,8868.04950541258,19.9999992370605,19.9999992370605,0,0.8810398,1071.235,143.398,143.398,2300,-166.7673,16.08631,258.0128,-18.70787,16.08631,0,0,1,0,0,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,5279.662,-,-
-2687.5,8873.60506075621,19.9999992370605,19.9999992370605,0,0.8810398,1071.235,143.398,143.398,2300,-166.7673,16.08631,258.0128,-18.70787,16.08631,0,0,1,0,0,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,5279.662,-,-
-2688.5,8879.16061609983,19.9999992370605,19.9999992370605,0,0.8810398,1071.235,143.398,143.398,2300,-166.7673,16.08631,258.0128,-18.70787,16.08631,0,0,1,0,0,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,5279.662,-,-
-2689.5,8884.71617144346,19.9999992370605,19.9999992370605,0,0.8810398,1071.235,143.398,143.398,2300,-166.7673,16.08631,258.0128,-18.70787,16.08631,0,0,1,0,0,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,5279.662,-,-
-2690.5,8890.27172678709,19.9999992370605,19.9999992370605,0,0.8810398,1071.235,143.398,143.398,2300,-166.7673,16.08631,258.0128,-18.70787,16.08631,0,0,1,0,0,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,5279.662,-,-
-2691.5,8895.82728213072,19.9999992370605,19.9999992370605,0,0.8810398,1071.235,143.398,143.398,2300,-166.7673,16.08631,258.0128,-18.70787,16.08631,0,0,1,0,0,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,5279.662,-,-
-2692.5,8901.38283747435,19.9999992370605,19.9999992370605,0,0.8810398,1071.235,143.398,143.398,2300,-166.7673,16.08631,258.0128,-18.70787,16.08631,0,0,1,0,0,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,5279.662,-,-
-2693.5,8906.93839281797,19.9999992370605,19.9999992370605,0,0.8810398,1071.235,143.398,143.398,2300,-166.7673,16.08631,258.0128,-18.70787,16.08631,0,0,1,0,0,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,5279.662,-,-
-2694.5,8912.4939481616,19.9999992370605,19.9999992370605,0,0.8810398,1071.235,143.398,143.398,2300,-166.7673,16.08631,258.0128,-18.70787,16.08631,0,0,1,0,0,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,5279.662,-,-
-2695.5,8918.04950350523,19.9999992370605,19.9999992370605,0,0.8810398,1071.235,143.398,143.398,2300,-166.7673,16.08631,258.0128,-18.70787,16.08631,0,0,1,0,0,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,5279.662,-,-
-2696.5,8923.60505884886,19.9999992370605,19.9999992370605,0,0.8810398,1071.235,143.398,143.398,2300,-166.7673,16.08631,258.0128,-18.70787,16.08631,0,0,1,0,0,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,5279.662,-,-
-2697.5,8929.16061419249,19.9999992370605,19.9999992370605,0,0.8810398,1071.235,143.398,143.398,2300,-166.7673,16.08631,258.0128,-18.70787,16.08631,0,0,1,0,0,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,5279.662,-,-
-2698.5,8934.71616953611,19.9999992370605,19.9999992370605,0,0.8810398,1071.235,143.398,143.398,2300,-166.7673,16.08631,258.0128,-18.70787,16.08631,0,0,1,0,0,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,5279.662,-,-
-2699.5,8940.27172487974,19.9999992370605,19.9999992370605,0,0.8810398,1071.235,143.398,143.398,2300,-166.7673,16.08631,258.0128,-18.70787,16.08631,0,0,1,0,0,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,5279.662,-,-
-2700.5,8945.82728022337,19.9999992370605,19.9999992370605,0,0.8810398,1071.235,143.398,143.398,2300,-166.7673,16.08631,258.0128,-18.70787,16.08631,0,0,1,0,0,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,5279.662,-,-
-2701.5,8951.382835567,19.9999992370605,19.9999992370605,0,0.7799084,1071.235,134.0643,134.0643,2300,-166.7673,15.03926,258.0128,-18.70787,15.03926,0,0,1,0,0,0,0,0,6.631172,0.3323833,8.075706,15.03926,0,5112.122,-,-
-2702.5,8956.93839091063,19.9999992370605,19.9999992370605,0,0.7799084,1071.235,134.0643,134.0643,2300,-166.7673,15.03926,258.0128,-18.70787,15.03926,0,0,1,0,0,0,0,0,6.631172,0.3323833,8.075706,15.03926,0,5112.122,-,-
-2703.5,8962.49394625425,19.9999992370605,19.9999992370605,0,0.7799084,1071.235,134.0643,134.0643,2300,-166.7673,15.03926,258.0128,-18.70787,15.03926,0,0,1,0,0,0,0,0,6.631172,0.3323833,8.075706,15.03926,0,5112.122,-,-
-2704.5,8968.04950159788,19.9999992370605,19.9999992370605,0,0.7799084,1071.235,134.0643,134.0643,2300,-166.7673,15.03926,258.0128,-18.70787,15.03926,0,0,1,0,0,0,0,0,6.631172,0.3323833,8.075706,15.03926,0,5112.122,-,-
-2705.5,8973.60505694151,19.9999992370605,19.9999992370605,0,0.7799084,1071.235,134.0643,134.0643,2300,-166.7673,15.03926,258.0128,-18.70787,15.03926,0,0,1,0,0,0,0,0,6.631172,0.3323833,8.075706,15.03926,0,5112.122,-,-
-2706.5,8979.16061228514,19.9999992370605,19.9999992370605,0,0.7799084,1071.235,134.0643,134.0643,2300,-166.7673,15.03926,258.0128,-18.70787,15.03926,0,0,1,0,0,0,0,0,6.631172,0.3323833,8.075706,15.03926,0,5112.122,-,-
-2707.5,8984.71616762877,19.9999992370605,19.9999992370605,0,0.7799084,1071.235,134.0643,134.0643,2300,-166.7673,15.03926,258.0128,-18.70787,15.03926,0,0,1,0,0,0,0,0,6.631172,0.3323833,8.075706,15.03926,0,5112.122,-,-
-2708.5,8990.27172297239,19.9999992370605,19.9999992370605,0,0.7799084,1071.235,134.0643,134.0643,2300,-166.7673,15.03926,258.0128,-18.70787,15.03926,0,0,1,0,0,0,0,0,6.631172,0.3323833,8.075706,15.03926,0,5112.122,-,-
-2709.5,8995.82727831602,19.9999992370605,19.9999992370605,0,0.7799084,1071.235,134.0643,134.0643,2300,-166.7673,15.03926,258.0128,-18.70787,15.03926,0,0,1,0,0,0,0,0,6.631172,0.3323833,8.075706,15.03926,0,5112.122,-,-
-2710.5,9001.38283365965,19.9999992370605,19.9999992370605,0,0.7799084,1071.235,134.0643,134.0643,2300,-166.7673,15.03926,258.0128,-18.70787,15.03926,0,0,1,0,0,0,0,0,6.631172,0.3323833,8.075706,15.03926,0,5112.122,-,-
-2711.5,9006.93838900328,19.9999992370605,19.9999992370605,0,0.7799084,1071.235,134.0643,134.0643,2300,-166.7673,15.03926,258.0128,-18.70787,15.03926,0,0,1,0,0,0,0,0,6.631172,0.3323833,8.075706,15.03926,0,5112.122,-,-
-2712.5,9012.4939443469,19.9999992370605,19.9999992370605,0,0.671836,1071.235,124.0896,124.0896,2300,-166.7673,13.92031,258.0128,-18.70787,13.92031,0,0,1,0,0,0,0,0,6.631224,0.3323833,6.956704,13.92031,0,4944.578,-,-
-2713.5,9018.04949969053,19.9999992370605,19.9999992370605,0,0.671836,1071.235,124.0896,124.0896,2300,-166.7673,13.92031,258.0128,-18.70787,13.92031,0,0,1,0,0,0,0,0,6.631224,0.3323833,6.956704,13.92031,0,4944.578,-,-
-2714.5,9023.60505503416,19.9999992370605,19.9999992370605,0,0.671836,1071.235,124.0896,124.0896,2300,-166.7673,13.92031,258.0128,-18.70787,13.92031,0,0,1,0,0,0,0,0,6.631224,0.3323833,6.956704,13.92031,0,4944.578,-,-
-2715.5,9029.16061037779,19.9999992370605,19.9999992370605,0,0.671836,1071.235,124.0896,124.0896,2300,-166.7673,13.92031,258.0128,-18.70787,13.92031,0,0,1,0,0,0,0,0,6.631224,0.3323833,6.956704,13.92031,0,4944.578,-,-
-2716.5,9034.71616572142,19.9999992370605,19.9999992370605,0,0.671836,1071.235,124.0896,124.0896,2300,-166.7673,13.92031,258.0128,-18.70787,13.92031,0,0,1,0,0,0,0,0,6.631224,0.3323833,6.956704,13.92031,0,4944.578,-,-
-2717.5,9040.27172106504,19.9999992370605,19.9999992370605,0,0.671836,1071.235,124.0896,124.0896,2300,-166.7673,13.92031,258.0128,-18.70787,13.92031,0,0,1,0,0,0,0,0,6.631224,0.3323833,6.956704,13.92031,0,4944.578,-,-
-2718.5,9045.82727640867,19.9999992370605,19.9999992370605,0,0.671836,1071.235,124.0896,124.0896,2300,-166.7673,13.92031,258.0128,-18.70787,13.92031,0,0,1,0,0,0,0,0,6.631224,0.3323833,6.956704,13.92031,0,4944.578,-,-
-2719.5,9051.3828317523,19.9999992370605,19.9999992370605,0,0.671836,1071.235,124.0896,124.0896,2300,-166.7673,13.92031,258.0128,-18.70787,13.92031,0,0,1,0,0,0,0,0,6.631224,0.3323833,6.956704,13.92031,0,4944.578,-,-
-2720.5,9056.93838709593,19.9999992370605,19.9999992370605,0,0.671836,1071.235,124.0896,124.0896,2300,-166.7673,13.92031,258.0128,-18.70787,13.92031,0,0,1,0,0,0,0,0,6.631224,0.3323833,6.956704,13.92031,0,4944.578,-,-
-2721.5,9062.49394243956,19.9999992370605,19.9999992370605,0,0.671836,1071.235,124.0896,124.0896,2300,-166.7673,13.92031,258.0128,-18.70787,13.92031,0,0,1,0,0,0,0,0,6.631224,0.3323833,6.956704,13.92031,0,4944.578,-,-
-2722.5,9068.04949778318,19.9999992370605,19.9999992370605,0,0.6177998,1071.235,119.1022,119.1022,2300,-166.7673,13.36082,258.0128,-18.70787,13.36082,0,0,1,0,0,0,0,0,6.631247,0.3323833,6.397194,13.36082,0,4867.323,-,-
-2723.5,9073.60505312681,19.9999992370605,19.9999992370605,0,0.5637636,1071.235,114.1147,114.1147,2300,-166.7673,12.80133,258.0128,-18.70787,12.80133,0,0,1,0,0,0,0,0,6.631268,0.3323833,5.837679,12.80133,0,4790.067,-,-
-2724.5,9079.16060847044,19.9999992370605,19.9999992370605,0,0.5637636,1071.235,114.1147,114.1147,2300,-166.7673,12.80133,258.0128,-18.70787,12.80133,0,0,1,0,0,0,0,0,6.631268,0.3323833,5.837679,12.80133,0,4790.067,-,-
-2725.5,9084.71616381407,19.9999992370605,19.9999992370605,0,0.5637636,1071.235,114.1147,114.1147,2300,-166.7673,12.80133,258.0128,-18.70787,12.80133,0,0,1,0,0,0,0,0,6.631268,0.3323833,5.837679,12.80133,0,4790.067,-,-
-2726.5,9090.2717191577,19.9999992370605,19.9999992370605,0,0.5637636,1071.235,114.1147,114.1147,2300,-166.7673,12.80133,258.0128,-18.70787,12.80133,0,0,1,0,0,0,0,0,6.631268,0.3323833,5.837679,12.80133,0,4790.067,-,-
-2727.5,9095.82727450132,19.9999992370605,19.9999992370605,0,0.5637636,1071.235,114.1147,114.1147,2300,-166.7673,12.80133,258.0128,-18.70787,12.80133,0,0,1,0,0,0,0,0,6.631268,0.3323833,5.837679,12.80133,0,4790.067,-,-
-2728.5,9101.38282984495,19.9999992370605,19.9999992370605,0,0.5637636,1071.235,114.1147,114.1147,2300,-166.7673,12.80133,258.0128,-18.70787,12.80133,0,0,1,0,0,0,0,0,6.631268,0.3323833,5.837679,12.80133,0,4790.067,-,-
-2729.5,9106.93838518858,19.9999992370605,19.9999992370605,0,0.5637636,1071.235,114.1147,114.1147,2300,-166.7673,12.80133,258.0128,-18.70787,12.80133,0,0,1,0,0,0,0,0,6.631268,0.3323833,5.837679,12.80133,0,4790.067,-,-
-2730.5,9112.49394053221,19.9999992370605,19.9999992370605,0,0.5637636,1071.235,114.1147,114.1147,2300,-166.7673,12.80133,258.0128,-18.70787,12.80133,0,0,1,0,0,0,0,0,6.631268,0.3323833,5.837679,12.80133,0,4790.067,-,-
-2731.5,9118.04949587584,19.9999992370605,19.9999992370605,0,0.5637636,1071.235,114.1147,114.1147,2300,-166.7673,12.80133,258.0128,-18.70787,12.80133,0,0,1,0,0,0,0,0,6.631268,0.3323833,5.837679,12.80133,0,4790.067,-,-
-2732.5,9123.60505121946,19.9999992370605,19.9999992370605,0,0.5637636,1071.235,114.1147,114.1147,2300,-166.7673,12.80133,258.0128,-18.70787,12.80133,0,0,1,0,0,0,0,0,6.631268,0.3323833,5.837679,12.80133,0,4790.067,-,-
-2733.5,9129.16060656309,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2734.5,9134.71616190672,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2735.5,9140.27171725035,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2736.5,9145.82727259398,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2737.5,9151.3828279376,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2738.5,9156.93838328123,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2739.5,9162.49393862486,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2740.5,9168.04949396849,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2741.5,9173.60504931211,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2742.5,9179.16060465574,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2743.5,9184.71615999937,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2744.5,9190.271715343,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2745.5,9195.82727068663,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2746.5,9201.38282603025,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2747.5,9206.93838137388,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2748.5,9212.49393671751,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2749.5,9218.04949206114,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2750.5,9223.60504740477,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2751.5,9229.16060274839,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2752.5,9234.71615809202,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2753.5,9240.27171343565,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2754.5,9245.82726877928,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2755.5,9251.38282412291,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2756.5,9256.93837946653,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2757.5,9262.49393481016,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2758.5,9268.04949015379,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2759.5,9273.60504549742,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2760.5,9279.16060084105,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2761.5,9284.71615618467,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2762.5,9290.2717115283,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2763.5,9295.82726687193,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2764.5,9301.38282221556,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2765.5,9306.93837755919,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2766.5,9312.49393290281,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2767.5,9318.04948824644,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2768.5,9323.60504359007,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2769.5,9329.1605989337,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2770.5,9334.71615427732,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2771.5,9340.27170962095,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2772.5,9345.82726496458,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2773.5,9351.38282030821,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2774.5,9356.93837565184,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2775.5,9362.49393099546,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2776.5,9368.04948633909,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2777.5,9373.60504168272,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2778.5,9379.16059702635,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2779.5,9384.71615236998,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2780.5,9390.2717077136,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2781.5,9395.82726305723,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2782.5,9401.38281840086,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2783.5,9406.93837374449,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2784.5,9412.49392908812,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2785.5,9418.04948443174,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2786.5,9423.60503977537,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2787.5,9429.160595119,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2788.5,9434.71615046263,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2789.5,9440.27170580626,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2790.5,9445.82726114988,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2791.5,9451.38281649351,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2792.5,9456.93837183714,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2793.5,9462.49392718077,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2794.5,9468.0494825244,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2795.5,9473.60503786802,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2796.5,9479.16059321165,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2797.5,9484.71614855528,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2798.5,9490.27170389891,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2799.5,9495.82725924253,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2800.5,9501.38281458616,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2801.5,9506.93836992979,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2802.5,9512.49392527342,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2803.5,9518.04948061705,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2804.5,9523.60503596067,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2805.5,9529.1605913043,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2806.5,9534.71614664793,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2807.5,9540.27170199156,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2808.5,9545.82725733519,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2809.5,9551.38281267881,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2810.5,9556.93836802244,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2811.5,9562.49392336607,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2812.5,9568.0494787097,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2813.5,9573.60503405333,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2814.5,9579.16058939695,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2815.5,9584.71614474058,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2816.5,9590.27170008421,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2817.5,9595.82725542784,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2818.5,9601.38281077147,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2819.5,9606.93836611509,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2820.5,9612.49392145872,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2821.5,9618.04947680235,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2822.5,9623.60503214598,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2823.5,9629.1605874896,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2824.5,9634.71614283323,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2825.5,9640.27169817686,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2826.5,9645.82725352049,19.9999992370605,19.9999992370605,0,0.4556912,1071.235,104.1396,104.1396,2300,-166.7673,11.68232,258.0128,-18.70787,11.68232,0,0,1,0,0,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,4635.551,-,-
-2827.5,9651.38280886412,19.9999992370605,19.9999992370605,0,0.3026405,1071.235,90.01249,90.01249,2300,-166.7673,10.09755,258.0128,-18.70787,10.09755,0,0,1,0,0,0,0,0,6.631343,0.3323833,3.133828,10.09755,0,4416.723,-,-
-2828.5,9656.93836420774,19.9999992370605,19.9999992370605,0,0.3026405,1071.235,90.01249,90.01249,2300,-166.7673,10.09755,258.0128,-18.70787,10.09755,0,0,1,0,0,0,0,0,6.631343,0.3323833,3.133828,10.09755,0,4416.723,-,-
-2829.5,9662.49391955137,19.9999992370605,19.9999992370605,0,0.3026405,1071.235,90.01249,90.01249,2300,-166.7673,10.09755,258.0128,-18.70787,10.09755,0,0,1,0,0,0,0,0,6.631343,0.3323833,3.133828,10.09755,0,4416.723,-,-
-2830.5,9668.049474895,19.9999992370605,19.9999992370605,0,0.2230355,1071.235,82.66455,82.66455,2300,-166.7673,9.273266,258.0128,-18.70787,9.273266,0,0,1,0,0,0,0,0,6.631357,0.3323833,2.309526,9.273266,0,4302.903,-,-
-2831.5,9673.60503023863,19.9999992370605,19.9999992370605,0,0.1434304,1071.235,75.31654,75.31654,2300,-166.7673,8.448971,258.0128,-18.70787,8.448971,0,0,1,0,0,0,0,0,6.631367,0.3323833,1.48522,8.448971,0,4189.083,-,-
-2832.5,9679.16058558226,19.9999992370605,19.9999992370605,0,0.1434304,1071.235,75.31654,75.31654,2300,-166.7673,8.448971,258.0128,-18.70787,8.448971,0,0,1,0,0,0,0,0,6.631367,0.3323833,1.48522,8.448971,0,4189.083,-,-
-2833.5,9684.71614092588,19.9999992370605,19.9999992370605,0,0.1434304,1071.235,75.31654,75.31654,2300,-166.7673,8.448971,258.0128,-18.70787,8.448971,0,0,1,0,0,0,0,0,6.631367,0.3323833,1.48522,8.448971,0,4189.083,-,-
-2834.5,9690.27169626951,19.9999992370605,19.9999992370605,0,-0.0158,1071.235,60.61846,60.61846,2300,-166.7673,6.800148,258.0128,-18.70787,6.800148,0,0,1,0,0,0,0,0,6.631373,0.3323833,-0.163609,6.800148,0,3961.41,-,-
-2835.5,9695.82725161314,19.9999992370605,19.9999992370605,0,-0.0158,1071.235,60.61846,60.61846,2300,-166.7673,6.800148,258.0128,-18.70787,6.800148,0,0,1,0,0,0,0,0,6.631373,0.3323833,-0.163609,6.800148,0,3961.41,-,-
-2836.5,9701.38280695677,19.9999992370605,19.9999992370605,0,-0.0158,1071.235,60.61846,60.61846,2300,-166.7673,6.800148,258.0128,-18.70787,6.800148,0,0,1,0,0,0,0,0,6.631373,0.3323833,-0.163609,6.800148,0,3961.41,-,-
-2837.5,9706.9383623004,19.9999992370605,19.9999992370605,0,-0.0158,1071.235,60.61846,60.61846,2300,-166.7673,6.800148,258.0128,-18.70787,6.800148,0,0,1,0,0,0,0,0,6.631373,0.3323833,-0.163609,6.800148,0,3961.41,-,-
-2838.5,9712.49391764402,19.9999992370605,19.9999992370605,0,-0.1749897,1071.235,45.92401,45.92401,2300,-166.7673,5.151731,258.0128,-18.70787,5.151731,0,0,1,0,0,0,0,0,6.631363,0.3323833,-1.812015,5.151731,0,3733.792,-,-
-2839.5,9718.04947298765,19.9999992370605,19.9999992370605,0,-0.1749897,1071.235,45.92401,45.92401,2300,-166.7673,5.151731,258.0128,-18.70787,5.151731,0,0,1,0,0,0,0,0,6.631363,0.3323833,-1.812015,5.151731,0,3733.792,-,-
-2840.5,9723.60502833128,19.9999992370605,19.9999992370605,0,-0.1749897,1071.235,45.92401,45.92401,2300,-166.7673,5.151731,258.0128,-18.70787,5.151731,0,0,1,0,0,0,0,0,6.631363,0.3323833,-1.812015,5.151731,0,3733.792,-,-
-2841.5,9729.16058367491,19.9999992370605,19.9999992370605,0,-0.3341997,1071.235,31.22764,31.22764,2300,-166.7673,3.503101,258.0128,-18.70787,3.503101,0,0,1,0,0,0,0,0,6.631336,0.3323833,-3.460619,3.503101,0,3506.146,-,-
-2842.5,9734.71613901854,19.9999992370605,19.9999992370605,0,-0.3341997,1071.235,31.22764,31.22764,2300,-166.7673,3.503101,258.0128,-18.70787,3.503101,0,0,1,0,0,0,0,0,6.631336,0.3323833,-3.460619,3.503101,0,3506.146,-,-
-2843.5,9740.27169436216,19.9999992370605,19.9999992370605,0,-0.3341997,1071.235,31.22764,31.22764,2300,-166.7673,3.503101,258.0128,-18.70787,3.503101,0,0,1,0,0,0,0,0,6.631336,0.3323833,-3.460619,3.503101,0,3506.146,-,-
-2844.5,9745.82724970579,19.9999992370605,19.9999992370605,0,-0.3341997,1071.235,31.22764,31.22764,2300,-166.7673,3.503101,258.0128,-18.70787,3.503101,0,0,1,0,0,0,0,0,6.631336,0.3323833,-3.460619,3.503101,0,3506.146,-,-
-2845.5,9751.38280504942,19.9999992370605,19.9999992370605,0,-0.5151277,1071.235,14.52665,14.52665,2300,-166.7673,1.629592,258.0128,-18.70787,1.629592,0,0,1,0,0,0,0,0,6.631286,0.3323833,-5.334076,1.629592,0,3247.448,-,-
-2846.5,9756.93836039305,19.9999992370605,19.9999992370605,0,-0.5151277,1071.235,14.52665,14.52665,2300,-166.7673,1.629592,258.0128,-18.70787,1.629592,0,0,1,0,0,0,0,0,6.631286,0.3323833,-5.334076,1.629592,0,3247.448,-,-
-2847.5,9762.49391573668,19.9999992370605,19.9999992370605,0,-0.6490278,1071.235,2.166852,2.166852,2300,-166.7673,0.2430763,258.0128,-18.70787,0.2430763,0,0,1,0,0,0,0,0,6.631234,0.3323833,-6.720541,0.2430763,0,3055.994,-,-
-2848.5,9768.0494710803,19.9999992370605,19.9999992370605,0,-0.7159777,1071.235,-4.012966,-4.012966,2300,-166.7673,-0.4501724,258.0128,-18.70787,-0.4501724,0,0,1,0,0,0,0,0,6.631204,0.3323833,-7.413759,-0.4501724,0,2950.573,-,-
-2849.5,9773.60502642393,19.9999992370605,19.9999992370605,0,-0.7829278,1071.235,-10.19272,-10.19272,2300,-166.7673,-1.143414,258.0128,-18.70787,-1.143414,0,0,1,0,0,0,0,0,6.63117,0.3323833,-8.106968,-1.143414,0,2839.916,-,-
-2850.5,9779.16058176756,19.9999992370605,19.9999992370605,0,-0.9168277,1071.235,-22.55202,-22.55202,2300,-166.7673,-2.529874,258.0128,-18.70787,-2.529874,0,0,1,0,0,0,0,0,6.631095,0.3323833,-9.493352,-2.529874,0,2618.607,-,-
-2851.5,9784.71613711119,19.9999992370605,19.9999992370605,0,-0.9168277,1071.235,-22.55202,-22.55202,2300,-166.7673,-2.529874,258.0128,-18.70787,-2.529874,0,0,1,0,0,0,0,0,6.631095,0.3323833,-9.493352,-2.529874,0,2618.607,-,-
-2852.5,9790.27169245481,19.9999992370605,19.9999992370605,0,-1.050728,1071.235,-34.91097,-34.91097,2300,-166.7673,-3.916294,258.0128,-18.70787,-3.916294,0,0,1,0,0,0,0,0,6.631007,0.3323833,-10.87968,-3.916294,0,2397.305,-,-
-2853.5,9795.82724779844,19.9999992370605,19.9999992370605,0,-1.050728,1071.235,-34.91097,-34.91097,2300,-166.7673,-3.916294,258.0128,-18.70787,-3.916294,0,0,1,0,0,0,0,0,6.631007,0.3323833,-10.87968,-3.916294,0,2397.305,-,-
-2854.5,9801.38280314207,19.9999992370605,19.9999992370605,0,-1.184628,1071.235,-47.26951,-47.26951,2300,-166.7673,-5.302669,258.0128,-18.70787,-5.302669,0,0,1,0,0,0,0,0,6.630908,0.3323833,-12.26596,-5.302669,0,2176.01,-,-
-2855.5,9806.9383584857,19.9999992370605,19.9999992370605,0,-1.184628,1071.235,-47.26951,-47.26951,2300,-166.7673,-5.302669,258.0128,-18.70787,-5.302669,0,0,1,0,0,0,0,0,6.630908,0.3323833,-12.26596,-5.302669,0,2176.01,-,-
-2856.5,9812.49391382933,19.9999992370605,19.9999992370605,0,-1.318528,1071.235,-59.62755,-59.62755,2300,-166.7673,-6.688987,258.0128,-18.70787,-6.688987,0,0,1,0,0,0,0,0,6.630797,0.3323833,-13.65217,-6.688987,0,1954.724,-,-
-2857.5,9818.04946917295,19.9999992370605,19.9999992370605,0,-1.385478,1071.235,-65.80638,-65.80638,2300,-166.7673,-7.382125,258.0128,-18.70787,-7.382125,0,0,1,0,0,0,0,0,6.630737,0.3323833,-14.34525,-7.382125,0,1844.084,-,-
-2858.5,9823.60502451658,19.9999992370605,19.9999992370605,0,-1.452428,1071.235,-71.98505,-71.98505,2300,-166.7673,-8.075245,258.0128,-18.70787,-8.075245,0,0,1,0,0,0,0,0,6.630674,0.3323833,-15.0383,-8.075245,0,1733.447,-,-
-2859.5,9829.16057986021,19.9999992370605,19.9999992370605,0,-1.586328,1071.235,-84.34193,-84.34193,2300,-166.7673,-9.461433,258.0128,-18.70787,-9.461433,0,0,1,0,0,0,0,0,6.630539,0.3323833,-16.42436,-9.461433,0,1512.182,-,-
-2860.5,9834.71613520384,19.9999992370605,19.9999992370605,0,-1.586328,1071.235,-84.34193,-84.34193,2300,-166.7673,-9.461433,258.0128,-18.70787,-9.461433,0,0,1,0,0,0,0,0,6.630539,0.3323833,-16.42436,-9.461433,0,1512.182,-,-
-2861.5,9840.27169054747,19.9999992370605,19.9999992370605,0,-1.586328,1071.235,-84.34193,-84.34193,2300,-166.7673,-9.461433,258.0128,-18.70787,-9.461433,0,0,1,0,0,0,0,0,6.630539,0.3323833,-16.42436,-9.461433,0,1512.182,-,-
-2862.5,9845.82724589109,19.9999992370605,19.9999992370605,0,-1.586328,1071.235,-84.34193,-84.34193,2300,-166.7673,-9.461433,258.0128,-18.70787,-9.461433,0,0,1,0,0,0,0,0,6.630539,0.3323833,-16.42436,-9.461433,0,1512.182,-,-
-2863.5,9851.38280123472,19.9999992370605,19.9999992370605,0,-1.694918,1071.235,-94.36259,-94.36259,2300,-166.7673,-10.58555,258.0128,-18.70787,-10.58555,0,0,1,0,0,0,0,0,6.630421,0.3323833,-17.54835,-10.58555,0,1332.749,-,-
-2864.5,9856.93835657835,19.9999992370605,19.9999992370605,0,-1.694918,1071.235,-94.36259,-94.36259,2300,-166.7673,-10.58555,258.0128,-18.70787,-10.58555,0,0,1,0,0,0,0,0,6.630421,0.3323833,-17.54835,-10.58555,0,1332.749,-,-
-2865.5,9862.49391192198,19.9999992370605,19.9999992370605,0,-1.694918,1071.235,-94.36259,-94.36259,2300,-166.7673,-10.58555,258.0128,-18.70787,-10.58555,0,0,1,0,0,0,0,0,6.630421,0.3323833,-17.54835,-10.58555,0,1332.749,-,-
-2866.5,9868.04946726561,19.9999992370605,19.9999992370605,0,-1.749213,1071.235,-99.37275,-99.37275,2300,-166.7673,-11.14758,258.0128,-18.70787,-11.14758,0,0,1,0,0,0,0,0,6.630359,0.3323833,-18.11032,-11.14758,0,1243.036,-,-
-2867.5,9873.60502260923,19.9999992370605,19.9999992370605,0,-1.803508,1071.235,-104.3828,-104.3828,2300,-166.7673,-11.70961,258.0128,-18.70787,-11.70961,0,0,1,0,0,0,0,0,6.630295,0.3323833,-18.67229,-11.70961,0,1152.546,-,-
-2868.5,9879.16057795286,19.9999992370605,19.9999992370605,0,-1.803508,1071.235,-104.3828,-104.3828,2300,-166.7673,-11.70961,258.0128,-18.70787,-11.70961,0,0,1,0,0,0,0,0,6.630295,0.3323833,-18.67229,-11.70961,0,1152.546,-,-
-2869.5,9884.71613329649,19.9999992370605,19.9999992370605,0,-1.803508,1071.235,-104.3828,-104.3828,2300,-166.7673,-11.70961,258.0128,-18.70787,-11.70961,0,0,1,0,0,0,0,0,6.630295,0.3323833,-18.67229,-11.70961,0,1152.546,-,-
-2870.5,9890.27168864012,19.9999992370605,19.9999992370605,0,-1.912098,1071.235,-114.4025,-114.4025,2300,-166.7673,-12.83361,258.0128,-18.70787,-12.83361,0,0,1,0,0,0,0,0,6.630161,0.3323833,-19.79615,-12.83361,0,967.4338,-,-
-2871.5,9895.82724398375,19.9999992370605,19.9999992370605,0,-1.912098,1071.235,-114.4025,-114.4025,2300,-166.7673,-12.83361,258.0128,-18.70787,-12.83361,0,0,1,0,0,0,0,0,6.630161,0.3323833,-19.79615,-12.83361,0,967.4338,-,-
-2872.5,9901.38279932737,19.9999992370605,19.9999992370605,0,-1.912098,1071.235,-114.4025,-114.4025,2300,-166.7673,-12.83361,258.0128,-18.70787,-12.83361,0,0,1,0,0,0,0,0,6.630161,0.3323833,-19.79615,-12.83361,0,967.4338,-,-
-2873.5,9906.938354671,19.9999992370605,19.9999992370605,0,-1.912098,1071.235,-114.4025,-114.4025,2300,-166.7673,-12.83361,258.0128,-18.70787,-12.83361,0,0,1,0,0,0,0,0,6.630161,0.3323833,-19.79615,-12.83361,0,967.4338,-,-
-2874.5,9912.49391001463,19.9999992370605,19.9999992370605,0,-2.020688,1071.235,-124.4216,-124.4216,2300,-166.7673,-13.95755,258.0128,-18.70787,-13.95755,0,0,1,0,0,0,0,0,6.63002,0.3323833,-20.91995,-13.95755,0,782.3324,-,-
-2875.5,9918.04946535826,19.9999992370605,19.9999992370605,0,-2.020688,1071.235,-124.4216,-124.4216,2300,-166.7673,-13.95755,258.0128,-18.70787,-13.95755,0,0,1,0,0,0,0,0,6.63002,0.3323833,-20.91995,-13.95755,0,782.3324,-,-
-2876.5,9923.60502070189,19.9999992370605,19.9999992370605,0,-2.020688,1071.235,-124.4216,-124.4216,2300,-166.7673,-13.95755,258.0128,-18.70787,-13.95755,0,0,1,0,0,0,0,0,6.63002,0.3323833,-20.91995,-13.95755,0,782.3324,-,-
-2877.5,9929.16057604551,19.9999992370605,19.9999992370605,0,-2.129278,1071.235,-134.4401,-134.4401,2300,-166.7673,-15.08142,258.0128,-18.70787,-15.08142,0,0,1,0,0,0,0,0,6.629871,0.3323833,-22.04367,-15.08142,0,597.2413,-,-
-2878.5,9934.71613138914,19.9999992370605,19.9999992370605,0,-2.129278,1071.235,-134.4401,-134.4401,2300,-166.7673,-15.08142,258.0128,-18.70787,-15.08142,0,0,1,0,0,0,0,0,6.629871,0.3323833,-22.04367,-15.08142,0,597.2413,-,-
-2879.5,9940.27168673277,19.9999992370605,19.9999992370605,0,-2.129278,1071.235,-134.4401,-134.4401,2300,-166.7673,-15.08142,258.0128,-18.70787,-15.08142,0,0,1,0,0,0,0,0,6.629871,0.3323833,-22.04367,-15.08142,0,597.2413,-,-
-2880.5,9945.8272420764,19.9999992370605,19.9999992370605,0,-2.129278,1071.235,-134.4401,-134.4401,2300,-166.7673,-15.08142,258.0128,-18.70787,-15.08142,0,0,1,0,0,0,0,0,6.629871,0.3323833,-22.04367,-15.08142,0,597.2413,-,-
-2881.5,9951.38279742002,19.9999992370605,19.9999992370605,0,-2.129278,1071.235,-134.4401,-134.4401,2300,-166.7673,-15.08142,258.0128,-18.70787,-15.08142,0,0,1,0,0,0,0,0,6.629871,0.3323833,-22.04367,-15.08142,0,597.2413,-,-
-2882.5,9956.93835276365,19.9999992370605,19.9999992370605,0,-2.129278,1071.235,-134.4401,-134.4401,2300,-166.7673,-15.08142,258.0128,-18.70787,-15.08142,0,0,1,0,0,0,0,0,6.629871,0.3323833,-22.04367,-15.08142,0,597.2413,-,-
-2883.5,9962.49390810728,19.9999992370605,19.9999992370605,0,-2.129278,1071.235,-134.4401,-134.4401,2300,-166.7673,-15.08142,258.0128,-18.70787,-15.08142,0,0,1,0,0,0,0,0,6.629871,0.3323833,-22.04367,-15.08142,0,597.2413,-,-
-2884.5,9968.04946345091,19.9999992370605,19.9999992370605,0,-2.129278,1071.235,-134.4401,-134.4401,2300,-166.7673,-15.08142,258.0128,-18.70787,-15.08142,0,0,1,0,0,0,0,0,6.629871,0.3323833,-22.04367,-15.08142,0,597.2413,-,-
-2885.5,9973.60501879454,19.9999992370605,19.9999992370605,0,-2.129278,1071.235,-134.4401,-134.4401,2300,-166.7673,-15.08142,258.0128,-18.70787,-15.08142,0,0,1,0,0,0,0,0,6.629871,0.3323833,-22.04367,-15.08142,0,597.2413,-,-
-2886.5,9979.16057413816,19.9999992370605,19.9999992370605,0,-2.129278,1071.235,-134.4401,-134.4401,2300,-166.7673,-15.08142,258.0128,-18.70787,-15.08142,0,0,1,0,0,0,0,0,6.629871,0.3323833,-22.04367,-15.08142,0,597.2413,-,-
-2887.5,9984.71612948179,19.9999992370605,19.9999992370605,0,-2.129278,1071.235,-134.4401,-134.4401,2300,-166.7673,-15.08142,258.0128,-18.70787,-15.08142,0,0,1,0,0,0,0,0,6.629871,0.3323833,-22.04367,-15.08142,0,597.2413,-,-
-2888.5,9990.27168482542,19.9999992370605,19.9999992370605,0,-2.129278,1071.235,-134.4401,-134.4401,2300,-166.7673,-15.08142,258.0128,-18.70787,-15.08142,0,0,1,0,0,0,0,0,6.629871,0.3323833,-22.04367,-15.08142,0,597.2413,-,-
-2889.5,9995.82724016905,19.9999992370605,19.9999992370605,0,-2.129278,1071.235,-134.4401,-134.4401,2300,-166.7673,-15.08142,258.0128,-18.70787,-15.08142,0,0,1,0,0,0,0,0,6.629871,0.3323833,-22.04367,-15.08142,0,597.2413,-,-
-2890.5,10001.3827955127,19.9999992370605,19.9999992370605,0,-2.026624,1071.235,-124.9693,-124.9693,2300,-166.7673,-14.01899,258.0128,-18.70787,-14.01899,0,0,1,0,0,0,0,0,6.630012,0.3323833,-20.98138,-14.01899,0,772.213,-,-
-2891.5,10006.9383508563,19.9999992370605,19.9999992370605,0,-2.026624,1071.235,-124.9693,-124.9693,2300,-166.7673,-14.01899,258.0128,-18.70787,-14.01899,0,0,1,0,0,0,0,0,6.630012,0.3323833,-20.98138,-14.01899,0,772.213,-,-
-2892.5,10012.4939061999,19.9999992370605,19.9999992370605,0,-2.026624,1071.235,-124.9693,-124.9693,2300,-166.7673,-14.01899,258.0128,-18.70787,-14.01899,0,0,1,0,0,0,0,0,6.630012,0.3323833,-20.98138,-14.01899,0,772.213,-,-
-2893.5,10018.0494615436,19.9999992370605,19.9999992370605,0,-2.026624,1071.235,-124.9693,-124.9693,2300,-166.7673,-14.01899,258.0128,-18.70787,-14.01899,0,0,1,0,0,0,0,0,6.630012,0.3323833,-20.98138,-14.01899,0,772.213,-,-
-2894.5,10023.6050168872,19.9999992370605,19.9999992370605,0,-2.026624,1071.235,-124.9693,-124.9693,2300,-166.7673,-14.01899,258.0128,-18.70787,-14.01899,0,0,1,0,0,0,0,0,6.630012,0.3323833,-20.98138,-14.01899,0,772.213,-,-
-2895.5,10029.1605722308,19.9999992370605,19.9999992370605,0,-1.911565,1071.235,-114.3533,-114.3533,2300,-166.7673,-12.82809,258.0128,-18.70787,-12.82809,0,0,1,0,0,0,0,0,6.630162,0.3323833,-19.79063,-12.82809,0,968.3428,-,-
-2896.5,10034.7161275744,19.9999992370605,19.9999992370605,0,-1.911565,1071.235,-114.3533,-114.3533,2300,-166.7673,-12.82809,258.0128,-18.70787,-12.82809,0,0,1,0,0,0,0,0,6.630162,0.3323833,-19.79063,-12.82809,0,968.3428,-,-
-2897.5,10040.2716829181,19.9999992370605,19.9999992370605,0,-1.911565,1071.235,-114.3533,-114.3533,2300,-166.7673,-12.82809,258.0128,-18.70787,-12.82809,0,0,1,0,0,0,0,0,6.630162,0.3323833,-19.79063,-12.82809,0,968.3428,-,-
-2898.5,10045.8272382617,19.9999992370605,19.9999992370605,0,-1.911565,1071.235,-114.3533,-114.3533,2300,-166.7673,-12.82809,258.0128,-18.70787,-12.82809,0,0,1,0,0,0,0,0,6.630162,0.3323833,-19.79063,-12.82809,0,968.3428,-,-
-2899.5,10051.3827936053,19.9999992370605,19.9999992370605,0,-1.911565,1071.235,-114.3533,-114.3533,2300,-166.7673,-12.82809,258.0128,-18.70787,-12.82809,0,0,1,0,0,0,0,0,6.630162,0.3323833,-19.79063,-12.82809,0,968.3428,-,-
-2900.5,10056.938348949,19.9999992370605,19.9999992370605,0,-1.911565,1071.235,-114.3533,-114.3533,2300,-166.7673,-12.82809,258.0128,-18.70787,-12.82809,0,0,1,0,0,0,0,0,6.630162,0.3323833,-19.79063,-12.82809,0,968.3428,-,-
-2901.5,10062.4939042926,19.9999992370605,19.9999992370605,0,-1.796505,1071.235,-103.7366,-103.7366,2300,-166.7673,-11.63712,258.0128,-18.70787,-11.63712,0,0,1,0,0,0,0,0,6.630303,0.3323833,-18.5998,-11.63712,0,1164.484,-,-
-2902.5,10068.0494596362,19.9999992370605,19.9999992370605,0,-1.796505,1071.235,-103.7366,-103.7366,2300,-166.7673,-11.63712,258.0128,-18.70787,-11.63712,0,0,1,0,0,0,0,0,6.630303,0.3323833,-18.5998,-11.63712,0,1164.484,-,-
-2903.5,10073.6050149798,19.9999992370605,19.9999992370605,0,-1.796505,1071.235,-103.7366,-103.7366,2300,-166.7673,-11.63712,258.0128,-18.70787,-11.63712,0,0,1,0,0,0,0,0,6.630303,0.3323833,-18.5998,-11.63712,0,1164.484,-,-
-2904.5,10079.1605703235,19.9999992370605,19.9999992370605,0,-1.796505,1071.235,-103.7366,-103.7366,2300,-166.7673,-11.63712,258.0128,-18.70787,-11.63712,0,0,1,0,0,0,0,0,6.630303,0.3323833,-18.5998,-11.63712,0,1164.484,-,-
-2905.5,10084.7161256671,19.9999992370605,19.9999992370605,0,-1.796505,1071.235,-103.7366,-103.7366,2300,-166.7673,-11.63712,258.0128,-18.70787,-11.63712,0,0,1,0,0,0,0,0,6.630303,0.3323833,-18.5998,-11.63712,0,1164.484,-,-
-2906.5,10090.2716810107,19.9999992370605,19.9999992370605,0,-1.681445,1071.235,-93.11936,-93.11936,2300,-166.7673,-10.44608,258.0128,-18.70787,-10.44608,0,0,1,0,0,0,0,0,6.630436,0.3323833,-17.4089,-10.44608,0,1355.011,-,-
-2907.5,10095.8272363544,19.9999992370605,19.9999992370605,0,-1.681445,1071.235,-93.11936,-93.11936,2300,-166.7673,-10.44608,258.0128,-18.70787,-10.44608,0,0,1,0,0,0,0,0,6.630436,0.3323833,-17.4089,-10.44608,0,1355.011,-,-
-2908.5,10101.382791698,19.9999992370605,19.9999992370605,0,-1.681445,1071.235,-93.11936,-93.11936,2300,-166.7673,-10.44608,258.0128,-18.70787,-10.44608,0,0,1,0,0,0,0,0,6.630436,0.3323833,-17.4089,-10.44608,0,1355.011,-,-
-2909.5,10106.9383470416,19.9999992370605,19.9999992370605,0,-1.681445,1071.235,-93.11936,-93.11936,2300,-166.7673,-10.44608,258.0128,-18.70787,-10.44608,0,0,1,0,0,0,0,0,6.630436,0.3323833,-17.4089,-10.44608,0,1355.011,-,-
-2910.5,10112.4939023852,19.9999992370605,19.9999992370605,0,-1.681445,1071.235,-93.11936,-93.11936,2300,-166.7673,-10.44608,258.0128,-18.70787,-10.44608,0,0,1,0,0,0,0,0,6.630436,0.3323833,-17.4089,-10.44608,0,1355.011,-,-
-2911.5,10118.0494577289,19.9999992370605,19.9999992370605,0,-1.622072,1071.235,-87.6405,-87.6405,2300,-166.7673,-9.831465,258.0128,-18.70787,-9.831465,0,0,1,0,0,0,0,0,6.630501,0.3323833,-16.79435,-9.831465,0,1453.117,-,-
-2912.5,10123.6050130725,19.9999992370605,19.9999992370605,0,-1.5627,1071.235,-82.1615,-82.1615,2300,-166.7673,-9.216834,258.0128,-18.70787,-9.216834,0,0,1,0,0,0,0,0,6.630564,0.3323833,-16.17978,-9.216834,0,1551.225,-,-
-2913.5,10129.1605684161,19.9999992370605,19.9999992370605,0,-1.5627,1071.235,-82.1615,-82.1615,2300,-166.7673,-9.216834,258.0128,-18.70787,-9.216834,0,0,1,0,0,0,0,0,6.630564,0.3323833,-16.17978,-9.216834,0,1551.225,-,-
-2914.5,10134.7161237597,19.9999992370605,19.9999992370605,0,-1.5627,1071.235,-82.1615,-82.1615,2300,-166.7673,-9.216834,258.0128,-18.70787,-9.216834,0,0,1,0,0,0,0,0,6.630564,0.3323833,-16.17978,-9.216834,0,1551.225,-,-
-2915.5,10140.2716791034,19.9999992370605,19.9999992370605,0,-1.412289,1071.235,-68.28074,-68.28074,2300,-166.7673,-7.659698,258.0128,-18.70787,-7.659698,0,0,1,0,0,0,0,0,6.630712,0.3323833,-14.62279,-7.659698,0,1799.778,-,-
-2916.5,10145.827234447,19.9999992370605,19.9999992370605,0,-1.412289,1071.235,-68.28074,-68.28074,2300,-166.7673,-7.659698,258.0128,-18.70787,-7.659698,0,0,1,0,0,0,0,0,6.630712,0.3323833,-14.62279,-7.659698,0,1799.778,-,-
-2917.5,10151.3827897906,19.9999992370605,19.9999992370605,0,-1.412289,1071.235,-68.28074,-68.28074,2300,-166.7673,-7.659698,258.0128,-18.70787,-7.659698,0,0,1,0,0,0,0,0,6.630712,0.3323833,-14.62279,-7.659698,0,1799.778,-,-
-2918.5,10156.9383451343,19.9999992370605,19.9999992370605,0,-1.412289,1071.235,-68.28074,-68.28074,2300,-166.7673,-7.659698,258.0128,-18.70787,-7.659698,0,0,1,0,0,0,0,0,6.630712,0.3323833,-14.62279,-7.659698,0,1799.778,-,-
-2919.5,10162.4939004779,19.9999992370605,19.9999992370605,0,-1.296396,1071.235,-57.58495,-57.58495,2300,-166.7673,-6.459849,258.0128,-18.70787,-6.459849,0,0,1,0,0,0,0,0,6.630816,0.3323833,-13.42305,-6.459849,0,1991.299,-,-
-2920.5,10168.0494558215,19.9999992370605,19.9999992370605,0,-1.296396,1071.235,-57.58495,-57.58495,2300,-166.7673,-6.459849,258.0128,-18.70787,-6.459849,0,0,1,0,0,0,0,0,6.630816,0.3323833,-13.42305,-6.459849,0,1991.299,-,-
-2921.5,10173.6050111651,19.9999992370605,19.9999992370605,0,-1.296396,1071.235,-57.58495,-57.58495,2300,-166.7673,-6.459849,258.0128,-18.70787,-6.459849,0,0,1,0,0,0,0,0,6.630816,0.3323833,-13.42305,-6.459849,0,1991.299,-,-
-2922.5,10179.1605665088,19.9999992370605,19.9999992370605,0,-1.296396,1071.235,-57.58495,-57.58495,2300,-166.7673,-6.459849,258.0128,-18.70787,-6.459849,0,0,1,0,0,0,0,0,6.630816,0.3323833,-13.42305,-6.459849,0,1991.299,-,-
-2923.5,10184.7161218524,19.9999992370605,19.9999992370605,0,-1.296396,1071.235,-57.58495,-57.58495,2300,-166.7673,-6.459849,258.0128,-18.70787,-6.459849,0,0,1,0,0,0,0,0,6.630816,0.3323833,-13.42305,-6.459849,0,1991.299,-,-
-2924.5,10190.271677196,19.9999992370605,19.9999992370605,0,-1.185839,1071.235,-47.38129,-47.38129,2300,-166.7673,-5.315208,258.0128,-18.70787,-5.315208,0,0,1,0,0,0,0,0,6.630907,0.3323833,-12.2785,-5.315208,0,2174.008,-,-
-2925.5,10195.8272325397,19.9999992370605,19.9999992370605,0,-1.185839,1071.235,-47.38129,-47.38129,2300,-166.7673,-5.315208,258.0128,-18.70787,-5.315208,0,0,1,0,0,0,0,0,6.630907,0.3323833,-12.2785,-5.315208,0,2174.008,-,-
-2926.5,10201.3827878833,19.9999992370605,19.9999992370605,0,-1.185839,1071.235,-47.38129,-47.38129,2300,-166.7673,-5.315208,258.0128,-18.70787,-5.315208,0,0,1,0,0,0,0,0,6.630907,0.3323833,-12.2785,-5.315208,0,2174.008,-,-
-2927.5,10206.9383432269,19.9999992370605,19.9999992370605,0,-1.185839,1071.235,-47.38129,-47.38129,2300,-166.7673,-5.315208,258.0128,-18.70787,-5.315208,0,0,1,0,0,0,0,0,6.630907,0.3323833,-12.2785,-5.315208,0,2174.008,-,-
-2928.5,10212.4938985705,19.9999992370605,19.9999992370605,0,-1.185839,1071.235,-47.38129,-47.38129,2300,-166.7673,-5.315208,258.0128,-18.70787,-5.315208,0,0,1,0,0,0,0,0,6.630907,0.3323833,-12.2785,-5.315208,0,2174.008,-,-
-2929.5,10218.0494539142,19.9999992370605,19.9999992370605,0,-1.130561,1071.235,-42.27933,-42.27933,2300,-166.7673,-4.742873,258.0128,-18.70787,-4.742873,0,0,1,0,0,0,0,0,6.630949,0.3323833,-11.70621,-4.742873,0,2265.365,-,-
-2930.5,10223.6050092578,19.9999992370605,19.9999992370605,0,-1.075282,1071.235,-37.17728,-37.17728,2300,-166.7673,-4.170528,258.0128,-18.70787,-4.170528,0,0,1,0,0,0,0,0,6.63099,0.3323833,-11.1339,-4.170528,0,2356.724,-,-
-2931.5,10229.1605646014,19.9999992370605,19.9999992370605,0,-1.075282,1071.235,-37.17728,-37.17728,2300,-166.7673,-4.170528,258.0128,-18.70787,-4.170528,0,0,1,0,0,0,0,0,6.63099,0.3323833,-11.1339,-4.170528,0,2356.724,-,-
-2932.5,10234.716119945,19.9999992370605,19.9999992370605,0,-1.075282,1071.235,-37.17728,-37.17728,2300,-166.7673,-4.170528,258.0128,-18.70787,-4.170528,0,0,1,0,0,0,0,0,6.63099,0.3323833,-11.1339,-4.170528,0,2356.724,-,-
-2933.5,10240.2716752887,19.9999992370605,19.9999992370605,0,-1.075282,1071.235,-37.17728,-37.17728,2300,-166.7673,-4.170528,258.0128,-18.70787,-4.170528,0,0,1,0,0,0,0,0,6.63099,0.3323833,-11.1339,-4.170528,0,2356.724,-,-
-2934.5,10245.8272306323,19.9999992370605,19.9999992370605,0,-1.075282,1071.235,-37.17728,-37.17728,2300,-166.7673,-4.170528,258.0128,-18.70787,-4.170528,0,0,1,0,0,0,0,0,6.63099,0.3323833,-11.1339,-4.170528,0,2356.724,-,-
-2935.5,10251.3827859759,19.9999992370605,19.9999992370605,0,-0.9647254,1071.235,-26.97301,-26.97301,2300,-166.7673,-3.025818,258.0128,-18.70787,-3.025818,0,0,1,0,0,0,0,0,6.631065,0.3323833,-9.989266,-3.025818,0,2539.444,-,-
-2936.5,10256.9383413196,19.9999992370605,19.9999992370605,0,-0.9647254,1071.235,-26.97301,-26.97301,2300,-166.7673,-3.025818,258.0128,-18.70787,-3.025818,0,0,1,0,0,0,0,0,6.631065,0.3323833,-9.989266,-3.025818,0,2539.444,-,-
-2937.5,10262.4938966632,19.9999992370605,19.9999992370605,0,-0.9647254,1071.235,-26.97301,-26.97301,2300,-166.7673,-3.025818,258.0128,-18.70787,-3.025818,0,0,1,0,0,0,0,0,6.631065,0.3323833,-9.989266,-3.025818,0,2539.444,-,-
-2938.5,10268.0494520068,19.9999992370605,19.9999992370605,0,-0.9647254,1071.235,-26.97301,-26.97301,2300,-166.7673,-3.025818,258.0128,-18.70787,-3.025818,0,0,1,0,0,0,0,0,6.631065,0.3323833,-9.989266,-3.025818,0,2539.444,-,-
-2939.5,10273.6050073504,19.9999992370605,19.9999992370605,0,-0.9647254,1071.235,-26.97301,-26.97301,2300,-166.7673,-3.025818,258.0128,-18.70787,-3.025818,0,0,1,0,0,0,0,0,6.631065,0.3323833,-9.989266,-3.025818,0,2539.444,-,-
-2940.5,10279.1605626941,19.9999992370605,19.9999992370605,0,-0.8541685,1071.235,-16.76846,-16.76846,2300,-166.7673,-1.881077,258.0128,-18.70787,-1.881077,0,0,1,0,0,0,0,0,6.631132,0.3323833,-8.844592,-1.881077,0,2722.169,-,-
-2941.5,10284.7161180377,19.9999992370605,19.9999992370605,0,-0.8541685,1071.235,-16.76846,-16.76846,2300,-166.7673,-1.881077,258.0128,-18.70787,-1.881077,0,0,1,0,0,0,0,0,6.631132,0.3323833,-8.844592,-1.881077,0,2722.169,-,-
-2942.5,10290.2716733813,19.9999992370605,19.9999992370605,0,-0.8541685,1071.235,-16.76846,-16.76846,2300,-166.7673,-1.881077,258.0128,-18.70787,-1.881077,0,0,1,0,0,0,0,0,6.631132,0.3323833,-8.844592,-1.881077,0,2722.169,-,-
-2943.5,10295.827228725,19.9999992370605,19.9999992370605,0,-0.8541685,1071.235,-16.76846,-16.76846,2300,-166.7673,-1.881077,258.0128,-18.70787,-1.881077,0,0,1,0,0,0,0,0,6.631132,0.3323833,-8.844592,-1.881077,0,2722.169,-,-
-2944.5,10301.3827840686,19.9999992370605,19.9999992370605,0,-0.8541685,1071.235,-16.76846,-16.76846,2300,-166.7673,-1.881077,258.0128,-18.70787,-1.881077,0,0,1,0,0,0,0,0,6.631132,0.3323833,-8.844592,-1.881077,0,2722.169,-,-
-2945.5,10306.9383394122,19.9999992370605,19.9999992370605,0,-0.8541685,1071.235,-16.76846,-16.76846,2300,-166.7673,-1.881077,258.0128,-18.70787,-1.881077,0,0,1,0,0,0,0,0,6.631132,0.3323833,-8.844592,-1.881077,0,2722.169,-,-
-2946.5,10312.4938947558,19.9999992370605,19.9999992370605,0,-0.7436118,1071.235,-6.563704,-6.563704,2300,-166.7673,-0.7363129,258.0128,-18.70787,-0.7363129,0,0,1,0,0,0,0,0,6.63119,0.3323833,-7.699886,-0.7363129,0,2904.898,-,-
-2947.5,10318.0494500995,19.9999992370605,19.9999992370605,0,-0.7436118,1071.235,-6.563704,-6.563704,2300,-166.7673,-0.7363129,258.0128,-18.70787,-0.7363129,0,0,1,0,0,0,0,0,6.63119,0.3323833,-7.699886,-0.7363129,0,2904.898,-,-
-2948.5,10323.6050054431,19.9999992370605,19.9999992370605,0,-0.7436118,1071.235,-6.563704,-6.563704,2300,-166.7673,-0.7363129,258.0128,-18.70787,-0.7363129,0,0,1,0,0,0,0,0,6.63119,0.3323833,-7.699886,-0.7363129,0,2904.898,-,-
-2949.5,10329.1605607867,19.9999992370605,19.9999992370605,0,-0.7436118,1071.235,-6.563704,-6.563704,2300,-166.7673,-0.7363129,258.0128,-18.70787,-0.7363129,0,0,1,0,0,0,0,0,6.63119,0.3323833,-7.699886,-0.7363129,0,2904.898,-,-
-2950.5,10334.7161161304,19.9999992370605,19.9999992370605,0,-0.7436118,1071.235,-6.563704,-6.563704,2300,-166.7673,-0.7363129,258.0128,-18.70787,-0.7363129,0,0,1,0,0,0,0,0,6.63119,0.3323833,-7.699886,-0.7363129,0,2904.898,-,-
-2951.5,10340.271671474,19.9999992370605,19.9999992370605,0,-0.7436118,1071.235,-6.563704,-6.563704,2300,-166.7673,-0.7363129,258.0128,-18.70787,-0.7363129,0,0,1,0,0,0,0,0,6.63119,0.3323833,-7.699886,-0.7363129,0,2904.898,-,-
-2952.5,10345.8272268176,19.9999992370605,19.9999992370605,0,-0.7436118,1071.235,-6.563704,-6.563704,2300,-166.7673,-0.7363129,258.0128,-18.70787,-0.7363129,0,0,1,0,0,0,0,0,6.63119,0.3323833,-7.699886,-0.7363129,0,2904.898,-,-
-2953.5,10351.3827821612,19.9999992370605,19.9999992370605,0,-0.7436118,1071.235,-6.563704,-6.563704,2300,-166.7673,-0.7363129,258.0128,-18.70787,-0.7363129,0,0,1,0,0,0,0,0,6.63119,0.3323833,-7.699886,-0.7363129,0,2904.898,-,-
-2954.5,10356.9383375049,19.9999992370605,19.9999992370605,0,-0.7436118,1071.235,-6.563704,-6.563704,2300,-166.7673,-0.7363129,258.0128,-18.70787,-0.7363129,0,0,1,0,0,0,0,0,6.63119,0.3323833,-7.699886,-0.7363129,0,2904.898,-,-
-2955.5,10362.4938928485,19.9999992370605,19.9999992370605,0,-0.7436118,1071.235,-6.563704,-6.563704,2300,-166.7673,-0.7363129,258.0128,-18.70787,-0.7363129,0,0,1,0,0,0,0,0,6.63119,0.3323833,-7.699886,-0.7363129,0,2904.898,-,-
-2956.5,10368.0494481921,19.9999992370605,19.9999992370605,0,-0.7436118,1071.235,-6.563704,-6.563704,2300,-166.7673,-0.7363129,258.0128,-18.70787,-0.7363129,0,0,1,0,0,0,0,0,6.63119,0.3323833,-7.699886,-0.7363129,0,2904.898,-,-
-2957.5,10373.6050035357,19.9999992370605,19.9999992370605,0,-0.7436118,1071.235,-6.563704,-6.563704,2300,-166.7673,-0.7363129,258.0128,-18.70787,-0.7363129,0,0,1,0,0,0,0,0,6.63119,0.3323833,-7.699886,-0.7363129,0,2904.898,-,-
-2958.5,10379.1605588794,19.9999992370605,19.9999992370605,0,-0.7436118,1071.235,-6.563704,-6.563704,2300,-166.7673,-0.7363129,258.0128,-18.70787,-0.7363129,0,0,1,0,0,0,0,0,6.63119,0.3323833,-7.699886,-0.7363129,0,2904.898,-,-
-2959.5,10384.716114223,19.9999992370605,19.9999992370605,0,-0.7436118,1071.235,-6.563704,-6.563704,2300,-166.7673,-0.7363129,258.0128,-18.70787,-0.7363129,0,0,1,0,0,0,0,0,6.63119,0.3323833,-7.699886,-0.7363129,0,2904.898,-,-
-2960.5,10390.2716695666,19.9999992370605,19.9999992370605,0,-0.6031695,1071.235,6.399828,6.399828,2300,-166.7673,0.7179294,258.0128,-18.70787,0.7179294,0,0,1,0,0,0,0,0,6.631253,0.3323833,-6.245707,0.7179294,0,3121.563,-,-
-2961.5,10395.8272249103,19.9999992370605,19.9999992370605,0,-0.6031695,1071.235,6.399828,6.399828,2300,-166.7673,0.7179294,258.0128,-18.70787,0.7179294,0,0,1,0,0,0,0,0,6.631253,0.3323833,-6.245707,0.7179294,0,3121.563,-,-
-2962.5,10401.3827802539,19.9999992370605,19.9999992370605,0,-0.6031695,1071.235,6.399828,6.399828,2300,-166.7673,0.7179294,258.0128,-18.70787,0.7179294,0,0,1,0,0,0,0,0,6.631253,0.3323833,-6.245707,0.7179294,0,3121.563,-,-
-2963.5,10406.9383355975,19.9999992370605,19.9999992370605,0,-0.6031695,1071.235,6.399828,6.399828,2300,-166.7673,0.7179294,258.0128,-18.70787,0.7179294,0,0,1,0,0,0,0,0,6.631253,0.3323833,-6.245707,0.7179294,0,3121.563,-,-
-2964.5,10412.4938909411,19.9999992370605,19.9999992370605,0,-0.47988,1071.235,17.78026,17.78026,2300,-166.7673,1.99458,258.0128,-18.70787,1.99458,0,0,1,0,0,0,0,0,6.631297,0.3323833,-4.9691,1.99458,0,3297.846,-,-
-2965.5,10418.0494462848,19.9999992370605,19.9999992370605,0,-0.47988,1071.235,17.78026,17.78026,2300,-166.7673,1.99458,258.0128,-18.70787,1.99458,0,0,1,0,0,0,0,0,6.631297,0.3323833,-4.9691,1.99458,0,3297.846,-,-
-2966.5,10423.6050016284,19.9999992370605,19.9999992370605,0,-0.47988,1071.235,17.78026,17.78026,2300,-166.7673,1.99458,258.0128,-18.70787,1.99458,0,0,1,0,0,0,0,0,6.631297,0.3323833,-4.9691,1.99458,0,3297.846,-,-
-2967.5,10429.160556972,19.9999992370605,19.9999992370605,0,-0.3565906,1071.235,29.16079,29.16079,2300,-166.7673,3.271243,258.0128,-18.70787,3.271243,0,0,1,0,0,0,0,0,6.631331,0.3323833,-3.692472,3.271243,0,3474.13,-,-
-2968.5,10434.7161123157,19.9999992370605,19.9999992370605,0,-0.3565906,1071.235,29.16079,29.16079,2300,-166.7673,3.271243,258.0128,-18.70787,3.271243,0,0,1,0,0,0,0,0,6.631331,0.3323833,-3.692472,3.271243,0,3474.13,-,-
-2969.5,10440.2716676593,19.9999992370605,19.9999992370605,0,-0.3565906,1071.235,29.16079,29.16079,2300,-166.7673,3.271243,258.0128,-18.70787,3.271243,0,0,1,0,0,0,0,0,6.631331,0.3323833,-3.692472,3.271243,0,3474.13,-,-
-2970.5,10445.8272230029,19.9999992370605,19.9999992370605,0,-0.3565906,1071.235,29.16079,29.16079,2300,-166.7673,3.271243,258.0128,-18.70787,3.271243,0,0,1,0,0,0,0,0,6.631331,0.3323833,-3.692472,3.271243,0,3474.13,-,-
-2971.5,10451.3827783465,19.9999992370605,19.9999992370605,0,-0.2333011,1071.235,40.54139,40.54139,2300,-166.7673,4.547912,258.0128,-18.70787,4.547912,0,0,1,0,0,0,0,0,6.631355,0.3323833,-2.415826,4.547912,0,3650.416,-,-
-2972.5,10456.9383336902,19.9999992370605,19.9999992370605,0,-0.2333011,1071.235,40.54139,40.54139,2300,-166.7673,4.547912,258.0128,-18.70787,4.547912,0,0,1,0,0,0,0,0,6.631355,0.3323833,-2.415826,4.547912,0,3650.416,-,-
-2973.5,10462.4938890338,19.9999992370605,19.9999992370605,0,-0.2333011,1071.235,40.54139,40.54139,2300,-166.7673,4.547912,258.0128,-18.70787,4.547912,0,0,1,0,0,0,0,0,6.631355,0.3323833,-2.415826,4.547912,0,3650.416,-,-
-2974.5,10468.0494443774,19.9999992370605,19.9999992370605,0,-0.1716564,1071.235,46.2317,46.2317,2300,-166.7673,5.186248,258.0128,-18.70787,5.186248,0,0,1,0,0,0,0,0,6.631364,0.3323833,-1.777499,5.186248,0,3738.559,-,-
-2975.5,10473.6049997211,19.9999992370605,19.9999992370605,0,-0.1100117,1071.235,51.922,51.922,2300,-166.7673,5.824583,258.0128,-18.70787,5.824583,0,0,1,0,0,0,0,0,6.63137,0.3323833,-1.13917,5.824583,0,3826.701,-,-
-2976.5,10479.1605550647,19.9999992370605,19.9999992370605,0,-0.1100117,1071.235,51.922,51.922,2300,-166.7673,5.824583,258.0128,-18.70787,5.824583,0,0,1,0,0,0,0,0,6.63137,0.3323833,-1.13917,5.824583,0,3826.701,-,-
-2977.5,10484.7161104083,19.9999992370605,19.9999992370605,0,-0.1100117,1071.235,51.922,51.922,2300,-166.7673,5.824583,258.0128,-18.70787,5.824583,0,0,1,0,0,0,0,0,6.63137,0.3323833,-1.13917,5.824583,0,3826.701,-,-
-2978.5,10490.2716657519,19.9999992370605,19.9999992370605,0,0.0133,1071.235,63.30461,63.30461,2300,-166.7673,7.101478,258.0128,-18.70787,7.101478,0,0,1,0,0,0,0,0,6.631373,0.3323833,0.1377215,7.101478,0,4003.018,-,-
-2979.5,10495.8272210956,19.9999992370605,19.9999992370605,0,0.0133,1071.235,63.30461,63.30461,2300,-166.7673,7.101478,258.0128,-18.70787,7.101478,0,0,1,0,0,0,0,0,6.631373,0.3323833,0.1377215,7.101478,0,4003.018,-,-
-2980.5,10501.3827764392,19.9999992370605,19.9999992370605,0,0.0133,1071.235,63.30461,63.30461,2300,-166.7673,7.101478,258.0128,-18.70787,7.101478,0,0,1,0,0,0,0,0,6.631373,0.3323833,0.1377215,7.101478,0,4003.018,-,-
-2981.5,10506.9383317828,19.9999992370605,19.9999992370605,0,0.0133,1071.235,63.30461,63.30461,2300,-166.7673,7.101478,258.0128,-18.70787,7.101478,0,0,1,0,0,0,0,0,6.631373,0.3323833,0.1377215,7.101478,0,4003.018,-,-
-2982.5,10512.4938871264,19.9999992370605,19.9999992370605,0,0.1365672,1071.235,74.68302,74.68302,2300,-166.7673,8.377902,258.0128,-18.70787,8.377902,0,0,1,0,0,0,0,0,6.631367,0.3323833,1.414152,8.377902,0,4179.27,-,-
-2983.5,10518.0494424701,19.9999992370605,19.9999992370605,0,0.1365672,1071.235,74.68302,74.68302,2300,-166.7673,8.377902,258.0128,-18.70787,8.377902,0,0,1,0,0,0,0,0,6.631367,0.3323833,1.414152,8.377902,0,4179.27,-,-
-2984.5,10523.6049978137,19.9999992370605,19.9999992370605,0,0.1365672,1071.235,74.68302,74.68302,2300,-166.7673,8.377902,258.0128,-18.70787,8.377902,0,0,1,0,0,0,0,0,6.631367,0.3323833,1.414152,8.377902,0,4179.27,-,-
-2985.5,10529.1605531573,19.9999992370605,19.9999992370605,0,0.2598567,1071.235,86.06335,86.06335,2300,-166.7673,9.654541,258.0128,-18.70787,9.654541,0,0,1,0,0,0,0,0,6.631351,0.3323833,2.690807,9.654541,0,4355.551,-,-
-2986.5,10534.716108501,19.9999992370605,19.9999992370605,0,0.2598567,1071.235,86.06335,86.06335,2300,-166.7673,9.654541,258.0128,-18.70787,9.654541,0,0,1,0,0,0,0,0,6.631351,0.3323833,2.690807,9.654541,0,4355.551,-,-
-2987.5,10540.2716638446,19.9999992370605,19.9999992370605,0,0.2598567,1071.235,86.06335,86.06335,2300,-166.7673,9.654541,258.0128,-18.70787,9.654541,0,0,1,0,0,0,0,0,6.631351,0.3323833,2.690807,9.654541,0,4355.551,-,-
-2988.5,10545.8272191882,19.9999992370605,19.9999992370605,0,0.2598567,1071.235,86.06335,86.06335,2300,-166.7673,9.654541,258.0128,-18.70787,9.654541,0,0,1,0,0,0,0,0,6.631351,0.3323833,2.690807,9.654541,0,4355.551,-,-
-2989.5,10551.3827745318,19.9999992370605,19.9999992370605,0,0.3831461,1071.235,97.44346,97.44346,2300,-166.7673,10.93116,258.0128,-18.70787,10.93116,0,0,1,0,0,0,0,0,6.631325,0.3323833,3.967449,10.93116,0,4531.829,-,-
-2990.5,10556.9383298755,19.9999992370605,19.9999992370605,0,0.3831461,1071.235,97.44346,97.44346,2300,-166.7673,10.93116,258.0128,-18.70787,10.93116,0,0,1,0,0,0,0,0,6.631325,0.3323833,3.967449,10.93116,0,4531.829,-,-
-2991.5,10562.4938852191,19.9999992370605,19.9999992370605,0,0.3831461,1071.235,97.44346,97.44346,2300,-166.7673,10.93116,258.0128,-18.70787,10.93116,0,0,1,0,0,0,0,0,6.631325,0.3323833,3.967449,10.93116,0,4531.829,-,-
-2992.5,10568.0494405627,19.9999992370605,19.9999992370605,0,0.4447908,1071.235,103.1334,103.1334,2300,-166.7673,11.56945,258.0128,-18.70787,11.56945,0,0,1,0,0,0,0,0,6.631308,0.3323833,4.605763,11.56945,0,4619.966,-,-
-2993.5,10573.6049959064,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-2994.5,10579.16055125,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-2995.5,10584.7161065936,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-2996.5,10590.2716619372,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-2997.5,10595.8272172809,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-2998.5,10601.3827726245,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-2999.5,10606.9383279681,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3000.5,10612.4938833117,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3001.5,10618.0494386554,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3002.5,10623.604993999,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3003.5,10629.1605493426,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3004.5,10634.7161046863,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3005.5,10640.2716600299,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3006.5,10645.8272153735,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3007.5,10651.3827707171,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3008.5,10656.9383260608,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3009.5,10662.4938814044,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3010.5,10668.049436748,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3011.5,10673.6049920917,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3012.5,10679.1605474353,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3013.5,10684.7161027789,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3014.5,10690.2716581225,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3015.5,10695.8272134662,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3016.5,10701.3827688098,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3017.5,10706.9383241534,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3018.5,10712.4938794971,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3019.5,10718.0494348407,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3020.5,10723.6049901843,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3021.5,10729.1605455279,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3022.5,10734.7161008716,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3023.5,10740.2716562152,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3024.5,10745.8272115588,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3025.5,10751.3827669024,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3026.5,10756.9383222461,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3027.5,10762.4938775897,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3028.5,10768.0494329333,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3029.5,10773.604988277,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3030.5,10779.1605436206,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3031.5,10784.7160989642,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3032.5,10790.2716543078,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3033.5,10795.8272096515,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3034.5,10801.3827649951,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3035.5,10806.9383203387,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3036.5,10812.4938756824,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3037.5,10818.049431026,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3038.5,10823.6049863696,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3039.5,10829.1605417132,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3040.5,10834.7160970569,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3041.5,10840.2716524005,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3042.5,10845.8272077441,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3043.5,10851.3827630877,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3044.5,10856.9383184314,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3045.5,10862.493873775,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3046.5,10868.0494291186,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3047.5,10873.6049844623,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3048.5,10879.1605398059,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3049.5,10884.7160951495,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3050.5,10890.2716504931,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3051.5,10895.8272058368,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3052.5,10901.3827611804,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3053.5,10906.938316524,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3054.5,10912.4938718677,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3055.5,10918.0494272113,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3056.5,10923.6049825549,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3057.5,10929.1605378985,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3058.5,10934.7160932422,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3059.5,10940.2716485858,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3060.5,10945.8272039294,19.9999992370605,19.9999992370605,0,0.5064356,1071.235,108.8233,108.8233,2300,-166.7673,12.20774,258.0128,-18.70787,12.20774,0,0,1,0,0,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,4708.103,-,-
-3061.5,10951.3827592731,19.9999992370605,19.9999992370605,0,0.3792642,1071.235,97.08515,97.08515,2300,-166.7673,10.89096,258.0128,-18.70787,10.89096,0,0,1,0,0,0,0,0,6.631326,0.3323833,3.927253,10.89096,0,4526.279,-,-
-3062.5,10956.9383146167,19.9999992370605,19.9999992370605,0,0.3792642,1071.235,97.08515,97.08515,2300,-166.7673,10.89096,258.0128,-18.70787,10.89096,0,0,1,0,0,0,0,0,6.631326,0.3323833,3.927253,10.89096,0,4526.279,-,-
-3063.5,10962.4938699603,19.9999992370605,19.9999992370605,0,0.3792642,1071.235,97.08515,97.08515,2300,-166.7673,10.89096,258.0128,-18.70787,10.89096,0,0,1,0,0,0,0,0,6.631326,0.3323833,3.927253,10.89096,0,4526.279,-,-
-3064.5,10968.0494253039,19.9999992370605,19.9999992370605,0,0.2905496,1071.235,88.89645,88.89645,2300,-166.7673,9.972357,258.0128,-18.70787,9.972357,0,0,1,0,0,0,0,0,6.631345,0.3323833,3.008628,9.972357,0,4399.436,-,-
-3065.5,10973.6049806476,19.9999992370605,19.9999992370605,0,0.201835,1071.235,80.70763,80.70763,2300,-166.7673,9.053741,258.0128,-18.70787,9.053741,0,0,1,0,0,0,0,0,6.63136,0.3323833,2.089998,9.053741,0,4272.591,-,-
-3066.5,10979.1605359912,19.9999992370605,19.9999992370605,0,0.201835,1071.235,80.70763,80.70763,2300,-166.7673,9.053741,258.0128,-18.70787,9.053741,0,0,1,0,0,0,0,0,6.63136,0.3323833,2.089998,9.053741,0,4272.591,-,-
-3067.5,10984.7160913348,19.9999992370605,19.9999992370605,0,0.201835,1071.235,80.70763,80.70763,2300,-166.7673,9.053741,258.0128,-18.70787,9.053741,0,0,1,0,0,0,0,0,6.63136,0.3323833,2.089998,9.053741,0,4272.591,-,-
-3068.5,10990.2716466784,19.9999992370605,19.9999992370605,0,0.0244,1071.235,64.32922,64.32922,2300,-166.7673,7.216419,258.0128,-18.70787,7.216419,0,0,1,0,0,0,0,0,6.631373,0.3323833,0.252662,7.216419,0,4018.889,-,-
-3069.5,10995.8272020221,19.9999992370605,19.9999992370605,0,0.0244,1071.235,64.32922,64.32922,2300,-166.7673,7.216419,258.0128,-18.70787,7.216419,0,0,1,0,0,0,0,0,6.631373,0.3323833,0.252662,7.216419,0,4018.889,-,-
-3070.5,11001.3827573657,19.9999992370605,19.9999992370605,0,0.0244,1071.235,64.32922,64.32922,2300,-166.7673,7.216419,258.0128,-18.70787,7.216419,0,0,1,0,0,0,0,0,6.631373,0.3323833,0.252662,7.216419,0,4018.889,-,-
-3071.5,11006.9383127093,19.9999992370605,19.9999992370605,0,0.0244,1071.235,64.32922,64.32922,2300,-166.7673,7.216419,258.0128,-18.70787,7.216419,0,0,1,0,0,0,0,0,6.631373,0.3323833,0.252662,7.216419,0,4018.889,-,-
-3072.5,11012.493868053,19.9999992370605,19.9999992370605,0,-0.1530232,1071.235,47.95169,47.95169,2300,-166.7673,5.379195,258.0128,-18.70787,5.379195,0,0,1,0,0,0,0,0,6.631366,0.3323833,-1.584554,5.379195,0,3765.201,-,-
-3073.5,11018.0494233966,19.9999992370605,19.9999992370605,0,-0.1530232,1071.235,47.95169,47.95169,2300,-166.7673,5.379195,258.0128,-18.70787,5.379195,0,0,1,0,0,0,0,0,6.631366,0.3323833,-1.584554,5.379195,0,3765.201,-,-
-3074.5,11023.6049787402,19.9999992370605,19.9999992370605,0,-0.1530232,1071.235,47.95169,47.95169,2300,-166.7673,5.379195,258.0128,-18.70787,5.379195,0,0,1,0,0,0,0,0,6.631366,0.3323833,-1.584554,5.379195,0,3765.201,-,-
-3075.5,11029.1605340838,19.9999992370605,19.9999992370605,0,-0.3304524,1071.235,31.57355,31.57355,2300,-166.7673,3.541905,258.0128,-18.70787,3.541905,0,0,1,0,0,0,0,0,6.631337,0.3323833,-3.421816,3.541905,0,3511.504,-,-
-3076.5,11034.7160894275,19.9999992370605,19.9999992370605,0,-0.3304524,1071.235,31.57355,31.57355,2300,-166.7673,3.541905,258.0128,-18.70787,3.541905,0,0,1,0,0,0,0,0,6.631337,0.3323833,-3.421816,3.541905,0,3511.504,-,-
-3077.5,11040.2716447711,19.9999992370605,19.9999992370605,0,-0.3304524,1071.235,31.57355,31.57355,2300,-166.7673,3.541905,258.0128,-18.70787,3.541905,0,0,1,0,0,0,0,0,6.631337,0.3323833,-3.421816,3.541905,0,3511.504,-,-
-3078.5,11045.8272001147,19.9999992370605,19.9999992370605,0,-0.3304524,1071.235,31.57355,31.57355,2300,-166.7673,3.541905,258.0128,-18.70787,3.541905,0,0,1,0,0,0,0,0,6.631337,0.3323833,-3.421816,3.541905,0,3511.504,-,-
-3079.5,11051.3827554584,19.9999992370605,19.9999992370605,0,-0.5078815,1071.235,15.19553,15.19553,2300,-166.7673,1.704626,258.0128,-18.70787,1.704626,0,0,1,0,0,0,0,0,6.631288,0.3323833,-5.259045,1.704626,0,3257.808,-,-
-3080.5,11056.938310802,19.9999992370605,19.9999992370605,0,-0.5078815,1071.235,15.19553,15.19553,2300,-166.7673,1.704626,258.0128,-18.70787,1.704626,0,0,1,0,0,0,0,0,6.631288,0.3323833,-5.259045,1.704626,0,3257.808,-,-
-3081.5,11062.4938661456,19.9999992370605,19.9999992370605,0,-0.5078815,1071.235,15.19553,15.19553,2300,-166.7673,1.704626,258.0128,-18.70787,1.704626,0,0,1,0,0,0,0,0,6.631288,0.3323833,-5.259045,1.704626,0,3257.808,-,-
-3082.5,11068.0494214892,19.9999992370605,19.9999992370605,0,-0.5965961,1071.235,7.006593,7.006593,2300,-166.7673,0.785996,258.0128,-18.70787,0.785996,0,0,1,0,0,0,0,0,6.631256,0.3323833,-6.177643,0.785996,0,3130.962,-,-
-3083.5,11073.6049768329,19.9999992370605,19.9999992370605,0,-0.6853107,1071.235,-1.182245,-1.182245,2300,-166.7673,-0.1326237,258.0128,-18.70787,-0.1326237,0,0,1,0,0,0,0,0,6.631218,0.3323833,-7.096225,-0.1326237,0,3001.26,-,-
-3084.5,11079.1605321765,19.9999992370605,19.9999992370605,0,-0.6853107,1071.235,-1.182245,-1.182245,2300,-166.7673,-0.1326237,258.0128,-18.70787,-0.1326237,0,0,1,0,0,0,0,0,6.631218,0.3323833,-7.096225,-0.1326237,0,3001.26,-,-
-3085.5,11084.7160875201,19.9999992370605,19.9999992370605,0,-0.6853107,1071.235,-1.182245,-1.182245,2300,-166.7673,-0.1326237,258.0128,-18.70787,-0.1326237,0,0,1,0,0,0,0,0,6.631218,0.3323833,-7.096225,-0.1326237,0,3001.26,-,-
-3086.5,11090.2716428638,19.9999992370605,19.9999992370605,0,-0.8627398,1071.235,-17.55961,-17.55961,2300,-166.7673,-1.969828,258.0128,-18.70787,-1.969828,0,0,1,0,0,0,0,0,6.631127,0.3323833,-8.933338,-1.969828,0,2708.003,-,-
-3087.5,11095.8271982074,19.9999992370605,19.9999992370605,0,-0.8627398,1071.235,-17.55961,-17.55961,2300,-166.7673,-1.969828,258.0128,-18.70787,-1.969828,0,0,1,0,0,0,0,0,6.631127,0.3323833,-8.933338,-1.969828,0,2708.003,-,-
-3088.5,11101.382753551,19.9999992370605,19.9999992370605,0,-0.8627398,1071.235,-17.55961,-17.55961,2300,-166.7673,-1.969828,258.0128,-18.70787,-1.969828,0,0,1,0,0,0,0,0,6.631127,0.3323833,-8.933338,-1.969828,0,2708.003,-,-
-3089.5,11106.9383088946,19.9999992370605,19.9999992370605,0,-0.8627398,1071.235,-17.55961,-17.55961,2300,-166.7673,-1.969828,258.0128,-18.70787,-1.969828,0,0,1,0,0,0,0,0,6.631127,0.3323833,-8.933338,-1.969828,0,2708.003,-,-
-3090.5,11112.4938642383,19.9999992370605,19.9999992370605,0,-1.040169,1071.235,-33.93641,-33.93641,2300,-166.7673,-3.806969,258.0128,-18.70787,-3.806969,0,0,1,0,0,0,0,0,6.631015,0.3323833,-10.77037,-3.806969,0,2414.756,-,-
-3091.5,11118.0494195819,19.9999992370605,19.9999992370605,0,-1.040169,1071.235,-33.93641,-33.93641,2300,-166.7673,-3.806969,258.0128,-18.70787,-3.806969,0,0,1,0,0,0,0,0,6.631015,0.3323833,-10.77037,-3.806969,0,2414.756,-,-
-3092.5,11123.6049749255,19.9999992370605,19.9999992370605,0,-1.040169,1071.235,-33.93641,-33.93641,2300,-166.7673,-3.806969,258.0128,-18.70787,-3.806969,0,0,1,0,0,0,0,0,6.631015,0.3323833,-10.77037,-3.806969,0,2414.756,-,-
-3093.5,11129.1605302691,19.9999992370605,19.9999992370605,0,-1.217598,1071.235,-50.31248,-50.31248,2300,-166.7673,-5.644028,258.0128,-18.70787,-5.644028,0,0,1,0,0,0,0,0,6.630882,0.3323833,-12.60729,-5.644028,0,2121.522,-,-
-3094.5,11134.7160856128,19.9999992370605,19.9999992370605,0,-1.217598,1071.235,-50.31248,-50.31248,2300,-166.7673,-5.644028,258.0128,-18.70787,-5.644028,0,0,1,0,0,0,0,0,6.630882,0.3323833,-12.60729,-5.644028,0,2121.522,-,-
-3095.5,11140.2716409564,19.9999992370605,19.9999992370605,0,-1.217598,1071.235,-50.31248,-50.31248,2300,-166.7673,-5.644028,258.0128,-18.70787,-5.644028,0,0,1,0,0,0,0,0,6.630882,0.3323833,-12.60729,-5.644028,0,2121.522,-,-
-3096.5,11145.8271963,19.9999992370605,19.9999992370605,0,-1.217598,1071.235,-50.31248,-50.31248,2300,-166.7673,-5.644028,258.0128,-18.70787,-5.644028,0,0,1,0,0,0,0,0,6.630882,0.3323833,-12.60729,-5.644028,0,2121.522,-,-
-3097.5,11151.3827516437,19.9999992370605,19.9999992370605,0,-1.35067,1071.235,-62.59398,-62.59398,2300,-166.7673,-7.02176,258.0128,-18.70787,-7.02176,0,0,1,0,0,0,0,0,6.630769,0.3323833,-13.98491,-7.02176,0,1901.606,-,-
-3098.5,11156.9383069873,19.9999992370605,19.9999992370605,0,-1.35067,1071.235,-62.59398,-62.59398,2300,-166.7673,-7.02176,258.0128,-18.70787,-7.02176,0,0,1,0,0,0,0,0,6.630769,0.3323833,-13.98491,-7.02176,0,1901.606,-,-
-3099.5,11162.4938623309,19.9999992370605,19.9999992370605,0,-1.35067,1071.235,-62.59398,-62.59398,2300,-166.7673,-7.02176,258.0128,-18.70787,-7.02176,0,0,1,0,0,0,0,0,6.630769,0.3323833,-13.98491,-7.02176,0,1901.606,-,-
-3100.5,11168.0494176745,19.9999992370605,19.9999992370605,0,-1.35067,1071.235,-62.59398,-62.59398,2300,-166.7673,-7.02176,258.0128,-18.70787,-7.02176,0,0,1,0,0,0,0,0,6.630769,0.3323833,-13.98491,-7.02176,0,1901.606,-,-
-3101.5,11173.6049730182,19.9999992370605,19.9999992370605,0,-1.35067,1071.235,-62.59398,-62.59398,2300,-166.7673,-7.02176,258.0128,-18.70787,-7.02176,0,0,1,0,0,0,0,0,6.630769,0.3323833,-13.98491,-7.02176,0,1901.606,-,-
-3102.5,11179.1605283618,19.9999992370605,19.9999992370605,0,-1.35067,1071.235,-62.59398,-62.59398,2300,-166.7673,-7.02176,258.0128,-18.70787,-7.02176,0,0,1,0,0,0,0,0,6.630769,0.3323833,-13.98491,-7.02176,0,1901.606,-,-
-3103.5,11184.7160837054,19.9999992370605,19.9999992370605,0,-1.35067,1071.235,-62.59398,-62.59398,2300,-166.7673,-7.02176,258.0128,-18.70787,-7.02176,0,0,1,0,0,0,0,0,6.630769,0.3323833,-13.98491,-7.02176,0,1901.606,-,-
-3104.5,11190.2716390491,19.9999992370605,19.9999992370605,0,-1.35067,1071.235,-62.59398,-62.59398,2300,-166.7673,-7.02176,258.0128,-18.70787,-7.02176,0,0,1,0,0,0,0,0,6.630769,0.3323833,-13.98491,-7.02176,0,1901.606,-,-
-3105.5,11195.8271943927,19.9999992370605,19.9999992370605,0,-1.35067,1071.235,-62.59398,-62.59398,2300,-166.7673,-7.02176,258.0128,-18.70787,-7.02176,0,0,1,0,0,0,0,0,6.630769,0.3323833,-13.98491,-7.02176,0,1901.606,-,-
-3106.5,11201.3827497363,19.9999992370605,19.9999992370605,0,-1.35067,1071.235,-62.59398,-62.59398,2300,-166.7673,-7.02176,258.0128,-18.70787,-7.02176,0,0,1,0,0,0,0,0,6.630769,0.3323833,-13.98491,-7.02176,0,1901.606,-,-
-3107.5,11206.9383050799,19.9999992370605,19.9999992370605,0,-1.35067,1071.235,-62.59398,-62.59398,2300,-166.7673,-7.02176,258.0128,-18.70787,-7.02176,0,0,1,0,0,0,0,0,6.630769,0.3323833,-13.98491,-7.02176,0,1901.606,-,-
-3108.5,11212.4938604236,19.9999992370605,19.9999992370605,0,-1.35067,1071.235,-62.59398,-62.59398,2300,-166.7673,-7.02176,258.0128,-18.70787,-7.02176,0,0,1,0,0,0,0,0,6.630769,0.3323833,-13.98491,-7.02176,0,1901.606,-,-
-3109.5,11218.0494157672,19.9999992370605,19.9999992370605,0,-1.35067,1071.235,-62.59398,-62.59398,2300,-166.7673,-7.02176,258.0128,-18.70787,-7.02176,0,0,1,0,0,0,0,0,6.630769,0.3323833,-13.98491,-7.02176,0,1901.606,-,-
-3110.5,11223.6049711108,19.9999992370605,19.9999992370605,0,-1.35067,1071.235,-62.59398,-62.59398,2300,-166.7673,-7.02176,258.0128,-18.70787,-7.02176,0,0,1,0,0,0,0,0,6.630769,0.3323833,-13.98491,-7.02176,0,1901.606,-,-
-3111.5,11229.1605264544,19.9999992370605,19.9999992370605,0,-1.35067,1071.235,-62.59398,-62.59398,2300,-166.7673,-7.02176,258.0128,-18.70787,-7.02176,0,0,1,0,0,0,0,0,6.630769,0.3323833,-13.98491,-7.02176,0,1901.606,-,-
-3112.5,11234.7160817981,19.9999992370605,19.9999992370605,0,-1.35067,1071.235,-62.59398,-62.59398,2300,-166.7673,-7.02176,258.0128,-18.70787,-7.02176,0,0,1,0,0,0,0,0,6.630769,0.3323833,-13.98491,-7.02176,0,1901.606,-,-
-3113.5,11240.2716371417,19.9999992370605,19.9999992370605,0,-1.35067,1071.235,-62.59398,-62.59398,2300,-166.7673,-7.02176,258.0128,-18.70787,-7.02176,0,0,1,0,0,0,0,0,6.630769,0.3323833,-13.98491,-7.02176,0,1901.606,-,-
-3114.5,11245.8271924853,19.9999992370605,19.9999992370605,0,-1.35067,1071.235,-62.59398,-62.59398,2300,-166.7673,-7.02176,258.0128,-18.70787,-7.02176,0,0,1,0,0,0,0,0,6.630769,0.3323833,-13.98491,-7.02176,0,1901.606,-,-
-3115.5,11251.382747829,19.9999992370605,19.9999992370605,0,-1.35067,1071.235,-62.59398,-62.59398,2300,-166.7673,-7.02176,258.0128,-18.70787,-7.02176,0,0,1,0,0,0,0,0,6.630769,0.3323833,-13.98491,-7.02176,0,1901.606,-,-
-3116.5,11256.9383031726,19.9999992370605,19.9999992370605,0,-1.35067,1071.235,-62.59398,-62.59398,2300,-166.7673,-7.02176,258.0128,-18.70787,-7.02176,0,0,1,0,0,0,0,0,6.630769,0.3323833,-13.98491,-7.02176,0,1901.606,-,-
-3117.5,11262.4938585162,19.9999992370605,19.9999992370605,0,-1.35067,1071.235,-62.59398,-62.59398,2300,-166.7673,-7.02176,258.0128,-18.70787,-7.02176,0,0,1,0,0,0,0,0,6.630769,0.3323833,-13.98491,-7.02176,0,1901.606,-,-
-3118.5,11268.0494138598,19.9999992370605,19.9999992370605,0,-1.415552,1071.235,-68.58189,-68.58189,2300,-166.7673,-7.693481,258.0128,-18.70787,-7.693481,0,0,1,0,0,0,0,0,6.630709,0.3323833,-14.65657,-7.693481,0,1794.385,-,-
-3119.5,11273.6049692035,19.9999992370605,19.9999992370605,0,-1.480434,1071.235,-74.56969,-74.56969,2300,-166.7673,-8.365189,258.0128,-18.70787,-8.365189,0,0,1,0,0,0,0,0,6.630647,0.3323833,-15.32822,-8.365189,0,1687.166,-,-
-3120.5,11279.1605245471,19.9999992370605,19.9999992370605,0,-1.480434,1071.235,-74.56969,-74.56969,2300,-166.7673,-8.365189,258.0128,-18.70787,-8.365189,0,0,1,0,0,0,0,0,6.630647,0.3323833,-15.32822,-8.365189,0,1687.166,-,-
-3121.5,11284.7160798907,19.9999992370605,19.9999992370605,0,-1.480434,1071.235,-74.56969,-74.56969,2300,-166.7673,-8.365189,258.0128,-18.70787,-8.365189,0,0,1,0,0,0,0,0,6.630647,0.3323833,-15.32822,-8.365189,0,1687.166,-,-
-3122.5,11290.2716352344,19.9999992370605,19.9999992370605,0,-1.675151,1071.235,-92.53858,-92.53858,2300,-166.7673,-10.38093,258.0128,-18.70787,-10.38093,0,0,1,0,0,0,0,0,6.630443,0.3323833,-17.34376,-10.38093,0,1365.411,-,-
-3123.5,11295.827190578,19.9999992370605,19.9999992370605,0,-1.675151,1071.235,-92.53858,-92.53858,2300,-166.7673,-10.38093,258.0128,-18.70787,-10.38093,0,0,1,0,0,0,0,0,6.630443,0.3323833,-17.34376,-10.38093,0,1365.411,-,-
-3124.5,11301.3827459216,19.9999992370605,19.9999992370605,0,-1.675151,1071.235,-92.53858,-92.53858,2300,-166.7673,-10.38093,258.0128,-18.70787,-10.38093,0,0,1,0,0,0,0,0,6.630443,0.3323833,-17.34376,-10.38093,0,1365.411,-,-
-3125.5,11306.9383012652,19.9999992370605,19.9999992370605,0,-1.675151,1071.235,-92.53858,-92.53858,2300,-166.7673,-10.38093,258.0128,-18.70787,-10.38093,0,0,1,0,0,0,0,0,6.630443,0.3323833,-17.34376,-10.38093,0,1365.411,-,-
-3126.5,11312.4938566089,19.9999992370605,19.9999992370605,0,-1.869868,1071.235,-110.5059,-110.5059,2300,-166.7673,-12.3965,258.0128,-18.70787,-12.3965,0,0,1,0,0,0,0,0,6.630214,0.3323833,-19.35909,-12.3965,0,1039.422,-,-
-3127.5,11318.0494119525,19.9999992370605,19.9999992370605,0,-1.869868,1071.235,-110.5059,-110.5059,2300,-166.7673,-12.3965,258.0128,-18.70787,-12.3965,0,0,1,0,0,0,0,0,6.630214,0.3323833,-19.35909,-12.3965,0,1039.422,-,-
-3128.5,11323.6049672961,19.9999992370605,19.9999992370605,0,-1.869868,1071.235,-110.5059,-110.5059,2300,-166.7673,-12.3965,258.0128,-18.70787,-12.3965,0,0,1,0,0,0,0,0,6.630214,0.3323833,-19.35909,-12.3965,0,1039.422,-,-
-3129.5,11329.1605226398,19.9999992370605,19.9999992370605,0,-2.064584,1071.235,-128.4715,-128.4715,2300,-166.7673,-14.41187,258.0128,-18.70787,-14.41187,0,0,1,0,0,0,0,0,6.629961,0.3323833,-21.37421,-14.41187,0,707.5094,-,-
-3130.5,11334.7160779834,19.9999992370605,19.9999992370605,0,-2.064584,1071.235,-128.4715,-128.4715,2300,-166.7673,-14.41187,258.0128,-18.70787,-14.41187,0,0,1,0,0,0,0,0,6.629961,0.3323833,-21.37421,-14.41187,0,707.5094,-,-
-3131.5,11340.271633327,19.9999992370605,19.9999992370605,0,-2.064584,1071.235,-128.4715,-128.4715,2300,-166.7673,-14.41187,258.0128,-18.70787,-14.41187,0,0,1,0,0,0,0,0,6.629961,0.3323833,-21.37421,-14.41187,0,707.5094,-,-
-3132.5,11345.8271886706,19.9999992370605,19.9999992370605,0,-2.064584,1071.235,-128.4715,-128.4715,2300,-166.7673,-14.41187,258.0128,-18.70787,-14.41187,0,0,1,0,0,0,0,0,6.629961,0.3323833,-21.37421,-14.41187,0,707.5094,-,-
-3133.5,11351.3827440143,19.9999992370605,19.9999992370605,0,-2.259301,1071.235,-146.4352,-146.4352,2300,-166.7673,-16.42703,258.0128,-18.70787,-16.42703,0,0,1,0,0,0,0,0,6.629682,0.3323833,-23.38909,-16.42703,0,375.6329,-,-
-3134.5,11356.9382993579,19.9999992370605,19.9999992370605,0,-2.259301,1071.235,-146.4352,-146.4352,2300,-166.7673,-16.42703,258.0128,-18.70787,-16.42703,0,0,1,0,0,0,0,0,6.629682,0.3323833,-23.38909,-16.42703,0,375.6329,-,-
-3135.5,11362.4938547015,19.9999992370605,19.9999992370605,0,-2.259301,1071.235,-146.4352,-146.4352,2300,-166.7673,-16.42703,258.0128,-18.70787,-16.42703,0,0,1,0,0,0,0,0,6.629682,0.3323833,-23.38909,-16.42703,0,375.6329,-,-
-3136.5,11368.0494100451,19.9999992370605,19.9999992370605,0,-2.355376,1071.235,-155.2979,-155.2979,2300,-166.7673,-17.42123,258.0128,-18.70787,-17.42123,0,0,1,0,0,0,0,0,6.629535,0.3323833,-24.38315,-17.42123,0,211.8971,-,-
-3137.5,11373.6049653888,19.9999992370605,19.9999992370605,0,-2.45145,1071.235,-164.1599,-164.1599,2300,-166.7673,-18.41537,258.0128,-18.70787,-18.41537,0,0,1,0,0,0,0,0,6.629382,0.3323833,-25.37714,-18.41537,0,48.1715,-,-
-3138.5,11379.1605207324,19.9999992370605,19.9999992370605,0,-2.45145,1071.235,-164.1599,-164.1599,2300,-166.7673,-18.41537,258.0128,-18.70787,-18.41537,0,0,1,0,0,0,0,0,6.629382,0.3323833,-25.37714,-18.41537,0,48.1715,-,-
-3139.5,11384.716076076,19.9999992370605,19.9999992370605,0,-2.45145,1071.235,-164.1599,-164.1599,2300,-166.7673,-18.41537,258.0128,-18.70787,-18.41537,0,0,1,0,0,0,0,0,6.629382,0.3323833,-25.37714,-18.41537,0,48.1715,-,-
-3140.5,11390.2716314197,19.9999992370605,19.9999992370605,0,-2.633268,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.629076,0.3323833,-27.25804,-20.29659,-1.588713,2.255232E-05,-,-
-3141.5,11395.8271867633,19.9999992370605,19.9999992370605,0,-2.633268,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.629076,0.3323833,-27.25804,-20.29659,-1.588713,2.255232E-05,-,-
-3142.5,11401.3827421069,19.9999992370605,19.9999992370605,0,-2.633268,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.629076,0.3323833,-27.25804,-20.29659,-1.588713,2.255232E-05,-,-
-3143.5,11406.9382974505,19.9999992370605,19.9999992370605,0,-2.633268,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.629076,0.3323833,-27.25804,-20.29659,-1.588713,2.255232E-05,-,-
-3144.5,11412.4938527942,19.9999992370605,19.9999992370605,0,-2.814838,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628748,0.3323833,-29.13611,-22.17498,-3.467108,2.255232E-05,-,-
-3145.5,11418.0494081378,19.9999992370605,19.9999992370605,0,-2.814838,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628748,0.3323833,-29.13611,-22.17498,-3.467108,2.255232E-05,-,-
-3146.5,11423.6049634814,19.9999992370605,19.9999992370605,0,-2.814838,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628748,0.3323833,-29.13611,-22.17498,-3.467108,2.255232E-05,-,-
-3147.5,11429.1605188251,19.9999992370605,19.9999992370605,0,-2.996408,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628398,0.3323833,-31.01389,-24.0531,-5.345232,2.255232E-05,-,-
-3148.5,11434.7160741687,19.9999992370605,19.9999992370605,0,-2.996408,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628398,0.3323833,-31.01389,-24.0531,-5.345232,2.255232E-05,-,-
-3149.5,11440.2716295123,19.9999992370605,19.9999992370605,0,-2.996408,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628398,0.3323833,-31.01389,-24.0531,-5.345232,2.255232E-05,-,-
-3150.5,11445.8271848559,19.9999992370605,19.9999992370605,0,-2.996408,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628398,0.3323833,-31.01389,-24.0531,-5.345232,2.255232E-05,-,-
-3151.5,11451.3827401996,19.9999992370605,19.9999992370605,0,-3.177978,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628027,0.3323833,-32.89136,-25.93095,-7.223074,2.255232E-05,-,-
-3152.5,11456.9382955432,19.9999992370605,19.9999992370605,0,-3.177978,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628027,0.3323833,-32.89136,-25.93095,-7.223074,2.255232E-05,-,-
-3153.5,11462.4938508868,19.9999992370605,19.9999992370605,0,-3.177978,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628027,0.3323833,-32.89136,-25.93095,-7.223074,2.255232E-05,-,-
-3154.5,11468.0494062305,19.9999992370605,19.9999992370605,0,-3.232387,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.627912,0.3323833,-33.45389,-26.49359,-7.785721,2.255232E-05,-,-
-3155.5,11473.6049615741,19.9999992370605,19.9999992370605,0,-3.286796,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.627794,0.3323833,-34.0164,-27.05622,-8.348349,2.255232E-05,-,-
-3156.5,11479.1605169177,19.9999992370605,19.9999992370605,0,-3.286796,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.627794,0.3323833,-34.0164,-27.05622,-8.348349,2.255232E-05,-,-
-3157.5,11484.7160722613,19.9999992370605,19.9999992370605,0,-3.286796,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.627794,0.3323833,-34.0164,-27.05622,-8.348349,2.255232E-05,-,-
-3158.5,11490.271627605,19.9999992370605,19.9999992370605,0,-3.286796,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.627794,0.3323833,-34.0164,-27.05622,-8.348349,2.255232E-05,-,-
-3159.5,11495.8271829486,19.9999992370605,19.9999992370605,0,-3.286796,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.627794,0.3323833,-34.0164,-27.05622,-8.348349,2.255232E-05,-,-
-3160.5,11501.3827382922,19.9999992370605,19.9999992370605,0,-3.286796,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.627794,0.3323833,-34.0164,-27.05622,-8.348349,2.255232E-05,-,-
-3161.5,11506.9382936358,19.9999992370605,19.9999992370605,0,-3.286796,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.627794,0.3323833,-34.0164,-27.05622,-8.348349,2.255232E-05,-,-
-3162.5,11512.4938489795,19.9999992370605,19.9999992370605,0,-3.286796,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.627794,0.3323833,-34.0164,-27.05622,-8.348349,2.255232E-05,-,-
-3163.5,11518.0494043231,19.9999992370605,19.9999992370605,0,-3.286796,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.627794,0.3323833,-34.0164,-27.05622,-8.348349,2.255232E-05,-,-
-3164.5,11523.6049596667,19.9999992370605,19.9999992370605,0,-3.286796,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.627794,0.3323833,-34.0164,-27.05622,-8.348349,2.255232E-05,-,-
-3165.5,11529.1605150104,19.9999992370605,19.9999992370605,0,-3.286796,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.627794,0.3323833,-34.0164,-27.05622,-8.348349,2.255232E-05,-,-
-3166.5,11534.716070354,19.9999992370605,19.9999992370605,0,-3.286796,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.627794,0.3323833,-34.0164,-27.05622,-8.348349,2.255232E-05,-,-
-3167.5,11540.2716256976,19.9999992370605,19.9999992370605,0,-3.286796,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.627794,0.3323833,-34.0164,-27.05622,-8.348349,2.255232E-05,-,-
-3168.5,11545.8271810412,19.9999992370605,19.9999992370605,0,-3.286796,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.627794,0.3323833,-34.0164,-27.05622,-8.348349,2.255232E-05,-,-
-3169.5,11551.3827363849,19.9999992370605,19.9999992370605,0,-3.286796,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.627794,0.3323833,-34.0164,-27.05622,-8.348349,2.255232E-05,-,-
-3170.5,11556.9382917285,19.9999992370605,19.9999992370605,0,-3.286796,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.627794,0.3323833,-34.0164,-27.05622,-8.348349,2.255232E-05,-,-
-3171.5,11562.4938470721,19.9999992370605,19.9999992370605,0,-3.286796,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.627794,0.3323833,-34.0164,-27.05622,-8.348349,2.255232E-05,-,-
-3172.5,11568.0494024158,19.9999992370605,19.9999992370605,0,-3.286796,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.627794,0.3323833,-34.0164,-27.05622,-8.348349,2.255232E-05,-,-
-3173.5,11573.6049577594,19.9999992370605,19.9999992370605,0,-3.286796,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.627794,0.3323833,-34.0164,-27.05622,-8.348349,2.255232E-05,-,-
-3174.5,11579.160513103,19.9999992370605,19.9999992370605,0,-3.286796,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.627794,0.3323833,-34.0164,-27.05622,-8.348349,2.255232E-05,-,-
-3175.5,11584.7160684466,19.9999992370605,19.9999992370605,0,-3.286796,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.627794,0.3323833,-34.0164,-27.05622,-8.348349,2.255232E-05,-,-
-3176.5,11590.2716237903,19.9999992370605,19.9999992370605,0,-3.286796,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.627794,0.3323833,-34.0164,-27.05622,-8.348349,2.255232E-05,-,-
-3177.5,11595.8271791339,19.9999992370605,19.9999992370605,0,-3.286796,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.627794,0.3323833,-34.0164,-27.05622,-8.348349,2.255232E-05,-,-
-3178.5,11601.3827344775,19.9999992370605,19.9999992370605,0,-3.286796,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.627794,0.3323833,-34.0164,-27.05622,-8.348349,2.255232E-05,-,-
-3179.5,11606.9382898211,19.9999992370605,19.9999992370605,0,-3.286796,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.627794,0.3323833,-34.0164,-27.05622,-8.348349,2.255232E-05,-,-
-3180.5,11612.4938451648,19.9999992370605,19.9999992370605,0,-3.286796,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.627794,0.3323833,-34.0164,-27.05622,-8.348349,2.255232E-05,-,-
-3181.5,11618.0494005084,19.9999992370605,19.9999992370605,0,-3.286796,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.627794,0.3323833,-34.0164,-27.05622,-8.348349,2.255232E-05,-,-
-3182.5,11623.604955852,19.9999992370605,19.9999992370605,0,-3.286796,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.627794,0.3323833,-34.0164,-27.05622,-8.348349,2.255232E-05,-,-
-3183.5,11629.1605111957,19.9999992370605,19.9999992370605,0,-3.286796,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.627794,0.3323833,-34.0164,-27.05622,-8.348349,2.255232E-05,-,-
-3184.5,11634.7160665393,19.9999992370605,19.9999992370605,0,-3.286796,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.627794,0.3323833,-34.0164,-27.05622,-8.348349,2.255232E-05,-,-
-3185.5,11640.2716218829,19.9999992370605,19.9999992370605,0,-3.135116,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628117,0.3323833,-32.44818,-25.48768,-6.779812,2.255232E-05,-,-
-3186.5,11645.8271772265,19.9999992370605,19.9999992370605,0,-3.135116,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628117,0.3323833,-32.44818,-25.48768,-6.779812,2.255232E-05,-,-
-3187.5,11651.3827325702,19.9999992370605,19.9999992370605,0,-2.999405,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628393,0.3323833,-31.04487,-24.0841,-5.376226,2.255232E-05,-,-
-3188.5,11656.9382879138,19.9999992370605,19.9999992370605,0,-2.999405,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628393,0.3323833,-31.04487,-24.0841,-5.376226,2.255232E-05,-,-
-3189.5,11662.4938432574,19.9999992370605,19.9999992370605,0,-2.863693,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628656,0.3323833,-29.64139,-22.68036,-3.972483,2.255232E-05,-,-
-3190.5,11668.0493986011,19.9999992370605,19.9999992370605,0,-2.795838,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628783,0.3323833,-28.93959,-21.97842,-3.27055,2.255232E-05,-,-
-3191.5,11673.6049539447,19.9999992370605,19.9999992370605,0,-2.727982,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628907,0.3323833,-28.23775,-21.27645,-2.568583,2.255232E-05,-,-
-3192.5,11679.1605092883,19.9999992370605,19.9999992370605,0,-2.59227,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.629147,0.3323833,-26.83394,-19.87241,-1.164541,2.255232E-05,-,-
-3193.5,11684.7160646319,19.9999992370605,19.9999992370605,0,-2.59227,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.629147,0.3323833,-26.83394,-19.87241,-1.164541,2.255232E-05,-,-
-3194.5,11690.2716199756,19.9999992370605,19.9999992370605,0,-2.456559,1071.235,-164.6311,-164.6311,2300,-166.7673,-18.46824,258.0128,-18.70787,-18.46824,0,0,1,0,0,0,0,0,6.629374,0.3323833,-25.42999,-18.46824,0,39.46602,-,-
-3195.5,11695.8271753192,19.9999992370605,19.9999992370605,0,-2.456559,1071.235,-164.6311,-164.6311,2300,-166.7673,-18.46824,258.0128,-18.70787,-18.46824,0,0,1,0,0,0,0,0,6.629374,0.3323833,-25.42999,-18.46824,0,39.46602,-,-
-3196.5,11701.3827306628,19.9999992370605,19.9999992370605,0,-2.320847,1071.235,-152.1127,-152.1127,2300,-166.7673,-17.06393,258.0128,-18.70787,-17.06393,0,0,1,0,0,0,0,0,6.629588,0.3323833,-24.0259,-17.06393,0,270.7415,-,-
-3197.5,11706.9382860065,19.9999992370605,19.9999992370605,0,-2.320847,1071.235,-152.1127,-152.1127,2300,-166.7673,-17.06393,258.0128,-18.70787,-17.06393,0,0,1,0,0,0,0,0,6.629588,0.3323833,-24.0259,-17.06393,0,270.7415,-,-
-3198.5,11712.4938413501,19.9999992370605,19.9999992370605,0,-2.185136,1071.235,-139.5933,-139.5933,2300,-166.7673,-15.6595,258.0128,-18.70787,-15.6595,0,0,1,0,0,0,0,0,6.629791,0.3323833,-22.62168,-15.6595,0,502.0364,-,-
-3199.5,11718.0493966937,19.9999992370605,19.9999992370605,0,-2.11728,1071.235,-133.3332,-133.3332,2300,-166.7673,-14.95725,258.0128,-18.70787,-14.95725,0,0,1,0,0,0,0,0,6.629888,0.3323833,-21.91952,-14.95725,0,617.6909,-,-
-3200.5,11723.6049520373,19.9999992370605,19.9999992370605,0,-2.049424,1071.235,-127.0729,-127.0729,2300,-166.7673,-14.25497,258.0128,-18.70787,-14.25497,0,0,1,0,0,0,0,0,6.629981,0.3323833,-21.21733,-14.25497,0,733.35,-,-
-3201.5,11729.160507381,19.9999992370605,19.9999992370605,0,-1.913713,1071.235,-114.5515,-114.5515,2300,-166.7673,-12.85032,258.0128,-18.70787,-12.85032,0,0,1,0,0,0,0,0,6.630159,0.3323833,-19.81286,-12.85032,0,964.6812,-,-
-3202.5,11734.7160627246,19.9999992370605,19.9999992370605,0,-1.913713,1071.235,-114.5515,-114.5515,2300,-166.7673,-12.85032,258.0128,-18.70787,-12.85032,0,0,1,0,0,0,0,0,6.630159,0.3323833,-19.81286,-12.85032,0,964.6812,-,-
-3203.5,11740.2716180682,19.9999992370605,19.9999992370605,0,-1.778001,1071.235,-102.0292,-102.0292,2300,-166.7673,-11.44558,258.0128,-18.70787,-11.44558,0,0,1,0,0,0,0,0,6.630325,0.3323833,-18.40829,-11.44558,0,1195.469,-,-
-3204.5,11745.8271734118,19.9999992370605,19.9999992370605,0,-1.778001,1071.235,-102.0292,-102.0292,2300,-166.7673,-11.44558,258.0128,-18.70787,-11.44558,0,0,1,0,0,0,0,0,6.630325,0.3323833,-18.40829,-11.44558,0,1195.469,-,-
-3205.5,11751.3827287555,19.9999992370605,19.9999992370605,0,-1.642289,1071.235,-89.50613,-89.50613,2300,-166.7673,-10.04075,258.0128,-18.70787,-10.04075,0,0,1,0,0,0,0,0,6.630479,0.3323833,-17.00361,-10.04075,0,1419.711,-,-
-3206.5,11756.9382840991,19.9999992370605,19.9999992370605,0,-1.642289,1071.235,-89.50613,-89.50613,2300,-166.7673,-10.04075,258.0128,-18.70787,-10.04075,0,0,1,0,0,0,0,0,6.630479,0.3323833,-17.00361,-10.04075,0,1419.711,-,-
-3207.5,11762.4938394427,19.9999992370605,19.9999992370605,0,-1.506578,1071.235,-76.98234,-76.98234,2300,-166.7673,-8.635839,258.0128,-18.70787,-8.635839,0,0,1,0,0,0,0,0,6.630621,0.3323833,-15.59884,-8.635839,0,1643.965,-,-
-3208.5,11768.0493947864,19.9999992370605,19.9999992370605,0,-1.438727,1071.235,-70.72067,-70.72067,2300,-166.7673,-7.933408,258.0128,-18.70787,-7.933408,0,0,1,0,0,0,0,0,6.630687,0.3323833,-14.89648,-7.933408,0,1756.088,-,-
-3209.5,11773.60495013,19.9999992370605,19.9999992370605,0,-1.370877,1071.235,-64.45885,-64.45885,2300,-166.7673,-7.230959,258.0128,-18.70787,-7.230959,0,0,1,0,0,0,0,0,6.63075,0.3323833,-14.19409,-7.230959,0,1868.213,-,-
-3210.5,11779.1605054736,19.9999992370605,19.9999992370605,0,-1.235269,1071.235,-51.94336,-51.94336,2300,-166.7673,-5.826979,258.0128,-18.70787,-5.826979,0,0,1,0,0,0,0,0,6.630867,0.3323833,-12.79023,-5.826979,0,2092.319,-,-
-3211.5,11784.7160608172,19.9999992370605,19.9999992370605,0,-1.235269,1071.235,-51.94336,-51.94336,2300,-166.7673,-5.826979,258.0128,-18.70787,-5.826979,0,0,1,0,0,0,0,0,6.630867,0.3323833,-12.79023,-5.826979,0,2092.319,-,-
-3212.5,11790.2716161609,19.9999992370605,19.9999992370605,0,-1.099661,1071.235,-39.42735,-39.42735,2300,-166.7673,-4.42294,258.0128,-18.70787,-4.42294,0,0,1,0,0,0,0,0,6.630972,0.3323833,-11.3863,-4.42294,0,2316.434,-,-
-3213.5,11795.8271715045,19.9999992370605,19.9999992370605,0,-1.099661,1071.235,-39.42735,-39.42735,2300,-166.7673,-4.42294,258.0128,-18.70787,-4.42294,0,0,1,0,0,0,0,0,6.630972,0.3323833,-11.3863,-4.42294,0,2316.434,-,-
-3214.5,11801.3827268481,19.9999992370605,19.9999992370605,0,-0.9640525,1071.235,-26.91091,-26.91091,2300,-166.7673,-3.018851,258.0128,-18.70787,-3.018851,0,0,1,0,0,0,0,0,6.631065,0.3323833,-9.9823,-3.018851,0,2540.556,-,-
-3215.5,11806.9382821918,19.9999992370605,19.9999992370605,0,-0.9640525,1071.235,-26.91091,-26.91091,2300,-166.7673,-3.018851,258.0128,-18.70787,-3.018851,0,0,1,0,0,0,0,0,6.631065,0.3323833,-9.9823,-3.018851,0,2540.556,-,-
-3216.5,11812.4938375354,19.9999992370605,19.9999992370605,0,-0.8284445,1071.235,-14.39407,-14.39407,2300,-166.7673,-1.614719,258.0128,-18.70787,-1.614719,0,0,1,0,0,0,0,0,6.631146,0.3323833,-8.578248,-1.614719,0,2764.686,-,-
-3217.5,11818.049392879,19.9999992370605,19.9999992370605,0,-0.7606404,1071.235,-8.135523,-8.135523,2300,-166.7673,-0.9126387,258.0128,-18.70787,-0.9126387,0,0,1,0,0,0,0,0,6.631182,0.3323833,-7.876204,-0.9126387,0,2876.753,-,-
-3218.5,11823.6049482226,19.9999992370605,19.9999992370605,0,-0.6928364,1071.235,-1.876914,-1.876914,2300,-166.7673,-0.2105513,258.0128,-18.70787,-0.2105513,0,0,1,0,0,0,0,0,6.631214,0.3323833,-7.174149,-0.2105513,0,2988.821,-,-
-3219.5,11829.1605035663,19.9999992370605,19.9999992370605,0,-0.58435,1071.235,8.136989,8.136989,2300,-166.7673,0.9128032,258.0128,-18.70787,0.9128032,0,0,1,0,0,0,0,0,6.63126,0.3323833,-6.05084,0.9128032,0,3148.471,-,-
-3220.5,11834.7160589099,19.9999992370605,19.9999992370605,0,-0.58435,1071.235,8.136989,8.136989,2300,-166.7673,0.9128032,258.0128,-18.70787,0.9128032,0,0,1,0,0,0,0,0,6.63126,0.3323833,-6.05084,0.9128032,0,3148.471,-,-
-3221.5,11840.2716142535,19.9999992370605,19.9999992370605,0,-0.58435,1071.235,8.136989,8.136989,2300,-166.7673,0.9128032,258.0128,-18.70787,0.9128032,0,0,1,0,0,0,0,0,6.63126,0.3323833,-6.05084,0.9128032,0,3148.471,-,-
-3222.5,11845.8271695971,19.9999992370605,19.9999992370605,0,-0.58435,1071.235,8.136989,8.136989,2300,-166.7673,0.9128032,258.0128,-18.70787,0.9128032,0,0,1,0,0,0,0,0,6.63126,0.3323833,-6.05084,0.9128032,0,3148.471,-,-
-3223.5,11851.3827249408,19.9999992370605,19.9999992370605,0,-0.58435,1071.235,8.136989,8.136989,2300,-166.7673,0.9128032,258.0128,-18.70787,0.9128032,0,0,1,0,0,0,0,0,6.63126,0.3323833,-6.05084,0.9128032,0,3148.471,-,-
-3224.5,11856.9382802844,19.9999992370605,19.9999992370605,0,-0.58435,1071.235,8.136989,8.136989,2300,-166.7673,0.9128032,258.0128,-18.70787,0.9128032,0,0,1,0,0,0,0,0,6.63126,0.3323833,-6.05084,0.9128032,0,3148.471,-,-
-3225.5,11862.493835628,19.9999992370605,19.9999992370605,0,-0.58435,1071.235,8.136989,8.136989,2300,-166.7673,0.9128032,258.0128,-18.70787,0.9128032,0,0,1,0,0,0,0,0,6.63126,0.3323833,-6.05084,0.9128032,0,3148.471,-,-
-3226.5,11868.0493909717,19.9999992370605,19.9999992370605,0,-0.58435,1071.235,8.136989,8.136989,2300,-166.7673,0.9128032,258.0128,-18.70787,0.9128032,0,0,1,0,0,0,0,0,6.63126,0.3323833,-6.05084,0.9128032,0,3148.471,-,-
-3227.5,11873.6049463153,19.9999992370605,19.9999992370605,0,-0.58435,1071.235,8.136989,8.136989,2300,-166.7673,0.9128032,258.0128,-18.70787,0.9128032,0,0,1,0,0,0,0,0,6.63126,0.3323833,-6.05084,0.9128032,0,3148.471,-,-
-3228.5,11879.1605016589,19.9999992370605,19.9999992370605,0,-0.58435,1071.235,8.136989,8.136989,2300,-166.7673,0.9128032,258.0128,-18.70787,0.9128032,0,0,1,0,0,0,0,0,6.63126,0.3323833,-6.05084,0.9128032,0,3148.471,-,-
-3229.5,11884.7160570025,19.9999992370605,19.9999992370605,0,-0.58435,1071.235,8.136989,8.136989,2300,-166.7673,0.9128032,258.0128,-18.70787,0.9128032,0,0,1,0,0,0,0,0,6.63126,0.3323833,-6.05084,0.9128032,0,3148.471,-,-
-3230.5,11890.2716123462,19.9999992370605,19.9999992370605,0,-0.58435,1071.235,8.136989,8.136989,2300,-166.7673,0.9128032,258.0128,-18.70787,0.9128032,0,0,1,0,0,0,0,0,6.63126,0.3323833,-6.05084,0.9128032,0,3148.471,-,-
-3231.5,11895.8271676898,19.9999992370605,19.9999992370605,0,-0.58435,1071.235,8.136989,8.136989,2300,-166.7673,0.9128032,258.0128,-18.70787,0.9128032,0,0,1,0,0,0,0,0,6.63126,0.3323833,-6.05084,0.9128032,0,3148.471,-,-
-3232.5,11901.3827230334,19.9999992370605,19.9999992370605,0,-0.4363457,1071.235,21.79879,21.79879,2300,-166.7673,2.445377,258.0128,-18.70787,2.445377,0,0,1,0,0,0,0,0,6.63131,0.3323833,-4.518317,2.445377,0,3360.093,-,-
-3233.5,11906.9382783771,19.9999992370605,19.9999992370605,0,-0.4363457,1071.235,21.79879,21.79879,2300,-166.7673,2.445377,258.0128,-18.70787,2.445377,0,0,1,0,0,0,0,0,6.63131,0.3323833,-4.518317,2.445377,0,3360.093,-,-
-3234.5,11912.4938337207,19.9999992370605,19.9999992370605,0,-0.4363457,1071.235,21.79879,21.79879,2300,-166.7673,2.445377,258.0128,-18.70787,2.445377,0,0,1,0,0,0,0,0,6.63131,0.3323833,-4.518317,2.445377,0,3360.093,-,-
-3235.5,11918.0493890643,19.9999992370605,19.9999992370605,0,-0.3584487,1071.235,28.98927,28.98927,2300,-166.7673,3.252002,258.0128,-18.70787,3.252002,0,0,1,0,0,0,0,0,6.631331,0.3323833,-3.711712,3.252002,0,3471.473,-,-
-3236.5,11923.6049444079,19.9999992370605,19.9999992370605,0,-0.2805517,1071.235,36.17978,36.17978,2300,-166.7673,4.058629,258.0128,-18.70787,4.058629,0,0,1,0,0,0,0,0,6.631347,0.3323833,-2.905102,4.058629,0,3582.854,-,-
-3237.5,11929.1604997516,19.9999992370605,19.9999992370605,0,-0.2805517,1071.235,36.17978,36.17978,2300,-166.7673,4.058629,258.0128,-18.70787,4.058629,0,0,1,0,0,0,0,0,6.631347,0.3323833,-2.905102,4.058629,0,3582.854,-,-
-3238.5,11934.7160550952,19.9999992370605,19.9999992370605,0,-0.2805517,1071.235,36.17978,36.17978,2300,-166.7673,4.058629,258.0128,-18.70787,4.058629,0,0,1,0,0,0,0,0,6.631347,0.3323833,-2.905102,4.058629,0,3582.854,-,-
-3239.5,11940.2716104388,19.9999992370605,19.9999992370605,0,-0.1247578,1071.235,50.56081,50.56081,2300,-166.7673,5.671885,258.0128,-18.70787,5.671885,0,0,1,0,0,0,0,0,6.631368,0.3323833,-1.291866,5.671885,0,3805.616,-,-
-3240.5,11945.8271657825,19.9999992370605,19.9999992370605,0,-0.1247578,1071.235,50.56081,50.56081,2300,-166.7673,5.671885,258.0128,-18.70787,5.671885,0,0,1,0,0,0,0,0,6.631368,0.3323833,-1.291866,5.671885,0,3805.616,-,-
-3241.5,11951.3827211261,19.9999992370605,19.9999992370605,0,-0.1247578,1071.235,50.56081,50.56081,2300,-166.7673,5.671885,258.0128,-18.70787,5.671885,0,0,1,0,0,0,0,0,6.631368,0.3323833,-1.291866,5.671885,0,3805.616,-,-
-3242.5,11956.9382764697,19.9999992370605,19.9999992370605,0,-0.1247578,1071.235,50.56081,50.56081,2300,-166.7673,5.671885,258.0128,-18.70787,5.671885,0,0,1,0,0,0,0,0,6.631368,0.3323833,-1.291866,5.671885,0,3805.616,-,-
-3243.5,11962.4938318133,19.9999992370605,19.9999992370605,0,0.031,1071.235,64.93845,64.93845,2300,-166.7673,7.284761,258.0128,-18.70787,7.284761,0,0,1,0,0,0,0,0,6.631373,0.3323833,0.321005,7.284761,0,4028.326,-,-
-3244.5,11968.049387157,19.9999992370605,19.9999992370605,0,0.031,1071.235,64.93845,64.93845,2300,-166.7673,7.284761,258.0128,-18.70787,7.284761,0,0,1,0,0,0,0,0,6.631373,0.3323833,0.321005,7.284761,0,4028.326,-,-
-3245.5,11973.6049425006,19.9999992370605,19.9999992370605,0,0.031,1071.235,64.93845,64.93845,2300,-166.7673,7.284761,258.0128,-18.70787,7.284761,0,0,1,0,0,0,0,0,6.631373,0.3323833,0.321005,7.284761,0,4028.326,-,-
-3246.5,11979.1604978442,19.9999992370605,19.9999992370605,0,0.1868302,1071.235,79.3226,79.3226,2300,-166.7673,8.898368,258.0128,-18.70787,8.898368,0,0,1,0,0,0,0,0,6.631362,0.3323833,1.934623,8.898368,0,4251.137,-,-
-3247.5,11984.7160531878,19.9999992370605,19.9999992370605,0,0.1868302,1071.235,79.3226,79.3226,2300,-166.7673,8.898368,258.0128,-18.70787,8.898368,0,0,1,0,0,0,0,0,6.631362,0.3323833,1.934623,8.898368,0,4251.137,-,-
-3248.5,11990.2716085315,19.9999992370605,19.9999992370605,0,0.1868302,1071.235,79.3226,79.3226,2300,-166.7673,8.898368,258.0128,-18.70787,8.898368,0,0,1,0,0,0,0,0,6.631362,0.3323833,1.934623,8.898368,0,4251.137,-,-
-3249.5,11995.8271638751,19.9999992370605,19.9999992370605,0,0.1868302,1071.235,79.3226,79.3226,2300,-166.7673,8.898368,258.0128,-18.70787,8.898368,0,0,1,0,0,0,0,0,6.631362,0.3323833,1.934623,8.898368,0,4251.137,-,-
-3250.5,12001.3827192187,19.9999992370605,19.9999992370605,0,0.3426242,1071.235,93.70315,93.70315,2300,-166.7673,10.51157,258.0128,-18.70787,10.51157,0,0,1,0,0,0,0,0,6.631334,0.3323833,3.547852,10.51157,0,4473.891,-,-
-3251.5,12006.9382745624,19.9999992370605,19.9999992370605,0,0.3426242,1071.235,93.70315,93.70315,2300,-166.7673,10.51157,258.0128,-18.70787,10.51157,0,0,1,0,0,0,0,0,6.631334,0.3323833,3.547852,10.51157,0,4473.891,-,-
-3252.5,12012.493829906,19.9999992370605,19.9999992370605,0,0.3426242,1071.235,93.70315,93.70315,2300,-166.7673,10.51157,258.0128,-18.70787,10.51157,0,0,1,0,0,0,0,0,6.631334,0.3323833,3.547852,10.51157,0,4473.891,-,-
-3253.5,12018.0493852496,19.9999992370605,19.9999992370605,0,0.4205211,1071.235,100.8933,100.8933,2300,-166.7673,11.31816,258.0128,-18.70787,11.31816,0,0,1,0,0,0,0,0,6.631315,0.3323833,4.354458,11.31816,0,4585.267,-,-
-3254.5,12023.6049405932,19.9999992370605,19.9999992370605,0,0.4984182,1071.235,108.0833,108.0833,2300,-166.7673,12.12473,258.0128,-18.70787,12.12473,0,0,1,0,0,0,0,0,6.631291,0.3323833,5.161056,12.12473,0,4696.64,-,-
-3255.5,12029.1604959369,19.9999992370605,19.9999992370605,0,0.4984182,1071.235,108.0833,108.0833,2300,-166.7673,12.12473,258.0128,-18.70787,12.12473,0,0,1,0,0,0,0,0,6.631291,0.3323833,5.161056,12.12473,0,4696.64,-,-
-3256.5,12034.7160512805,19.9999992370605,19.9999992370605,0,0.4984182,1071.235,108.0833,108.0833,2300,-166.7673,12.12473,258.0128,-18.70787,12.12473,0,0,1,0,0,0,0,0,6.631291,0.3323833,5.161056,12.12473,0,4696.64,-,-
-3257.5,12040.2716066241,19.9999992370605,19.9999992370605,0,0.6542121,1071.235,122.463,122.463,2300,-166.7673,13.73784,258.0128,-18.70787,13.73784,0,0,1,0,0,0,0,0,6.631231,0.3323833,6.774221,13.73784,0,4919.381,-,-
-3258.5,12045.8271619678,19.9999992370605,19.9999992370605,0,0.6542121,1071.235,122.463,122.463,2300,-166.7673,13.73784,258.0128,-18.70787,13.73784,0,0,1,0,0,0,0,0,6.631231,0.3323833,6.774221,13.73784,0,4919.381,-,-
-3259.5,12051.3827173114,19.9999992370605,19.9999992370605,0,0.6542121,1071.235,122.463,122.463,2300,-166.7673,13.73784,258.0128,-18.70787,13.73784,0,0,1,0,0,0,0,0,6.631231,0.3323833,6.774221,13.73784,0,4919.381,-,-
-3260.5,12056.938272655,19.9999992370605,19.9999992370605,0,0.6542121,1071.235,122.463,122.463,2300,-166.7673,13.73784,258.0128,-18.70787,13.73784,0,0,1,0,0,0,0,0,6.631231,0.3323833,6.774221,13.73784,0,4919.381,-,-
-3261.5,12062.4938279986,19.9999992370605,19.9999992370605,0,0.8100061,1071.235,136.8421,136.8421,2300,-166.7673,15.35088,258.0128,-18.70787,15.35088,0,0,1,0,0,0,0,0,6.631156,0.3323833,8.387338,15.35088,0,5161.984,-,-
-3262.5,12068.0493833423,19.9999992370605,19.9999992370605,0,0.8100061,1071.235,136.8421,136.8421,2300,-166.7673,15.35088,258.0128,-18.70787,15.35088,0,0,1,0,0,0,0,0,6.631156,0.3323833,8.387338,15.35088,0,5161.984,-,-
-3263.5,12073.6049386859,19.9999992370605,19.9999992370605,0,0.8100061,1071.235,136.8421,136.8421,2300,-166.7673,15.35088,258.0128,-18.70787,15.35088,0,0,1,0,0,0,0,0,6.631156,0.3323833,8.387338,15.35088,0,5161.984,-,-
-3264.5,12079.1604940295,19.9999992370605,19.9999992370605,0,0.9857272,1071.235,153.0596,153.0596,2300,-166.7673,17.17014,258.0128,-18.70787,17.17014,0,0,1,0,0,0,0,0,6.631051,0.3323833,10.20671,17.17014,0,5453.087,-,-
-3265.5,12084.7160493732,19.9999992370605,19.9999992370605,0,0.9857272,1071.235,153.0596,153.0596,2300,-166.7673,17.17014,258.0128,-18.70787,17.17014,0,0,1,0,0,0,0,0,6.631051,0.3323833,10.20671,17.17014,0,5453.087,-,-
-3266.5,12090.2716047168,19.9999992370605,19.9999992370605,0,0.9857272,1071.235,153.0596,153.0596,2300,-166.7673,17.17014,258.0128,-18.70787,17.17014,0,0,1,0,0,0,0,0,6.631051,0.3323833,10.20671,17.17014,0,5453.087,-,-
-3267.5,12095.8271600604,19.9999992370605,19.9999992370605,0,0.9857272,1071.235,153.0596,153.0596,2300,-166.7673,17.17014,258.0128,-18.70787,17.17014,0,0,1,0,0,0,0,0,6.631051,0.3323833,10.20671,17.17014,0,5453.087,-,-
-3268.5,12101.382715404,19.9999992370605,19.9999992370605,0,0.9857272,1071.235,153.0596,153.0596,2300,-166.7673,17.17014,258.0128,-18.70787,17.17014,0,0,1,0,0,0,0,0,6.631051,0.3323833,10.20671,17.17014,0,5453.087,-,-
-3269.5,12106.9382707477,19.9999992370605,19.9999992370605,0,0.9857272,1071.235,153.0596,153.0596,2300,-166.7673,17.17014,258.0128,-18.70787,17.17014,0,0,1,0,0,0,0,0,6.631051,0.3323833,10.20671,17.17014,0,5453.087,-,-
-3270.5,12112.4938260913,19.9999992370605,19.9999992370605,0,0.9857272,1071.235,153.0596,153.0596,2300,-166.7673,17.17014,258.0128,-18.70787,17.17014,0,0,1,0,0,0,0,0,6.631051,0.3323833,10.20671,17.17014,0,5453.087,-,-
-3271.5,12118.0493814349,19.9999992370605,19.9999992370605,0,0.9857272,1071.235,153.0596,153.0596,2300,-166.7673,17.17014,258.0128,-18.70787,17.17014,0,0,1,0,0,0,0,0,6.631051,0.3323833,10.20671,17.17014,0,5453.087,-,-
-3272.5,12123.6049367785,19.9999992370605,19.9999992370605,0,0.9857272,1071.235,153.0596,153.0596,2300,-166.7673,17.17014,258.0128,-18.70787,17.17014,0,0,1,0,0,0,0,0,6.631051,0.3323833,10.20671,17.17014,0,5453.087,-,-
-3273.5,12129.1604921222,19.9999992370605,19.9999992370605,0,0.9857272,1071.235,153.0596,153.0596,2300,-166.7673,17.17014,258.0128,-18.70787,17.17014,0,0,1,0,0,0,0,0,6.631051,0.3323833,10.20671,17.17014,0,5453.087,-,-
-3274.5,12134.7160474658,19.9999992370605,19.9999992370605,0,0.9857272,1071.235,153.0596,153.0596,2300,-166.7673,17.17014,258.0128,-18.70787,17.17014,0,0,1,0,0,0,0,0,6.631051,0.3323833,10.20671,17.17014,0,5453.087,-,-
-3275.5,12140.2716028094,19.9999992370605,19.9999992370605,0,1.10529,1071.235,164.0936,164.0936,2300,-166.7673,18.40793,258.0128,-18.70787,18.40793,0,0,1,0,0,0,0,0,6.630969,0.3323833,11.44458,18.40793,0,5651.147,-,-
-3276.5,12145.8271581531,19.9999992370605,19.9999992370605,0,1.10529,1071.235,164.0936,164.0936,2300,-166.7673,18.40793,258.0128,-18.70787,18.40793,0,0,1,0,0,0,0,0,6.630969,0.3323833,11.44458,18.40793,0,5651.147,-,-
-3277.5,12151.3827134967,19.9999992370605,19.9999992370605,0,1.10529,1071.235,164.0936,164.0936,2300,-166.7673,18.40793,258.0128,-18.70787,18.40793,0,0,1,0,0,0,0,0,6.630969,0.3323833,11.44458,18.40793,0,5651.147,-,-
-3278.5,12156.9382688403,19.9999992370605,19.9999992370605,0,1.10529,1071.235,164.0936,164.0936,2300,-166.7673,18.40793,258.0128,-18.70787,18.40793,0,0,1,0,0,0,0,0,6.630969,0.3323833,11.44458,18.40793,0,5651.147,-,-
-3279.5,12162.4938241839,19.9999992370605,19.9999992370605,0,1.10529,1071.235,164.0936,164.0936,2300,-166.7673,18.40793,258.0128,-18.70787,18.40793,0,0,1,0,0,0,0,0,6.630969,0.3323833,11.44458,18.40793,0,5651.147,-,-
-3280.5,12168.0493795276,19.9999992370605,19.9999992370605,0,1.10529,1071.235,164.0936,164.0936,2300,-166.7673,18.40793,258.0128,-18.70787,18.40793,0,0,1,0,0,0,0,0,6.630969,0.3323833,11.44458,18.40793,0,5651.147,-,-
-3281.5,12173.6049348712,19.9999992370605,19.9999992370605,0,1.10529,1071.235,164.0936,164.0936,2300,-166.7673,18.40793,258.0128,-18.70787,18.40793,0,0,1,0,0,0,0,0,6.630969,0.3323833,11.44458,18.40793,0,5651.147,-,-
-3282.5,12179.1604902148,19.9999992370605,19.9999992370605,0,1.10529,1071.235,164.0936,164.0936,2300,-166.7673,18.40793,258.0128,-18.70787,18.40793,0,0,1,0,0,0,0,0,6.630969,0.3323833,11.44458,18.40793,0,5651.147,-,-
-3283.5,12184.7160455585,19.9999992370605,19.9999992370605,0,1.10529,1071.235,164.0936,164.0936,2300,-166.7673,18.40793,258.0128,-18.70787,18.40793,0,0,1,0,0,0,0,0,6.630969,0.3323833,11.44458,18.40793,0,5651.147,-,-
-3284.5,12190.2716009021,19.9999992370605,19.9999992370605,0,1.10529,1071.235,164.0936,164.0936,2300,-166.7673,18.40793,258.0128,-18.70787,18.40793,0,0,1,0,0,0,0,0,6.630969,0.3323833,11.44458,18.40793,0,5651.147,-,-
-3285.5,12195.8271562457,19.9999992370605,19.9999992370605,0,1.10529,1071.235,164.0936,164.0936,2300,-166.7673,18.40793,258.0128,-18.70787,18.40793,0,0,1,0,0,0,0,0,6.630969,0.3323833,11.44458,18.40793,0,5651.147,-,-
-3286.5,12201.3827115893,19.9999992370605,19.9999992370605,0,1.10529,1071.235,164.0936,164.0936,2300,-166.7673,18.40793,258.0128,-18.70787,18.40793,0,0,1,0,0,0,0,0,6.630969,0.3323833,11.44458,18.40793,0,5651.147,-,-
-3287.5,12206.938266933,19.9999992370605,19.9999992370605,0,1.10529,1071.235,164.0936,164.0936,2300,-166.7673,18.40793,258.0128,-18.70787,18.40793,0,0,1,0,0,0,0,0,6.630969,0.3323833,11.44458,18.40793,0,5651.147,-,-
-3288.5,12212.4938222766,19.9999992370605,19.9999992370605,0,1.10529,1071.235,164.0936,164.0936,2300,-166.7673,18.40793,258.0128,-18.70787,18.40793,0,0,1,0,0,0,0,0,6.630969,0.3323833,11.44458,18.40793,0,5651.147,-,-
-3289.5,12218.0493776202,19.9999992370605,19.9999992370605,0,1.10529,1071.235,164.0936,164.0936,2300,-166.7673,18.40793,258.0128,-18.70787,18.40793,0,0,1,0,0,0,0,0,6.630969,0.3323833,11.44458,18.40793,0,5651.147,-,-
-3290.5,12223.6049329638,19.9999992370605,19.9999992370605,0,1.10529,1071.235,164.0936,164.0936,2300,-166.7673,18.40793,258.0128,-18.70787,18.40793,0,0,1,0,0,0,0,0,6.630969,0.3323833,11.44458,18.40793,0,5651.147,-,-
-3291.5,12229.1604883075,19.9999992370605,19.9999992370605,0,1.10529,1071.235,164.0936,164.0936,2300,-166.7673,18.40793,258.0128,-18.70787,18.40793,0,0,1,0,0,0,0,0,6.630969,0.3323833,11.44458,18.40793,0,5651.147,-,-
-3292.5,12234.7160436511,19.9999992370605,19.9999992370605,0,1.10529,1071.235,164.0936,164.0936,2300,-166.7673,18.40793,258.0128,-18.70787,18.40793,0,0,1,0,0,0,0,0,6.630969,0.3323833,11.44458,18.40793,0,5651.147,-,-
-3293.5,12240.2715989947,19.9999992370605,19.9999992370605,0,1.10529,1071.235,164.0936,164.0936,2300,-166.7673,18.40793,258.0128,-18.70787,18.40793,0,0,1,0,0,0,0,0,6.630969,0.3323833,11.44458,18.40793,0,5651.147,-,-
-3294.5,12245.8271543384,19.9999992370605,19.9999992370605,0,1.10529,1071.235,164.0936,164.0936,2300,-166.7673,18.40793,258.0128,-18.70787,18.40793,0,0,1,0,0,0,0,0,6.630969,0.3323833,11.44458,18.40793,0,5651.147,-,-
-3295.5,12251.382709682,19.9999992370605,19.9999992370605,0,1.10529,1071.235,164.0936,164.0936,2300,-166.7673,18.40793,258.0128,-18.70787,18.40793,0,0,1,0,0,0,0,0,6.630969,0.3323833,11.44458,18.40793,0,5651.147,-,-
-3296.5,12256.9382650256,19.9999992370605,19.9999992370605,0,1.10529,1071.235,164.0936,164.0936,2300,-166.7673,18.40793,258.0128,-18.70787,18.40793,0,0,1,0,0,0,0,0,6.630969,0.3323833,11.44458,18.40793,0,5651.147,-,-
-3297.5,12262.4938203692,19.9999992370605,19.9999992370605,0,1.10529,1071.235,164.0936,164.0936,2300,-166.7673,18.40793,258.0128,-18.70787,18.40793,0,0,1,0,0,0,0,0,6.630969,0.3323833,11.44458,18.40793,0,5651.147,-,-
-3298.5,12268.0493757129,19.9999992370605,19.9999992370605,0,1.10529,1071.235,164.0936,164.0936,2300,-166.7673,18.40793,258.0128,-18.70787,18.40793,0,0,1,0,0,0,0,0,6.630969,0.3323833,11.44458,18.40793,0,5651.147,-,-
-3299.5,12273.6049310565,19.9999992370605,19.9999992370605,0,1.10529,1071.235,164.0936,164.0936,2300,-166.7673,18.40793,258.0128,-18.70787,18.40793,0,0,1,0,0,0,0,0,6.630969,0.3323833,11.44458,18.40793,0,5651.147,-,-
-3300.5,12279.1604864001,19.9999992370605,19.9999992370605,0,1.10529,1071.235,164.0936,164.0936,2300,-166.7673,18.40793,258.0128,-18.70787,18.40793,0,0,1,0,0,0,0,0,6.630969,0.3323833,11.44458,18.40793,0,5651.147,-,-
-3301.5,12284.7160417438,19.9999992370605,19.9999992370605,0,1.10529,1071.235,164.0936,164.0936,2300,-166.7673,18.40793,258.0128,-18.70787,18.40793,0,0,1,0,0,0,0,0,6.630969,0.3323833,11.44458,18.40793,0,5651.147,-,-
-3302.5,12290.2715970874,19.9999992370605,19.9999992370605,0,1.10529,1071.235,164.0936,164.0936,2300,-166.7673,18.40793,258.0128,-18.70787,18.40793,0,0,1,0,0,0,0,0,6.630969,0.3323833,11.44458,18.40793,0,5651.147,-,-
-3303.5,12295.827152431,19.9999992370605,19.9999992370605,0,1.10529,1071.235,164.0936,164.0936,2300,-166.7673,18.40793,258.0128,-18.70787,18.40793,0,0,1,0,0,0,0,0,6.630969,0.3323833,11.44458,18.40793,0,5651.147,-,-
-3304.5,12301.3827077746,19.9999992370605,19.9999992370605,0,0.9962083,1071.235,154.0269,154.0269,2300,-166.7673,17.27865,258.0128,-18.70787,17.27865,0,0,1,0,0,0,0,0,6.631044,0.3323833,10.31522,17.27865,0,5470.45,-,-
-3305.5,12306.9382631183,19.9999992370605,19.9999992370605,0,0.9962083,1071.235,154.0269,154.0269,2300,-166.7673,17.27865,258.0128,-18.70787,17.27865,0,0,1,0,0,0,0,0,6.631044,0.3323833,10.31522,17.27865,0,5470.45,-,-
-3306.5,12312.4938184619,19.9999992370605,19.9999992370605,0,0.9962083,1071.235,154.0269,154.0269,2300,-166.7673,17.27865,258.0128,-18.70787,17.27865,0,0,1,0,0,0,0,0,6.631044,0.3323833,10.31522,17.27865,0,5470.45,-,-
-3307.5,12318.0493738055,19.9999992370605,19.9999992370605,0,0.9962083,1071.235,154.0269,154.0269,2300,-166.7673,17.27865,258.0128,-18.70787,17.27865,0,0,1,0,0,0,0,0,6.631044,0.3323833,10.31522,17.27865,0,5470.45,-,-
-3308.5,12323.6049291492,19.9999992370605,19.9999992370605,0,0.9962083,1071.235,154.0269,154.0269,2300,-166.7673,17.27865,258.0128,-18.70787,17.27865,0,0,1,0,0,0,0,0,6.631044,0.3323833,10.31522,17.27865,0,5470.45,-,-
-3309.5,12329.1604844928,19.9999992370605,19.9999992370605,0,0.9962083,1071.235,154.0269,154.0269,2300,-166.7673,17.27865,258.0128,-18.70787,17.27865,0,0,1,0,0,0,0,0,6.631044,0.3323833,10.31522,17.27865,0,5470.45,-,-
-3310.5,12334.7160398364,19.9999992370605,19.9999992370605,0,0.9962083,1071.235,154.0269,154.0269,2300,-166.7673,17.27865,258.0128,-18.70787,17.27865,0,0,1,0,0,0,0,0,6.631044,0.3323833,10.31522,17.27865,0,5470.45,-,-
-3311.5,12340.27159518,19.9999992370605,19.9999992370605,0,0.8877219,1071.235,144.0147,144.0147,2300,-166.7673,16.15549,258.0128,-18.70787,16.15549,0,0,1,0,0,0,0,0,6.631112,0.3323833,9.191998,16.15549,0,5290.732,-,-
-3312.5,12345.8271505237,19.9999992370605,19.9999992370605,0,0.8877219,1071.235,144.0147,144.0147,2300,-166.7673,16.15549,258.0128,-18.70787,16.15549,0,0,1,0,0,0,0,0,6.631112,0.3323833,9.191998,16.15549,0,5290.732,-,-
-3313.5,12351.3827058673,19.9999992370605,19.9999992370605,0,0.8877219,1071.235,144.0147,144.0147,2300,-166.7673,16.15549,258.0128,-18.70787,16.15549,0,0,1,0,0,0,0,0,6.631112,0.3323833,9.191998,16.15549,0,5290.732,-,-
-3314.5,12356.9382612109,19.9999992370605,19.9999992370605,0,0.8877219,1071.235,144.0147,144.0147,2300,-166.7673,16.15549,258.0128,-18.70787,16.15549,0,0,1,0,0,0,0,0,6.631112,0.3323833,9.191998,16.15549,0,5290.732,-,-
-3315.5,12362.4938165545,19.9999992370605,19.9999992370605,0,0.8877219,1071.235,144.0147,144.0147,2300,-166.7673,16.15549,258.0128,-18.70787,16.15549,0,0,1,0,0,0,0,0,6.631112,0.3323833,9.191998,16.15549,0,5290.732,-,-
-3316.5,12368.0493718982,19.9999992370605,19.9999992370605,0,0.8877219,1071.235,144.0147,144.0147,2300,-166.7673,16.15549,258.0128,-18.70787,16.15549,0,0,1,0,0,0,0,0,6.631112,0.3323833,9.191998,16.15549,0,5290.732,-,-
-3317.5,12373.6049272418,19.9999992370605,19.9999992370605,0,0.8877219,1071.235,144.0147,144.0147,2300,-166.7673,16.15549,258.0128,-18.70787,16.15549,0,0,1,0,0,0,0,0,6.631112,0.3323833,9.191998,16.15549,0,5290.732,-,-
-3318.5,12379.1604825854,19.9999992370605,19.9999992370605,0,0.8877219,1071.235,144.0147,144.0147,2300,-166.7673,16.15549,258.0128,-18.70787,16.15549,0,0,1,0,0,0,0,0,6.631112,0.3323833,9.191998,16.15549,0,5290.732,-,-
-3319.5,12384.7160379291,19.9999992370605,19.9999992370605,0,0.8877219,1071.235,144.0147,144.0147,2300,-166.7673,16.15549,258.0128,-18.70787,16.15549,0,0,1,0,0,0,0,0,6.631112,0.3323833,9.191998,16.15549,0,5290.732,-,-
-3320.5,12390.2715932727,19.9999992370605,19.9999992370605,0,0.8877219,1071.235,144.0147,144.0147,2300,-166.7673,16.15549,258.0128,-18.70787,16.15549,0,0,1,0,0,0,0,0,6.631112,0.3323833,9.191998,16.15549,0,5290.732,-,-
-3321.5,12395.8271486163,19.9999992370605,19.9999992370605,0,0.8877219,1071.235,144.0147,144.0147,2300,-166.7673,16.15549,258.0128,-18.70787,16.15549,0,0,1,0,0,0,0,0,6.631112,0.3323833,9.191998,16.15549,0,5290.732,-,-
-3322.5,12401.3827039599,19.9999992370605,19.9999992370605,0,0.8877219,1071.235,144.0147,144.0147,2300,-166.7673,16.15549,258.0128,-18.70787,16.15549,0,0,1,0,0,0,0,0,6.631112,0.3323833,9.191998,16.15549,0,5290.732,-,-
-3323.5,12406.9382593036,19.9999992370605,19.9999992370605,0,0.8877219,1071.235,144.0147,144.0147,2300,-166.7673,16.15549,258.0128,-18.70787,16.15549,0,0,1,0,0,0,0,0,6.631112,0.3323833,9.191998,16.15549,0,5290.732,-,-
-3324.5,12412.4938146472,19.9999992370605,19.9999992370605,0,0.7157792,1071.235,128.1454,128.1454,2300,-166.7673,14.37529,258.0128,-18.70787,14.37529,0,0,1,0,0,0,0,0,6.631204,0.3323833,7.411703,14.37529,0,5007.402,-,-
-3325.5,12418.0493699908,19.9999992370605,19.9999992370605,0,0.7157792,1071.235,128.1454,128.1454,2300,-166.7673,14.37529,258.0128,-18.70787,14.37529,0,0,1,0,0,0,0,0,6.631204,0.3323833,7.411703,14.37529,0,5007.402,-,-
-3326.5,12423.6049253345,19.9999992370605,19.9999992370605,0,0.7157792,1071.235,128.1454,128.1454,2300,-166.7673,14.37529,258.0128,-18.70787,14.37529,0,0,1,0,0,0,0,0,6.631204,0.3323833,7.411703,14.37529,0,5007.402,-,-
-3327.5,12429.1604806781,19.9999992370605,19.9999992370605,0,0.5513933,1071.235,112.9729,112.9729,2300,-166.7673,12.67325,258.0128,-18.70787,12.67325,0,0,1,0,0,0,0,0,6.631273,0.3323833,5.70959,12.67325,0,4772.38,-,-
-3328.5,12434.7160360217,19.9999992370605,19.9999992370605,0,0.5513933,1071.235,112.9729,112.9729,2300,-166.7673,12.67325,258.0128,-18.70787,12.67325,0,0,1,0,0,0,0,0,6.631273,0.3323833,5.70959,12.67325,0,4772.38,-,-
-3329.5,12440.2715913653,19.9999992370605,19.9999992370605,0,0.5513933,1071.235,112.9729,112.9729,2300,-166.7673,12.67325,258.0128,-18.70787,12.67325,0,0,1,0,0,0,0,0,6.631273,0.3323833,5.70959,12.67325,0,4772.38,-,-
-3330.5,12445.827146709,19.9999992370605,19.9999992370605,0,0.5513933,1071.235,112.9729,112.9729,2300,-166.7673,12.67325,258.0128,-18.70787,12.67325,0,0,1,0,0,0,0,0,6.631273,0.3323833,5.70959,12.67325,0,4772.38,-,-
-3331.5,12451.3827020526,19.9999992370605,19.9999992370605,0,0.3870073,1071.235,97.79987,97.79987,2300,-166.7673,10.97114,258.0128,-18.70787,10.97114,0,0,1,0,0,0,0,0,6.631324,0.3323833,4.007431,10.97114,0,4537.35,-,-
-3332.5,12456.9382573962,19.9999992370605,19.9999992370605,0,0.3870073,1071.235,97.79987,97.79987,2300,-166.7673,10.97114,258.0128,-18.70787,10.97114,0,0,1,0,0,0,0,0,6.631324,0.3323833,4.007431,10.97114,0,4537.35,-,-
-3333.5,12462.4938127398,19.9999992370605,19.9999992370605,0,0.3870073,1071.235,97.79987,97.79987,2300,-166.7673,10.97114,258.0128,-18.70787,10.97114,0,0,1,0,0,0,0,0,6.631324,0.3323833,4.007431,10.97114,0,4537.35,-,-
-3334.5,12468.0493680835,19.9999992370605,19.9999992370605,0,0.3048144,1071.235,90.21315,90.21315,2300,-166.7673,10.12006,258.0128,-18.70787,10.12006,0,0,1,0,0,0,0,0,6.631342,0.3323833,3.156338,10.12006,0,4419.831,-,-
-3335.5,12473.6049234271,19.9999992370605,19.9999992370605,0,0.2226214,1071.235,82.62634,82.62634,2300,-166.7673,9.268979,258.0128,-18.70787,9.268979,0,0,1,0,0,0,0,0,6.631357,0.3323833,2.305239,9.268979,0,4302.312,-,-
-3336.5,12479.1604787707,19.9999992370605,19.9999992370605,0,0.2226214,1071.235,82.62634,82.62634,2300,-166.7673,9.268979,258.0128,-18.70787,9.268979,0,0,1,0,0,0,0,0,6.631357,0.3323833,2.305239,9.268979,0,4302.312,-,-
-3337.5,12484.7160341144,19.9999992370605,19.9999992370605,0,0.2226214,1071.235,82.62634,82.62634,2300,-166.7673,9.268979,258.0128,-18.70787,9.268979,0,0,1,0,0,0,0,0,6.631357,0.3323833,2.305239,9.268979,0,4302.312,-,-
-3338.5,12490.271589458,19.9999992370605,19.9999992370605,0,0.0582,1071.235,67.4492,67.4492,2300,-166.7673,7.566417,258.0128,-18.70787,7.566417,0,0,1,0,0,0,0,0,6.631372,0.3323833,0.6026609,7.566417,0,4067.218,-,-
-3339.5,12495.8271448016,19.9999992370605,19.9999992370605,0,0.0582,1071.235,67.4492,67.4492,2300,-166.7673,7.566417,258.0128,-18.70787,7.566417,0,0,1,0,0,0,0,0,6.631372,0.3323833,0.6026609,7.566417,0,4067.218,-,-
-3340.5,12501.3827001452,19.9999992370605,19.9999992370605,0,0.0582,1071.235,67.4492,67.4492,2300,-166.7673,7.566417,258.0128,-18.70787,7.566417,0,0,1,0,0,0,0,0,6.631372,0.3323833,0.6026609,7.566417,0,4067.218,-,-
-3341.5,12506.9382554889,19.9999992370605,19.9999992370605,0,0.0582,1071.235,67.4492,67.4492,2300,-166.7673,7.566417,258.0128,-18.70787,7.566417,0,0,1,0,0,0,0,0,6.631372,0.3323833,0.6026609,7.566417,0,4067.218,-,-
-3342.5,12512.4938108325,19.9999992370605,19.9999992370605,0,-0.1061505,1071.235,52.27842,52.27842,2300,-166.7673,5.864565,258.0128,-18.70787,5.864565,0,0,1,0,0,0,0,0,6.63137,0.3323833,-1.099187,5.864565,0,3832.222,-,-
-3343.5,12518.0493661761,19.9999992370605,19.9999992370605,0,-0.1061505,1071.235,52.27842,52.27842,2300,-166.7673,5.864565,258.0128,-18.70787,5.864565,0,0,1,0,0,0,0,0,6.63137,0.3323833,-1.099187,5.864565,0,3832.222,-,-
-3344.5,12523.6049215198,19.9999992370605,19.9999992370605,0,-0.1061505,1071.235,52.27842,52.27842,2300,-166.7673,5.864565,258.0128,-18.70787,5.864565,0,0,1,0,0,0,0,0,6.63137,0.3323833,-1.099187,5.864565,0,3832.222,-,-
-3345.5,12529.1604768634,19.9999992370605,19.9999992370605,0,-0.2705364,1071.235,37.10427,37.10427,2300,-166.7673,4.162338,258.0128,-18.70787,4.162338,0,0,1,0,0,0,0,0,6.631349,0.3323833,-2.801394,4.162338,0,3597.175,-,-
-3346.5,12534.716032207,19.9999992370605,19.9999992370605,0,-0.2705364,1071.235,37.10427,37.10427,2300,-166.7673,4.162338,258.0128,-18.70787,4.162338,0,0,1,0,0,0,0,0,6.631349,0.3323833,-2.801394,4.162338,0,3597.175,-,-
-3347.5,12540.2715875506,19.9999992370605,19.9999992370605,0,-0.2705364,1071.235,37.10427,37.10427,2300,-166.7673,4.162338,258.0128,-18.70787,4.162338,0,0,1,0,0,0,0,0,6.631349,0.3323833,-2.801394,4.162338,0,3597.175,-,-
-3348.5,12545.8271428943,19.9999992370605,19.9999992370605,0,-0.2705364,1071.235,37.10427,37.10427,2300,-166.7673,4.162338,258.0128,-18.70787,4.162338,0,0,1,0,0,0,0,0,6.631349,0.3323833,-2.801394,4.162338,0,3597.175,-,-
-3349.5,12551.3826982379,19.9999992370605,19.9999992370605,0,-0.4349223,1071.235,21.93018,21.93018,2300,-166.7673,2.460116,258.0128,-18.70787,2.460116,0,0,1,0,0,0,0,0,6.631311,0.3323833,-4.503578,2.460116,0,3362.128,-,-
-3350.5,12556.9382535815,19.9999992370605,19.9999992370605,0,-0.4349223,1071.235,21.93018,21.93018,2300,-166.7673,2.460116,258.0128,-18.70787,2.460116,0,0,1,0,0,0,0,0,6.631311,0.3323833,-4.503578,2.460116,0,3362.128,-,-
-3351.5,12562.4938089252,19.9999992370605,19.9999992370605,0,-0.4349223,1071.235,21.93018,21.93018,2300,-166.7673,2.460116,258.0128,-18.70787,2.460116,0,0,1,0,0,0,0,0,6.631311,0.3323833,-4.503578,2.460116,0,3362.128,-,-
-3352.5,12568.0493642688,19.9999992370605,19.9999992370605,0,-0.5171153,1071.235,14.34318,14.34318,2300,-166.7673,1.609011,258.0128,-18.70787,1.609011,0,0,1,0,0,0,0,0,6.631285,0.3323833,-5.354657,1.609011,0,3244.605,-,-
-3353.5,12573.6049196124,19.9999992370605,19.9999992370605,0,-0.5993083,1071.235,6.756246,6.756246,2300,-166.7673,0.7579122,258.0128,-18.70787,0.7579122,0,0,1,0,0,0,0,0,6.631254,0.3323833,-6.205725,0.7579122,0,3127.084,-,-
-3354.5,12579.160474956,19.9999992370605,19.9999992370605,0,-0.5993083,1071.235,6.756246,6.756246,2300,-166.7673,0.7579122,258.0128,-18.70787,0.7579122,0,0,1,0,0,0,0,0,6.631254,0.3323833,-6.205725,0.7579122,0,3127.084,-,-
-3355.5,12584.7160302997,19.9999992370605,19.9999992370605,0,-0.5993083,1071.235,6.756246,6.756246,2300,-166.7673,0.7579122,258.0128,-18.70787,0.7579122,0,0,1,0,0,0,0,0,6.631254,0.3323833,-6.205725,0.7579122,0,3127.084,-,-
-3356.5,12590.2715856433,19.9999992370605,19.9999992370605,0,-0.7636942,1071.235,-8.417393,-8.417393,2300,-166.7673,-0.9442587,258.0128,-18.70787,-0.9442587,0,0,1,0,0,0,0,0,6.63118,0.3323833,-7.907822,-0.9442587,0,2871.706,-,-
-3357.5,12595.8271409869,19.9999992370605,19.9999992370605,0,-0.7636942,1071.235,-8.417393,-8.417393,2300,-166.7673,-0.9442587,258.0128,-18.70787,-0.9442587,0,0,1,0,0,0,0,0,6.63118,0.3323833,-7.907822,-0.9442587,0,2871.706,-,-
-3358.5,12601.3826963305,19.9999992370605,19.9999992370605,0,-0.7636942,1071.235,-8.417393,-8.417393,2300,-166.7673,-0.9442587,258.0128,-18.70787,-0.9442587,0,0,1,0,0,0,0,0,6.63118,0.3323833,-7.907822,-0.9442587,0,2871.706,-,-
-3359.5,12606.9382516742,19.9999992370605,19.9999992370605,0,-0.7636942,1071.235,-8.417393,-8.417393,2300,-166.7673,-0.9442587,258.0128,-18.70787,-0.9442587,0,0,1,0,0,0,0,0,6.63118,0.3323833,-7.907822,-0.9442587,0,2871.706,-,-
-3360.5,12612.4938070178,19.9999992370605,19.9999992370605,0,-0.7636942,1071.235,-8.417393,-8.417393,2300,-166.7673,-0.9442587,258.0128,-18.70787,-0.9442587,0,0,1,0,0,0,0,0,6.63118,0.3323833,-7.907822,-0.9442587,0,2871.706,-,-
-3361.5,12618.0493623614,19.9999992370605,19.9999992370605,0,-0.7636942,1071.235,-8.417393,-8.417393,2300,-166.7673,-0.9442587,258.0128,-18.70787,-0.9442587,0,0,1,0,0,0,0,0,6.63118,0.3323833,-7.907822,-0.9442587,0,2871.706,-,-
-3362.5,12623.6049177051,19.9999992370605,19.9999992370605,0,-0.7636942,1071.235,-8.417393,-8.417393,2300,-166.7673,-0.9442587,258.0128,-18.70787,-0.9442587,0,0,1,0,0,0,0,0,6.63118,0.3323833,-7.907822,-0.9442587,0,2871.706,-,-
-3363.5,12629.1604730487,19.9999992370605,19.9999992370605,0,-0.7636942,1071.235,-8.417393,-8.417393,2300,-166.7673,-0.9442587,258.0128,-18.70787,-0.9442587,0,0,1,0,0,0,0,0,6.63118,0.3323833,-7.907822,-0.9442587,0,2871.706,-,-
-3364.5,12634.7160283923,19.9999992370605,19.9999992370605,0,-0.7636942,1071.235,-8.417393,-8.417393,2300,-166.7673,-0.9442587,258.0128,-18.70787,-0.9442587,0,0,1,0,0,0,0,0,6.63118,0.3323833,-7.907822,-0.9442587,0,2871.706,-,-
-3365.5,12640.2715837359,19.9999992370605,19.9999992370605,0,-0.7636942,1071.235,-8.417393,-8.417393,2300,-166.7673,-0.9442587,258.0128,-18.70787,-0.9442587,0,0,1,0,0,0,0,0,6.63118,0.3323833,-7.907822,-0.9442587,0,2871.706,-,-
-3366.5,12645.8271390796,19.9999992370605,19.9999992370605,0,-0.7636942,1071.235,-8.417393,-8.417393,2300,-166.7673,-0.9442587,258.0128,-18.70787,-0.9442587,0,0,1,0,0,0,0,0,6.63118,0.3323833,-7.907822,-0.9442587,0,2871.706,-,-
-3367.5,12651.3826944232,19.9999992370605,19.9999992370605,0,-0.8740336,1071.235,-18.60205,-18.60205,2300,-166.7673,-2.086769,258.0128,-18.70787,-2.086769,0,0,1,0,0,0,0,0,6.63112,0.3323833,-9.050272,-2.086769,0,2689.337,-,-
-3368.5,12656.9382497668,19.9999992370605,19.9999992370605,0,-0.8740336,1071.235,-18.60205,-18.60205,2300,-166.7673,-2.086769,258.0128,-18.70787,-2.086769,0,0,1,0,0,0,0,0,6.63112,0.3323833,-9.050272,-2.086769,0,2689.337,-,-
-3369.5,12662.4938051105,19.9999992370605,19.9999992370605,0,-0.9757396,1071.235,-27.98962,-27.98962,2300,-166.7673,-3.139861,258.0128,-18.70787,-3.139861,0,0,1,0,0,0,0,0,6.631058,0.3323833,-10.1033,-3.139861,0,2521.24,-,-
-3370.5,12668.0493604541,19.9999992370605,19.9999992370605,0,-1.026593,1071.235,-32.68334,-32.68334,2300,-166.7673,-3.6664,258.0128,-18.70787,-3.6664,0,0,1,0,0,0,0,0,6.631024,0.3323833,-10.62981,-3.6664,0,2437.194,-,-
-3371.5,12673.6049157977,19.9999992370605,19.9999992370605,0,-1.077446,1071.235,-37.37698,-37.37698,2300,-166.7673,-4.192931,258.0128,-18.70787,-4.192931,0,0,1,0,0,0,0,0,6.630989,0.3323833,-11.1563,-4.192931,0,2353.148,-,-
-3372.5,12679.1604711413,19.9999992370605,19.9999992370605,0,-1.179152,1071.235,-46.76408,-46.76408,2300,-166.7673,-5.24597,258.0128,-18.70787,-5.24597,0,0,1,0,0,0,0,0,6.630912,0.3323833,-12.20927,-5.24597,0,2185.06,-,-
-3373.5,12684.716026485,19.9999992370605,19.9999992370605,0,-1.179152,1071.235,-46.76408,-46.76408,2300,-166.7673,-5.24597,258.0128,-18.70787,-5.24597,0,0,1,0,0,0,0,0,6.630912,0.3323833,-12.20927,-5.24597,0,2185.06,-,-
-3374.5,12690.2715818286,19.9999992370605,19.9999992370605,0,-1.280858,1071.235,-56.15091,-56.15091,2300,-166.7673,-6.29898,258.0128,-18.70787,-6.29898,0,0,1,0,0,0,0,0,6.630829,0.3323833,-13.26219,-6.29898,0,2016.977,-,-
-3375.5,12695.8271371722,19.9999992370605,19.9999992370605,0,-1.280858,1071.235,-56.15091,-56.15091,2300,-166.7673,-6.29898,258.0128,-18.70787,-6.29898,0,0,1,0,0,0,0,0,6.630829,0.3323833,-13.26219,-6.29898,0,2016.977,-,-
-3376.5,12701.3826925159,19.9999992370605,19.9999992370605,0,-1.382564,1071.235,-65.53744,-65.53744,2300,-166.7673,-7.351956,258.0128,-18.70787,-7.351956,0,0,1,0,0,0,0,0,6.63074,0.3323833,-14.31508,-7.351956,0,1848.9,-,-
-3377.5,12706.9382478595,19.9999992370605,19.9999992370605,0,-1.382564,1071.235,-65.53744,-65.53744,2300,-166.7673,-7.351956,258.0128,-18.70787,-7.351956,0,0,1,0,0,0,0,0,6.63074,0.3323833,-14.31508,-7.351956,0,1848.9,-,-
-3378.5,12712.4938032031,19.9999992370605,19.9999992370605,0,-1.48427,1071.235,-74.92363,-74.92363,2300,-166.7673,-8.404894,258.0128,-18.70787,-8.404894,0,0,1,0,0,0,0,0,6.630643,0.3323833,-15.36792,-8.404894,0,1680.828,-,-
-3379.5,12718.0493585467,19.9999992370605,19.9999992370605,0,-1.535123,1071.235,-79.61658,-79.61658,2300,-166.7673,-8.931347,258.0128,-18.70787,-8.931347,0,0,1,0,0,0,0,0,6.630592,0.3323833,-15.89432,-8.931347,0,1596.795,-,-
-3380.5,12723.6049138904,19.9999992370605,19.9999992370605,0,-1.585976,1071.235,-84.30947,-84.30947,2300,-166.7673,-9.457792,258.0128,-18.70787,-9.457792,0,0,1,0,0,0,0,0,6.630539,0.3323833,-16.42072,-9.457792,0,1512.763,-,-
-3381.5,12729.160469234,19.9999992370605,19.9999992370605,0,-1.687682,1071.235,-93.6949,-93.6949,2300,-166.7673,-10.51064,258.0128,-18.70787,-10.51064,0,0,1,0,0,0,0,0,6.630429,0.3323833,-17.47346,-10.51064,0,1344.705,-,-
-3382.5,12734.7160245776,19.9999992370605,19.9999992370605,0,-1.687682,1071.235,-93.6949,-93.6949,2300,-166.7673,-10.51064,258.0128,-18.70787,-10.51064,0,0,1,0,0,0,0,0,6.630429,0.3323833,-17.47346,-10.51064,0,1344.705,-,-
-3383.5,12740.2715799212,19.9999992370605,19.9999992370605,0,-1.789388,1071.235,-103.0799,-103.0799,2300,-166.7673,-11.56345,258.0128,-18.70787,-11.56345,0,0,1,0,0,0,0,0,6.630312,0.3323833,-18.52614,-11.56345,0,1176.617,-,-
-3384.5,12745.8271352649,19.9999992370605,19.9999992370605,0,-1.789388,1071.235,-103.0799,-103.0799,2300,-166.7673,-11.56345,258.0128,-18.70787,-11.56345,0,0,1,0,0,0,0,0,6.630312,0.3323833,-18.52614,-11.56345,0,1176.617,-,-
-3385.5,12751.3826906085,19.9999992370605,19.9999992370605,0,-1.891094,1071.235,-112.4645,-112.4645,2300,-166.7673,-12.6162,258.0128,-18.70787,-12.6162,0,0,1,0,0,0,0,0,6.630188,0.3323833,-19.57878,-12.6162,0,1003.238,-,-
-3386.5,12756.9382459521,19.9999992370605,19.9999992370605,0,-1.891094,1071.235,-112.4645,-112.4645,2300,-166.7673,-12.6162,258.0128,-18.70787,-12.6162,0,0,1,0,0,0,0,0,6.630188,0.3323833,-19.57878,-12.6162,0,1003.238,-,-
-3387.5,12762.4938012958,19.9999992370605,19.9999992370605,0,-1.9928,1071.235,-121.8485,-121.8485,2300,-166.7673,-13.66891,258.0128,-18.70787,-13.66891,0,0,1,0,0,0,0,0,6.630057,0.3323833,-20.63135,-13.66891,0,829.8686,-,-
-3388.5,12768.0493566394,19.9999992370605,19.9999992370605,0,-2.043653,1071.235,-126.5404,-126.5404,2300,-166.7673,-14.19524,258.0128,-18.70787,-14.19524,0,0,1,0,0,0,0,0,6.629989,0.3323833,-21.15761,-14.19524,0,743.1869,-,-
-3389.5,12773.604911983,19.9999992370605,19.9999992370605,0,-2.094506,1071.235,-131.2321,-131.2321,2300,-166.7673,-14.72155,258.0128,-18.70787,-14.72155,0,0,1,0,0,0,0,0,6.62992,0.3323833,-21.68385,-14.72155,0,656.5082,-,-
-3390.5,12779.1604673266,19.9999992370605,19.9999992370605,0,-2.196212,1071.235,-140.6151,-140.6151,2300,-166.7673,-15.77413,258.0128,-18.70787,-15.77413,0,0,1,0,0,0,0,0,6.629775,0.3323833,-22.73629,-15.77413,0,483.1584,-,-
-3391.5,12784.7160226703,19.9999992370605,19.9999992370605,0,-2.196212,1071.235,-140.6151,-140.6151,2300,-166.7673,-15.77413,258.0128,-18.70787,-15.77413,0,0,1,0,0,0,0,0,6.629775,0.3323833,-22.73629,-15.77413,0,483.1584,-,-
-3392.5,12790.2715780139,19.9999992370605,19.9999992370605,0,-2.297918,1071.235,-149.9976,-149.9976,2300,-166.7673,-16.82665,258.0128,-18.70787,-16.82665,0,0,1,0,0,0,0,0,6.629623,0.3323833,-23.78866,-16.82665,0,309.8184,-,-
-3393.5,12795.8271333575,19.9999992370605,19.9999992370605,0,-2.297918,1071.235,-149.9976,-149.9976,2300,-166.7673,-16.82665,258.0128,-18.70787,-16.82665,0,0,1,0,0,0,0,0,6.629623,0.3323833,-23.78866,-16.82665,0,309.8184,-,-
-3394.5,12801.3826887012,19.9999992370605,19.9999992370605,0,-2.399624,1071.235,-159.3795,-159.3795,2300,-166.7673,-17.8791,258.0128,-18.70787,-17.8791,0,0,1,0,0,0,0,0,6.629465,0.3323833,-24.84095,-17.8791,0,136.4901,-,-
-3395.5,12806.9382440448,19.9999992370605,19.9999992370605,0,-2.399624,1071.235,-159.3795,-159.3795,2300,-166.7673,-17.8791,258.0128,-18.70787,-17.8791,0,0,1,0,0,0,0,0,6.629465,0.3323833,-24.84095,-17.8791,0,136.4901,-,-
-3396.5,12812.4937993884,19.9999992370605,19.9999992370605,0,-2.50133,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.6293,0.3323833,-25.89317,-18.93149,-0.2236176,2.255232E-05,-,-
-3397.5,12818.049354732,19.9999992370605,19.9999992370605,0,-2.552183,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.629215,0.3323833,-26.41925,-19.45765,-0.7497826,2.255232E-05,-,-
-3398.5,12823.6049100757,19.9999992370605,19.9999992370605,0,-2.603036,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.629128,0.3323833,-26.94531,-19.9838,-1.275927,2.255232E-05,-,-
-3399.5,12829.1604654193,19.9999992370605,19.9999992370605,0,-2.704742,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628949,0.3323833,-27.99737,-21.03603,-2.328161,2.255232E-05,-,-
-3400.5,12834.7160207629,19.9999992370605,19.9999992370605,0,-2.704742,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628949,0.3323833,-27.99737,-21.03603,-2.328161,2.255232E-05,-,-
-3401.5,12840.2715761065,19.9999992370605,19.9999992370605,0,-2.806448,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628764,0.3323833,-29.04933,-22.08819,-3.380314,2.255232E-05,-,-
-3402.5,12845.8271314502,19.9999992370605,19.9999992370605,0,-2.806448,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628764,0.3323833,-29.04933,-22.08819,-3.380314,2.255232E-05,-,-
-3403.5,12851.3826867938,19.9999992370605,19.9999992370605,0,-2.806448,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628764,0.3323833,-29.04933,-22.08819,-3.380314,2.255232E-05,-,-
-3404.5,12856.9382421374,19.9999992370605,19.9999992370605,0,-2.806448,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628764,0.3323833,-29.04933,-22.08819,-3.380314,2.255232E-05,-,-
-3405.5,12862.4937974811,19.9999992370605,19.9999992370605,0,-2.806448,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628764,0.3323833,-29.04933,-22.08819,-3.380314,2.255232E-05,-,-
-3406.5,12868.0493528247,19.9999992370605,19.9999992370605,0,-2.806448,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628764,0.3323833,-29.04933,-22.08819,-3.380314,2.255232E-05,-,-
-3407.5,12873.6049081683,19.9999992370605,19.9999992370605,0,-2.806448,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628764,0.3323833,-29.04933,-22.08819,-3.380314,2.255232E-05,-,-
-3408.5,12879.1604635119,19.9999992370605,19.9999992370605,0,-2.806448,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628764,0.3323833,-29.04933,-22.08819,-3.380314,2.255232E-05,-,-
-3409.5,12884.7160188556,19.9999992370605,19.9999992370605,0,-2.806448,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628764,0.3323833,-29.04933,-22.08819,-3.380314,2.255232E-05,-,-
-3410.5,12890.2715741992,19.9999992370605,19.9999992370605,0,-2.806448,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628764,0.3323833,-29.04933,-22.08819,-3.380314,2.255232E-05,-,-
-3411.5,12895.8271295428,19.9999992370605,19.9999992370605,0,-2.806448,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628764,0.3323833,-29.04933,-22.08819,-3.380314,2.255232E-05,-,-
-3412.5,12901.3826848865,19.9999992370605,19.9999992370605,0,-2.806448,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628764,0.3323833,-29.04933,-22.08819,-3.380314,2.255232E-05,-,-
-3413.5,12906.9382402301,19.9999992370605,19.9999992370605,0,-2.806448,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628764,0.3323833,-29.04933,-22.08819,-3.380314,2.255232E-05,-,-
-3414.5,12912.4937955737,19.9999992370605,19.9999992370605,0,-2.806448,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628764,0.3323833,-29.04933,-22.08819,-3.380314,2.255232E-05,-,-
-3415.5,12918.0493509173,19.9999992370605,19.9999992370605,0,-2.859064,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628665,0.3323833,-29.59351,-22.63246,-3.924589,2.255232E-05,-,-
-3416.5,12923.604906261,19.9999992370605,19.9999992370605,0,-2.911679,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628564,0.3323833,-30.13766,-23.17671,-4.468842,2.255232E-05,-,-
-3417.5,12929.1604616046,19.9999992370605,19.9999992370605,0,-3.022391,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628346,0.3323833,-31.28257,-24.32184,-5.613972,2.255232E-05,-,-
-3418.5,12934.7160169482,19.9999992370605,19.9999992370605,0,-3.022391,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628346,0.3323833,-31.28257,-24.32184,-5.613972,2.255232E-05,-,-
-3419.5,12940.2715722919,19.9999992370605,19.9999992370605,0,-3.133103,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628121,0.3323833,-32.42737,-25.46687,-6.758995,2.255232E-05,-,-
-3420.5,12945.8271276355,19.9999992370605,19.9999992370605,0,-3.133103,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628121,0.3323833,-32.42737,-25.46687,-6.758995,2.255232E-05,-,-
-3421.5,12951.3826829791,19.9999992370605,19.9999992370605,0,-3.243815,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.627887,0.3323833,-33.57205,-26.61178,-7.903906,2.255232E-05,-,-
-3422.5,12956.9382383227,19.9999992370605,19.9999992370605,0,-3.243815,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.627887,0.3323833,-33.57205,-26.61178,-7.903906,2.255232E-05,-,-
-3423.5,12962.4937936664,19.9999992370605,19.9999992370605,0,-3.354527,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.627645,0.3323833,-34.7166,-27.75657,-9.048697,2.255232E-05,-,-
-3424.5,12968.04934901,19.9999992370605,19.9999992370605,0,-3.409883,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.627522,0.3323833,-35.28883,-28.32893,-9.621058,2.255232E-05,-,-
-3425.5,12973.6049043536,19.9999992370605,19.9999992370605,0,-3.465239,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.627396,0.3323833,-35.86103,-28.90125,-10.19338,2.255232E-05,-,-
-3426.5,12979.1604596972,19.9999992370605,19.9999992370605,0,-3.575951,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.627138,0.3323833,-37.00532,-30.0458,-11.33793,2.255232E-05,-,-
-3427.5,12984.7160150409,19.9999992370605,19.9999992370605,0,-3.575951,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.627138,0.3323833,-37.00532,-30.0458,-11.33793,2.255232E-05,-,-
-3428.5,12990.2715703845,19.9999992370605,19.9999992370605,0,-3.686664,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.626872,0.3323833,-38.14948,-31.19023,-12.48236,2.255232E-05,-,-
-3429.5,12995.8271257281,19.9999992370605,19.9999992370605,0,-3.686664,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.626872,0.3323833,-38.14948,-31.19023,-12.48236,2.255232E-05,-,-
-3430.5,13001.3826810718,19.9999992370605,19.9999992370605,0,-3.797375,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.626597,0.3323833,-39.2935,-32.33452,-13.62665,2.255232E-05,-,-
-3431.5,13006.9382364154,19.9999992370605,19.9999992370605,0,-3.797375,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.626597,0.3323833,-39.2935,-32.33452,-13.62665,2.255232E-05,-,-
-3432.5,13012.493791759,19.9999992370605,19.9999992370605,0,-3.908088,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.626315,0.3323833,-40.43738,-33.47868,-14.77081,2.255232E-05,-,-
-3433.5,13018.0493471026,19.9999992370605,19.9999992370605,0,-3.963444,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.626171,0.3323833,-41.00926,-34.05071,-15.34284,2.255232E-05,-,-
-3434.5,13023.6049024463,19.9999992370605,19.9999992370605,0,-4.0188,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.626025,0.3323833,-41.5811,-34.6227,-15.91482,2.255232E-05,-,-
-3435.5,13029.1604577899,19.9999992370605,19.9999992370605,0,-4.12945,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.625727,0.3323833,-42.72404,-35.76593,-17.05806,2.255232E-05,-,-
-3436.5,13034.7160131335,19.9999992370605,19.9999992370605,0,-4.12945,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.625727,0.3323833,-42.72404,-35.76593,-17.05806,2.255232E-05,-,-
-3437.5,13040.2715684772,19.9999992370605,19.9999992370605,0,-4.240006,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.625421,0.3323833,-43.86585,-36.90805,-18.20018,2.255232E-05,-,-
-3438.5,13045.8271238208,19.9999992370605,19.9999992370605,0,-4.240006,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.625421,0.3323833,-43.86585,-36.90805,-18.20018,2.255232E-05,-,-
-3439.5,13051.3826791644,19.9999992370605,19.9999992370605,0,-4.351743,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.625103,0.3323833,-45.01969,-38.06221,-19.35433,2.255232E-05,-,-
-3440.5,13056.938234508,19.9999992370605,19.9999992370605,0,-4.351743,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.625103,0.3323833,-45.01969,-38.06221,-19.35433,2.255232E-05,-,-
-3441.5,13062.4937898517,19.9999992370605,19.9999992370605,0,-4.4682,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.624763,0.3323833,-46.2221,-39.26495,-20.55708,2.255232E-05,-,-
-3442.5,13068.0493451953,19.9999992370605,19.9999992370605,0,-4.526429,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.62459,0.3323833,-46.82323,-39.86626,-21.15838,2.255232E-05,-,-
-3443.5,13073.6049005389,19.9999992370605,19.9999992370605,0,-4.584658,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.624415,0.3323833,-47.42431,-40.46751,-21.75964,2.255232E-05,-,-
-3444.5,13079.1604558825,19.9999992370605,19.9999992370605,0,-4.721115,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.623995,0.3323833,-48.83275,-41.87637,-23.1685,2.255232E-05,-,-
-3445.5,13084.7160112262,19.9999992370605,19.9999992370605,0,-4.721115,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.623995,0.3323833,-48.83275,-41.87637,-23.1685,2.255232E-05,-,-
-3446.5,13090.2715665698,19.9999992370605,19.9999992370605,0,-4.862572,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.623548,0.3323833,-50.29251,-43.33658,-24.62871,2.255232E-05,-,-
-3447.5,13095.8271219134,19.9999992370605,19.9999992370605,0,-4.862572,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.623548,0.3323833,-50.29251,-43.33658,-24.62871,2.255232E-05,-,-
-3448.5,13101.3826772571,19.9999992370605,19.9999992370605,0,-5.004028,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.623086,0.3323833,-51.75196,-44.79649,-26.08861,2.255232E-05,-,-
-3449.5,13106.9382326007,19.9999992370605,19.9999992370605,0,-5.004028,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.623086,0.3323833,-51.75196,-44.79649,-26.08861,2.255232E-05,-,-
-3450.5,13112.4937879443,19.9999992370605,19.9999992370605,0,-5.133824,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622652,0.3323833,-53.09083,-46.13579,-27.42792,2.255232E-05,-,-
-3451.5,13118.0493432879,19.9999992370605,19.9999992370605,0,-5.133824,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622652,0.3323833,-53.09083,-46.13579,-27.42792,2.255232E-05,-,-
-3452.5,13123.6048986316,19.9999992370605,19.9999992370605,0,-5.133824,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622652,0.3323833,-53.09083,-46.13579,-27.42792,2.255232E-05,-,-
-3453.5,13129.1604539752,19.9999992370605,19.9999992370605,0,-5.133824,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622652,0.3323833,-53.09083,-46.13579,-27.42792,2.255232E-05,-,-
-3454.5,13134.7160093188,19.9999992370605,19.9999992370605,0,-5.133824,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622652,0.3323833,-53.09083,-46.13579,-27.42792,2.255232E-05,-,-
-3455.5,13140.2715646625,19.9999992370605,19.9999992370605,0,-5.133824,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622652,0.3323833,-53.09083,-46.13579,-27.42792,2.255232E-05,-,-
-3456.5,13145.8271200061,19.9999992370605,19.9999992370605,0,-5.133824,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622652,0.3323833,-53.09083,-46.13579,-27.42792,2.255232E-05,-,-
-3457.5,13151.3826753497,19.9999992370605,19.9999992370605,0,-5.133824,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622652,0.3323833,-53.09083,-46.13579,-27.42792,2.255232E-05,-,-
-3458.5,13156.9382306933,19.9999992370605,19.9999992370605,0,-5.133824,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622652,0.3323833,-53.09083,-46.13579,-27.42792,2.255232E-05,-,-
-3459.5,13162.493786037,19.9999992370605,19.9999992370605,0,-5.258045,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622225,0.3323833,-54.37195,-47.41734,-28.70947,2.255232E-05,-,-
-3460.5,13168.0493413806,19.9999992370605,19.9999992370605,0,-5.258045,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622225,0.3323833,-54.37195,-47.41734,-28.70947,2.255232E-05,-,-
-3461.5,13173.6048967242,19.9999992370605,19.9999992370605,0,-5.258045,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622225,0.3323833,-54.37195,-47.41734,-28.70947,2.255232E-05,-,-
-3462.5,13179.1604520679,19.9999992370605,19.9999992370605,0,-5.258045,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622225,0.3323833,-54.37195,-47.41734,-28.70947,2.255232E-05,-,-
-3463.5,13184.7160074115,19.9999992370605,19.9999992370605,0,-5.258045,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622225,0.3323833,-54.37195,-47.41734,-28.70947,2.255232E-05,-,-
-3464.5,13190.2715627551,19.9999992370605,19.9999992370605,0,-5.258045,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622225,0.3323833,-54.37195,-47.41734,-28.70947,2.255232E-05,-,-
-3465.5,13195.8271180987,19.9999992370605,19.9999992370605,0,-5.258045,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622225,0.3323833,-54.37195,-47.41734,-28.70947,2.255232E-05,-,-
-3466.5,13201.3826734424,19.9999992370605,19.9999992370605,0,-5.258045,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622225,0.3323833,-54.37195,-47.41734,-28.70947,2.255232E-05,-,-
-3467.5,13206.938228786,19.9999992370605,19.9999992370605,0,-5.258045,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622225,0.3323833,-54.37195,-47.41734,-28.70947,2.255232E-05,-,-
-3468.5,13212.4937841296,19.9999992370605,19.9999992370605,0,-5.382266,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.621789,0.3323833,-55.65281,-48.69864,-29.99077,2.255232E-05,-,-
-3469.5,13218.0493394732,19.9999992370605,19.9999992370605,0,-5.382266,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.621789,0.3323833,-55.65281,-48.69864,-29.99077,2.255232E-05,-,-
-3470.5,13223.6048948169,19.9999992370605,19.9999992370605,0,-5.382266,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.621789,0.3323833,-55.65281,-48.69864,-29.99077,2.255232E-05,-,-
-3471.5,13229.1604501605,19.9999992370605,19.9999992370605,0,-5.382266,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.621789,0.3323833,-55.65281,-48.69864,-29.99077,2.255232E-05,-,-
-3472.5,13234.7160055041,19.9999992370605,19.9999992370605,0,-5.382266,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.621789,0.3323833,-55.65281,-48.69864,-29.99077,2.255232E-05,-,-
-3473.5,13240.2715608478,19.9999992370605,19.9999992370605,0,-5.382266,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.621789,0.3323833,-55.65281,-48.69864,-29.99077,2.255232E-05,-,-
-3474.5,13245.8271161914,19.9999992370605,19.9999992370605,0,-5.382266,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.621789,0.3323833,-55.65281,-48.69864,-29.99077,2.255232E-05,-,-
-3475.5,13251.382671535,19.9999992370605,19.9999992370605,0,-5.482859,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.621428,0.3323833,-56.68986,-49.73605,-31.02817,2.255232E-05,-,-
-3476.5,13256.9382268786,19.9999992370605,19.9999992370605,0,-5.482859,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.621428,0.3323833,-56.68986,-49.73605,-31.02817,2.255232E-05,-,-
-3477.5,13262.4937822223,19.9999992370605,19.9999992370605,0,-5.482859,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.621428,0.3323833,-56.68986,-49.73605,-31.02817,2.255232E-05,-,-
-3478.5,13268.0493375659,19.9999992370605,19.9999992370605,0,-5.482859,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.621428,0.3323833,-56.68986,-49.73605,-31.02817,2.255232E-05,-,-
-3479.5,13273.6048929095,19.9999992370605,19.9999992370605,0,-5.482859,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.621428,0.3323833,-56.68986,-49.73605,-31.02817,2.255232E-05,-,-
-3480.5,13279.1604482532,19.9999992370605,19.9999992370605,0,-5.482859,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.621428,0.3323833,-56.68986,-49.73605,-31.02817,2.255232E-05,-,-
-3481.5,13284.7160035968,19.9999992370605,19.9999992370605,0,-5.482859,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.621428,0.3323833,-56.68986,-49.73605,-31.02817,2.255232E-05,-,-
-3482.5,13290.2715589404,19.9999992370605,19.9999992370605,0,-5.482859,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.621428,0.3323833,-56.68986,-49.73605,-31.02817,2.255232E-05,-,-
-3483.5,13295.827114284,19.9999992370605,19.9999992370605,0,-5.482859,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.621428,0.3323833,-56.68986,-49.73605,-31.02817,2.255232E-05,-,-
-3484.5,13301.3826696277,19.9999992370605,19.9999992370605,0,-5.482859,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.621428,0.3323833,-56.68986,-49.73605,-31.02817,2.255232E-05,-,-
-3485.5,13306.9382249713,19.9999992370605,19.9999992370605,0,-5.482859,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.621428,0.3323833,-56.68986,-49.73605,-31.02817,2.255232E-05,-,-
-3486.5,13312.4937803149,19.9999992370605,19.9999992370605,0,-5.482859,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.621428,0.3323833,-56.68986,-49.73605,-31.02817,2.255232E-05,-,-
-3487.5,13318.0493356586,19.9999992370605,19.9999992370605,0,-5.482859,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.621428,0.3323833,-56.68986,-49.73605,-31.02817,2.255232E-05,-,-
-3488.5,13323.6048910022,19.9999992370605,19.9999992370605,0,-5.482859,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.621428,0.3323833,-56.68986,-49.73605,-31.02817,2.255232E-05,-,-
-3489.5,13329.1604463458,19.9999992370605,19.9999992370605,0,-5.362442,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.62186,0.3323833,-55.44843,-48.49418,-29.78631,2.255232E-05,-,-
-3490.5,13334.7160016894,19.9999992370605,19.9999992370605,0,-5.362442,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.62186,0.3323833,-55.44843,-48.49418,-29.78631,2.255232E-05,-,-
-3491.5,13340.2715570331,19.9999992370605,19.9999992370605,0,-5.362442,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.62186,0.3323833,-55.44843,-48.49418,-29.78631,2.255232E-05,-,-
-3492.5,13345.8271123767,19.9999992370605,19.9999992370605,0,-5.362442,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.62186,0.3323833,-55.44843,-48.49418,-29.78631,2.255232E-05,-,-
-3493.5,13351.3826677203,19.9999992370605,19.9999992370605,0,-5.362442,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.62186,0.3323833,-55.44843,-48.49418,-29.78631,2.255232E-05,-,-
-3494.5,13356.9382230639,19.9999992370605,19.9999992370605,0,-5.362442,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.62186,0.3323833,-55.44843,-48.49418,-29.78631,2.255232E-05,-,-
-3495.5,13362.4937784076,19.9999992370605,19.9999992370605,0,-5.362442,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.62186,0.3323833,-55.44843,-48.49418,-29.78631,2.255232E-05,-,-
-3496.5,13368.0493337512,19.9999992370605,19.9999992370605,0,-5.307992,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622051,0.3323833,-54.88699,-47.93256,-29.22468,2.255232E-05,-,-
-3497.5,13373.6048890948,19.9999992370605,19.9999992370605,0,-5.253542,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622241,0.3323833,-54.32551,-47.37088,-28.66301,2.255232E-05,-,-
-3498.5,13379.1604444385,19.9999992370605,19.9999992370605,0,-5.253542,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622241,0.3323833,-54.32551,-47.37088,-28.66301,2.255232E-05,-,-
-3499.5,13384.7159997821,19.9999992370605,19.9999992370605,0,-5.253542,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622241,0.3323833,-54.32551,-47.37088,-28.66301,2.255232E-05,-,-
-3500.5,13390.2715551257,19.9999992370605,19.9999992370605,0,-5.253542,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622241,0.3323833,-54.32551,-47.37088,-28.66301,2.255232E-05,-,-
-3501.5,13395.8271104693,19.9999992370605,19.9999992370605,0,-5.253542,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622241,0.3323833,-54.32551,-47.37088,-28.66301,2.255232E-05,-,-
-3502.5,13401.382665813,19.9999992370605,19.9999992370605,0,-5.253542,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622241,0.3323833,-54.32551,-47.37088,-28.66301,2.255232E-05,-,-
-3503.5,13406.9382211566,19.9999992370605,19.9999992370605,0,-5.253542,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622241,0.3323833,-54.32551,-47.37088,-28.66301,2.255232E-05,-,-
-3504.5,13412.4937765002,19.9999992370605,19.9999992370605,0,-5.144641,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622615,0.3323833,-53.2024,-46.2474,-27.53953,2.255232E-05,-,-
-3505.5,13418.0493318439,19.9999992370605,19.9999992370605,0,-5.144641,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622615,0.3323833,-53.2024,-46.2474,-27.53953,2.255232E-05,-,-
-3506.5,13423.6048871875,19.9999992370605,19.9999992370605,0,-5.144641,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622615,0.3323833,-53.2024,-46.2474,-27.53953,2.255232E-05,-,-
-3507.5,13429.1604425311,19.9999992370605,19.9999992370605,0,-5.144641,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622615,0.3323833,-53.2024,-46.2474,-27.53953,2.255232E-05,-,-
-3508.5,13434.7159978747,19.9999992370605,19.9999992370605,0,-5.144641,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622615,0.3323833,-53.2024,-46.2474,-27.53953,2.255232E-05,-,-
-3509.5,13440.2715532184,19.9999992370605,19.9999992370605,0,-5.144641,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622615,0.3323833,-53.2024,-46.2474,-27.53953,2.255232E-05,-,-
-3510.5,13445.827108562,19.9999992370605,19.9999992370605,0,-5.144641,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622615,0.3323833,-53.2024,-46.2474,-27.53953,2.255232E-05,-,-
-3511.5,13451.3826639056,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3512.5,13456.9382192492,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3513.5,13462.4937745929,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3514.5,13468.0493299365,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3515.5,13473.6048852801,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3516.5,13479.1604406238,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3517.5,13484.7159959674,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3518.5,13490.271551311,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3519.5,13495.8271066546,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3520.5,13501.3826619983,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3521.5,13506.9382173419,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3522.5,13512.4937726855,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3523.5,13518.0493280292,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3524.5,13523.6048833728,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3525.5,13529.1604387164,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3526.5,13534.71599406,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3527.5,13540.2715494037,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3528.5,13545.8271047473,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3529.5,13551.3826600909,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3530.5,13556.9382154346,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3531.5,13562.4937707782,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3532.5,13568.0493261218,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3533.5,13573.6048814654,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3534.5,13579.1604368091,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3535.5,13584.7159921527,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3536.5,13590.2715474963,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3537.5,13595.8271028399,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3538.5,13601.3826581836,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3539.5,13606.9382135272,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3540.5,13612.4937688708,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3541.5,13618.0493242145,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3542.5,13623.6048795581,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3543.5,13629.1604349017,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3544.5,13634.7159902453,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3545.5,13640.271545589,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3546.5,13645.8271009326,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3547.5,13651.3826562762,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3548.5,13656.9382116199,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3549.5,13662.4937669635,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3550.5,13668.0493223071,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3551.5,13673.6048776507,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3552.5,13679.1604329944,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3553.5,13684.715988338,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3554.5,13690.2715436816,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3555.5,13695.8270990252,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3556.5,13701.3826543689,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3557.5,13706.9382097125,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3558.5,13712.4937650561,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3559.5,13718.0493203998,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3560.5,13723.6048757434,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3561.5,13729.160431087,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3562.5,13734.7159864306,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3563.5,13740.2715417743,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3564.5,13745.8270971179,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3565.5,13751.3826524615,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3566.5,13756.9382078052,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3567.5,13762.4937631488,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3568.5,13768.0493184924,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3569.5,13773.604873836,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3570.5,13779.1604291797,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3571.5,13784.7159845233,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3572.5,13790.2715398669,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3573.5,13795.8270952106,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3574.5,13801.3826505542,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3575.5,13806.9382058978,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3576.5,13812.4937612414,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3577.5,13818.0493165851,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3578.5,13823.6048719287,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3579.5,13829.1604272723,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3580.5,13834.7159826159,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3581.5,13840.2715379596,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3582.5,13845.8270933032,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3583.5,13851.3826486468,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3584.5,13856.9382039905,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3585.5,13862.4937593341,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3586.5,13868.0493146777,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3587.5,13873.6048700213,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3588.5,13879.160425365,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3589.5,13884.7159807086,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3590.5,13890.2715360522,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3591.5,13895.8270913959,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3592.5,13901.3826467395,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3593.5,13906.9382020831,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3594.5,13912.4937574267,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3595.5,13918.0493127704,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3596.5,13923.604868114,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3597.5,13929.1604234576,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3598.5,13934.7159788013,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3599.5,13940.2715341449,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3600.5,13945.8270894885,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3601.5,13951.3826448321,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3602.5,13956.9382001758,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3603.5,13962.4937555194,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3604.5,13968.049310863,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3605.5,13973.6048662066,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3606.5,13979.1604215503,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3607.5,13984.7159768939,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3608.5,13990.2715322375,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3609.5,13995.8270875812,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3610.5,14001.3826429248,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3611.5,14006.9381982684,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3612.5,14012.493753612,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3613.5,14018.0493089557,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3614.5,14023.6048642993,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3615.5,14029.1604196429,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3616.5,14034.7159749866,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3617.5,14040.2715303302,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3618.5,14045.8270856738,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3619.5,14051.3826410174,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3620.5,14056.9381963611,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3621.5,14062.4937517047,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3622.5,14068.0493070483,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3623.5,14073.6048623919,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3624.5,14079.1604177356,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3625.5,14084.7159730792,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3626.5,14090.2715284228,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3627.5,14095.8270837665,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3628.5,14101.3826391101,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3629.5,14106.9381944537,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3630.5,14112.4937497973,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3631.5,14118.049305141,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3632.5,14123.6048604846,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3633.5,14129.1604158282,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3634.5,14134.7159711719,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3635.5,14140.2715265155,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3636.5,14145.8270818591,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3637.5,14151.3826372027,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3638.5,14156.9381925464,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3639.5,14162.49374789,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3640.5,14168.0493032336,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3641.5,14173.6048585773,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3642.5,14179.1604139209,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3643.5,14184.7159692645,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3644.5,14190.2715246081,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3645.5,14195.8270799518,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3646.5,14201.3826352954,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3647.5,14206.938190639,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3648.5,14212.4937459826,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3649.5,14218.0493013263,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3650.5,14223.6048566699,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3651.5,14229.1604120135,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3652.5,14234.7159673572,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3653.5,14240.2715227008,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3654.5,14245.8270780444,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3655.5,14251.382633388,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3656.5,14256.9381887317,19.9999992370605,19.9999992370605,0,-5.03483,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-26.40647,2.255232E-05,-,-
-3657.5,14262.4937440753,19.9999992370605,19.9999992370605,0,-4.934366,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.623315,0.3323833,-51.03327,-44.07757,-25.3697,2.255232E-05,-,-
-3658.5,14268.0492994189,19.9999992370605,19.9999992370605,0,-4.934366,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.623315,0.3323833,-51.03327,-44.07757,-25.3697,2.255232E-05,-,-
-3659.5,14273.6048547626,19.9999992370605,19.9999992370605,0,-4.934366,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.623315,0.3323833,-51.03327,-44.07757,-25.3697,2.255232E-05,-,-
-3660.5,14279.1604101062,19.9999992370605,19.9999992370605,0,-4.934366,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.623315,0.3323833,-51.03327,-44.07757,-25.3697,2.255232E-05,-,-
-3661.5,14284.7159654498,19.9999992370605,19.9999992370605,0,-4.934366,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.623315,0.3323833,-51.03327,-44.07757,-25.3697,2.255232E-05,-,-
-3662.5,14290.2715207934,19.9999992370605,19.9999992370605,0,-4.934366,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.623315,0.3323833,-51.03327,-44.07757,-25.3697,2.255232E-05,-,-
-3663.5,14295.8270761371,19.9999992370605,19.9999992370605,0,-4.934366,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.623315,0.3323833,-51.03327,-44.07757,-25.3697,2.255232E-05,-,-
-3664.5,14301.3826314807,19.9999992370605,19.9999992370605,0,-4.934366,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.623315,0.3323833,-51.03327,-44.07757,-25.3697,2.255232E-05,-,-
-3665.5,14306.9381868243,19.9999992370605,19.9999992370605,0,-4.934366,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.623315,0.3323833,-51.03327,-44.07757,-25.3697,2.255232E-05,-,-
-3666.5,14312.493742168,19.9999992370605,19.9999992370605,0,-4.934366,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.623315,0.3323833,-51.03327,-44.07757,-25.3697,2.255232E-05,-,-
-3667.5,14318.0492975116,19.9999992370605,19.9999992370605,0,-4.934366,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.623315,0.3323833,-51.03327,-44.07757,-25.3697,2.255232E-05,-,-
-3668.5,14323.6048528552,19.9999992370605,19.9999992370605,0,-4.934366,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.623315,0.3323833,-51.03327,-44.07757,-25.3697,2.255232E-05,-,-
-3669.5,14329.1604081988,19.9999992370605,19.9999992370605,0,-4.829528,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.623653,0.3323833,-49.95154,-42.99551,-24.28763,2.255232E-05,-,-
-3670.5,14334.7159635425,19.9999992370605,19.9999992370605,0,-4.829528,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.623653,0.3323833,-49.95154,-42.99551,-24.28763,2.255232E-05,-,-
-3671.5,14340.2715188861,19.9999992370605,19.9999992370605,0,-4.829528,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.623653,0.3323833,-49.95154,-42.99551,-24.28763,2.255232E-05,-,-
-3672.5,14345.8270742297,19.9999992370605,19.9999992370605,0,-4.829528,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.623653,0.3323833,-49.95154,-42.99551,-24.28763,2.255232E-05,-,-
-3673.5,14351.3826295733,19.9999992370605,19.9999992370605,0,-4.829528,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.623653,0.3323833,-49.95154,-42.99551,-24.28763,2.255232E-05,-,-
-3674.5,14356.938184917,19.9999992370605,19.9999992370605,0,-4.829528,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.623653,0.3323833,-49.95154,-42.99551,-24.28763,2.255232E-05,-,-
-3675.5,14362.4937402606,19.9999992370605,19.9999992370605,0,-4.829528,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.623653,0.3323833,-49.95154,-42.99551,-24.28763,2.255232E-05,-,-
-3676.5,14368.0492956042,19.9999992370605,19.9999992370605,0,-4.829528,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.623653,0.3323833,-49.95154,-42.99551,-24.28763,2.255232E-05,-,-
-3677.5,14373.6048509479,19.9999992370605,19.9999992370605,0,-4.829528,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.623653,0.3323833,-49.95154,-42.99551,-24.28763,2.255232E-05,-,-
-3678.5,14379.1604062915,19.9999992370605,19.9999992370605,0,-4.829528,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.623653,0.3323833,-49.95154,-42.99551,-24.28763,2.255232E-05,-,-
-3679.5,14384.7159616351,19.9999992370605,19.9999992370605,0,-4.829528,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.623653,0.3323833,-49.95154,-42.99551,-24.28763,2.255232E-05,-,-
-3680.5,14390.2715169787,19.9999992370605,19.9999992370605,0,-4.829528,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.623653,0.3323833,-49.95154,-42.99551,-24.28763,2.255232E-05,-,-
-3681.5,14395.8270723224,19.9999992370605,19.9999992370605,0,-4.829528,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.623653,0.3323833,-49.95154,-42.99551,-24.28763,2.255232E-05,-,-
-3682.5,14401.382627666,19.9999992370605,19.9999992370605,0,-4.723009,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.62399,0.3323833,-48.8523,-41.89593,-23.18806,2.255232E-05,-,-
-3683.5,14406.9381830096,19.9999992370605,19.9999992370605,0,-4.723009,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.62399,0.3323833,-48.8523,-41.89593,-23.18806,2.255232E-05,-,-
-3684.5,14412.4937383533,19.9999992370605,19.9999992370605,0,-4.723009,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.62399,0.3323833,-48.8523,-41.89593,-23.18806,2.255232E-05,-,-
-3685.5,14418.0492936969,19.9999992370605,19.9999992370605,0,-4.723009,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.62399,0.3323833,-48.8523,-41.89593,-23.18806,2.255232E-05,-,-
-3686.5,14423.6048490405,19.9999992370605,19.9999992370605,0,-4.723009,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.62399,0.3323833,-48.8523,-41.89593,-23.18806,2.255232E-05,-,-
-3687.5,14429.1604043841,19.9999992370605,19.9999992370605,0,-4.723009,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.62399,0.3323833,-48.8523,-41.89593,-23.18806,2.255232E-05,-,-
-3688.5,14434.7159597278,19.9999992370605,19.9999992370605,0,-4.723009,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.62399,0.3323833,-48.8523,-41.89593,-23.18806,2.255232E-05,-,-
-3689.5,14440.2715150714,19.9999992370605,19.9999992370605,0,-4.723009,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.62399,0.3323833,-48.8523,-41.89593,-23.18806,2.255232E-05,-,-
-3690.5,14445.827070415,19.9999992370605,19.9999992370605,0,-4.723009,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.62399,0.3323833,-48.8523,-41.89593,-23.18806,2.255232E-05,-,-
-3691.5,14451.3826257586,19.9999992370605,19.9999992370605,0,-4.723009,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.62399,0.3323833,-48.8523,-41.89593,-23.18806,2.255232E-05,-,-
-3692.5,14456.9381811023,19.9999992370605,19.9999992370605,0,-4.723009,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.62399,0.3323833,-48.8523,-41.89593,-23.18806,2.255232E-05,-,-
-3693.5,14462.4937364459,19.9999992370605,19.9999992370605,0,-4.723009,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.62399,0.3323833,-48.8523,-41.89593,-23.18806,2.255232E-05,-,-
-3694.5,14468.0492917895,19.9999992370605,19.9999992370605,0,-4.723009,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.62399,0.3323833,-48.8523,-41.89593,-23.18806,2.255232E-05,-,-
-3695.5,14473.6048471332,19.9999992370605,19.9999992370605,0,-4.723009,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.62399,0.3323833,-48.8523,-41.89593,-23.18806,2.255232E-05,-,-
-3696.5,14479.1604024768,19.9999992370605,19.9999992370605,0,-4.723009,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.62399,0.3323833,-48.8523,-41.89593,-23.18806,2.255232E-05,-,-
-3697.5,14484.7159578204,19.9999992370605,19.9999992370605,0,-4.723009,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.62399,0.3323833,-48.8523,-41.89593,-23.18806,2.255232E-05,-,-
-3698.5,14490.271513164,19.9999992370605,19.9999992370605,0,-4.723009,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.62399,0.3323833,-48.8523,-41.89593,-23.18806,2.255232E-05,-,-
-3699.5,14495.8270685077,19.9999992370605,19.9999992370605,0,-4.723009,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.62399,0.3323833,-48.8523,-41.89593,-23.18806,2.255232E-05,-,-
-3700.5,14501.3826238513,19.9999992370605,19.9999992370605,0,-4.723009,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.62399,0.3323833,-48.8523,-41.89593,-23.18806,2.255232E-05,-,-
-3701.5,14506.9381791949,19.9999992370605,19.9999992370605,0,-4.723009,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.62399,0.3323833,-48.8523,-41.89593,-23.18806,2.255232E-05,-,-
-3702.5,14512.4937345386,19.9999992370605,19.9999992370605,0,-4.723009,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.62399,0.3323833,-48.8523,-41.89593,-23.18806,2.255232E-05,-,-
-3703.5,14518.0492898822,19.9999992370605,19.9999992370605,0,-4.723009,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.62399,0.3323833,-48.8523,-41.89593,-23.18806,2.255232E-05,-,-
-3704.5,14523.6048452258,19.9999992370605,19.9999992370605,0,-4.723009,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.62399,0.3323833,-48.8523,-41.89593,-23.18806,2.255232E-05,-,-
-3705.5,14529.1604005694,19.9999992370605,19.9999992370605,0,-4.723009,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.62399,0.3323833,-48.8523,-41.89593,-23.18806,2.255232E-05,-,-
-3706.5,14534.7159559131,19.9999992370605,19.9999992370605,0,-4.723009,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.62399,0.3323833,-48.8523,-41.89593,-23.18806,2.255232E-05,-,-
-3707.5,14540.2715112567,19.9999992370605,19.9999992370605,0,-4.723009,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.62399,0.3323833,-48.8523,-41.89593,-23.18806,2.255232E-05,-,-
-3708.5,14545.8270666003,19.9999992370605,19.9999992370605,0,-4.723009,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.62399,0.3323833,-48.8523,-41.89593,-23.18806,2.255232E-05,-,-
-3709.5,14551.382621944,19.9999992370605,19.9999992370605,0,-4.604388,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.624355,0.3323833,-47.62798,-40.67124,-21.96337,2.255232E-05,-,-
-3710.5,14556.9381772876,19.9999992370605,19.9999992370605,0,-4.604388,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.624355,0.3323833,-47.62798,-40.67124,-21.96337,2.255232E-05,-,-
-3711.5,14562.4937326312,19.9999992370605,19.9999992370605,0,-4.604388,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.624355,0.3323833,-47.62798,-40.67124,-21.96337,2.255232E-05,-,-
-3712.5,14568.0492879748,19.9999992370605,19.9999992370605,0,-4.604388,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.624355,0.3323833,-47.62798,-40.67124,-21.96337,2.255232E-05,-,-
-3713.5,14573.6048433185,19.9999992370605,19.9999992370605,0,-4.604388,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.624355,0.3323833,-47.62798,-40.67124,-21.96337,2.255232E-05,-,-
-3714.5,14579.1603986621,19.9999992370605,19.9999992370605,0,-4.604388,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.624355,0.3323833,-47.62798,-40.67124,-21.96337,2.255232E-05,-,-
-3715.5,14584.7159540057,19.9999992370605,19.9999992370605,0,-4.604388,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.624355,0.3323833,-47.62798,-40.67124,-21.96337,2.255232E-05,-,-
-3716.5,14590.2715093493,19.9999992370605,19.9999992370605,0,-4.604388,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.624355,0.3323833,-47.62798,-40.67124,-21.96337,2.255232E-05,-,-
-3717.5,14595.827064693,19.9999992370605,19.9999992370605,0,-4.604388,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.624355,0.3323833,-47.62798,-40.67124,-21.96337,2.255232E-05,-,-
-3718.5,14601.3826200366,19.9999992370605,19.9999992370605,0,-4.488449,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.624704,0.3323833,-46.43114,-39.47405,-20.76618,2.255232E-05,-,-
-3719.5,14606.9381753802,19.9999992370605,19.9999992370605,0,-4.488449,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.624704,0.3323833,-46.43114,-39.47405,-20.76618,2.255232E-05,-,-
-3720.5,14612.4937307239,19.9999992370605,19.9999992370605,0,-4.488449,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.624704,0.3323833,-46.43114,-39.47405,-20.76618,2.255232E-05,-,-
-3721.5,14618.0492860675,19.9999992370605,19.9999992370605,0,-4.488449,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.624704,0.3323833,-46.43114,-39.47405,-20.76618,2.255232E-05,-,-
-3722.5,14623.6048414111,19.9999992370605,19.9999992370605,0,-4.488449,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.624704,0.3323833,-46.43114,-39.47405,-20.76618,2.255232E-05,-,-
-3723.5,14629.1603967547,19.9999992370605,19.9999992370605,0,-4.488449,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.624704,0.3323833,-46.43114,-39.47405,-20.76618,2.255232E-05,-,-
-3724.5,14634.7159520984,19.9999992370605,19.9999992370605,0,-4.488449,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.624704,0.3323833,-46.43114,-39.47405,-20.76618,2.255232E-05,-,-
-3725.5,14640.271507442,19.9999992370605,19.9999992370605,0,-4.488449,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.624704,0.3323833,-46.43114,-39.47405,-20.76618,2.255232E-05,-,-
-3726.5,14645.8270627856,19.9999992370605,19.9999992370605,0,-4.488449,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.624704,0.3323833,-46.43114,-39.47405,-20.76618,2.255232E-05,-,-
-3727.5,14651.3826181293,19.9999992370605,19.9999992370605,0,-4.372509,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.625043,0.3323833,-45.23411,-38.27668,-19.56881,2.255232E-05,-,-
-3728.5,14656.9381734729,19.9999992370605,19.9999992370605,0,-4.372509,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.625043,0.3323833,-45.23411,-38.27668,-19.56881,2.255232E-05,-,-
-3729.5,14662.4937288165,19.9999992370605,19.9999992370605,0,-4.372509,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.625043,0.3323833,-45.23411,-38.27668,-19.56881,2.255232E-05,-,-
-3730.5,14668.0492841601,19.9999992370605,19.9999992370605,0,-4.372509,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.625043,0.3323833,-45.23411,-38.27668,-19.56881,2.255232E-05,-,-
-3731.5,14673.6048395038,19.9999992370605,19.9999992370605,0,-4.372509,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.625043,0.3323833,-45.23411,-38.27668,-19.56881,2.255232E-05,-,-
-3732.5,14679.1603948474,19.9999992370605,19.9999992370605,0,-4.372509,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.625043,0.3323833,-45.23411,-38.27668,-19.56881,2.255232E-05,-,-
-3733.5,14684.715950191,19.9999992370605,19.9999992370605,0,-4.372509,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.625043,0.3323833,-45.23411,-38.27668,-19.56881,2.255232E-05,-,-
-3734.5,14690.2715055346,19.9999992370605,19.9999992370605,0,-4.372509,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.625043,0.3323833,-45.23411,-38.27668,-19.56881,2.255232E-05,-,-
-3735.5,14695.8270608783,19.9999992370605,19.9999992370605,0,-4.372509,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.625043,0.3323833,-45.23411,-38.27668,-19.56881,2.255232E-05,-,-
-3736.5,14701.3826162219,19.9999992370605,19.9999992370605,0,-4.256569,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.625374,0.3323833,-44.0369,-37.07914,-18.37127,2.255232E-05,-,-
-3737.5,14706.9381715655,19.9999992370605,19.9999992370605,0,-4.256569,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.625374,0.3323833,-44.0369,-37.07914,-18.37127,2.255232E-05,-,-
-3738.5,14712.4937269092,19.9999992370605,19.9999992370605,0,-4.256569,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.625374,0.3323833,-44.0369,-37.07914,-18.37127,2.255232E-05,-,-
-3739.5,14718.0492822528,19.9999992370605,19.9999992370605,0,-4.256569,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.625374,0.3323833,-44.0369,-37.07914,-18.37127,2.255232E-05,-,-
-3740.5,14723.6048375964,19.9999992370605,19.9999992370605,0,-4.256569,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.625374,0.3323833,-44.0369,-37.07914,-18.37127,2.255232E-05,-,-
-3741.5,14729.16039294,19.9999992370605,19.9999992370605,0,-4.256569,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.625374,0.3323833,-44.0369,-37.07914,-18.37127,2.255232E-05,-,-
-3742.5,14734.7159482837,19.9999992370605,19.9999992370605,0,-4.256569,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.625374,0.3323833,-44.0369,-37.07914,-18.37127,2.255232E-05,-,-
-3743.5,14740.2715036273,19.9999992370605,19.9999992370605,0,-4.256569,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.625374,0.3323833,-44.0369,-37.07914,-18.37127,2.255232E-05,-,-
-3744.5,14745.8270589709,19.9999992370605,19.9999992370605,0,-4.256569,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.625374,0.3323833,-44.0369,-37.07914,-18.37127,2.255232E-05,-,-
-3745.5,14751.3826143146,19.9999992370605,19.9999992370605,0,-4.256569,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.625374,0.3323833,-44.0369,-37.07914,-18.37127,2.255232E-05,-,-
-3746.5,14756.9381696582,19.9999992370605,19.9999992370605,0,-4.256569,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.625374,0.3323833,-44.0369,-37.07914,-18.37127,2.255232E-05,-,-
-3747.5,14762.4937250018,19.9999992370605,19.9999992370605,0,-4.256569,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.625374,0.3323833,-44.0369,-37.07914,-18.37127,2.255232E-05,-,-
-3748.5,14768.0492803454,19.9999992370605,19.9999992370605,0,-4.256569,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.625374,0.3323833,-44.0369,-37.07914,-18.37127,2.255232E-05,-,-
-3749.5,14773.6048356891,19.9999992370605,19.9999992370605,0,-4.256569,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.625374,0.3323833,-44.0369,-37.07914,-18.37127,2.255232E-05,-,-
-3750.5,14779.1603910327,19.9999992370605,19.9999992370605,0,-4.256569,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.625374,0.3323833,-44.0369,-37.07914,-18.37127,2.255232E-05,-,-
-3751.5,14784.7159463763,19.9999992370605,19.9999992370605,0,-4.256569,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.625374,0.3323833,-44.0369,-37.07914,-18.37127,2.255232E-05,-,-
-3752.5,14790.27150172,19.9999992370605,19.9999992370605,0,-4.256569,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.625374,0.3323833,-44.0369,-37.07914,-18.37127,2.255232E-05,-,-
-3753.5,14795.8270570636,19.9999992370605,19.9999992370605,0,-4.256569,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.625374,0.3323833,-44.0369,-37.07914,-18.37127,2.255232E-05,-,-
-3754.5,14801.3826124072,19.9999992370605,19.9999992370605,0,-4.142472,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.625691,0.3323833,-42.85854,-35.90047,-17.1926,2.255232E-05,-,-
-3755.5,14806.9381677508,19.9999992370605,19.9999992370605,0,-4.142472,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.625691,0.3323833,-42.85854,-35.90047,-17.1926,2.255232E-05,-,-
-3756.5,14812.4937230945,19.9999992370605,19.9999992370605,0,-4.142472,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.625691,0.3323833,-42.85854,-35.90047,-17.1926,2.255232E-05,-,-
-3757.5,14818.0492784381,19.9999992370605,19.9999992370605,0,-4.142472,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.625691,0.3323833,-42.85854,-35.90047,-17.1926,2.255232E-05,-,-
-3758.5,14823.6048337817,19.9999992370605,19.9999992370605,0,-4.142472,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.625691,0.3323833,-42.85854,-35.90047,-17.1926,2.255232E-05,-,-
-3759.5,14829.1603891253,19.9999992370605,19.9999992370605,0,-4.142472,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.625691,0.3323833,-42.85854,-35.90047,-17.1926,2.255232E-05,-,-
-3760.5,14834.715944469,19.9999992370605,19.9999992370605,0,-4.142472,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.625691,0.3323833,-42.85854,-35.90047,-17.1926,2.255232E-05,-,-
-3761.5,14840.2714998126,19.9999992370605,19.9999992370605,0,-4.142472,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.625691,0.3323833,-42.85854,-35.90047,-17.1926,2.255232E-05,-,-
-3762.5,14845.8270551562,19.9999992370605,19.9999992370605,0,-4.142472,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.625691,0.3323833,-42.85854,-35.90047,-17.1926,2.255232E-05,-,-
-3763.5,14851.3826104999,19.9999992370605,19.9999992370605,0,-4.142472,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.625691,0.3323833,-42.85854,-35.90047,-17.1926,2.255232E-05,-,-
-3764.5,14856.9381658435,19.9999992370605,19.9999992370605,0,-4.142472,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.625691,0.3323833,-42.85854,-35.90047,-17.1926,2.255232E-05,-,-
-3765.5,14862.4937211871,19.9999992370605,19.9999992370605,0,-4.142472,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.625691,0.3323833,-42.85854,-35.90047,-17.1926,2.255232E-05,-,-
-3766.5,14868.0492765307,19.9999992370605,19.9999992370605,0,-4.085227,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.625847,0.3323833,-42.26727,-35.30904,-16.60116,2.255232E-05,-,-
-3767.5,14873.6048318744,19.9999992370605,19.9999992370605,0,-4.027982,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.626,0.3323833,-41.67595,-34.71757,-16.0097,2.255232E-05,-,-
-3768.5,14879.160387218,19.9999992370605,19.9999992370605,0,-4.027982,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.626,0.3323833,-41.67595,-34.71757,-16.0097,2.255232E-05,-,-
-3769.5,14884.7159425616,19.9999992370605,19.9999992370605,0,-4.027982,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.626,0.3323833,-41.67595,-34.71757,-16.0097,2.255232E-05,-,-
-3770.5,14890.2714979053,19.9999992370605,19.9999992370605,0,-4.027982,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.626,0.3323833,-41.67595,-34.71757,-16.0097,2.255232E-05,-,-
-3771.5,14895.8270532489,19.9999992370605,19.9999992370605,0,-4.027982,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.626,0.3323833,-41.67595,-34.71757,-16.0097,2.255232E-05,-,-
-3772.5,14901.3826085925,19.9999992370605,19.9999992370605,0,-4.027982,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.626,0.3323833,-41.67595,-34.71757,-16.0097,2.255232E-05,-,-
-3773.5,14906.9381639361,19.9999992370605,19.9999992370605,0,-4.027982,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.626,0.3323833,-41.67595,-34.71757,-16.0097,2.255232E-05,-,-
-3774.5,14912.4937192798,19.9999992370605,19.9999992370605,0,-4.027982,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.626,0.3323833,-41.67595,-34.71757,-16.0097,2.255232E-05,-,-
-3775.5,14918.0492746234,19.9999992370605,19.9999992370605,0,-4.027982,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.626,0.3323833,-41.67595,-34.71757,-16.0097,2.255232E-05,-,-
-3776.5,14923.604829967,19.9999992370605,19.9999992370605,0,-4.027982,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.626,0.3323833,-41.67595,-34.71757,-16.0097,2.255232E-05,-,-
-3777.5,14929.1603853107,19.9999992370605,19.9999992370605,0,-4.027982,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.626,0.3323833,-41.67595,-34.71757,-16.0097,2.255232E-05,-,-
-3778.5,14934.7159406543,19.9999992370605,19.9999992370605,0,-4.027982,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.626,0.3323833,-41.67595,-34.71757,-16.0097,2.255232E-05,-,-
-3779.5,14940.2714959979,19.9999992370605,19.9999992370605,0,-3.913491,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.626301,0.3323833,-40.4932,-33.53452,-14.82665,2.255232E-05,-,-
-3780.5,14945.8270513415,19.9999992370605,19.9999992370605,0,-3.913491,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.626301,0.3323833,-40.4932,-33.53452,-14.82665,2.255232E-05,-,-
-3781.5,14951.3826066852,19.9999992370605,19.9999992370605,0,-3.913491,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.626301,0.3323833,-40.4932,-33.53452,-14.82665,2.255232E-05,-,-
-3782.5,14956.9381620288,19.9999992370605,19.9999992370605,0,-3.913491,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.626301,0.3323833,-40.4932,-33.53452,-14.82665,2.255232E-05,-,-
-3783.5,14962.4937173724,19.9999992370605,19.9999992370605,0,-3.913491,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.626301,0.3323833,-40.4932,-33.53452,-14.82665,2.255232E-05,-,-
-3784.5,14968.049272716,19.9999992370605,19.9999992370605,0,-3.913491,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.626301,0.3323833,-40.4932,-33.53452,-14.82665,2.255232E-05,-,-
-3785.5,14973.6048280597,19.9999992370605,19.9999992370605,0,-3.913491,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.626301,0.3323833,-40.4932,-33.53452,-14.82665,2.255232E-05,-,-
-3786.5,14979.1603834033,19.9999992370605,19.9999992370605,0,-3.913491,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.626301,0.3323833,-40.4932,-33.53452,-14.82665,2.255232E-05,-,-
-3787.5,14984.7159387469,19.9999992370605,19.9999992370605,0,-3.913491,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.626301,0.3323833,-40.4932,-33.53452,-14.82665,2.255232E-05,-,-
-3788.5,14990.2714940906,19.9999992370605,19.9999992370605,0,-3.913491,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.626301,0.3323833,-40.4932,-33.53452,-14.82665,2.255232E-05,-,-
-3789.5,14995.8270494342,19.9999992370605,19.9999992370605,0,-3.913491,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.626301,0.3323833,-40.4932,-33.53452,-14.82665,2.255232E-05,-,-
-3790.5,15001.3826047778,19.9999992370605,19.9999992370605,0,-3.913491,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.626301,0.3323833,-40.4932,-33.53452,-14.82665,2.255232E-05,-,-
-3791.5,15006.9381601214,19.9999992370605,19.9999992370605,0,-3.913491,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.626301,0.3323833,-40.4932,-33.53452,-14.82665,2.255232E-05,-,-
-3792.5,15012.4937154651,19.9999992370605,19.9999992370605,0,-3.913491,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.626301,0.3323833,-40.4932,-33.53452,-14.82665,2.255232E-05,-,-
-3793.5,15018.0492708087,19.9999992370605,19.9999992370605,0,-3.913491,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.626301,0.3323833,-40.4932,-33.53452,-14.82665,2.255232E-05,-,-
-3794.5,15023.6048261523,19.9999992370605,19.9999992370605,0,-3.913491,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.626301,0.3323833,-40.4932,-33.53452,-14.82665,2.255232E-05,-,-
-3795.5,15029.160381496,19.9999992370605,19.9999992370605,0,-3.913491,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.626301,0.3323833,-40.4932,-33.53452,-14.82665,2.255232E-05,-,-
-3796.5,15034.7159368396,19.9999992370605,19.9999992370605,0,-3.913491,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.626301,0.3323833,-40.4932,-33.53452,-14.82665,2.255232E-05,-,-
-3797.5,15040.2714921832,19.9999992370605,19.9999992370605,0,-3.913491,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.626301,0.3323833,-40.4932,-33.53452,-14.82665,2.255232E-05,-,-
-3798.5,15045.8270475268,19.9999992370605,19.9999992370605,0,-3.913491,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.626301,0.3323833,-40.4932,-33.53452,-14.82665,2.255232E-05,-,-
-3799.5,15051.3826028705,19.9999992370605,19.9999992370605,0,-3.913491,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.626301,0.3323833,-40.4932,-33.53452,-14.82665,2.255232E-05,-,-
-3800.5,15056.9381582141,19.9999992370605,19.9999992370605,0,-3.913491,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.626301,0.3323833,-40.4932,-33.53452,-14.82665,2.255232E-05,-,-
-3801.5,15062.4937135577,19.9999992370605,19.9999992370605,0,-3.913491,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.626301,0.3323833,-40.4932,-33.53452,-14.82665,2.255232E-05,-,-
-3802.5,15068.0492689013,19.9999992370605,19.9999992370605,0,-3.8449,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.626477,0.3323833,-39.78455,-32.82568,-14.11781,2.255232E-05,-,-
-3803.5,15073.604824245,19.9999992370605,19.9999992370605,0,-3.77631,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.62665,0.3323833,-39.07583,-32.1168,-13.40893,2.255232E-05,-,-
-3804.5,15079.1603795886,19.9999992370605,19.9999992370605,0,-3.77631,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.62665,0.3323833,-39.07583,-32.1168,-13.40893,2.255232E-05,-,-
-3805.5,15084.7159349322,19.9999992370605,19.9999992370605,0,-3.77631,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.62665,0.3323833,-39.07583,-32.1168,-13.40893,2.255232E-05,-,-
-3806.5,15090.2714902759,19.9999992370605,19.9999992370605,0,-3.664718,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.626925,0.3323833,-37.9227,-30.96339,-12.25551,2.255232E-05,-,-
-3807.5,15095.8270456195,19.9999992370605,19.9999992370605,0,-3.664718,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.626925,0.3323833,-37.9227,-30.96339,-12.25551,2.255232E-05,-,-
-3808.5,15101.3826009631,19.9999992370605,19.9999992370605,0,-3.664718,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.626925,0.3323833,-37.9227,-30.96339,-12.25551,2.255232E-05,-,-
-3809.5,15106.9381563067,19.9999992370605,19.9999992370605,0,-3.664718,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.626925,0.3323833,-37.9227,-30.96339,-12.25551,2.255232E-05,-,-
-3810.5,15112.4937116504,19.9999992370605,19.9999992370605,0,-3.553126,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.627192,0.3323833,-36.76941,-29.80984,-11.10196,2.255232E-05,-,-
-3811.5,15118.049266994,19.9999992370605,19.9999992370605,0,-3.553126,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.627192,0.3323833,-36.76941,-29.80984,-11.10196,2.255232E-05,-,-
-3812.5,15123.6048223376,19.9999992370605,19.9999992370605,0,-3.553126,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.627192,0.3323833,-36.76941,-29.80984,-11.10196,2.255232E-05,-,-
-3813.5,15129.1603776813,19.9999992370605,19.9999992370605,0,-3.441534,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.62745,0.3323833,-35.61599,-28.65616,-9.948288,2.255232E-05,-,-
-3814.5,15134.7159330249,19.9999992370605,19.9999992370605,0,-3.441534,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.62745,0.3323833,-35.61599,-28.65616,-9.948288,2.255232E-05,-,-
-3815.5,15140.2714883685,19.9999992370605,19.9999992370605,0,-3.441534,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.62745,0.3323833,-35.61599,-28.65616,-9.948288,2.255232E-05,-,-
-3816.5,15145.8270437121,19.9999992370605,19.9999992370605,0,-3.441534,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.62745,0.3323833,-35.61599,-28.65616,-9.948288,2.255232E-05,-,-
-3817.5,15151.3825990558,19.9999992370605,19.9999992370605,0,-3.329942,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.6277,0.3323833,-34.46244,-27.50236,-8.794489,2.255232E-05,-,-
-3818.5,15156.9381543994,19.9999992370605,19.9999992370605,0,-3.329942,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.6277,0.3323833,-34.46244,-27.50236,-8.794489,2.255232E-05,-,-
-3819.5,15162.493709743,19.9999992370605,19.9999992370605,0,-3.329942,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.6277,0.3323833,-34.46244,-27.50236,-8.794489,2.255232E-05,-,-
-3820.5,15168.0492650867,19.9999992370605,19.9999992370605,0,-3.274146,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.627822,0.3323833,-33.88562,-26.92542,-8.217543,2.255232E-05,-,-
-3821.5,15173.6048204303,19.9999992370605,19.9999992370605,0,-3.21835,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.627942,0.3323833,-33.30877,-26.34844,-7.640568,2.255232E-05,-,-
-3822.5,15179.1603757739,19.9999992370605,19.9999992370605,0,-3.21835,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.627942,0.3323833,-33.30877,-26.34844,-7.640568,2.255232E-05,-,-
-3823.5,15184.7159311175,19.9999992370605,19.9999992370605,0,-3.21835,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.627942,0.3323833,-33.30877,-26.34844,-7.640568,2.255232E-05,-,-
-3824.5,15190.2714864612,19.9999992370605,19.9999992370605,0,-3.106758,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628175,0.3323833,-32.15496,-25.1944,-6.48653,2.255232E-05,-,-
-3825.5,15195.8270418048,19.9999992370605,19.9999992370605,0,-3.106758,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628175,0.3323833,-32.15496,-25.1944,-6.48653,2.255232E-05,-,-
-3826.5,15201.3825971484,19.9999992370605,19.9999992370605,0,-3.106758,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628175,0.3323833,-32.15496,-25.1944,-6.48653,2.255232E-05,-,-
-3827.5,15206.938152492,19.9999992370605,19.9999992370605,0,-3.106758,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628175,0.3323833,-32.15496,-25.1944,-6.48653,2.255232E-05,-,-
-3828.5,15212.4937078357,19.9999992370605,19.9999992370605,0,-2.995166,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628401,0.3323833,-31.00104,-24.04025,-5.33238,2.255232E-05,-,-
-3829.5,15218.0492631793,19.9999992370605,19.9999992370605,0,-2.995166,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628401,0.3323833,-31.00104,-24.04025,-5.33238,2.255232E-05,-,-
-3830.5,15223.6048185229,19.9999992370605,19.9999992370605,0,-2.995166,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628401,0.3323833,-31.00104,-24.04025,-5.33238,2.255232E-05,-,-
-3831.5,15229.1603738666,19.9999992370605,19.9999992370605,0,-2.883574,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628618,0.3323833,-29.847,-22.886,-4.178129,2.255232E-05,-,-
-3832.5,15234.7159292102,19.9999992370605,19.9999992370605,0,-2.883574,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628618,0.3323833,-29.847,-22.886,-4.178129,2.255232E-05,-,-
-3833.5,15240.2714845538,19.9999992370605,19.9999992370605,0,-2.883574,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628618,0.3323833,-29.847,-22.886,-4.178129,2.255232E-05,-,-
-3834.5,15245.8270398974,19.9999992370605,19.9999992370605,0,-2.883574,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628618,0.3323833,-29.847,-22.886,-4.178129,2.255232E-05,-,-
-3835.5,15251.3825952411,19.9999992370605,19.9999992370605,0,-2.883574,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628618,0.3323833,-29.847,-22.886,-4.178129,2.255232E-05,-,-
-3836.5,15256.9381505847,19.9999992370605,19.9999992370605,0,-2.883574,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628618,0.3323833,-29.847,-22.886,-4.178129,2.255232E-05,-,-
-3837.5,15262.4937059283,19.9999992370605,19.9999992370605,0,-2.883574,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628618,0.3323833,-29.847,-22.886,-4.178129,2.255232E-05,-,-
-3838.5,15268.049261272,19.9999992370605,19.9999992370605,0,-2.883574,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628618,0.3323833,-29.847,-22.886,-4.178129,2.255232E-05,-,-
-3839.5,15273.6048166156,19.9999992370605,19.9999992370605,0,-2.883574,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628618,0.3323833,-29.847,-22.886,-4.178129,2.255232E-05,-,-
-3840.5,15279.1603719592,19.9999992370605,19.9999992370605,0,-2.883574,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628618,0.3323833,-29.847,-22.886,-4.178129,2.255232E-05,-,-
-3841.5,15284.7159273028,19.9999992370605,19.9999992370605,0,-2.883574,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628618,0.3323833,-29.847,-22.886,-4.178129,2.255232E-05,-,-
-3842.5,15290.2714826465,19.9999992370605,19.9999992370605,0,-2.883574,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628618,0.3323833,-29.847,-22.886,-4.178129,2.255232E-05,-,-
-3843.5,15295.8270379901,19.9999992370605,19.9999992370605,0,-2.883574,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628618,0.3323833,-29.847,-22.886,-4.178129,2.255232E-05,-,-
-3844.5,15301.3825933337,19.9999992370605,19.9999992370605,0,-2.883574,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628618,0.3323833,-29.847,-22.886,-4.178129,2.255232E-05,-,-
-3845.5,15306.9381486773,19.9999992370605,19.9999992370605,0,-2.883574,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628618,0.3323833,-29.847,-22.886,-4.178129,2.255232E-05,-,-
-3846.5,15312.493704021,19.9999992370605,19.9999992370605,0,-2.883574,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628618,0.3323833,-29.847,-22.886,-4.178129,2.255232E-05,-,-
-3847.5,15318.0492593646,19.9999992370605,19.9999992370605,0,-2.883574,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628618,0.3323833,-29.847,-22.886,-4.178129,2.255232E-05,-,-
-3848.5,15323.6048147082,19.9999992370605,19.9999992370605,0,-2.883574,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628618,0.3323833,-29.847,-22.886,-4.178129,2.255232E-05,-,-
-3849.5,15329.1603700519,19.9999992370605,19.9999992370605,0,-2.883574,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628618,0.3323833,-29.847,-22.886,-4.178129,2.255232E-05,-,-
-3850.5,15334.7159253955,19.9999992370605,19.9999992370605,0,-2.883574,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628618,0.3323833,-29.847,-22.886,-4.178129,2.255232E-05,-,-
-3851.5,15340.2714807391,19.9999992370605,19.9999992370605,0,-2.883574,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628618,0.3323833,-29.847,-22.886,-4.178129,2.255232E-05,-,-
-3852.5,15345.8270360827,19.9999992370605,19.9999992370605,0,-2.883574,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628618,0.3323833,-29.847,-22.886,-4.178129,2.255232E-05,-,-
-3853.5,15351.3825914264,19.9999992370605,19.9999992370605,0,-2.883574,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628618,0.3323833,-29.847,-22.886,-4.178129,2.255232E-05,-,-
-3854.5,15356.93814677,19.9999992370605,19.9999992370605,0,-2.883574,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628618,0.3323833,-29.847,-22.886,-4.178129,2.255232E-05,-,-
-3855.5,15362.4937021136,19.9999992370605,19.9999992370605,0,-2.883574,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628618,0.3323833,-29.847,-22.886,-4.178129,2.255232E-05,-,-
-3856.5,15368.0492574573,19.9999992370605,19.9999992370605,0,-2.883574,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628618,0.3323833,-29.847,-22.886,-4.178129,2.255232E-05,-,-
-3857.5,15373.6048128009,19.9999992370605,19.9999992370605,0,-2.883574,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628618,0.3323833,-29.847,-22.886,-4.178129,2.255232E-05,-,-
-3858.5,15379.1603681445,19.9999992370605,19.9999992370605,0,-2.883574,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628618,0.3323833,-29.847,-22.886,-4.178129,2.255232E-05,-,-
-3859.5,15384.7159234881,19.9999992370605,19.9999992370605,0,-2.883574,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628618,0.3323833,-29.847,-22.886,-4.178129,2.255232E-05,-,-
-3860.5,15390.2714788318,19.9999992370605,19.9999992370605,0,-2.883574,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628618,0.3323833,-29.847,-22.886,-4.178129,2.255232E-05,-,-
-3861.5,15395.8270341754,19.9999992370605,19.9999992370605,0,-2.883574,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628618,0.3323833,-29.847,-22.886,-4.178129,2.255232E-05,-,-
-3862.5,15401.382589519,19.9999992370605,19.9999992370605,0,-2.883574,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628618,0.3323833,-29.847,-22.886,-4.178129,2.255232E-05,-,-
-3863.5,15406.9381448627,19.9999992370605,19.9999992370605,0,-2.883574,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628618,0.3323833,-29.847,-22.886,-4.178129,2.255232E-05,-,-
-3864.5,15412.4937002063,19.9999992370605,19.9999992370605,0,-2.883574,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628618,0.3323833,-29.847,-22.886,-4.178129,2.255232E-05,-,-
-3865.5,15418.0492555499,19.9999992370605,19.9999992370605,0,-2.883574,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628618,0.3323833,-29.847,-22.886,-4.178129,2.255232E-05,-,-
-3866.5,15423.6048108935,19.9999992370605,19.9999992370605,0,-2.883574,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628618,0.3323833,-29.847,-22.886,-4.178129,2.255232E-05,-,-
-3867.5,15429.1603662372,19.9999992370605,19.9999992370605,0,-2.883574,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628618,0.3323833,-29.847,-22.886,-4.178129,2.255232E-05,-,-
-3868.5,15434.7159215808,19.9999992370605,19.9999992370605,0,-2.883574,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628618,0.3323833,-29.847,-22.886,-4.178129,2.255232E-05,-,-
-3869.5,15440.2714769244,19.9999992370605,19.9999992370605,0,-2.883574,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628618,0.3323833,-29.847,-22.886,-4.178129,2.255232E-05,-,-
-3870.5,15445.827032268,19.9999992370605,19.9999992370605,0,-2.883574,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628618,0.3323833,-29.847,-22.886,-4.178129,2.255232E-05,-,-
-3871.5,15451.3825876117,19.9999992370605,19.9999992370605,0,-2.741041,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628884,0.3323833,-28.37282,-21.41155,-2.703678,2.255232E-05,-,-
-3872.5,15456.9381429553,19.9999992370605,19.9999992370605,0,-2.741041,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628884,0.3323833,-28.37282,-21.41155,-2.703678,2.255232E-05,-,-
-3873.5,15462.4936982989,19.9999992370605,19.9999992370605,0,-2.741041,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628884,0.3323833,-28.37282,-21.41155,-2.703678,2.255232E-05,-,-
-3874.5,15468.0492536426,19.9999992370605,19.9999992370605,0,-2.668785,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.629013,0.3323833,-27.62543,-20.66404,-1.956167,2.255232E-05,-,-
-3875.5,15473.6048089862,19.9999992370605,19.9999992370605,0,-2.59653,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.629139,0.3323833,-26.87801,-19.91648,-1.208612,2.255232E-05,-,-
-3876.5,15479.1603643298,19.9999992370605,19.9999992370605,0,-2.59653,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.629139,0.3323833,-26.87801,-19.91648,-1.208612,2.255232E-05,-,-
-3877.5,15484.7159196734,19.9999992370605,19.9999992370605,0,-2.59653,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.629139,0.3323833,-26.87801,-19.91648,-1.208612,2.255232E-05,-,-
-3878.5,15490.2714750171,19.9999992370605,19.9999992370605,0,-2.452019,1071.235,-164.2125,-164.2125,2300,-166.7673,-18.42127,258.0128,-18.70787,-18.42127,0,0,1,0,0,0,0,0,6.629381,0.3323833,-25.38303,-18.42127,0,47.2009,-,-
-3879.5,15495.8270303607,19.9999992370605,19.9999992370605,0,-2.452019,1071.235,-164.2125,-164.2125,2300,-166.7673,-18.42127,258.0128,-18.70787,-18.42127,0,0,1,0,0,0,0,0,6.629381,0.3323833,-25.38303,-18.42127,0,47.2009,-,-
-3880.5,15501.3825857043,19.9999992370605,19.9999992370605,0,-2.452019,1071.235,-164.2125,-164.2125,2300,-166.7673,-18.42127,258.0128,-18.70787,-18.42127,0,0,1,0,0,0,0,0,6.629381,0.3323833,-25.38303,-18.42127,0,47.2009,-,-
-3881.5,15506.938141048,19.9999992370605,19.9999992370605,0,-2.452019,1071.235,-164.2125,-164.2125,2300,-166.7673,-18.42127,258.0128,-18.70787,-18.42127,0,0,1,0,0,0,0,0,6.629381,0.3323833,-25.38303,-18.42127,0,47.2009,-,-
-3882.5,15512.4936963916,19.9999992370605,19.9999992370605,0,-2.307509,1071.235,-150.8824,-150.8824,2300,-166.7673,-16.9259,258.0128,-18.70787,-16.9259,0,0,1,0,0,0,0,0,6.629609,0.3323833,-23.8879,-16.9259,0,293.4728,-,-
-3883.5,15518.0492517352,19.9999992370605,19.9999992370605,0,-2.307509,1071.235,-150.8824,-150.8824,2300,-166.7673,-16.9259,258.0128,-18.70787,-16.9259,0,0,1,0,0,0,0,0,6.629609,0.3323833,-23.8879,-16.9259,0,293.4728,-,-
-3884.5,15523.6048070788,19.9999992370605,19.9999992370605,0,-2.307509,1071.235,-150.8824,-150.8824,2300,-166.7673,-16.9259,258.0128,-18.70787,-16.9259,0,0,1,0,0,0,0,0,6.629609,0.3323833,-23.8879,-16.9259,0,293.4728,-,-
-3885.5,15529.1603624225,19.9999992370605,19.9999992370605,0,-2.162998,1071.235,-137.551,-137.551,2300,-166.7673,-15.4304,258.0128,-18.70787,-15.4304,0,0,1,0,0,0,0,0,6.629823,0.3323833,-22.39261,-15.4304,0,539.767,-,-
-3886.5,15534.7159177661,19.9999992370605,19.9999992370605,0,-2.162998,1071.235,-137.551,-137.551,2300,-166.7673,-15.4304,258.0128,-18.70787,-15.4304,0,0,1,0,0,0,0,0,6.629823,0.3323833,-22.39261,-15.4304,0,539.767,-,-
-3887.5,15540.2714731097,19.9999992370605,19.9999992370605,0,-2.162998,1071.235,-137.551,-137.551,2300,-166.7673,-15.4304,258.0128,-18.70787,-15.4304,0,0,1,0,0,0,0,0,6.629823,0.3323833,-22.39261,-15.4304,0,539.767,-,-
-3888.5,15545.8270284534,19.9999992370605,19.9999992370605,0,-2.162998,1071.235,-137.551,-137.551,2300,-166.7673,-15.4304,258.0128,-18.70787,-15.4304,0,0,1,0,0,0,0,0,6.629823,0.3323833,-22.39261,-15.4304,0,539.767,-,-
-3889.5,15551.382583797,19.9999992370605,19.9999992370605,0,-2.018488,1071.235,-124.2186,-124.2186,2300,-166.7673,-13.93478,258.0128,-18.70787,-13.93478,0,0,1,0,0,0,0,0,6.630023,0.3323833,-20.89718,-13.93478,0,786.0818,-,-
-3890.5,15556.9381391406,19.9999992370605,19.9999992370605,0,-2.018488,1071.235,-124.2186,-124.2186,2300,-166.7673,-13.93478,258.0128,-18.70787,-13.93478,0,0,1,0,0,0,0,0,6.630023,0.3323833,-20.89718,-13.93478,0,786.0818,-,-
-3891.5,15562.4936944842,19.9999992370605,19.9999992370605,0,-2.018488,1071.235,-124.2186,-124.2186,2300,-166.7673,-13.93478,258.0128,-18.70787,-13.93478,0,0,1,0,0,0,0,0,6.630023,0.3323833,-20.89718,-13.93478,0,786.0818,-,-
-3892.5,15568.0492498279,19.9999992370605,19.9999992370605,0,-1.947552,1071.235,-117.6738,-117.6738,2300,-166.7673,-13.20058,258.0128,-18.70787,-13.20058,0,0,1,0,0,0,0,0,6.630116,0.3323833,-20.16308,-13.20058,0,906.9969,-,-
-3893.5,15573.6048051715,19.9999992370605,19.9999992370605,0,-1.876617,1071.235,-111.1287,-111.1287,2300,-166.7673,-12.46636,258.0128,-18.70787,-12.46636,0,0,1,0,0,0,0,0,6.630206,0.3323833,-19.42895,-12.46636,0,1027.916,-,-
-3894.5,15579.1603605151,19.9999992370605,19.9999992370605,0,-1.876617,1071.235,-111.1287,-111.1287,2300,-166.7673,-12.46636,258.0128,-18.70787,-12.46636,0,0,1,0,0,0,0,0,6.630206,0.3323833,-19.42895,-12.46636,0,1027.916,-,-
-3895.5,15584.7159158587,19.9999992370605,19.9999992370605,0,-1.876617,1071.235,-111.1287,-111.1287,2300,-166.7673,-12.46636,258.0128,-18.70787,-12.46636,0,0,1,0,0,0,0,0,6.630206,0.3323833,-19.42895,-12.46636,0,1027.916,-,-
-3896.5,15590.2714712024,19.9999992370605,19.9999992370605,0,-1.735626,1071.235,-98.11903,-98.11903,2300,-166.7673,-11.00694,258.0128,-18.70787,-11.00694,0,0,1,0,0,0,0,0,6.630375,0.3323833,-17.9697,-11.00694,0,1265.486,-,-
-3897.5,15595.827026546,19.9999992370605,19.9999992370605,0,-1.735626,1071.235,-98.11903,-98.11903,2300,-166.7673,-11.00694,258.0128,-18.70787,-11.00694,0,0,1,0,0,0,0,0,6.630375,0.3323833,-17.9697,-11.00694,0,1265.486,-,-
-3898.5,15601.3825818896,19.9999992370605,19.9999992370605,0,-1.735626,1071.235,-98.11903,-98.11903,2300,-166.7673,-11.00694,258.0128,-18.70787,-11.00694,0,0,1,0,0,0,0,0,6.630375,0.3323833,-17.9697,-11.00694,0,1265.486,-,-
-3899.5,15606.9381372333,19.9999992370605,19.9999992370605,0,-1.735626,1071.235,-98.11903,-98.11903,2300,-166.7673,-11.00694,258.0128,-18.70787,-11.00694,0,0,1,0,0,0,0,0,6.630375,0.3323833,-17.9697,-11.00694,0,1265.486,-,-
-3900.5,15612.4936925769,19.9999992370605,19.9999992370605,0,-1.594635,1071.235,-85.10856,-85.10856,2300,-166.7673,-9.547434,258.0128,-18.70787,-9.547434,0,0,1,0,0,0,0,0,6.63053,0.3323833,-16.51035,-9.547434,0,1498.454,-,-
-3901.5,15618.0492479205,19.9999992370605,19.9999992370605,0,-1.594635,1071.235,-85.10856,-85.10856,2300,-166.7673,-9.547434,258.0128,-18.70787,-9.547434,0,0,1,0,0,0,0,0,6.63053,0.3323833,-16.51035,-9.547434,0,1498.454,-,-
-3902.5,15623.6048032641,19.9999992370605,19.9999992370605,0,-1.594635,1071.235,-85.10856,-85.10856,2300,-166.7673,-9.547434,258.0128,-18.70787,-9.547434,0,0,1,0,0,0,0,0,6.63053,0.3323833,-16.51035,-9.547434,0,1498.454,-,-
-3903.5,15629.1603586078,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3904.5,15634.7159139514,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3905.5,15640.271469295,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3906.5,15645.8270246387,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3907.5,15651.3825799823,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3908.5,15656.9381353259,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3909.5,15662.4936906695,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3910.5,15668.0492460132,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3911.5,15673.6048013568,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3912.5,15679.1603567004,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3913.5,15684.715912044,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3914.5,15690.2714673877,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3915.5,15695.8270227313,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3916.5,15701.3825780749,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3917.5,15706.9381334186,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3918.5,15712.4936887622,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3919.5,15718.0492441058,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3920.5,15723.6047994494,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3921.5,15729.1603547931,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3922.5,15734.7159101367,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3923.5,15740.2714654803,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3924.5,15745.827020824,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3925.5,15751.3825761676,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3926.5,15756.9381315112,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3927.5,15762.4936868548,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3928.5,15768.0492421985,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3929.5,15773.6047975421,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3930.5,15779.1603528857,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3931.5,15784.7159082294,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3932.5,15790.271463573,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3933.5,15795.8270189166,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3934.5,15801.3825742602,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3935.5,15806.9381296039,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3936.5,15812.4936849475,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3937.5,15818.0492402911,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3938.5,15823.6047956347,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3939.5,15829.1603509784,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3940.5,15834.715906322,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3941.5,15840.2714616656,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3942.5,15845.8270170093,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3943.5,15851.3825723529,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3944.5,15856.9381276965,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3945.5,15862.4936830401,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3946.5,15868.0492383838,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3947.5,15873.6047937274,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3948.5,15879.160349071,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3949.5,15884.7159044147,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3950.5,15890.2714597583,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3951.5,15895.8270151019,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3952.5,15901.3825704455,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3953.5,15906.9381257892,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3954.5,15912.4936811328,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3955.5,15918.0492364764,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3956.5,15923.60479182,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3957.5,15929.1603471637,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3958.5,15934.7159025073,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3959.5,15940.2714578509,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3960.5,15945.8270131946,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3961.5,15951.3825685382,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3962.5,15956.9381238818,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3963.5,15962.4936792254,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3964.5,15968.0492345691,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3965.5,15973.6047899127,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3966.5,15979.1603452563,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3967.5,15984.7159006,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3968.5,15990.2714559436,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3969.5,15995.8270112872,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3970.5,16001.3825666308,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3971.5,16006.9381219745,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3972.5,16012.4936773181,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3973.5,16018.0492326617,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3974.5,16023.6047880054,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3975.5,16029.160343349,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3976.5,16034.7158986926,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3977.5,16040.2714540362,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3978.5,16045.8270093799,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3979.5,16051.3825647235,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3980.5,16056.9381200671,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3981.5,16062.4936754107,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3982.5,16068.0492307544,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3983.5,16073.604786098,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3984.5,16079.1603414416,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3985.5,16084.7158967853,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3986.5,16090.2714521289,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3987.5,16095.8270074725,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3988.5,16101.3825628161,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3989.5,16106.9381181598,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3990.5,16112.4936735034,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3991.5,16118.049228847,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3992.5,16123.6047841907,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3993.5,16129.1603395343,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3994.5,16134.7158948779,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3995.5,16140.2714502215,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3996.5,16145.8270055652,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3997.5,16151.3825609088,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3998.5,16156.9381162524,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-3999.5,16162.4936715961,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-4000.5,16168.0492269397,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-4001.5,16173.6047822833,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-4002.5,16179.1603376269,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-4003.5,16184.7158929706,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-4004.5,16190.2714483142,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-4005.5,16195.8270036578,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-4006.5,16201.3825590014,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-4007.5,16206.9381143451,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-4008.5,16212.4936696887,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-4009.5,16218.0492250323,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-4010.5,16223.604780376,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-4011.5,16229.1603357196,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-4012.5,16234.7158910632,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-4013.5,16240.2714464068,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-4014.5,16245.8270017505,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-4015.5,16251.3825570941,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-4016.5,16256.9381124377,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-4017.5,16262.4936677814,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-4018.5,16268.049223125,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-4019.5,16273.6047784686,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-4020.5,16279.1603338122,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-4021.5,16284.7158891559,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-4022.5,16290.2714444995,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-4023.5,16295.8269998431,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-4024.5,16301.3825551867,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-4025.5,16306.9381105304,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-4026.5,16312.493665874,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-4027.5,16318.0492212176,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-4028.5,16323.6047765613,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-4029.5,16329.1603319049,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-4030.5,16334.7158872485,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-4031.5,16340.2714425921,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-4032.5,16345.8269979358,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-4033.5,16351.3825532794,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-4034.5,16356.938108623,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-4035.5,16362.4936639667,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-4036.5,16368.0492193103,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-4037.5,16373.6047746539,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-4038.5,16379.1603299975,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-4039.5,16384.7158853412,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-4040.5,16390.2714406848,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-4041.5,16395.8269960284,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-4042.5,16401.3825513721,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-4043.5,16406.9381067157,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-4044.5,16412.4936620593,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-4045.5,16418.0492174029,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-4046.5,16423.6047727466,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-4047.5,16429.1603280902,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-4048.5,16434.7158834338,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-4049.5,16440.2714387774,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-4050.5,16445.8269941211,19.9999992370605,19.9999992370605,0,-1.453644,1071.235,-72.09731,-72.09731,2300,-166.7673,-8.087839,258.0128,-18.70787,-8.087839,0,0,1,0,0,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,1731.437,-,-
-4051.5,16451.3825494647,19.9999992370605,19.9999992370605,0,-1.350023,1071.235,-62.53426,-62.53426,2300,-166.7673,-7.015061,258.0128,-18.70787,-7.015061,0,0,1,0,0,0,0,0,6.630769,0.3323833,-13.97821,-7.015061,0,1902.675,-,-
-4052.5,16456.9381048083,19.9999992370605,19.9999992370605,0,-1.350023,1071.235,-62.53426,-62.53426,2300,-166.7673,-7.015061,258.0128,-18.70787,-7.015061,0,0,1,0,0,0,0,0,6.630769,0.3323833,-13.97821,-7.015061,0,1902.675,-,-
-4053.5,16462.493660152,19.9999992370605,19.9999992370605,0,-1.350023,1071.235,-62.53426,-62.53426,2300,-166.7673,-7.015061,258.0128,-18.70787,-7.015061,0,0,1,0,0,0,0,0,6.630769,0.3323833,-13.97821,-7.015061,0,1902.675,-,-
-4054.5,16468.0492154956,19.9999992370605,19.9999992370605,0,-1.350023,1071.235,-62.53426,-62.53426,2300,-166.7673,-7.015061,258.0128,-18.70787,-7.015061,0,0,1,0,0,0,0,0,6.630769,0.3323833,-13.97821,-7.015061,0,1902.675,-,-
-4055.5,16473.6047708392,19.9999992370605,19.9999992370605,0,-1.350023,1071.235,-62.53426,-62.53426,2300,-166.7673,-7.015061,258.0128,-18.70787,-7.015061,0,0,1,0,0,0,0,0,6.630769,0.3323833,-13.97821,-7.015061,0,1902.675,-,-
-4056.5,16479.1603261828,19.9999992370605,19.9999992370605,0,-1.209653,1071.235,-49.57921,-49.57921,2300,-166.7673,-5.56177,258.0128,-18.70787,-5.56177,0,0,1,0,0,0,0,0,6.630888,0.3323833,-12.52504,-5.56177,0,2134.652,-,-
-4057.5,16484.7158815265,19.9999992370605,19.9999992370605,0,-1.209653,1071.235,-49.57921,-49.57921,2300,-166.7673,-5.56177,258.0128,-18.70787,-5.56177,0,0,1,0,0,0,0,0,6.630888,0.3323833,-12.52504,-5.56177,0,2134.652,-,-
-4058.5,16490.2714368701,19.9999992370605,19.9999992370605,0,-1.209653,1071.235,-49.57921,-49.57921,2300,-166.7673,-5.56177,258.0128,-18.70787,-5.56177,0,0,1,0,0,0,0,0,6.630888,0.3323833,-12.52504,-5.56177,0,2134.652,-,-
-4059.5,16495.8269922137,19.9999992370605,19.9999992370605,0,-1.209653,1071.235,-49.57921,-49.57921,2300,-166.7673,-5.56177,258.0128,-18.70787,-5.56177,0,0,1,0,0,0,0,0,6.630888,0.3323833,-12.52504,-5.56177,0,2134.652,-,-
-4060.5,16501.3825475574,19.9999992370605,19.9999992370605,0,-1.209653,1071.235,-49.57921,-49.57921,2300,-166.7673,-5.56177,258.0128,-18.70787,-5.56177,0,0,1,0,0,0,0,0,6.630888,0.3323833,-12.52504,-5.56177,0,2134.652,-,-
-4061.5,16506.938102901,19.9999992370605,19.9999992370605,0,-1.209653,1071.235,-49.57921,-49.57921,2300,-166.7673,-5.56177,258.0128,-18.70787,-5.56177,0,0,1,0,0,0,0,0,6.630888,0.3323833,-12.52504,-5.56177,0,2134.652,-,-
-4062.5,16512.4936582446,19.9999992370605,19.9999992370605,0,-1.069283,1071.235,-36.62361,-36.62361,2300,-166.7673,-4.108417,258.0128,-18.70787,-4.108417,0,0,1,0,0,0,0,0,6.630994,0.3323833,-11.07179,-4.108417,0,2366.638,-,-
-4063.5,16518.0492135882,19.9999992370605,19.9999992370605,0,-1.069283,1071.235,-36.62361,-36.62361,2300,-166.7673,-4.108417,258.0128,-18.70787,-4.108417,0,0,1,0,0,0,0,0,6.630994,0.3323833,-11.07179,-4.108417,0,2366.638,-,-
-4064.5,16523.6047689319,19.9999992370605,19.9999992370605,0,-1.069283,1071.235,-36.62361,-36.62361,2300,-166.7673,-4.108417,258.0128,-18.70787,-4.108417,0,0,1,0,0,0,0,0,6.630994,0.3323833,-11.07179,-4.108417,0,2366.638,-,-
-4065.5,16529.1603242755,19.9999992370605,19.9999992370605,0,-1.069283,1071.235,-36.62361,-36.62361,2300,-166.7673,-4.108417,258.0128,-18.70787,-4.108417,0,0,1,0,0,0,0,0,6.630994,0.3323833,-11.07179,-4.108417,0,2366.638,-,-
-4066.5,16534.7158796191,19.9999992370605,19.9999992370605,0,-1.069283,1071.235,-36.62361,-36.62361,2300,-166.7673,-4.108417,258.0128,-18.70787,-4.108417,0,0,1,0,0,0,0,0,6.630994,0.3323833,-11.07179,-4.108417,0,2366.638,-,-
-4067.5,16540.2714349627,19.9999992370605,19.9999992370605,0,-0.9289134,1071.235,-23.66755,-23.66755,2300,-166.7673,-2.655013,258.0128,-18.70787,-2.655013,0,0,1,0,0,0,0,0,6.631087,0.3323833,-9.618484,-2.655013,0,2598.633,-,-
-4068.5,16545.8269903064,19.9999992370605,19.9999992370605,0,-0.9289134,1071.235,-23.66755,-23.66755,2300,-166.7673,-2.655013,258.0128,-18.70787,-2.655013,0,0,1,0,0,0,0,0,6.631087,0.3323833,-9.618484,-2.655013,0,2598.633,-,-
-4069.5,16551.38254565,19.9999992370605,19.9999992370605,0,-0.9289134,1071.235,-23.66755,-23.66755,2300,-166.7673,-2.655013,258.0128,-18.70787,-2.655013,0,0,1,0,0,0,0,0,6.631087,0.3323833,-9.618484,-2.655013,0,2598.633,-,-
-4070.5,16556.9381009936,19.9999992370605,19.9999992370605,0,-0.9289134,1071.235,-23.66755,-23.66755,2300,-166.7673,-2.655013,258.0128,-18.70787,-2.655013,0,0,1,0,0,0,0,0,6.631087,0.3323833,-9.618484,-2.655013,0,2598.633,-,-
-4071.5,16562.4936563373,19.9999992370605,19.9999992370605,0,-0.9289134,1071.235,-23.66755,-23.66755,2300,-166.7673,-2.655013,258.0128,-18.70787,-2.655013,0,0,1,0,0,0,0,0,6.631087,0.3323833,-9.618484,-2.655013,0,2598.633,-,-
-4072.5,16568.0492116809,19.9999992370605,19.9999992370605,0,-0.8587285,1071.235,-17.18935,-17.18935,2300,-166.7673,-1.928293,258.0128,-18.70787,-1.928293,0,0,1,0,0,0,0,0,6.631129,0.3323833,-8.891805,-1.928293,0,2714.633,-,-
-4073.5,16573.6047670245,19.9999992370605,19.9999992370605,0,-0.7885436,1071.235,-10.71108,-10.71108,2300,-166.7673,-1.201564,258.0128,-18.70787,-1.201564,0,0,1,0,0,0,0,0,6.631167,0.3323833,-8.165114,-1.201564,0,2830.634,-,-
-4074.5,16579.1603223681,19.9999992370605,19.9999992370605,0,-0.7885436,1071.235,-10.71108,-10.71108,2300,-166.7673,-1.201564,258.0128,-18.70787,-1.201564,0,0,1,0,0,0,0,0,6.631167,0.3323833,-8.165114,-1.201564,0,2830.634,-,-
-4075.5,16584.7158777118,19.9999992370605,19.9999992370605,0,-0.7885436,1071.235,-10.71108,-10.71108,2300,-166.7673,-1.201564,258.0128,-18.70787,-1.201564,0,0,1,0,0,0,0,0,6.631167,0.3323833,-8.165114,-1.201564,0,2830.634,-,-
-4076.5,16590.2714330554,19.9999992370605,19.9999992370605,0,-0.7885436,1071.235,-10.71108,-10.71108,2300,-166.7673,-1.201564,258.0128,-18.70787,-1.201564,0,0,1,0,0,0,0,0,6.631167,0.3323833,-8.165114,-1.201564,0,2830.634,-,-
-4077.5,16595.826988399,19.9999992370605,19.9999992370605,0,-0.7885436,1071.235,-10.71108,-10.71108,2300,-166.7673,-1.201564,258.0128,-18.70787,-1.201564,0,0,1,0,0,0,0,0,6.631167,0.3323833,-8.165114,-1.201564,0,2830.634,-,-
-4078.5,16601.3825437427,19.9999992370605,19.9999992370605,0,-0.6481737,1071.235,2.245681,2.245681,2300,-166.7673,0.2519193,258.0128,-18.70787,0.2519193,0,0,1,0,0,0,0,0,6.631234,0.3323833,-6.711698,0.2519193,0,3057.215,-,-
-4079.5,16606.9380990863,19.9999992370605,19.9999992370605,0,-0.6481737,1071.235,2.245681,2.245681,2300,-166.7673,0.2519193,258.0128,-18.70787,0.2519193,0,0,1,0,0,0,0,0,6.631234,0.3323833,-6.711698,0.2519193,0,3057.215,-,-
-4080.5,16612.4936544299,19.9999992370605,19.9999992370605,0,-0.6481737,1071.235,2.245681,2.245681,2300,-166.7673,0.2519193,258.0128,-18.70787,0.2519193,0,0,1,0,0,0,0,0,6.631234,0.3323833,-6.711698,0.2519193,0,3057.215,-,-
-4081.5,16618.0492097735,19.9999992370605,19.9999992370605,0,-0.6481737,1071.235,2.245681,2.245681,2300,-166.7673,0.2519193,258.0128,-18.70787,0.2519193,0,0,1,0,0,0,0,0,6.631234,0.3323833,-6.711698,0.2519193,0,3057.215,-,-
-4082.5,16623.6047651172,19.9999992370605,19.9999992370605,0,-0.6481737,1071.235,2.245681,2.245681,2300,-166.7673,0.2519193,258.0128,-18.70787,0.2519193,0,0,1,0,0,0,0,0,6.631234,0.3323833,-6.711698,0.2519193,0,3057.215,-,-
-4083.5,16629.1603204608,19.9999992370605,19.9999992370605,0,-0.5078039,1071.235,15.20269,15.20269,2300,-166.7673,1.70543,258.0128,-18.70787,1.70543,0,0,1,0,0,0,0,0,6.631288,0.3323833,-5.258242,1.70543,0,3257.919,-,-
-4084.5,16634.7158758044,19.9999992370605,19.9999992370605,0,-0.5078039,1071.235,15.20269,15.20269,2300,-166.7673,1.70543,258.0128,-18.70787,1.70543,0,0,1,0,0,0,0,0,6.631288,0.3323833,-5.258242,1.70543,0,3257.919,-,-
-4085.5,16640.2714311481,19.9999992370605,19.9999992370605,0,-0.5078039,1071.235,15.20269,15.20269,2300,-166.7673,1.70543,258.0128,-18.70787,1.70543,0,0,1,0,0,0,0,0,6.631288,0.3323833,-5.258242,1.70543,0,3257.919,-,-
-4086.5,16645.8269864917,19.9999992370605,19.9999992370605,0,-0.5078039,1071.235,15.20269,15.20269,2300,-166.7673,1.70543,258.0128,-18.70787,1.70543,0,0,1,0,0,0,0,0,6.631288,0.3323833,-5.258242,1.70543,0,3257.919,-,-
-4087.5,16651.3825418353,19.9999992370605,19.9999992370605,0,-0.5078039,1071.235,15.20269,15.20269,2300,-166.7673,1.70543,258.0128,-18.70787,1.70543,0,0,1,0,0,0,0,0,6.631288,0.3323833,-5.258242,1.70543,0,3257.919,-,-
-4088.5,16656.9380971789,19.9999992370605,19.9999992370605,0,-0.5078039,1071.235,15.20269,15.20269,2300,-166.7673,1.70543,258.0128,-18.70787,1.70543,0,0,1,0,0,0,0,0,6.631288,0.3323833,-5.258242,1.70543,0,3257.919,-,-
-4089.5,16662.4936525226,19.9999992370605,19.9999992370605,0,-0.5078039,1071.235,15.20269,15.20269,2300,-166.7673,1.70543,258.0128,-18.70787,1.70543,0,0,1,0,0,0,0,0,6.631288,0.3323833,-5.258242,1.70543,0,3257.919,-,-
-4090.5,16668.0492078662,19.9999992370605,19.9999992370605,0,-0.5078039,1071.235,15.20269,15.20269,2300,-166.7673,1.70543,258.0128,-18.70787,1.70543,0,0,1,0,0,0,0,0,6.631288,0.3323833,-5.258242,1.70543,0,3257.919,-,-
-4091.5,16673.6047632098,19.9999992370605,19.9999992370605,0,-0.5078039,1071.235,15.20269,15.20269,2300,-166.7673,1.70543,258.0128,-18.70787,1.70543,0,0,1,0,0,0,0,0,6.631288,0.3323833,-5.258242,1.70543,0,3257.919,-,-
-4092.5,16679.1603185534,19.9999992370605,19.9999992370605,0,-0.5078039,1071.235,15.20269,15.20269,2300,-166.7673,1.70543,258.0128,-18.70787,1.70543,0,0,1,0,0,0,0,0,6.631288,0.3323833,-5.258242,1.70543,0,3257.919,-,-
-4093.5,16684.7158738971,19.9999992370605,19.9999992370605,0,-0.5078039,1071.235,15.20269,15.20269,2300,-166.7673,1.70543,258.0128,-18.70787,1.70543,0,0,1,0,0,0,0,0,6.631288,0.3323833,-5.258242,1.70543,0,3257.919,-,-
-4094.5,16690.2714292407,19.9999992370605,19.9999992370605,0,-0.5078039,1071.235,15.20269,15.20269,2300,-166.7673,1.70543,258.0128,-18.70787,1.70543,0,0,1,0,0,0,0,0,6.631288,0.3323833,-5.258242,1.70543,0,3257.919,-,-
-4095.5,16695.8269845843,19.9999992370605,19.9999992370605,0,-0.5078039,1071.235,15.20269,15.20269,2300,-166.7673,1.70543,258.0128,-18.70787,1.70543,0,0,1,0,0,0,0,0,6.631288,0.3323833,-5.258242,1.70543,0,3257.919,-,-
-4096.5,16701.382539928,19.9999992370605,19.9999992370605,0,-0.5078039,1071.235,15.20269,15.20269,2300,-166.7673,1.70543,258.0128,-18.70787,1.70543,0,0,1,0,0,0,0,0,6.631288,0.3323833,-5.258242,1.70543,0,3257.919,-,-
-4097.5,16706.9380952716,19.9999992370605,19.9999992370605,0,-0.5078039,1071.235,15.20269,15.20269,2300,-166.7673,1.70543,258.0128,-18.70787,1.70543,0,0,1,0,0,0,0,0,6.631288,0.3323833,-5.258242,1.70543,0,3257.919,-,-
-4098.5,16712.4936506152,19.9999992370605,19.9999992370605,0,-0.5078039,1071.235,15.20269,15.20269,2300,-166.7673,1.70543,258.0128,-18.70787,1.70543,0,0,1,0,0,0,0,0,6.631288,0.3323833,-5.258242,1.70543,0,3257.919,-,-
-4099.5,16718.0492059588,19.9999992370605,19.9999992370605,0,-0.5078039,1071.235,15.20269,15.20269,2300,-166.7673,1.70543,258.0128,-18.70787,1.70543,0,0,1,0,0,0,0,0,6.631288,0.3323833,-5.258242,1.70543,0,3257.919,-,-
-4100.5,16723.6047613025,19.9999992370605,19.9999992370605,0,-0.5078039,1071.235,15.20269,15.20269,2300,-166.7673,1.70543,258.0128,-18.70787,1.70543,0,0,1,0,0,0,0,0,6.631288,0.3323833,-5.258242,1.70543,0,3257.919,-,-
-4101.5,16729.1603166461,19.9999992370605,19.9999992370605,0,-0.5078039,1071.235,15.20269,15.20269,2300,-166.7673,1.70543,258.0128,-18.70787,1.70543,0,0,1,0,0,0,0,0,6.631288,0.3323833,-5.258242,1.70543,0,3257.919,-,-
-4102.5,16734.7158719897,19.9999992370605,19.9999992370605,0,-0.5078039,1071.235,15.20269,15.20269,2300,-166.7673,1.70543,258.0128,-18.70787,1.70543,0,0,1,0,0,0,0,0,6.631288,0.3323833,-5.258242,1.70543,0,3257.919,-,-
-4103.5,16740.2714273334,19.9999992370605,19.9999992370605,0,-0.5078039,1071.235,15.20269,15.20269,2300,-166.7673,1.70543,258.0128,-18.70787,1.70543,0,0,1,0,0,0,0,0,6.631288,0.3323833,-5.258242,1.70543,0,3257.919,-,-
-4104.5,16745.826982677,19.9999992370605,19.9999992370605,0,-0.5078039,1071.235,15.20269,15.20269,2300,-166.7673,1.70543,258.0128,-18.70787,1.70543,0,0,1,0,0,0,0,0,6.631288,0.3323833,-5.258242,1.70543,0,3257.919,-,-
-4105.5,16751.3825380206,19.9999992370605,19.9999992370605,0,-0.5078039,1071.235,15.20269,15.20269,2300,-166.7673,1.70543,258.0128,-18.70787,1.70543,0,0,1,0,0,0,0,0,6.631288,0.3323833,-5.258242,1.70543,0,3257.919,-,-
-4106.5,16756.9380933642,19.9999992370605,19.9999992370605,0,-0.5078039,1071.235,15.20269,15.20269,2300,-166.7673,1.70543,258.0128,-18.70787,1.70543,0,0,1,0,0,0,0,0,6.631288,0.3323833,-5.258242,1.70543,0,3257.919,-,-
-4107.5,16762.4936487079,19.9999992370605,19.9999992370605,0,-0.4065948,1071.235,24.54502,24.54502,2300,-166.7673,2.753448,258.0128,-18.70787,2.753448,0,0,1,0,0,0,0,0,6.631319,0.3323833,-4.210254,2.753448,0,3402.632,-,-
-4108.5,16768.0492040515,19.9999992370605,19.9999992370605,0,-0.4065948,1071.235,24.54502,24.54502,2300,-166.7673,2.753448,258.0128,-18.70787,2.753448,0,0,1,0,0,0,0,0,6.631319,0.3323833,-4.210254,2.753448,0,3402.632,-,-
-4109.5,16773.6047593951,19.9999992370605,19.9999992370605,0,-0.4065948,1071.235,24.54502,24.54502,2300,-166.7673,2.753448,258.0128,-18.70787,2.753448,0,0,1,0,0,0,0,0,6.631319,0.3323833,-4.210254,2.753448,0,3402.632,-,-
-4110.5,16779.1603147388,19.9999992370605,19.9999992370605,0,-0.3012138,1071.235,34.2725,34.2725,2300,-166.7673,3.844671,258.0128,-18.70787,3.844671,0,0,1,0,0,0,0,0,6.631343,0.3323833,-3.119055,3.844671,0,3553.311,-,-
-4111.5,16784.7158700824,19.9999992370605,19.9999992370605,0,-0.3012138,1071.235,34.2725,34.2725,2300,-166.7673,3.844671,258.0128,-18.70787,3.844671,0,0,1,0,0,0,0,0,6.631343,0.3323833,-3.119055,3.844671,0,3553.311,-,-
-4112.5,16790.271425426,19.9999992370605,19.9999992370605,0,-0.3012138,1071.235,34.2725,34.2725,2300,-166.7673,3.844671,258.0128,-18.70787,3.844671,0,0,1,0,0,0,0,0,6.631343,0.3323833,-3.119055,3.844671,0,3553.311,-,-
-4113.5,16795.8269807696,19.9999992370605,19.9999992370605,0,-0.3012138,1071.235,34.2725,34.2725,2300,-166.7673,3.844671,258.0128,-18.70787,3.844671,0,0,1,0,0,0,0,0,6.631343,0.3323833,-3.119055,3.844671,0,3553.311,-,-
-4114.5,16801.3825361133,19.9999992370605,19.9999992370605,0,-0.195833,1071.235,44,44,2300,-166.7673,4.935897,258.0128,-18.70787,4.935897,0,0,1,0,0,0,0,0,6.631361,0.3323833,-2.027846,4.935897,0,3703.99,-,-
-4115.5,16806.9380914569,19.9999992370605,19.9999992370605,0,-0.195833,1071.235,44,44,2300,-166.7673,4.935897,258.0128,-18.70787,4.935897,0,0,1,0,0,0,0,0,6.631361,0.3323833,-2.027846,4.935897,0,3703.99,-,-
+2.5,0,0,0,0,-0.02023797,560,0,0,737.5,-149,0,43.24926,-8.737817,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1256,-,-
+3.5,0.585833489894867,2.10900056362152,6.40000004768372,1.171667,-0.02023797,593.1891,251.9296,239.0992,790.3951,-148.1703,15.64952,49.09825,-9.204132,14.85251,0.797003,0,1,0.4411134,0.3621955,0,0,13.37163,0.6992785,0.0003897439,-0.02209855,14.0492,0,3879.081,-,-
+4.5,2.44422763586044,6.69021892547607,12.8000000953674,1.373454,-0.02023797,705.5359,783.9048,742.7809,1048.548,-148.5277,57.91767,77.47046,-10.97375,54.87929,3.038382,0,1,1.735203,1.26038,0,0,49.7231,2.218267,0.01244143,-0.07010152,51.88371,0,11391.43,-,-
+5.5,5.49456590414047,10.9812177658081,12.8000000953674,1.010434,-0.02023797,1158.055,705.9471,561.1387,1616.595,-175.0153,85.61111,196.0466,-21.22433,68.05,17.56112,0,1,2.685254,1.740792,0,0,60.04298,3.641028,0.05501749,-0.1150635,63.62396,0,16352.29,-,-
+6.5,9.01983469724655,12.6909676551819,12.8000000953674,-0.06057358,-0.02023797,1158.055,0,0,1702.23,-175.0153,0,206.4316,-21.22433,0,0,0,0,0,0,0,0,-4.159887,4.207927,0.08492459,-0.1329786,-1.402199E-05,-1.402199E-05,3214.302,-,-
+7.5,12.5451034903526,12.6909676551819,12.8000000953674,0.06057358,-0.02023797,721.6246,-90.73808,135.3219,994.7091,-148.6081,-6.856927,75.16853,-11.23007,10.22605,-17.08298,0,3,0.8628288,1.043458,0,0,4.159887,4.207927,0.08492459,-0.1329786,8.319761,0,729.7839,-,-
+8.5,16.1006590723991,12.8000000953674,12.8000000953674,0,-0.02023797,727.8243,81.65738,79.2022,970.8336,-148.6391,6.223728,73.99458,-11.32891,6.0366,0.1871278,0,3,0.7870865,1.052423,0,0,0,4.244079,0.0871323,-0.1341211,4.197091,0,2526.851,-,-
+9.5,19.6562146544456,12.8000000953674,12.8000000953674,0,-0.02023797,727.8243,79.2022,79.2022,1035.192,-148.6391,6.0366,78.89983,-11.32891,6.0366,0,0,3,0.7870865,1.052423,0,0,0,4.244079,0.0871323,-0.1341211,4.197091,0,2497.303,-,-
+10.5,23.2117702364922,12.8000000953674,12.8000000953674,0,-0.02023797,727.8243,79.2022,79.2022,1034.271,-148.6391,6.0366,78.82966,-11.32891,6.0366,0,0,3,0.7870865,1.052423,0,0,0,4.244079,0.0871323,-0.1341211,4.197091,0,2497.303,-,-
+11.5,26.7673258185387,12.8000000953674,12.8000000953674,0,-0.02023797,727.8243,79.2022,79.2022,1034.271,-148.6391,6.0366,78.82966,-11.32891,6.0366,0,0,3,0.7870865,1.052423,0,0,0,4.244079,0.0871323,-0.1341211,4.197091,0,2497.303,-,-
+12.5,30.3228814005852,12.8000000953674,12.8000000953674,0,-0.02023797,727.8243,79.2022,79.2022,1034.271,-148.6391,6.0366,78.82966,-11.32891,6.0366,0,0,3,0.7870865,1.052423,0,0,0,4.244079,0.0871323,-0.1341211,4.197091,0,2497.303,-,-
+13.5,33.8784369826317,12.8000000953674,12.8000000953674,0,-0.02023797,727.8243,79.2022,79.2022,1034.271,-148.6391,6.0366,78.82966,-11.32891,6.0366,0,0,3,0.7870865,1.052423,0,0,0,4.244079,0.0871323,-0.1341211,4.197091,0,2497.303,-,-
+14.5,37.4339925646782,12.8000000953674,12.8000000953674,0,-0.02023797,727.8243,79.2022,79.2022,1034.271,-148.6391,6.0366,78.82966,-11.32891,6.0366,0,0,3,0.7870865,1.052423,0,0,0,4.244079,0.0871323,-0.1341211,4.197091,0,2497.303,-,-
+15.5,40.9895481467247,12.8000000953674,12.8000000953674,0,-0.02023797,727.8243,79.2022,79.2022,1034.271,-148.6391,6.0366,78.82966,-11.32891,6.0366,0,0,3,0.7870865,1.052423,0,0,0,4.244079,0.0871323,-0.1341211,4.197091,0,2497.303,-,-
+16.5,44.5451037287712,12.8000000953674,12.8000000953674,0,-0.02023797,727.8243,79.2022,79.2022,1034.271,-148.6391,6.0366,78.82966,-11.32891,6.0366,0,0,3,0.7870865,1.052423,0,0,0,4.244079,0.0871323,-0.1341211,4.197091,0,2497.303,-,-
+17.5,48.1006593108177,12.8000000953674,12.8000000953674,0,-0.02023797,727.8243,79.2022,79.2022,1034.271,-148.6391,6.0366,78.82966,-11.32891,6.0366,0,0,3,0.7870865,1.052423,0,0,0,4.244079,0.0871323,-0.1341211,4.197091,0,2497.303,-,-
+18.5,51.6562148928642,12.8000000953674,12.8000000953674,0,-0.02023797,727.8243,79.2022,79.2022,1034.271,-148.6391,6.0366,78.82966,-11.32891,6.0366,0,0,3,0.7870865,1.052423,0,0,0,4.244079,0.0871323,-0.1341211,4.197091,0,2497.303,-,-
+19.5,55.2117704749107,12.8000000953674,12.8000000953674,0,-0.02023797,727.8243,79.2022,79.2022,1034.271,-148.6391,6.0366,78.82966,-11.32891,6.0366,0,0,3,0.7870865,1.052423,0,0,0,4.244079,0.0871323,-0.1341211,4.197091,0,2497.303,-,-
+20.5,58.7673260569572,12.8000000953674,12.8000000953674,0,-0.02023797,727.8243,79.2022,79.2022,1034.271,-148.6391,6.0366,78.82966,-11.32891,6.0366,0,0,3,0.7870865,1.052423,0,0,0,4.244079,0.0871323,-0.1341211,4.197091,0,2497.303,-,-
+21.5,62.3228816390038,12.8000000953674,12.8000000953674,0,-0.02023797,727.8243,79.2022,79.2022,1034.271,-148.6391,6.0366,78.82966,-11.32891,6.0366,0,0,3,0.7870865,1.052423,0,0,0,4.244079,0.0871323,-0.1341211,4.197091,0,2497.303,-,-
+22.5,65.8784372210503,12.8000000953674,12.8000000953674,0,-0.02023797,727.8243,79.2022,79.2022,1034.271,-148.6391,6.0366,78.82966,-11.32891,6.0366,0,0,3,0.7870865,1.052423,0,0,0,4.244079,0.0871323,-0.1341211,4.197091,0,2497.303,-,-
+23.5,69.4339928030968,12.8000000953674,12.8000000953674,0,-0.1753066,727.8243,65.44357,65.44357,1034.271,-148.6391,4.987951,78.82966,-11.32891,4.987951,0,0,3,0.7661133,1.052423,0,0,0,4.244072,0.0871323,-1.16179,3.169415,0,2348.818,-,-
+24.5,72.9895483851433,12.8000000953674,12.8000000953674,0,-0.1753066,727.8243,65.44357,65.44357,1029.112,-148.6391,4.987951,78.43641,-11.32891,4.987951,0,0,3,0.7661133,1.052423,0,0,0,4.244072,0.0871323,-1.16179,3.169415,0,2348.818,-,-
+25.5,76.5451039671898,12.8000000953674,12.8000000953674,0,-0.1753066,727.8243,65.44357,65.44357,1029.112,-148.6391,4.987951,78.43641,-11.32891,4.987951,0,0,3,0.7661133,1.052423,0,0,0,4.244072,0.0871323,-1.16179,3.169415,0,2348.818,-,-
+26.5,80.1006595492363,12.8000000953674,12.8000000953674,0,-0.1753066,727.8243,65.44357,65.44357,1029.112,-148.6391,4.987951,78.43641,-11.32891,4.987951,0,0,3,0.7661133,1.052423,0,0,0,4.244072,0.0871323,-1.16179,3.169415,0,2348.818,-,-
+27.5,83.6562151312828,12.8000000953674,12.8000000953674,0,-0.1753066,727.8243,65.44357,65.44357,1029.112,-148.6391,4.987951,78.43641,-11.32891,4.987951,0,0,3,0.7661133,1.052423,0,0,0,4.244072,0.0871323,-1.16179,3.169415,0,2348.818,-,-
+28.5,87.2117707133293,12.8000000953674,12.8000000953674,0,-0.1753066,727.8243,65.44357,65.44357,1029.112,-148.6391,4.987951,78.43641,-11.32891,4.987951,0,0,3,0.7661133,1.052423,0,0,0,4.244072,0.0871323,-1.16179,3.169415,0,2348.818,-,-
+29.5,90.7673262953758,12.8000000953674,12.8000000953674,0,-0.2954839,727.8243,54.78071,54.78071,1029.112,-148.6391,4.175253,78.43641,-11.32891,4.175253,0,0,3,0.7498594,1.052423,0,0,0,4.244061,0.0871323,-1.958222,2.372971,0,2247.574,-,-
+30.5,94.3228818774223,12.8000000953674,12.8000000953674,0,-0.2954839,727.8243,54.78071,54.78071,1025.113,-148.6391,4.175253,78.13165,-11.32891,4.175253,0,0,3,0.7498594,1.052423,0,0,0,4.244061,0.0871323,-1.958222,2.372971,0,2247.574,-,-
+31.5,97.8784374594688,12.8000000953674,12.8000000953674,0,-0.2954839,727.8243,54.78071,54.78071,1025.113,-148.6391,4.175253,78.13165,-11.32891,4.175253,0,0,3,0.7498594,1.052423,0,0,0,4.244061,0.0871323,-1.958222,2.372971,0,2247.574,-,-
+32.5,101.433993041515,12.8000000953674,12.8000000953674,0,-0.2954839,727.8243,54.78071,54.78071,1025.113,-148.6391,4.175253,78.13165,-11.32891,4.175253,0,0,3,0.7498594,1.052423,0,0,0,4.244061,0.0871323,-1.958222,2.372971,0,2247.574,-,-
+33.5,104.989548623562,12.8000000953674,12.8000000953674,0,-0.2954839,727.8243,54.78071,54.78071,1025.113,-148.6391,4.175253,78.13165,-11.32891,4.175253,0,0,3,0.7498594,1.052423,0,0,0,4.244061,0.0871323,-1.958222,2.372971,0,2247.574,-,-
+34.5,108.545104205608,12.8000000953674,12.8000000953674,0,-0.2954839,727.8243,54.78071,54.78071,1025.113,-148.6391,4.175253,78.13165,-11.32891,4.175253,0,0,3,0.7498594,1.052423,0,0,0,4.244061,0.0871323,-1.958222,2.372971,0,2247.574,-,-
+35.5,112.100659787655,12.8000000953674,12.8000000953674,0,-0.2954839,727.8243,54.78071,54.78071,1025.113,-148.6391,4.175253,78.13165,-11.32891,4.175253,0,0,3,0.7498594,1.052423,0,0,0,4.244061,0.0871323,-1.958222,2.372971,0,2247.574,-,-
+36.5,115.656215369701,12.8000000953674,12.8000000953674,0,-0.2954839,727.8243,54.78071,54.78071,1025.113,-148.6391,4.175253,78.13165,-11.32891,4.175253,0,0,3,0.7498594,1.052423,0,0,0,4.244061,0.0871323,-1.958222,2.372971,0,2247.574,-,-
+37.5,119.211770951748,12.8000000953674,12.8000000953674,0,-0.4070192,727.8243,45.03658,45.03658,1025.113,-148.6391,3.432579,78.13165,-11.32891,3.432579,0,0,3,0.7463549,1.052423,0,0,0,4.244044,0.0871323,-2.697375,1.633801,0,2155.053,-,-
+38.5,122.767326533794,12.8000000953674,12.8000000953674,0,-0.4070192,727.8243,45.03658,45.03658,1021.459,-148.6391,3.432579,77.85315,-11.32891,3.432579,0,0,3,0.7463549,1.052423,0,0,0,4.244044,0.0871323,-2.697375,1.633801,0,2155.053,-,-
+39.5,126.322882115841,12.8000000953674,12.8000000953674,0,-0.4070192,727.8243,45.03658,45.03658,1021.459,-148.6391,3.432579,77.85315,-11.32891,3.432579,0,0,3,0.7463549,1.052423,0,0,0,4.244044,0.0871323,-2.697375,1.633801,0,2155.053,-,-
+40.5,129.878437697887,12.8000000953674,12.8000000953674,0,-0.4070192,727.8243,45.03658,45.03658,1021.459,-148.6391,3.432579,77.85315,-11.32891,3.432579,0,0,3,0.7463549,1.052423,0,0,0,4.244044,0.0871323,-2.697375,1.633801,0,2155.053,-,-
+41.5,133.433993279934,12.8000000953674,12.8000000953674,0,-0.4070192,727.8243,45.03658,45.03658,1021.459,-148.6391,3.432579,77.85315,-11.32891,3.432579,0,0,3,0.7463549,1.052423,0,0,0,4.244044,0.0871323,-2.697375,1.633801,0,2155.053,-,-
+42.5,136.98954886198,12.8000000953674,12.8000000953674,0,-0.4070192,727.8243,45.03658,45.03658,1021.459,-148.6391,3.432579,77.85315,-11.32891,3.432579,0,0,3,0.7463549,1.052423,0,0,0,4.244044,0.0871323,-2.697375,1.633801,0,2155.053,-,-
+43.5,140.545104444027,12.8000000953674,12.8000000953674,0,-0.4070192,727.8243,45.03658,45.03658,1021.459,-148.6391,3.432579,77.85315,-11.32891,3.432579,0,0,3,0.7463549,1.052423,0,0,0,4.244044,0.0871323,-2.697375,1.633801,0,2155.053,-,-
+44.5,144.100660026073,12.8000000953674,12.8000000953674,0,-0.4070192,727.8243,45.03658,45.03658,1021.459,-148.6391,3.432579,77.85315,-11.32891,3.432579,0,0,3,0.7463549,1.052423,0,0,0,4.244044,0.0871323,-2.697375,1.633801,0,2155.053,-,-
+45.5,147.65621560812,12.8000000953674,12.8000000953674,0,-0.4070192,727.8243,45.03658,45.03658,1021.459,-148.6391,3.432579,77.85315,-11.32891,3.432579,0,0,3,0.7463549,1.052423,0,0,0,4.244044,0.0871323,-2.697375,1.633801,0,2155.053,-,-
+46.5,151.211771190166,12.8000000953674,12.8000000953674,0,-0.5113649,727.8243,36.05346,36.05346,1021.459,-148.6391,2.747908,77.85315,-11.32891,2.747908,0,0,3,0.7532017,1.052423,0,0,0,4.244024,0.0871323,-3.388873,0.9422829,0,2069.759,-,-
+47.5,154.767326772213,12.8000000953674,12.8000000953674,0,-0.5113649,727.8243,36.05346,36.05346,1018.09,-148.6391,2.747908,77.59639,-11.32891,2.747908,0,0,3,0.7532017,1.052423,0,0,0,4.244024,0.0871323,-3.388873,0.9422829,0,2069.759,-,-
+48.5,158.322882354259,12.8000000953674,12.8000000953674,0,-0.5113649,727.8243,36.05346,36.05346,1018.09,-148.6391,2.747908,77.59639,-11.32891,2.747908,0,0,3,0.7532017,1.052423,0,0,0,4.244024,0.0871323,-3.388873,0.9422829,0,2069.759,-,-
+49.5,161.878437936306,12.8000000953674,12.8000000953674,0,-0.5113649,727.8243,36.05346,36.05346,1018.09,-148.6391,2.747908,77.59639,-11.32891,2.747908,0,0,3,0.7532017,1.052423,0,0,0,4.244024,0.0871323,-3.388873,0.9422829,0,2069.759,-,-
+50.5,165.433993518353,12.8000000953674,12.8000000953674,0,-0.5113649,727.8243,36.05346,36.05346,1018.09,-148.6391,2.747908,77.59639,-11.32891,2.747908,0,0,3,0.7532017,1.052423,0,0,0,4.244024,0.0871323,-3.388873,0.9422829,0,2069.759,-,-
+51.5,168.989549100399,12.8000000953674,12.8000000953674,0,-0.5113649,727.8243,36.05346,36.05346,1018.09,-148.6391,2.747908,77.59639,-11.32891,2.747908,0,0,3,0.7532017,1.052423,0,0,0,4.244024,0.0871323,-3.388873,0.9422829,0,2069.759,-,-
+52.5,172.545104682446,12.8000000953674,12.8000000953674,0,-0.5113649,727.8243,36.05346,36.05346,1018.09,-148.6391,2.747908,77.59639,-11.32891,2.747908,0,0,3,0.7532017,1.052423,0,0,0,4.244024,0.0871323,-3.388873,0.9422829,0,2069.759,-,-
+53.5,176.100660264492,12.8000000953674,12.8000000953674,0,-0.5113649,727.8243,36.05346,36.05346,1018.09,-148.6391,2.747908,77.59639,-11.32891,2.747908,0,0,3,0.7532017,1.052423,0,0,0,4.244024,0.0871323,-3.388873,0.9422829,0,2069.759,-,-
+54.5,179.656215846539,12.8000000953674,12.8000000953674,0,-0.6157106,727.8243,27.07043,27.07043,1018.09,-148.6391,2.063242,77.59639,-11.32891,2.063242,0,0,3,0.7600483,1.052423,0,0,0,4.243999,0.0871323,-4.08036,0.250771,0,1984.465,-,-
+55.5,183.211771428585,12.8000000953674,12.8000000953674,0,-0.6157106,727.8243,27.07043,27.07043,1014.722,-148.6391,2.063242,77.33965,-11.32891,2.063242,0,0,3,0.7600483,1.052423,0,0,0,4.243999,0.0871323,-4.08036,0.250771,0,1984.465,-,-
+56.5,186.767327010632,12.8000000953674,12.8000000953674,0,-0.6157106,727.8243,27.07043,27.07043,1014.722,-148.6391,2.063242,77.33965,-11.32891,2.063242,0,0,3,0.7600483,1.052423,0,0,0,4.243999,0.0871323,-4.08036,0.250771,0,1984.465,-,-
+57.5,190.322882592678,12.8000000953674,12.8000000953674,0,-0.6157106,727.8243,27.07043,27.07043,1014.722,-148.6391,2.063242,77.33965,-11.32891,2.063242,0,0,3,0.7600483,1.052423,0,0,0,4.243999,0.0871323,-4.08036,0.250771,0,1984.465,-,-
+58.5,193.878438174725,12.8000000953674,12.8000000953674,0,-0.6157106,727.8243,27.07043,27.07043,1014.722,-148.6391,2.063242,77.33965,-11.32891,2.063242,0,0,3,0.7600483,1.052423,0,0,0,4.243999,0.0871323,-4.08036,0.250771,0,1984.465,-,-
+59.5,197.433993756771,12.8000000953674,12.8000000953674,0,-0.6157106,727.8243,27.07043,27.07043,1014.722,-148.6391,2.063242,77.33965,-11.32891,2.063242,0,0,3,0.7600483,1.052423,0,0,0,4.243999,0.0871323,-4.08036,0.250771,0,1984.465,-,-
+60.5,200.989549338818,12.8000000953674,12.8000000953674,0,-0.6157106,727.8243,27.07043,27.07043,1014.722,-148.6391,2.063242,77.33965,-11.32891,2.063242,0,0,3,0.7600483,1.052423,0,0,0,4.243999,0.0871323,-4.08036,0.250771,0,1984.465,-,-
+61.5,204.545104920864,12.8000000953674,12.8000000953674,0,-0.6157106,727.8243,27.07043,27.07043,1014.722,-148.6391,2.063242,77.33965,-11.32891,2.063242,0,0,3,0.7600483,1.052423,0,0,0,4.243999,0.0871323,-4.08036,0.250771,0,1984.465,-,-
+62.5,208.100660502911,12.8000000953674,12.8000000953674,0,-0.705569,727.8243,19.33468,19.33468,1014.722,-148.6391,1.473643,77.33965,-11.32891,1.473643,0,0,3,0.7659443,1.052423,0,0,0,4.243974,0.0871323,-4.675831,-0.3447247,0,1911.014,-,-
+63.5,211.656216084957,12.8000000953674,12.8000000953674,0,-0.7954275,727.8243,11.59904,11.59904,1011.821,-148.6391,0.8840505,77.11855,-11.32891,0.8840505,0,0,3,0.7718402,1.052423,0,0,0,4.243945,0.0871323,-5.27129,-0.9402127,0,1837.564,-,-
+64.5,215.211771667004,12.8000000953674,12.8000000953674,0,-0.7954275,727.8243,11.59904,11.59904,1008.92,-148.6391,0.8840505,76.89745,-11.32891,0.8840505,0,0,3,0.7718402,1.052423,0,0,0,4.243945,0.0871323,-5.27129,-0.9402127,0,1837.564,-,-
+65.5,218.76732724905,12.8000000953674,12.8000000953674,0,-0.8640338,727.8243,5.693007,5.693007,1008.92,-148.6391,0.4339073,76.89745,-11.32891,0.4339073,0,0,3,0.7763417,1.052423,0,0,0,4.243921,0.0871323,-5.725911,-1.394857,0,1781.486,-,-
+66.5,222.322882831097,12.8000000953674,12.8000000953674,0,-0.9326401,727.8243,-0.2129522,-0.2129522,1006.705,-148.6391,-0.0162307,76.72865,-11.32891,-0.0162307,0,0,3,0.780843,1.052423,0,0,0,4.243895,0.0871323,-6.180524,-1.849497,0,1725.332,-,-
+67.5,225.878438413143,12.8000000953674,12.8000000953674,0,-0.9326401,727.8243,-0.2129522,-0.2129522,1004.491,-148.6391,-0.0162307,76.55984,-11.32891,-0.0162307,0,0,3,0.780843,1.052423,0,0,0,4.243895,0.0871323,-6.180524,-1.849497,0,1725.332,-,-
+68.5,229.43399399519,12.8000000953674,12.8000000953674,0,-1.069853,727.8243,-12.02457,-12.02457,1004.491,-148.6391,-0.9164836,76.55984,-11.32891,-0.9164836,0,0,3,0.7898456,1.052423,0,0,0,4.243836,0.0871323,-7.089721,-2.758752,0,1608.891,-,-
+69.5,232.989549577236,12.8000000953674,12.8000000953674,0,-1.069853,727.8243,-12.02457,-12.02457,1000.061,-148.6391,-0.9164836,76.22224,-11.32891,-0.9164836,0,0,3,0.7898456,1.052423,0,0,0,4.243836,0.0871323,-7.089721,-2.758752,0,1608.891,-,-
+70.5,236.545105159283,12.8000000953674,12.8000000953674,0,-1.069853,727.8243,-12.02457,-12.02457,1000.061,-148.6391,-0.9164836,76.22224,-11.32891,-0.9164836,0,0,3,0.7898456,1.052423,0,0,0,4.243836,0.0871323,-7.089721,-2.758752,0,1608.891,-,-
+71.5,240.100660741329,12.8000000953674,12.8000000953674,0,-1.069853,727.8243,-12.02457,-12.02457,1000.061,-148.6391,-0.9164836,76.22224,-11.32891,-0.9164836,0,0,3,0.7898456,1.052423,0,0,0,4.243836,0.0871323,-7.089721,-2.758752,0,1608.891,-,-
+72.5,243.656216323376,12.8000000953674,12.8000000953674,0,-1.069853,727.8243,-12.02457,-12.02457,1000.061,-148.6391,-0.9164836,76.22224,-11.32891,-0.9164836,0,0,3,0.7898456,1.052423,0,0,0,4.243836,0.0871323,-7.089721,-2.758752,0,1608.891,-,-
+73.5,247.211771905422,12.8000000953674,12.8000000953674,0,-1.069853,727.8243,-12.02457,-12.02457,1000.061,-148.6391,-0.9164836,76.22224,-11.32891,-0.9164836,0,0,3,0.7898456,1.052423,0,0,0,4.243836,0.0871323,-7.089721,-2.758752,0,1608.891,-,-
+74.5,250.767327487469,12.8000000953674,12.8000000953674,0,-1.193272,727.8243,-22.64845,-22.64845,1000.061,-148.6391,-1.72621,76.22224,-11.32891,-1.72621,0,0,3,0.7979429,1.052423,0,0,0,4.243777,0.0871323,-7.907486,-3.576576,0,1504.16,-,-
+75.5,254.322883069515,12.8000000953674,12.8000000953674,0,-1.193272,727.8243,-22.64845,-22.64845,996.0772,-148.6391,-1.72621,75.91859,-11.32891,-1.72621,0,0,3,0.7979429,1.052423,0,0,0,4.243777,0.0871323,-7.907486,-3.576576,0,1504.16,-,-
+76.5,257.878438651562,12.8000000953674,12.8000000953674,0,-1.193272,727.8243,-22.64845,-22.64845,996.0772,-148.6391,-1.72621,75.91859,-11.32891,-1.72621,0,0,3,0.7979429,1.052423,0,0,0,4.243777,0.0871323,-7.907486,-3.576576,0,1504.16,-,-
+77.5,261.433994233608,12.8000000953674,12.8000000953674,0,-1.193272,727.8243,-22.64845,-22.64845,996.0772,-148.6391,-1.72621,75.91859,-11.32891,-1.72621,0,0,3,0.7979429,1.052423,0,0,0,4.243777,0.0871323,-7.907486,-3.576576,0,1504.16,-,-
+78.5,264.989549815655,12.8000000953674,12.8000000953674,0,-1.193272,727.8243,-22.64845,-22.64845,996.0772,-148.6391,-1.72621,75.91859,-11.32891,-1.72621,0,0,3,0.7979429,1.052423,0,0,0,4.243777,0.0871323,-7.907486,-3.576576,0,1504.16,-,-
+79.5,268.545105397701,12.8000000953674,12.8000000953674,0,-1.193272,727.8243,-22.64845,-22.64845,996.0772,-148.6391,-1.72621,75.91859,-11.32891,-1.72621,0,0,3,0.7979429,1.052423,0,0,0,4.243777,0.0871323,-7.907486,-3.576576,0,1504.16,-,-
+80.5,272.100660979748,12.8000000953674,12.8000000953674,0,-1.193272,727.8243,-22.64845,-22.64845,996.0772,-148.6391,-1.72621,75.91859,-11.32891,-1.72621,0,0,3,0.7979429,1.052423,0,0,0,4.243777,0.0871323,-7.907486,-3.576576,0,1504.16,-,-
+81.5,275.656216561794,12.8000000953674,12.8000000953674,0,-1.193272,727.8243,-22.64845,-22.64845,996.0772,-148.6391,-1.72621,75.91859,-11.32891,-1.72621,0,0,3,0.7979429,1.052423,0,0,0,4.243777,0.0871323,-7.907486,-3.576576,0,1504.16,-,-
+82.5,279.211772143841,12.8000000953674,12.8000000953674,0,-1.302897,727.8243,-32.08464,-32.08464,996.0772,-148.6391,-2.445414,75.91859,-11.32891,-2.445414,0,0,3,0.805135,1.052423,0,0,0,4.243719,0.0871323,-8.633823,-4.302972,0,1411.137,-,-
+83.5,282.767327725887,12.8000000953674,12.8000000953674,0,-1.302897,727.8243,-32.08464,-32.08464,992.5386,-148.6391,-2.445414,75.6489,-11.32891,-2.445414,0,0,3,0.805135,1.052423,0,0,0,4.243719,0.0871323,-8.633823,-4.302972,0,1411.137,-,-
+84.5,286.322883307934,12.8000000953674,12.8000000953674,0,-1.302897,727.8243,-32.08464,-32.08464,992.5386,-148.6391,-2.445414,75.6489,-11.32891,-2.445414,0,0,3,0.805135,1.052423,0,0,0,4.243719,0.0871323,-8.633823,-4.302972,0,1411.137,-,-
+85.5,289.87843888998,12.8000000953674,12.8000000953674,0,-1.302897,727.8243,-32.08464,-32.08464,992.5386,-148.6391,-2.445414,75.6489,-11.32891,-2.445414,0,0,3,0.805135,1.052423,0,0,0,4.243719,0.0871323,-8.633823,-4.302972,0,1411.137,-,-
+86.5,293.433994472027,12.8000000953674,12.8000000953674,0,-1.302897,727.8243,-32.08464,-32.08464,992.5386,-148.6391,-2.445414,75.6489,-11.32891,-2.445414,0,0,3,0.805135,1.052423,0,0,0,4.243719,0.0871323,-8.633823,-4.302972,0,1411.137,-,-
+87.5,296.989550054073,12.8000000953674,12.8000000953674,0,-1.302897,727.8243,-32.08464,-32.08464,992.5386,-148.6391,-2.445414,75.6489,-11.32891,-2.445414,0,0,3,0.805135,1.052423,0,0,0,4.243719,0.0871323,-8.633823,-4.302972,0,1411.137,-,-
+88.5,300.54510563612,12.8000000953674,12.8000000953674,0,-1.302897,727.8243,-32.08464,-32.08464,992.5386,-148.6391,-2.445414,75.6489,-11.32891,-2.445414,0,0,3,0.805135,1.052423,0,0,0,4.243719,0.0871323,-8.633823,-4.302972,0,1411.137,-,-
+89.5,304.100661218166,12.8000000953674,12.8000000953674,0,-1.302897,727.8243,-32.08464,-32.08464,992.5386,-148.6391,-2.445414,75.6489,-11.32891,-2.445414,0,0,3,0.805135,1.052423,0,0,0,4.243719,0.0871323,-8.633823,-4.302972,0,1411.137,-,-
+90.5,307.656216800213,12.8000000953674,12.8000000953674,0,-1.302897,727.8243,-32.08464,-32.08464,992.5386,-148.6391,-2.445414,75.6489,-11.32891,-2.445414,0,0,3,0.805135,1.052423,0,0,0,4.243719,0.0871323,-8.633823,-4.302972,0,1411.137,-,-
+91.5,311.211772382259,12.8000000953674,12.8000000953674,0,-1.412522,727.8243,-41.5205,-41.5205,992.5386,-148.6391,-3.164592,75.6489,-11.32891,-3.164592,0,0,3,0.8123267,1.052423,0,0,0,4.243656,0.0871323,-9.36013,-5.029342,0,1318.117,-,-
+92.5,314.767327964306,12.8000000953674,12.8000000953674,0,-1.412522,727.8243,-41.5205,-41.5205,989.0002,-148.6391,-3.164592,75.3792,-11.32891,-3.164592,0,0,3,0.8123267,1.052423,0,0,0,4.243656,0.0871323,-9.36013,-5.029342,0,1318.117,-,-
+93.5,318.322883546352,12.8000000953674,12.8000000953674,0,-1.412522,727.8243,-41.5205,-41.5205,989.0002,-148.6391,-3.164592,75.3792,-11.32891,-3.164592,0,0,3,0.8123267,1.052423,0,0,0,4.243656,0.0871323,-9.36013,-5.029342,0,1318.117,-,-
+94.5,321.878439128399,12.8000000953674,12.8000000953674,0,-1.412522,727.8243,-41.5205,-41.5205,989.0002,-148.6391,-3.164592,75.3792,-11.32891,-3.164592,0,0,3,0.8123267,1.052423,0,0,0,4.243656,0.0871323,-9.36013,-5.029342,0,1318.117,-,-
+95.5,325.433994710445,12.8000000953674,12.8000000953674,0,-1.412522,727.8243,-41.5205,-41.5205,989.0002,-148.6391,-3.164592,75.3792,-11.32891,-3.164592,0,0,3,0.8123267,1.052423,0,0,0,4.243656,0.0871323,-9.36013,-5.029342,0,1318.117,-,-
+96.5,328.989550292492,12.8000000953674,12.8000000953674,0,-1.412522,727.8243,-41.5205,-41.5205,989.0002,-148.6391,-3.164592,75.3792,-11.32891,-3.164592,0,0,3,0.8123267,1.052423,0,0,0,4.243656,0.0871323,-9.36013,-5.029342,0,1318.117,-,-
+97.5,332.545105874538,12.8000000953674,12.8000000953674,0,-1.412522,727.8243,-41.5205,-41.5205,989.0002,-148.6391,-3.164592,75.3792,-11.32891,-3.164592,0,0,3,0.8123267,1.052423,0,0,0,4.243656,0.0871323,-9.36013,-5.029342,0,1318.117,-,-
+98.5,336.100661456585,12.8000000953674,12.8000000953674,0,-1.412522,727.8243,-41.5205,-41.5205,989.0002,-148.6391,-3.164592,75.3792,-11.32891,-3.164592,0,0,3,0.8123267,1.052423,0,0,0,4.243656,0.0871323,-9.36013,-5.029342,0,1318.117,-,-
+99.5,339.656217038631,12.8000000953674,12.8000000953674,0,-1.522147,727.8243,-50.95599,-50.95599,989.0002,-148.6391,-3.883742,75.3792,-11.32891,-3.883742,0,0,3,0.819518,1.052423,0,0,0,4.243587,0.0871323,-10.0864,-5.755683,0,1225.101,-,-
+100.5,343.211772620678,12.8000000953674,12.8000000953674,0,-1.522147,727.8243,-50.95599,-50.95599,985.462,-148.6391,-3.883742,75.10953,-11.32891,-3.883742,0,0,3,0.819518,1.052423,0,0,0,4.243587,0.0871323,-10.0864,-5.755683,0,1225.101,-,-
+101.5,346.767328202724,12.8000000953674,12.8000000953674,0,-1.522147,727.8243,-50.95599,-50.95599,985.462,-148.6391,-3.883742,75.10953,-11.32891,-3.883742,0,0,3,0.819518,1.052423,0,0,0,4.243587,0.0871323,-10.0864,-5.755683,0,1225.101,-,-
+102.5,350.322883784771,12.8000000953674,12.8000000953674,0,-1.522147,727.8243,-50.95599,-50.95599,985.462,-148.6391,-3.883742,75.10953,-11.32891,-3.883742,0,0,3,0.819518,1.052423,0,0,0,4.243587,0.0871323,-10.0864,-5.755683,0,1225.101,-,-
+103.5,353.878439366817,12.8000000953674,12.8000000953674,0,-1.522147,727.8243,-50.95599,-50.95599,985.462,-148.6391,-3.883742,75.10953,-11.32891,-3.883742,0,0,3,0.819518,1.052423,0,0,0,4.243587,0.0871323,-10.0864,-5.755683,0,1225.101,-,-
+104.5,357.433994948864,12.8000000953674,12.8000000953674,0,-1.522147,727.8243,-50.95599,-50.95599,985.462,-148.6391,-3.883742,75.10953,-11.32891,-3.883742,0,0,3,0.819518,1.052423,0,0,0,4.243587,0.0871323,-10.0864,-5.755683,0,1225.101,-,-
+105.5,360.98955053091,12.8000000953674,12.8000000953674,0,-1.522147,727.8243,-50.95599,-50.95599,985.462,-148.6391,-3.883742,75.10953,-11.32891,-3.883742,0,0,3,0.819518,1.052423,0,0,0,4.243587,0.0871323,-10.0864,-5.755683,0,1225.101,-,-
+106.5,364.545106112957,12.8000000953674,12.8000000953674,0,-1.522147,727.8243,-50.95599,-50.95599,985.462,-148.6391,-3.883742,75.10953,-11.32891,-3.883742,0,0,3,0.819518,1.052423,0,0,0,4.243587,0.0871323,-10.0864,-5.755683,0,1225.101,-,-
+107.5,368.100661695004,12.8000000953674,12.8000000953674,0,-1.576959,727.8243,-55.67356,-55.67356,985.462,-148.6391,-4.243304,75.10953,-11.32891,-4.243304,0,0,3,0.8231137,1.052423,0,0,0,4.243552,0.0871323,-10.44953,-6.118842,0,1172.364,-,-
+108.5,371.65621727705,12.8000000953674,12.8000000953674,0,-1.631772,727.8243,-60.39106,-60.39106,983.6928,-148.6391,-4.60286,74.97469,-11.32891,-4.60286,0,0,3,0.8267092,1.052423,0,0,0,4.243514,0.0871323,-10.81264,-6.481993,0,1112.873,-,-
+109.5,375.211772859097,12.8000000953674,12.8000000953674,0,-1.631772,727.8243,-60.39106,-60.39106,981.9238,-148.6391,-4.60286,74.83985,-11.32891,-4.60286,0,0,3,0.8267092,1.052423,0,0,0,4.243514,0.0871323,-10.81264,-6.481993,0,1112.873,-,-
+110.5,378.767328441143,12.8000000953674,12.8000000953674,0,-1.631772,727.8243,-60.39106,-60.39106,981.9238,-148.6391,-4.60286,74.83985,-11.32891,-4.60286,0,0,3,0.8267092,1.052423,0,0,0,4.243514,0.0871323,-10.81264,-6.481993,0,1112.873,-,-
+111.5,382.32288402319,12.8000000953674,12.8000000953674,0,-1.631772,727.8243,-60.39106,-60.39106,981.9238,-148.6391,-4.60286,74.83985,-11.32891,-4.60286,0,0,3,0.8267092,1.052423,0,0,0,4.243514,0.0871323,-10.81264,-6.481993,0,1112.873,-,-
+112.5,385.878439605236,12.8000000953674,12.8000000953674,0,-1.631772,727.8243,-60.39106,-60.39106,981.9238,-148.6391,-4.60286,74.83985,-11.32891,-4.60286,0,0,3,0.8267092,1.052423,0,0,0,4.243514,0.0871323,-10.81264,-6.481993,0,1112.873,-,-
+113.5,389.433995187283,12.8000000953674,12.8000000953674,0,-1.631772,727.8243,-60.39106,-60.39106,981.9238,-148.6391,-4.60286,74.83985,-11.32891,-4.60286,0,0,3,0.8267092,1.052423,0,0,0,4.243514,0.0871323,-10.81264,-6.481993,0,1112.873,-,-
+114.5,392.989550769329,12.8000000953674,12.8000000953674,0,-1.631772,727.8243,-60.39106,-60.39106,981.9238,-148.6391,-4.60286,74.83985,-11.32891,-4.60286,0,0,3,0.8267092,1.052423,0,0,0,4.243514,0.0871323,-10.81264,-6.481993,0,1112.873,-,-
+115.5,396.545106351376,12.8000000953674,12.8000000953674,0,-1.631772,727.8243,-60.39106,-60.39106,981.9238,-148.6391,-4.60286,74.83985,-11.32891,-4.60286,0,0,3,0.8267092,1.052423,0,0,0,4.243514,0.0871323,-10.81264,-6.481993,0,1112.873,-,-
+116.5,400.100661933422,12.8000000953674,12.8000000953674,0,-1.741397,727.8243,-69.8257,-69.8257,981.9238,-148.6391,-5.321946,74.83985,-11.32891,-5.321946,0,0,3,0.8339003,1.052423,0,0,0,4.243436,0.0871323,-11.53884,-7.208269,0,993.8954,-,-
+117.5,403.656217515469,12.8000000953674,12.8000000953674,0,-1.741397,727.8243,-69.8257,-69.8257,978.3858,-148.6391,-5.321946,74.5702,-11.32891,-5.321946,0,0,3,0.8339003,1.052423,0,0,0,4.243436,0.0871323,-11.53884,-7.208269,0,993.8954,-,-
+118.5,407.211773097515,12.8000000953674,12.8000000953674,0,-1.741397,727.8243,-69.8257,-69.8257,978.3858,-148.6391,-5.321946,74.5702,-11.32891,-5.321946,0,0,3,0.8339003,1.052423,0,0,0,4.243436,0.0871323,-11.53884,-7.208269,0,993.8954,-,-
+119.5,410.767328679562,12.8000000953674,12.8000000953674,0,-1.741397,727.8243,-69.8257,-69.8257,978.3858,-148.6391,-5.321946,74.5702,-11.32891,-5.321946,0,0,3,0.8339003,1.052423,0,0,0,4.243436,0.0871323,-11.53884,-7.208269,0,993.8954,-,-
+120.5,414.322884261608,12.8000000953674,12.8000000953674,0,-1.741397,727.8243,-69.8257,-69.8257,978.3858,-148.6391,-5.321946,74.5702,-11.32891,-5.321946,0,0,3,0.8339003,1.052423,0,0,0,4.243436,0.0871323,-11.53884,-7.208269,0,993.8954,-,-
+121.5,417.878439843655,12.8000000953674,12.8000000953674,0,-1.741397,727.8243,-69.8257,-69.8257,978.3858,-148.6391,-5.321946,74.5702,-11.32891,-5.321946,0,0,3,0.8339003,1.052423,0,0,0,4.243436,0.0871323,-11.53884,-7.208269,0,993.8954,-,-
+122.5,421.433995425701,12.8000000953674,12.8000000953674,0,-1.581219,727.8243,-56.0402,-56.0402,978.3858,-148.6391,-4.271249,74.5702,-11.32891,-4.271249,0,0,3,0.8233933,1.052423,0,0,0,4.243549,0.0871323,-10.47775,-6.147065,0,1167.741,-,-
+123.5,424.989551007748,12.8000000953674,12.8000000953674,0,-1.581219,727.8243,-56.0402,-56.0402,983.5554,-148.6391,-4.271249,74.96421,-11.32891,-4.271249,0,0,3,0.8233933,1.052423,0,0,0,4.243549,0.0871323,-10.47775,-6.147065,0,1167.741,-,-
+124.5,428.545106589794,12.8000000953674,12.8000000953674,0,-1.530884,727.8243,-51.70796,-51.70796,983.5554,-148.6391,-3.941056,74.96421,-11.32891,-3.941056,0,0,3,0.8200914,1.052423,0,0,0,4.243582,0.0871323,-10.14428,-5.81357,0,1217.688,-,-
+125.5,432.100662171841,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,985.18,-148.6391,-3.610855,75.08804,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+126.5,435.656217753887,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+127.5,439.211773335934,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+128.5,442.76732891798,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+129.5,446.322884500027,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+130.5,449.878440082073,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+131.5,453.43399566412,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+132.5,456.989551246166,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+133.5,460.545106828213,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+134.5,464.100662410259,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+135.5,467.656217992306,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+136.5,471.211773574352,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+137.5,474.767329156399,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+138.5,478.322884738445,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+139.5,481.878440320492,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+140.5,485.433995902538,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+141.5,488.989551484585,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+142.5,492.545107066631,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+143.5,496.100662648678,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+144.5,499.656218230724,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+145.5,503.211773812771,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+146.5,506.767329394817,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+147.5,510.322884976864,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+148.5,513.87844055891,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+149.5,517.433996140957,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+150.5,520.989551723003,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+151.5,524.54510730505,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+152.5,528.100662887096,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+153.5,531.656218469143,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+154.5,535.211774051189,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+155.5,538.767329633236,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+156.5,542.322885215282,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+157.5,545.878440797329,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+158.5,549.433996379375,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+159.5,552.989551961422,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+160.5,556.545107543468,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+161.5,560.100663125515,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+162.5,563.656218707561,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+163.5,567.211774289608,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+164.5,570.767329871655,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+165.5,574.322885453701,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+166.5,577.878441035748,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+167.5,581.433996617794,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+168.5,584.989552199841,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+169.5,588.545107781887,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+170.5,592.100663363934,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+171.5,595.65621894598,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+172.5,599.211774528027,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+173.5,602.767330110073,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+174.5,606.32288569212,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+175.5,609.878441274166,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+176.5,613.433996856213,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+177.5,616.989552438259,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+178.5,620.545108020306,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+179.5,624.100663602352,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+180.5,627.656219184399,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+181.5,631.211774766445,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+182.5,634.767330348492,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+183.5,638.322885930538,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+184.5,641.878441512585,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+185.5,645.433997094631,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+186.5,648.989552676678,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+187.5,652.545108258724,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+188.5,656.100663840771,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+189.5,659.656219422817,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+190.5,663.211775004864,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+191.5,666.76733058691,12.8000000953674,12.8000000953674,0,-1.480548,727.8243,-47.37561,-47.37561,986.8046,-148.6391,-3.610855,75.21186,-11.32891,-3.610855,0,0,3,0.8167894,1.052423,0,0,0,4.243614,0.0871323,-9.810814,-5.480067,0,1260.397,-,-
+192.5,670.322886168957,12.8000000953674,12.8000000953674,0,-1.366027,727.8243,-37.51855,-37.51855,986.8046,-148.6391,-2.859573,75.21186,-11.32891,-2.859573,0,0,3,0.8092763,1.052423,0,0,0,4.243683,0.0871323,-9.052088,-4.721272,0,1357.569,-,-
+193.5,673.878441751003,12.8000000953674,12.8000000953674,0,-1.366027,727.8243,-37.51855,-37.51855,990.501,-148.6391,-2.859573,75.49359,-11.32891,-2.859573,0,0,3,0.8092763,1.052423,0,0,0,4.243683,0.0871323,-9.052088,-4.721272,0,1357.569,-,-
+194.5,677.43399733305,12.8000000953674,12.8000000953674,0,-1.366027,727.8243,-37.51855,-37.51855,990.501,-148.6391,-2.859573,75.49359,-11.32891,-2.859573,0,0,3,0.8092763,1.052423,0,0,0,4.243683,0.0871323,-9.052088,-4.721272,0,1357.569,-,-
+195.5,680.989552915096,12.8000000953674,12.8000000953674,0,-1.242272,727.8243,-26.86628,-26.86628,990.501,-148.6391,-2.047683,75.49359,-11.32891,-2.047683,0,0,3,0.8011575,1.052423,0,0,0,4.243752,0.0871323,-8.232147,-3.901263,0,1462.58,-,-
+196.5,684.545108497143,12.8000000953674,12.8000000953674,0,-1.242272,727.8243,-26.86628,-26.86628,994.4956,-148.6391,-2.047683,75.79805,-11.32891,-2.047683,0,0,3,0.8011575,1.052423,0,0,0,4.243752,0.0871323,-8.232147,-3.901263,0,1462.58,-,-
+197.5,688.100664079189,12.8000000953674,12.8000000953674,0,-1.180394,727.8243,-21.53997,-21.53997,994.4956,-148.6391,-1.641725,75.79805,-11.32891,-1.641725,0,0,3,0.797098,1.052423,0,0,0,4.243783,0.0871323,-7.822162,-3.491246,0,1515.088,-,-
+198.5,691.656219661236,12.8000000953674,12.8000000953674,0,-1.118516,727.8243,-16.21359,-16.21359,996.493,-148.6391,-1.235761,75.95029,-11.32891,-1.235761,0,0,3,0.7930383,1.052423,0,0,0,4.243814,0.0871323,-7.412168,-3.081222,0,1567.596,-,-
+199.5,695.211775243282,12.8000000953674,12.8000000953674,0,-1.118516,727.8243,-16.21359,-16.21359,998.4903,-148.6391,-1.235761,76.10252,-11.32891,-1.235761,0,0,3,0.7930383,1.052423,0,0,0,4.243814,0.0871323,-7.412168,-3.081222,0,1567.596,-,-
+200.5,698.767330825329,12.8000000953674,12.8000000953674,0,-1.056639,727.8243,-10.88709,-10.88709,998.4903,-148.6391,-0.829788,76.10252,-11.32891,-0.829788,0,0,3,0.7889787,1.052423,0,0,0,4.243842,0.0871323,-7.002164,-2.67119,0,1620.105,-,-
+201.5,702.322886407375,12.8000000953674,12.8000000953674,0,-0.994761,727.8243,-5.560534,-5.560534,1000.488,-148.6391,-0.4238105,76.25476,-11.32891,-0.4238105,0,0,3,0.7849188,1.052423,0,0,0,4.243869,0.0871323,-6.592154,-2.261152,0,1672.615,-,-
+202.5,705.878441989422,12.8000000953674,12.8000000953674,0,-0.994761,727.8243,-5.560534,-5.560534,1002.485,-148.6391,-0.4238105,76.407,-11.32891,-0.4238105,0,0,3,0.7849188,1.052423,0,0,0,4.243869,0.0871323,-6.592154,-2.261152,0,1672.615,-,-
+203.5,709.433997571468,12.8000000953674,12.8000000953674,0,-0.8710058,727.8243,5.092821,5.092821,1002.485,-148.6391,0.3881625,76.407,-11.32891,0.3881625,0,0,3,0.7767991,1.052423,0,0,0,4.243918,0.0871323,-5.77211,-1.44106,0,1775.787,-,-
+204.5,712.989553153515,12.8000000953674,12.8000000953674,0,-0.8710058,727.8243,5.092821,5.092821,1006.48,-148.6391,0.3881625,76.71149,-11.32891,0.3881625,0,0,3,0.7767991,1.052423,0,0,0,4.243918,0.0871323,-5.77211,-1.44106,0,1775.787,-,-
+205.5,716.545108735561,12.8000000953674,12.8000000953674,0,-0.8710058,727.8243,5.092821,5.092821,1006.48,-148.6391,0.3881625,76.71149,-11.32891,0.3881625,0,0,3,0.7767991,1.052423,0,0,0,4.243918,0.0871323,-5.77211,-1.44106,0,1775.787,-,-
+206.5,720.100664317608,12.8000000953674,12.8000000953674,0,-0.7472504,727.8243,15.74644,15.74644,1006.48,-148.6391,1.200156,76.71149,-11.32891,1.200156,0,0,3,0.7686792,1.052423,0,0,0,4.243961,0.0871323,-4.95204,-0.6209464,0,1876.943,-,-
+207.5,723.656219899654,12.8000000953674,12.8000000953674,0,-0.7472504,727.8243,15.74644,15.74644,1010.475,-148.6391,1.200156,77.01598,-11.32891,1.200156,0,0,3,0.7686792,1.052423,0,0,0,4.243961,0.0871323,-4.95204,-0.6209464,0,1876.943,-,-
+208.5,727.211775481701,12.8000000953674,12.8000000953674,0,-0.7472504,727.8243,15.74644,15.74644,1010.475,-148.6391,1.200156,77.01598,-11.32891,1.200156,0,0,3,0.7686792,1.052423,0,0,0,4.243961,0.0871323,-4.95204,-0.6209464,0,1876.943,-,-
+209.5,730.767331063747,12.8000000953674,12.8000000953674,0,-0.6234951,727.8243,26.40027,26.40027,1010.475,-148.6391,2.012165,77.01598,-11.32891,2.012165,0,0,3,0.7605591,1.052423,0,0,0,4.243997,0.0871323,-4.131947,0.1991825,0,1978.102,-,-
+210.5,734.322886645794,12.8000000953674,12.8000000953674,0,-0.6234951,727.8243,26.40027,26.40027,1014.471,-148.6391,2.012165,77.32049,-11.32891,2.012165,0,0,3,0.7605591,1.052423,0,0,0,4.243997,0.0871323,-4.131947,0.1991825,0,1978.102,-,-
+211.5,737.87844222784,12.8000000953674,12.8000000953674,0,-0.6234951,727.8243,26.40027,26.40027,1014.471,-148.6391,2.012165,77.32049,-11.32891,2.012165,0,0,3,0.7605591,1.052423,0,0,0,4.243997,0.0871323,-4.131947,0.1991825,0,1978.102,-,-
+212.5,741.433997809887,12.8000000953674,12.8000000953674,0,-0.4997399,727.8243,37.05425,37.05425,1014.471,-148.6391,2.824185,77.32049,-11.32891,2.824185,0,0,3,0.7524388,1.052423,0,0,0,4.244026,0.0871323,-3.311835,1.019324,0,2079.261,-,-
+213.5,744.989553391933,12.8000000953674,12.8000000953674,0,-0.4997399,727.8243,37.05425,37.05425,1018.466,-148.6391,2.824185,77.625,-11.32891,2.824185,0,0,3,0.7524388,1.052423,0,0,0,4.244026,0.0871323,-3.311835,1.019324,0,2079.261,-,-
+214.5,748.54510897398,12.8000000953674,12.8000000953674,0,-0.4378622,727.8243,42.38129,42.38129,1018.466,-148.6391,3.2302,77.625,-11.32891,3.2302,0,0,3,0.7483787,1.052423,0,0,0,4.244039,0.0871323,-2.901773,1.429398,0,2129.841,-,-
+215.5,752.100664556026,12.8000000953674,12.8000000953674,0,-0.3759846,727.8243,47.70836,47.70836,1020.463,-148.6391,3.636216,77.77725,-11.32891,3.636216,0,0,3,0.7443186,1.052423,0,0,0,4.244049,0.0871323,-2.491707,1.839474,0,2180.422,-,-
+216.5,755.656220138073,12.8000000953674,12.8000000953674,0,-0.3759846,727.8243,47.70836,47.70836,1022.461,-148.6391,3.636216,77.92951,-11.32891,3.636216,0,0,3,0.7443186,1.052423,0,0,0,4.244049,0.0871323,-2.491707,1.839474,0,2180.422,-,-
+217.5,759.211775720119,12.8000000953674,12.8000000953674,0,-0.2522293,727.8243,58.61852,58.61852,1022.461,-148.6391,4.467762,77.92951,-11.32891,4.467762,0,0,3,0.7557096,1.052423,0,0,0,4.244066,0.0871323,-1.671569,2.659629,0,2284.014,-,-
+218.5,762.767331302166,12.8000000953674,12.8000000953674,0,-0.2522293,727.8243,58.61852,58.61852,1026.552,-148.6391,4.467762,78.24134,-11.32891,4.467762,0,0,3,0.7557096,1.052423,0,0,0,4.244066,0.0871323,-1.671569,2.659629,0,2284.014,-,-
+219.5,766.322886884212,12.8000000953674,12.8000000953674,0,-0.2522293,727.8243,58.61852,58.61852,1026.552,-148.6391,4.467762,78.24134,-11.32891,4.467762,0,0,3,0.7557096,1.052423,0,0,0,4.244066,0.0871323,-1.671569,2.659629,0,2284.014,-,-
+220.5,769.878442466259,12.8000000953674,12.8000000953674,0,-0.128474,727.8243,69.59885,69.59885,1026.552,-148.6391,5.304656,78.24134,-11.32891,5.304656,0,0,3,0.7724474,1.052423,0,0,0,4.244076,0.0871323,-0.8514225,3.479786,0,2388.272,-,-
+221.5,773.433998048306,12.8000000953674,12.8000000953674,0,-0.128474,727.8243,69.59885,69.59885,1030.67,-148.6391,5.304656,78.55518,-11.32891,5.304656,0,0,3,0.7724474,1.052423,0,0,0,4.244076,0.0871323,-0.8514225,3.479786,0,2388.272,-,-
+222.5,776.989553630352,12.8000000953674,12.8000000953674,0,-0.128474,727.8243,69.59885,69.59885,1030.67,-148.6391,5.304656,78.55518,-11.32891,5.304656,0,0,3,0.7724474,1.052423,0,0,0,4.244076,0.0871323,-0.8514225,3.479786,0,2388.272,-,-
+223.5,780.545109212399,12.8000000953674,12.8000000953674,0,-0.00472,727.8243,80.57903,80.57903,1030.67,-148.6391,6.141539,78.55518,-11.32891,6.141539,0,0,3,0.789185,1.052423,0,0,0,4.244079,0.0871323,-0.03128038,4.299931,0,2513.873,-,-
+224.5,784.100664794445,12.8000000953674,12.8000000953674,0,-0.00472,727.8243,80.57903,80.57903,1034.788,-148.6391,6.141539,78.869,-11.32891,6.141539,0,0,3,0.789185,1.052423,0,0,0,4.244079,0.0871323,-0.03128038,4.299931,0,2513.873,-,-
+225.5,787.656220376492,12.8000000953674,12.8000000953674,0,-0.00472,727.8243,80.57903,80.57903,1034.788,-148.6391,6.141539,78.869,-11.32891,6.141539,0,0,3,0.789185,1.052423,0,0,0,4.244079,0.0871323,-0.03128038,4.299931,0,2513.873,-,-
+226.5,791.211775958538,12.8000000953674,12.8000000953674,0,0.1190365,727.8243,91.55936,91.55936,1034.788,-148.6391,6.978433,78.869,-11.32891,6.978433,0,0,3,0.8059232,1.052423,0,0,0,4.244076,0.0871323,0.7888781,5.120087,0,2646.022,-,-
+227.5,794.767331540585,12.8000000953674,12.8000000953674,0,0.1190365,727.8243,91.55936,91.55936,1038.905,-148.6391,6.978433,79.18284,-11.32891,6.978433,0,0,3,0.8059232,1.052423,0,0,0,4.244076,0.0871323,0.7888781,5.120087,0,2646.022,-,-
+228.5,798.322887122631,12.8000000953674,12.8000000953674,0,0.1809141,727.8243,97.04942,97.04942,1038.905,-148.6391,7.396872,79.18284,-11.32891,7.396872,0,0,3,0.8142916,1.052423,0,0,0,4.244072,0.0871323,1.198952,5.530157,0,2712.094,-,-
+229.5,801.878442704678,12.8000000953674,12.8000000953674,0,0.2427918,727.8243,102.5394,102.5394,1040.964,-148.6391,7.815308,79.33976,-11.32891,7.815308,0,0,3,0.8226606,1.052423,0,0,0,4.244067,0.0871323,1.609025,5.940224,0,2778.167,-,-
+230.5,805.433998286724,12.8000000953674,12.8000000953674,0,0.2427918,727.8243,102.5394,102.5394,1043.023,-148.6391,7.815308,79.49667,-11.32891,7.815308,0,0,3,0.8226606,1.052423,0,0,0,4.244067,0.0871323,1.609025,5.940224,0,2778.167,-,-
+231.5,808.989553868771,12.8000000953674,12.8000000953674,0,0.3046694,727.8243,108.0294,108.0294,1043.023,-148.6391,8.23374,79.49667,-11.32891,8.23374,0,0,3,0.8310291,1.052423,0,0,0,4.24406,0.0871323,2.019096,6.350287,0,2844.239,-,-
+232.5,812.545109450817,12.8000000953674,12.8000000953674,0,0.366547,727.8243,113.5193,113.5193,1045.081,-148.6391,8.652168,79.65358,-11.32891,8.652168,0,0,3,0.8393979,1.052423,0,0,0,4.244051,0.0871323,2.429164,6.760347,0,2910.31,-,-
+233.5,816.100665032864,12.8000000953674,12.8000000953674,0,0.366547,727.8243,113.5193,113.5193,1047.14,-148.6391,8.652168,79.81049,-11.32891,8.652168,0,0,3,0.8393979,1.052423,0,0,0,4.244051,0.0871323,2.429164,6.760347,0,2910.31,-,-
+234.5,819.65622061491,12.8000000953674,12.8000000953674,0,0.5085732,727.8243,126.1199,126.1199,1047.14,-148.6391,9.612557,79.81049,-11.32891,9.612557,0,0,3,0.8586053,1.052423,0,0,0,4.244024,0.0871323,3.370373,7.70153,0,3061.958,-,-
+235.5,823.211776196957,12.8000000953674,12.8000000953674,0,0.5085732,727.8243,126.1199,126.1199,1051.865,-148.6391,9.612557,80.17064,-11.32891,9.612557,0,0,3,0.8586053,1.052423,0,0,0,4.244024,0.0871323,3.370373,7.70153,0,3061.958,-,-
+236.5,826.767331779003,12.8000000953674,12.8000000953674,0,0.5085732,727.8243,126.1199,126.1199,1051.865,-148.6391,9.612557,80.17064,-11.32891,9.612557,0,0,3,0.8586053,1.052423,0,0,0,4.244024,0.0871323,3.370373,7.70153,0,3061.958,-,-
+237.5,830.32288736105,12.8000000953674,12.8000000953674,0,0.815037,727.8243,153.3082,153.3082,1051.865,-148.6391,11.68478,80.17064,-11.32891,11.68478,0,0,3,0.9000502,1.052423,0,0,0,4.243938,0.0871323,5.401234,9.732306,0,3389.169,-,-
+238.5,833.878442943096,12.8000000953674,12.8000000953674,0,0.815037,727.8243,153.3082,153.3082,1062.061,-148.6391,11.68478,80.94772,-11.32891,11.68478,0,0,3,0.9000502,1.052423,0,0,0,4.243938,0.0871323,5.401234,9.732306,0,3389.169,-,-
+239.5,837.433998525143,12.8000000953674,12.8000000953674,0,0.815037,727.8243,153.3082,153.3082,1062.061,-148.6391,11.68478,80.94772,-11.32891,11.68478,0,0,3,0.9000502,1.052423,0,0,0,4.243938,0.0871323,5.401234,9.732306,0,3389.169,-,-
+240.5,840.989554107189,12.8000000953674,12.8000000953674,0,1.121501,727.8243,180.8479,180.8479,1062.061,-148.6391,13.78379,80.94772,-11.32891,13.78379,0,0,3,0.94203,1.078877,0,0,0,4.243812,0.0871323,7.431942,11.76289,0,3720.61,-,-
+241.5,844.545109689236,12.8000000953674,12.8000000953674,0,1.121501,727.8243,180.8479,180.8479,1072.388,-148.6391,13.78379,81.73485,-11.32891,13.78379,0,0,3,0.94203,1.078877,0,0,0,4.243812,0.0871323,7.431942,11.76289,0,3720.61,-,-
+242.5,848.100665271282,12.8000000953674,12.8000000953674,0,1.274733,727.8243,194.6466,194.6466,1072.388,-148.6391,14.83549,81.73485,-11.32891,14.83549,0,0,3,0.9630637,1.094337,0,0,0,4.243734,0.0871323,8.447223,12.77809,0,3886.676,-,-
+243.5,851.656220853329,12.8000000953674,12.8000000953674,0,1.427965,727.8243,208.4442,208.4442,1077.563,-148.6391,15.88712,82.12924,-11.32891,15.88712,0,0,3,0.9840965,1.109796,0,0,0,4.243647,0.0871323,9.462443,13.79322,0,4041.458,-,-
+244.5,855.211776435375,12.8000000953674,12.8000000953674,0,1.427965,727.8243,208.4442,208.4442,1082.737,-148.6391,15.88712,82.52359,-11.32891,15.88712,0,0,3,0.9840965,1.109796,0,0,0,4.243647,0.0871323,9.462443,13.79322,0,4041.458,-,-
+245.5,858.767332017422,12.8000000953674,12.8000000953674,0,1.581197,727.8243,222.2408,222.2408,1082.737,-148.6391,16.93866,82.52359,-11.32891,16.93866,0,0,3,1.005128,1.125254,0,0,0,4.243549,0.0871323,10.4776,14.80828,0,4189.082,-,-
+246.5,862.322887599468,12.8000000953674,12.8000000953674,0,1.734429,727.8243,236.0363,236.0363,1087.911,-148.6391,17.99012,82.91793,-11.32891,17.99012,0,0,3,1.026157,1.14071,0,0,0,4.243441,0.0871323,11.49268,15.82325,0,4336.693,-,-
+247.5,865.878443181515,12.8000000953674,12.8000000953674,0,1.734429,727.8243,236.0363,236.0363,1093.084,-148.6391,17.99012,83.31223,-11.32891,17.99012,0,0,3,1.026157,1.14071,0,0,0,4.243441,0.0871323,11.49268,15.82325,0,4336.693,-,-
+248.5,869.433998763561,12.8000000953674,12.8000000953674,0,1.954264,727.8243,255.8259,255.8259,1093.084,-148.6391,19.49843,83.31223,-11.32891,19.49843,0,0,3,1.056323,1.162882,0,0,0,4.243269,0.0871323,12.94882,17.27922,0,4548.441,-,-
+249.5,872.989554345608,12.8000000953674,12.8000000953674,0,1.954264,727.8243,255.8259,255.8259,1100.505,-148.6391,19.49843,83.87784,-11.32891,19.49843,0,0,3,1.056323,1.162882,0,0,0,4.243269,0.0871323,12.94882,17.27922,0,4548.441,-,-
+250.5,876.545109927654,12.8000000953674,12.8000000953674,0,1.954264,727.8243,255.8259,255.8259,1100.505,-148.6391,19.49843,83.87784,-11.32891,19.49843,0,0,3,1.056323,1.162882,0,0,0,4.243269,0.0871323,12.94882,17.27922,0,4548.441,-,-
+251.5,880.100665509701,12.8000000953674,12.8000000953674,0,2.136972,727.8243,272.2712,272.2712,1100.505,-148.6391,20.75185,83.87784,-11.32891,20.75185,0,0,3,1.081392,1.181308,0,0,0,4.243111,0.0871323,14.15891,18.48915,0,4724.691,-,-
+252.5,883.656221091747,12.8000000953674,12.8000000953674,0,2.136972,727.8243,272.2712,272.2712,1106.672,-148.6391,20.75185,84.34788,-11.32891,20.75185,0,0,3,1.081392,1.181308,0,0,0,4.243111,0.0871323,14.15891,18.48915,0,4724.691,-,-
+253.5,887.211776673794,12.8000000953674,12.8000000953674,0,2.136972,727.8243,272.2712,272.2712,1106.672,-148.6391,20.75185,84.34788,-11.32891,20.75185,0,0,3,1.081392,1.181308,0,0,0,4.243111,0.0871323,14.15891,18.48915,0,4724.691,-,-
+254.5,890.76733225584,12.8000000953674,12.8000000953674,0,2.319681,727.8243,288.7143,288.7143,1106.672,-148.6391,22.00511,84.34788,-11.32891,22.00511,0,0,3,1.106456,1.19973,0,0,0,4.242938,0.0871323,15.36885,19.69892,0,4949.55,-,-
+255.5,894.322887837887,12.8000000953674,12.8000000953674,0,2.319681,727.8243,288.7143,288.7143,1112.838,-148.6391,22.00511,84.81785,-11.32891,22.00511,0,0,3,1.106456,1.19973,0,0,0,4.242938,0.0871323,15.36885,19.69892,0,4949.55,-,-
+256.5,897.878443419933,12.8000000953674,12.8000000953674,0,2.319681,727.8243,288.7143,288.7143,1112.838,-148.6391,22.00511,84.81785,-11.32891,22.00511,0,0,3,1.106456,1.19973,0,0,0,4.242938,0.0871323,15.36885,19.69892,0,4949.55,-,-
+257.5,901.43399900198,12.8000000953674,12.8000000953674,0,2.502389,727.8243,305.1553,305.1553,1112.838,-148.6391,23.2582,84.81785,-11.32891,23.2582,0,0,3,1.131518,1.21815,0,0,0,4.242751,0.0871323,16.57864,20.90853,0,5174.38,-,-
+258.5,904.989554584026,12.8000000953674,12.8000000953674,0,2.502389,727.8243,305.1553,305.1553,1119.004,-148.6391,23.2582,85.28775,-11.32891,23.2582,0,0,3,1.131518,1.21815,0,0,0,4.242751,0.0871323,16.57864,20.90853,0,5174.38,-,-
+259.5,908.545110166073,12.8000000953674,12.8000000953674,0,2.502389,727.8243,305.1553,305.1553,1119.004,-148.6391,23.2582,85.28775,-11.32891,23.2582,0,0,3,1.131518,1.21815,0,0,0,4.242751,0.0871323,16.57864,20.90853,0,5174.38,-,-
+260.5,912.100665748119,12.8000000953674,12.8000000953674,0,2.502389,727.8243,305.1553,305.1553,1119.004,-148.6391,23.2582,85.28775,-11.32891,23.2582,0,0,3,1.131518,1.21815,0,0,0,4.242751,0.0871323,16.57864,20.90853,0,5174.38,-,-
+261.5,915.656221330166,12.8000000953674,12.8000000953674,0,2.502389,727.8243,305.1553,305.1553,1119.004,-148.6391,23.2582,85.28775,-11.32891,23.2582,0,0,3,1.131518,1.21815,0,0,0,4.242751,0.0871323,16.57864,20.90853,0,5174.38,-,-
+262.5,919.211776912212,12.8000000953674,12.8000000953674,0,2.502389,727.8243,305.1553,305.1553,1119.004,-148.6391,23.2582,85.28775,-11.32891,23.2582,0,0,3,1.131518,1.21815,0,0,0,4.242751,0.0871323,16.57864,20.90853,0,5174.38,-,-
+263.5,922.767332494259,12.8000000953674,12.8000000953674,0,2.502389,727.8243,305.1553,305.1553,1119.004,-148.6391,23.2582,85.28775,-11.32891,23.2582,0,0,3,1.131518,1.21815,0,0,0,4.242751,0.0871323,16.57864,20.90853,0,5174.38,-,-
+264.5,926.322888076305,12.8000000953674,12.8000000953674,0,2.502389,727.8243,305.1553,305.1553,1119.004,-148.6391,23.2582,85.28775,-11.32891,23.2582,0,0,3,1.131518,1.21815,0,0,0,4.242751,0.0871323,16.57864,20.90853,0,5174.38,-,-
+265.5,929.878443658352,12.8000000953674,12.8000000953674,0,2.629364,727.8243,316.5796,316.5796,1119.004,-148.6391,24.12893,85.28775,-11.32891,24.12893,0,0,3,1.148934,1.230951,0,0,0,4.242613,0.0871323,17.4193,21.74905,0,5330.608,-,-
+266.5,933.433999240398,12.8000000953674,12.8000000953674,0,2.629364,727.8243,316.5796,316.5796,1123.288,-148.6391,24.12893,85.61428,-11.32891,24.12893,0,0,3,1.148934,1.230951,0,0,0,4.242613,0.0871323,17.4193,21.74905,0,5330.608,-,-
+267.5,936.989554822445,12.8000000953674,12.8000000953674,0,2.629364,727.8243,316.5796,316.5796,1123.288,-148.6391,24.12893,85.61428,-11.32891,24.12893,0,0,3,1.148934,1.230951,0,0,0,4.242613,0.0871323,17.4193,21.74905,0,5330.608,-,-
+268.5,940.545110404491,12.8000000953674,12.8000000953674,0,2.629364,727.8243,316.5796,316.5796,1123.288,-148.6391,24.12893,85.61428,-11.32891,24.12893,0,0,3,1.148934,1.230951,0,0,0,4.242613,0.0871323,17.4193,21.74905,0,5330.608,-,-
+269.5,944.100665986538,12.8000000953674,12.8000000953674,0,2.629364,727.8243,316.5796,316.5796,1123.288,-148.6391,24.12893,85.61428,-11.32891,24.12893,0,0,3,1.148934,1.230951,0,0,0,4.242613,0.0871323,17.4193,21.74905,0,5330.608,-,-
+270.5,947.656221568584,12.8000000953674,12.8000000953674,0,2.629364,727.8243,316.5796,316.5796,1123.288,-148.6391,24.12893,85.61428,-11.32891,24.12893,0,0,3,1.148934,1.230951,0,0,0,4.242613,0.0871323,17.4193,21.74905,0,5330.608,-,-
+271.5,951.211777150631,12.8000000953674,12.8000000953674,0,2.629364,727.8243,316.5796,316.5796,1123.288,-148.6391,24.12893,85.61428,-11.32891,24.12893,0,0,3,1.148934,1.230951,0,0,0,4.242613,0.0871323,17.4193,21.74905,0,5330.608,-,-
+272.5,954.767332732677,12.8000000953674,12.8000000953674,0,2.629364,727.8243,316.5796,316.5796,1123.288,-148.6391,24.12893,85.61428,-11.32891,24.12893,0,0,3,1.148934,1.230951,0,0,0,4.242613,0.0871323,17.4193,21.74905,0,5330.608,-,-
+273.5,958.322888314724,12.8000000953674,12.8000000953674,0,2.629364,727.8243,316.5796,316.5796,1123.288,-148.6391,24.12893,85.61428,-11.32891,24.12893,0,0,3,1.148934,1.230951,0,0,0,4.242613,0.0871323,17.4193,21.74905,0,5330.608,-,-
+274.5,961.87844389677,12.8000000953674,12.8000000953674,0,2.629364,727.8243,316.5796,316.5796,1123.288,-148.6391,24.12893,85.61428,-11.32891,24.12893,0,0,3,1.148934,1.230951,0,0,0,4.242613,0.0871323,17.4193,21.74905,0,5330.608,-,-
+275.5,965.433999478817,12.8000000953674,12.8000000953674,0,2.629364,727.8243,316.5796,316.5796,1123.288,-148.6391,24.12893,85.61428,-11.32891,24.12893,0,0,3,1.148934,1.230951,0,0,0,4.242613,0.0871323,17.4193,21.74905,0,5330.608,-,-
+276.5,968.989555060863,12.8000000953674,12.8000000953674,0,2.693959,727.8243,322.3909,322.3909,1123.288,-148.6391,24.57185,85.61428,-11.32891,24.57185,0,0,3,1.157791,1.237461,0,0,0,4.24254,0.0871323,17.84693,22.1766,0,5410.078,-,-
+277.5,972.54511064291,12.8000000953674,12.8000000953674,0,2.758554,727.8243,328.2019,328.2019,1125.467,-148.6391,25.01476,85.78037,-11.32891,25.01476,0,0,3,1.166649,1.243972,0,0,0,4.242465,0.0871323,18.27454,22.60413,0,5489.543,-,-
+278.5,976.100666224957,12.8000000953674,12.8000000953674,0,2.758554,727.8243,328.2019,328.2019,1127.646,-148.6391,25.01476,85.94646,-11.32891,25.01476,0,0,3,1.166649,1.243972,0,0,0,4.242465,0.0871323,18.27454,22.60413,0,5489.543,-,-
+279.5,979.656221807003,12.8000000953674,12.8000000953674,0,2.758554,727.8243,328.2019,328.2019,1127.646,-148.6391,25.01476,85.94646,-11.32891,25.01476,0,0,3,1.166649,1.243972,0,0,0,4.242465,0.0871323,18.27454,22.60413,0,5489.543,-,-
+280.5,983.21177738905,12.8000000953674,12.8000000953674,0,2.758554,727.8243,328.2019,328.2019,1127.646,-148.6391,25.01476,85.94646,-11.32891,25.01476,0,0,3,1.166649,1.243972,0,0,0,4.242465,0.0871323,18.27454,22.60413,0,5489.543,-,-
+281.5,986.767332971096,12.8000000953674,12.8000000953674,0,2.758554,727.8243,328.2019,328.2019,1127.646,-148.6391,25.01476,85.94646,-11.32891,25.01476,0,0,3,1.166649,1.243972,0,0,0,4.242465,0.0871323,18.27454,22.60413,0,5489.543,-,-
+282.5,990.322888553143,12.8000000953674,12.8000000953674,0,2.758554,727.8243,328.2019,328.2019,1127.646,-148.6391,25.01476,85.94646,-11.32891,25.01476,0,0,3,1.166649,1.243972,0,0,0,4.242465,0.0871323,18.27454,22.60413,0,5489.543,-,-
+283.5,993.773163974285,12.4209915161133,12.8000000953674,-0.2105604,2.758554,706.2734,121.4982,130.2,1097.122,-148.5314,8.986102,81.14401,-10.9855,9.629691,-0.6435886,0,3,0.8311521,1.021261,0,0,-14.15261,4.116846,0.07961924,17.73343,7.777279,0,2906.34,-,-
+284.5,996.834550559521,11.0209917068481,11.3999994277954,-0.5672174,2.758554,626.6676,-148.1333,-114.4625,895.0177,-148.1333,-9.721172,58.73507,-9.721172,-7.511542,-2.20963,0,3,0.7137032,0.9061517,0,0,-33.82781,3.652826,0.05561748,15.73465,-14.38472,-5.25332,8.466682E-05,-,-
+285.5,999.612328231335,9.99999961853027,9.99999961853027,0,2.758554,593.6995,299.6287,313.1044,732.574,-148.1575,18.62853,45.54564,-9.211259,19.46635,-0.8378153,0,3,0.8619462,0.9714499,0,0,0,3.314426,0.04154791,14.27698,17.63295,0,4392.052,-,-
+286.5,1002.39010590315,9.99999961853027,9.99999961853027,0,2.758554,593.6995,313.1044,313.1044,903.5695,-148.1575,19.46635,56.17678,-9.211259,19.46635,0,0,3,0.8619462,0.9714499,0,0,0,3.314426,0.04154791,14.27698,17.63295,0,4536.243,-,-
+287.5,1005.16788357496,9.99999961853027,9.99999961853027,0,2.758554,593.6995,313.1044,313.1044,908.6228,-148.1575,19.46635,56.49096,-9.211259,19.46635,0,0,3,0.8619462,0.9714499,0,0,0,3.314426,0.04154791,14.27698,17.63295,0,4536.243,-,-
+288.5,1007.94566124678,9.99999961853027,9.99999961853027,0,2.758554,593.6995,313.1044,313.1044,908.6228,-148.1575,19.46635,56.49096,-9.211259,19.46635,0,0,3,0.8619462,0.9714499,0,0,0,3.314426,0.04154791,14.27698,17.63295,0,4536.243,-,-
+289.5,1010.72343891859,9.99999961853027,9.99999961853027,0,2.887744,593.6995,324.2344,324.2344,908.6228,-148.1575,20.15832,56.49096,-9.211259,20.15832,0,0,3,0.8757855,0.9816213,0,0,0,3.314305,0.04154791,14.94506,18.30091,0,4655.333,-,-
+290.5,1013.5012165904,9.99999961853027,9.99999961853027,0,2.887744,593.6995,324.2344,324.2344,912.7966,-148.1575,20.15832,56.75045,-9.211259,20.15832,0,0,3,0.8757855,0.9816213,0,0,0,3.314305,0.04154791,14.94506,18.30091,0,4655.333,-,-
+291.5,1016.27899426222,9.99999961853027,9.99999961853027,0,2.887744,593.6995,324.2344,324.2344,912.7966,-148.1575,20.15832,56.75045,-9.211259,20.15832,0,0,3,0.8757855,0.9816213,0,0,0,3.314305,0.04154791,14.94506,18.30091,0,4655.333,-,-
+292.5,1019.05677193403,9.99999961853027,9.99999961853027,0,2.887744,593.6995,324.2344,324.2344,912.7966,-148.1575,20.15832,56.75045,-9.211259,20.15832,0,0,3,0.8757855,0.9816213,0,0,0,3.314305,0.04154791,14.94506,18.30091,0,4655.333,-,-
+293.5,1021.83454960585,9.99999961853027,9.99999961853027,0,2.887744,593.6995,324.2344,324.2344,912.7966,-148.1575,20.15832,56.75045,-9.211259,20.15832,0,0,3,0.8757855,0.9816213,0,0,0,3.314305,0.04154791,14.94506,18.30091,0,4655.333,-,-
+294.5,1024.61232727766,9.99999961853027,9.99999961853027,0,2.887744,593.6995,324.2344,324.2344,912.7966,-148.1575,20.15832,56.75045,-9.211259,20.15832,0,0,3,0.8757855,0.9816213,0,0,0,3.314305,0.04154791,14.94506,18.30091,0,4655.333,-,-
+295.5,1027.39010494947,9.99999961853027,9.99999961853027,0,2.887744,593.6995,324.2344,324.2344,912.7966,-148.1575,20.15832,56.75045,-9.211259,20.15832,0,0,3,0.8757855,0.9816213,0,0,0,3.314305,0.04154791,14.94506,18.30091,0,4655.333,-,-
+296.5,1030.16788262129,9.99999961853027,9.99999961853027,0,2.733088,593.6995,310.9104,310.9104,912.7966,-148.1575,19.32994,56.75045,-9.211259,19.32994,0,0,3,0.8592184,0.9694445,0,0,0,3.314449,0.04154791,14.14528,17.50128,0,4512.767,-,-
+297.5,1032.9456602931,9.99999961853027,9.99999961853027,0,2.733088,593.6995,310.9104,310.9104,907.8001,-148.1575,19.32994,56.43981,-9.211259,19.32994,0,0,3,0.8592184,0.9694445,0,0,0,3.314449,0.04154791,14.14528,17.50128,0,4512.767,-,-
+298.5,1035.72343796492,9.99999961853027,9.99999961853027,0,2.733088,593.6995,310.9104,310.9104,907.8001,-148.1575,19.32994,56.43981,-9.211259,19.32994,0,0,3,0.8592184,0.9694445,0,0,0,3.314449,0.04154791,14.14528,17.50128,0,4512.767,-,-
+299.5,1038.50121563673,9.99999961853027,9.99999961853027,0,2.657883,593.6995,304.4306,304.4306,907.8001,-148.1575,18.92708,56.43981,-9.211259,18.92708,0,0,3,0.8511617,0.9635224,0,0,0,3.314516,0.04154791,13.75633,17.1124,0,4443.433,-,-
+300.5,1041.27899330854,9.99999961853027,9.99999961853027,0,2.582677,593.6995,297.9503,297.9503,905.3701,-148.1575,18.52419,56.28873,-9.211259,18.52419,0,0,3,0.8431022,0.9576,0,0,0,3.314581,0.04154791,13.36735,16.72348,0,4374.093,-,-
+301.5,1044.05677098036,9.99999961853027,9.99999961853027,0,2.582677,593.6995,297.9503,297.9503,902.94,-148.1575,18.52419,56.13765,-9.211259,18.52419,0,0,3,0.8431022,0.9576,0,0,0,3.314581,0.04154791,13.36735,16.72348,0,4374.093,-,-
+302.5,1046.83454865217,9.99999961853027,9.99999961853027,0,2.582677,593.6995,297.9503,297.9503,902.94,-148.1575,18.52419,56.13765,-9.211259,18.52419,0,0,3,0.8431022,0.9576,0,0,0,3.314581,0.04154791,13.36735,16.72348,0,4374.093,-,-
+303.5,1049.61232632399,9.99999961853027,9.99999961853027,0,2.432266,593.6995,284.9886,284.9886,902.94,-148.1575,17.71833,56.13765,-9.211259,17.71833,0,0,3,0.826985,0.9457539,0,0,0,3.314706,0.04154791,12.58934,15.94559,0,4235.403,-,-
+304.5,1052.3901039958,9.99999961853027,9.99999961853027,0,2.432266,593.6995,284.9886,284.9886,898.0794,-148.1575,17.71833,55.83545,-9.211259,17.71833,0,0,3,0.826985,0.9457539,0,0,0,3.314706,0.04154791,12.58934,15.94559,0,4235.403,-,-
+305.5,1055.16788166761,9.99999961853027,9.99999961853027,0,2.432266,593.6995,284.9886,284.9886,898.0794,-148.1575,17.71833,55.83545,-9.211259,17.71833,0,0,3,0.826985,0.9457539,0,0,0,3.314706,0.04154791,12.58934,15.94559,0,4235.403,-,-
+306.5,1057.94565933943,9.99999961853027,9.99999961853027,0,2.432266,593.6995,284.9886,284.9886,898.0794,-148.1575,17.71833,55.83545,-9.211259,17.71833,0,0,3,0.826985,0.9457539,0,0,0,3.314706,0.04154791,12.58934,15.94559,0,4235.403,-,-
+307.5,1060.72343701124,9.99999961853027,9.99999961853027,0,2.281855,593.6995,272.0253,272.0253,898.0794,-148.1575,16.91237,55.83545,-9.211259,16.91237,0,0,3,0.8108668,0.9339059,0,0,0,3.314824,0.04154791,11.81123,15.1676,0,4096.695,-,-
+308.5,1063.50121468306,9.99999961853027,9.99999961853027,0,2.281855,593.6995,272.0253,272.0253,893.2181,-148.1575,16.91237,55.53322,-9.211259,16.91237,0,0,3,0.8108668,0.9339059,0,0,0,3.314824,0.04154791,11.81123,15.1676,0,4096.695,-,-
+309.5,1066.27899235487,9.99999961853027,9.99999961853027,0,2.281855,593.6995,272.0253,272.0253,893.2181,-148.1575,16.91237,55.53322,-9.211259,16.91237,0,0,3,0.8108668,0.9339059,0,0,0,3.314824,0.04154791,11.81123,15.1676,0,4096.695,-,-
+310.5,1069.05677002668,9.99999961853027,9.99999961853027,0,2.131444,593.6995,259.0605,259.0605,893.2181,-148.1575,16.10633,55.53322,-9.211259,16.10633,0,0,3,0.7947454,0.9220576,0,0,0,3.314934,0.04154791,11.03305,14.38953,0,3957.973,-,-
+311.5,1071.8345476985,9.99999961853027,9.99999961853027,0,2.131444,593.6995,259.0605,259.0605,888.3563,-148.1575,16.10633,55.23095,-9.211259,16.10633,0,0,3,0.7947454,0.9220576,0,0,0,3.314934,0.04154791,11.03305,14.38953,0,3957.973,-,-
+312.5,1074.61232537031,9.99999961853027,9.99999961853027,0,2.131444,593.6995,259.0605,259.0605,888.3563,-148.1575,16.10633,55.23095,-9.211259,16.10633,0,0,3,0.7947454,0.9220576,0,0,0,3.314934,0.04154791,11.03305,14.38953,0,3957.973,-,-
+313.5,1077.39010304213,9.99999961853027,9.99999961853027,0,2.131444,593.6995,259.0605,259.0605,888.3563,-148.1575,16.10633,55.23095,-9.211259,16.10633,0,0,3,0.7947454,0.9220576,0,0,0,3.314934,0.04154791,11.03305,14.38953,0,3957.973,-,-
+314.5,1080.16788071394,9.99999961853027,9.99999961853027,0,1.981033,593.6995,246.0945,246.0945,888.3563,-148.1575,15.3002,55.23095,-9.211259,15.3002,0,0,3,0.7786236,0.9102069,0,0,0,3.315036,0.04154791,10.25479,13.61137,0,3819.236,-,-
+315.5,1082.94565838575,9.99999961853027,9.99999961853027,0,1.981033,593.6995,246.0945,246.0945,883.4941,-148.1575,15.3002,54.92866,-9.211259,15.3002,0,0,3,0.7786236,0.9102069,0,0,0,3.315036,0.04154791,10.25479,13.61137,0,3819.236,-,-
+316.5,1085.72343605757,9.99999961853027,9.99999961853027,0,1.981033,593.6995,246.0945,246.0945,883.4941,-148.1575,15.3002,54.92866,-9.211259,15.3002,0,0,3,0.7786236,0.9102069,0,0,0,3.315036,0.04154791,10.25479,13.61137,0,3819.236,-,-
+317.5,1088.50121372938,9.99999961853027,9.99999961853027,0,1.905828,593.6995,239.6109,239.6109,883.4941,-148.1575,14.89711,54.92866,-9.211259,14.89711,0,0,3,0.7705613,0.9042814,0,0,0,3.315085,0.04154791,9.865631,13.22226,0,3749.862,-,-
+318.5,1091.2789914012,9.99999961853027,9.99999961853027,0,1.830622,593.6995,233.1271,233.1271,881.0627,-148.1575,14.49399,54.77749,-9.211259,14.49399,0,0,3,0.7624995,0.8983559,0,0,0,3.315131,0.04154791,9.476459,12.83314,0,3680.485,-,-
+319.5,1094.05676907301,9.99999961853027,9.99999961853027,0,1.830622,593.6995,233.1271,233.1271,878.6313,-148.1575,14.49399,54.62633,-9.211259,14.49399,0,0,3,0.7624995,0.8983559,0,0,0,3.315131,0.04154791,9.476459,12.83314,0,3680.485,-,-
+320.5,1096.83454674482,9.99999961853027,9.99999961853027,0,1.830622,593.6995,233.1271,233.1271,878.6313,-148.1575,14.49399,54.62633,-9.211259,14.49399,0,0,3,0.7624995,0.8983559,0,0,0,3.315131,0.04154791,9.476459,12.83314,0,3680.485,-,-
+321.5,1099.61232441664,9.99999961853027,9.99999961853027,0,1.680211,593.6995,220.1585,220.1585,878.6313,-148.1575,13.68771,54.62633,-9.211259,13.68771,0,0,3,0.7463735,0.8865036,0,0,0,3.315219,0.04154791,8.698066,12.05483,0,3544.103,-,-
+322.5,1102.39010208845,9.99999961853027,9.99999961853027,0,1.680211,593.6995,220.1585,220.1585,873.7681,-148.1575,13.68771,54.32397,-9.211259,13.68771,0,0,3,0.7463735,0.8865036,0,0,0,3.315219,0.04154791,8.698066,12.05483,0,3544.103,-,-
+323.5,1105.16787976027,9.99999961853027,9.99999961853027,0,1.680211,593.6995,220.1585,220.1585,873.7681,-148.1575,13.68771,54.32397,-9.211259,13.68771,0,0,3,0.7463735,0.8865036,0,0,0,3.315219,0.04154791,8.698066,12.05483,0,3544.103,-,-
+324.5,1107.94565743208,9.99999961853027,9.99999961853027,0,1.680211,593.6995,220.1585,220.1585,873.7681,-148.1575,13.68771,54.32397,-9.211259,13.68771,0,0,3,0.7463735,0.8865036,0,0,0,3.315219,0.04154791,8.698066,12.05483,0,3544.103,-,-
+325.5,1110.72343510389,9.99999961853027,9.99999961853027,0,1.680211,593.6995,220.1585,220.1585,873.7681,-148.1575,13.68771,54.32397,-9.211259,13.68771,0,0,3,0.7463735,0.8865036,0,0,0,3.315219,0.04154791,8.698066,12.05483,0,3544.103,-,-
+326.5,1113.50121277571,9.99999961853027,9.99999961853027,0,1.680211,593.6995,220.1585,220.1585,873.7681,-148.1575,13.68771,54.32397,-9.211259,13.68771,0,0,3,0.7463735,0.8865036,0,0,0,3.315219,0.04154791,8.698066,12.05483,0,3544.103,-,-
+327.5,1116.27899044752,9.99999961853027,9.99999961853027,0,1.680211,593.6995,220.1585,220.1585,873.7681,-148.1575,13.68771,54.32397,-9.211259,13.68771,0,0,3,0.7463735,0.8865036,0,0,0,3.315219,0.04154791,8.698066,12.05483,0,3544.103,-,-
+328.5,1119.05676811934,9.99999961853027,9.99999961853027,0,1.680211,593.6995,220.1585,220.1585,873.7681,-148.1575,13.68771,54.32397,-9.211259,13.68771,0,0,3,0.7463735,0.8865036,0,0,0,3.315219,0.04154791,8.698066,12.05483,0,3544.103,-,-
+329.5,1121.83454579115,9.99999961853027,9.99999961853027,0,1.680211,593.6995,220.1585,220.1585,873.7681,-148.1575,13.68771,54.32397,-9.211259,13.68771,0,0,3,0.7463735,0.8865036,0,0,0,3.315219,0.04154791,8.698066,12.05483,0,3544.103,-,-
+330.5,1124.61232346296,9.99999961853027,9.99999961853027,0,1.680211,593.6995,220.1585,220.1585,873.7681,-148.1575,13.68771,54.32397,-9.211259,13.68771,0,0,3,0.7463735,0.8865036,0,0,0,3.315219,0.04154791,8.698066,12.05483,0,3544.103,-,-
+331.5,1127.39010113478,9.99999961853027,9.99999961853027,0,1.680211,593.6995,220.1585,220.1585,873.7681,-148.1575,13.68771,54.32397,-9.211259,13.68771,0,0,3,0.7463735,0.8865036,0,0,0,3.315219,0.04154791,8.698066,12.05483,0,3544.103,-,-
+332.5,1130.16787880659,9.99999961853027,9.99999961853027,0,1.680211,593.6995,220.1585,220.1585,873.7681,-148.1575,13.68771,54.32397,-9.211259,13.68771,0,0,3,0.7463735,0.8865036,0,0,0,3.315219,0.04154791,8.698066,12.05483,0,3544.103,-,-
+333.5,1132.94565647841,9.99999961853027,9.99999961853027,0,1.680211,593.6995,220.1585,220.1585,873.7681,-148.1575,13.68771,54.32397,-9.211259,13.68771,0,0,3,0.7463735,0.8865036,0,0,0,3.315219,0.04154791,8.698066,12.05483,0,3544.103,-,-
+334.5,1135.72343415022,9.99999961853027,9.99999961853027,0,1.680211,593.6995,220.1585,220.1585,873.7681,-148.1575,13.68771,54.32397,-9.211259,13.68771,0,0,3,0.7463735,0.8865036,0,0,0,3.315219,0.04154791,8.698066,12.05483,0,3544.103,-,-
+335.5,1138.50121182203,9.99999961853027,9.99999961853027,0,1.680211,593.6995,220.1585,220.1585,873.7681,-148.1575,13.68771,54.32397,-9.211259,13.68771,0,0,3,0.7463735,0.8865036,0,0,0,3.315219,0.04154791,8.698066,12.05483,0,3544.103,-,-
+336.5,1141.27898949385,9.99999961853027,9.99999961853027,0,1.680211,593.6995,220.1585,220.1585,873.7681,-148.1575,13.68771,54.32397,-9.211259,13.68771,0,0,3,0.7463735,0.8865036,0,0,0,3.315219,0.04154791,8.698066,12.05483,0,3544.103,-,-
+337.5,1144.05676716566,9.99999961853027,9.99999961853027,0,1.680211,593.6995,220.1585,220.1585,873.7681,-148.1575,13.68771,54.32397,-9.211259,13.68771,0,0,3,0.7463735,0.8865036,0,0,0,3.315219,0.04154791,8.698066,12.05483,0,3544.103,-,-
+338.5,1146.83454483747,9.99999961853027,9.99999961853027,0,1.680211,593.6995,220.1585,220.1585,873.7681,-148.1575,13.68771,54.32397,-9.211259,13.68771,0,0,3,0.7463735,0.8865036,0,0,0,3.315219,0.04154791,8.698066,12.05483,0,3544.103,-,-
+339.5,1149.61232250929,9.99999961853027,9.99999961853027,0,1.680211,593.6995,220.1585,220.1585,873.7681,-148.1575,13.68771,54.32397,-9.211259,13.68771,0,0,3,0.7463735,0.8865036,0,0,0,3.315219,0.04154791,8.698066,12.05483,0,3544.103,-,-
+340.5,1152.3901001811,9.99999961853027,9.99999961853027,0,1.680211,593.6995,220.1585,220.1585,873.7681,-148.1575,13.68771,54.32397,-9.211259,13.68771,0,0,3,0.7463735,0.8865036,0,0,0,3.315219,0.04154791,8.698066,12.05483,0,3544.103,-,-
+341.5,1155.16787785292,9.99999961853027,9.99999961853027,0,1.680211,593.6995,220.1585,220.1585,873.7681,-148.1575,13.68771,54.32397,-9.211259,13.68771,0,0,3,0.7463735,0.8865036,0,0,0,3.315219,0.04154791,8.698066,12.05483,0,3544.103,-,-
+342.5,1157.94565552473,9.99999961853027,9.99999961853027,0,1.680211,593.6995,220.1585,220.1585,873.7681,-148.1575,13.68771,54.32397,-9.211259,13.68771,0,0,3,0.7463735,0.8865036,0,0,0,3.315219,0.04154791,8.698066,12.05483,0,3544.103,-,-
+343.5,1160.72343319654,9.99999961853027,9.99999961853027,0,1.680211,593.6995,220.1585,220.1585,873.7681,-148.1575,13.68771,54.32397,-9.211259,13.68771,0,0,3,0.7463735,0.8865036,0,0,0,3.315219,0.04154791,8.698066,12.05483,0,3544.103,-,-
+344.5,1163.50121086836,9.99999961853027,9.99999961853027,0,1.680211,593.6995,220.1585,220.1585,873.7681,-148.1575,13.68771,54.32397,-9.211259,13.68771,0,0,3,0.7463735,0.8865036,0,0,0,3.315219,0.04154791,8.698066,12.05483,0,3544.103,-,-
+345.5,1166.27898854017,9.99999961853027,9.99999961853027,0,1.680211,593.6995,220.1585,220.1585,873.7681,-148.1575,13.68771,54.32397,-9.211259,13.68771,0,0,3,0.7463735,0.8865036,0,0,0,3.315219,0.04154791,8.698066,12.05483,0,3544.103,-,-
+346.5,1169.05676621199,9.99999961853027,9.99999961853027,0,1.680211,593.6995,220.1585,220.1585,873.7681,-148.1575,13.68771,54.32397,-9.211259,13.68771,0,0,3,0.7463735,0.8865036,0,0,0,3.315219,0.04154791,8.698066,12.05483,0,3544.103,-,-
+347.5,1171.8345438838,9.99999961853027,9.99999961853027,0,1.680211,593.6995,220.1585,220.1585,873.7681,-148.1575,13.68771,54.32397,-9.211259,13.68771,0,0,3,0.7463735,0.8865036,0,0,0,3.315219,0.04154791,8.698066,12.05483,0,3544.103,-,-
+348.5,1174.61232155561,9.99999961853027,9.99999961853027,0,1.680211,593.6995,220.1585,220.1585,873.7681,-148.1575,13.68771,54.32397,-9.211259,13.68771,0,0,3,0.7463735,0.8865036,0,0,0,3.315219,0.04154791,8.698066,12.05483,0,3544.103,-,-
+349.5,1177.39009922743,9.99999961853027,9.99999961853027,0,1.680211,593.6995,220.1585,220.1585,873.7681,-148.1575,13.68771,54.32397,-9.211259,13.68771,0,0,3,0.7463735,0.8865036,0,0,0,3.315219,0.04154791,8.698066,12.05483,0,3544.103,-,-
+350.5,1180.16787689924,9.99999961853027,9.99999961853027,0,1.5579,593.6995,209.6119,209.6119,873.7681,-148.1575,13.03201,54.32397,-9.211259,13.03201,0,0,3,0.7332591,0.876865,0,0,0,3.315284,0.04154791,8.065048,11.42188,0,3433.469,-,-
+351.5,1182.94565457106,9.99999961853027,9.99999961853027,0,1.5579,593.6995,209.6119,209.6119,869.8132,-148.1575,13.03201,54.07808,-9.211259,13.03201,0,0,3,0.7332591,0.876865,0,0,0,3.315284,0.04154791,8.065048,11.42188,0,3433.469,-,-
+352.5,1185.72343224287,9.99999961853027,9.99999961853027,0,1.5579,593.6995,209.6119,209.6119,869.8132,-148.1575,13.03201,54.07808,-9.211259,13.03201,0,0,3,0.7332591,0.876865,0,0,0,3.315284,0.04154791,8.065048,11.42188,0,3433.469,-,-
+353.5,1188.50120991468,9.99999961853027,9.99999961853027,0,1.5579,593.6995,209.6119,209.6119,869.8132,-148.1575,13.03201,54.07808,-9.211259,13.03201,0,0,3,0.7332591,0.876865,0,0,0,3.315284,0.04154791,8.065048,11.42188,0,3433.469,-,-
+354.5,1191.2789875865,9.99999961853027,9.99999961853027,0,1.5579,593.6995,209.6119,209.6119,869.8132,-148.1575,13.03201,54.07808,-9.211259,13.03201,0,0,3,0.7332591,0.876865,0,0,0,3.315284,0.04154791,8.065048,11.42188,0,3433.469,-,-
+355.5,1194.05676525831,9.99999961853027,9.99999961853027,0,1.5579,593.6995,209.6119,209.6119,869.8132,-148.1575,13.03201,54.07808,-9.211259,13.03201,0,0,3,0.7332591,0.876865,0,0,0,3.315284,0.04154791,8.065048,11.42188,0,3433.469,-,-
+356.5,1196.83454293013,9.99999961853027,9.99999961853027,0,1.5579,593.6995,209.6119,209.6119,869.8132,-148.1575,13.03201,54.07808,-9.211259,13.03201,0,0,3,0.7332591,0.876865,0,0,0,3.315284,0.04154791,8.065048,11.42188,0,3433.469,-,-
+357.5,1199.61232060194,9.99999961853027,9.99999961853027,0,1.5579,593.6995,209.6119,209.6119,869.8132,-148.1575,13.03201,54.07808,-9.211259,13.03201,0,0,3,0.7332591,0.876865,0,0,0,3.315284,0.04154791,8.065048,11.42188,0,3433.469,-,-
+358.5,1202.39009827375,9.99999961853027,9.99999961853027,0,1.5579,593.6995,209.6119,209.6119,869.8132,-148.1575,13.03201,54.07808,-9.211259,13.03201,0,0,3,0.7332591,0.876865,0,0,0,3.315284,0.04154791,8.065048,11.42188,0,3433.469,-,-
+359.5,1205.16787594557,9.99999961853027,9.99999961853027,0,1.5579,593.6995,209.6119,209.6119,869.8132,-148.1575,13.03201,54.07808,-9.211259,13.03201,0,0,3,0.7332591,0.876865,0,0,0,3.315284,0.04154791,8.065048,11.42188,0,3433.469,-,-
+360.5,1207.94565361738,9.99999961853027,9.99999961853027,0,1.5579,593.6995,209.6119,209.6119,869.8132,-148.1575,13.03201,54.07808,-9.211259,13.03201,0,0,3,0.7332591,0.876865,0,0,0,3.315284,0.04154791,8.065048,11.42188,0,3433.469,-,-
+361.5,1210.7234312892,9.99999961853027,9.99999961853027,0,1.429176,593.6995,198.5116,198.5116,869.8132,-148.1575,12.34187,54.07808,-9.211259,12.34187,0,0,3,0.7194568,0.86672,0,0,0,3.315348,0.04154791,7.398801,10.7557,0,3318.508,-,-
+362.5,1213.50120896101,9.99999961853027,9.99999961853027,0,1.429176,593.6995,198.5116,198.5116,865.6505,-148.1575,12.34187,53.81928,-9.211259,12.34187,0,0,3,0.7194568,0.86672,0,0,0,3.315348,0.04154791,7.398801,10.7557,0,3318.508,-,-
+363.5,1216.27898663282,9.99999961853027,9.99999961853027,0,1.429176,593.6995,198.5116,198.5116,865.6505,-148.1575,12.34187,53.81928,-9.211259,12.34187,0,0,3,0.7194568,0.86672,0,0,0,3.315348,0.04154791,7.398801,10.7557,0,3318.508,-,-
+364.5,1219.05676430464,9.99999961853027,9.99999961853027,0,1.429176,593.6995,198.5116,198.5116,865.6505,-148.1575,12.34187,53.81928,-9.211259,12.34187,0,0,3,0.7194568,0.86672,0,0,0,3.315348,0.04154791,7.398801,10.7557,0,3318.508,-,-
+365.5,1221.83454197645,9.99999961853027,9.99999961853027,0,1.429176,593.6995,198.5116,198.5116,865.6505,-148.1575,12.34187,53.81928,-9.211259,12.34187,0,0,3,0.7194568,0.86672,0,0,0,3.315348,0.04154791,7.398801,10.7557,0,3318.508,-,-
+366.5,1224.61231964827,9.99999961853027,9.99999961853027,0,1.429176,593.6995,198.5116,198.5116,865.6505,-148.1575,12.34187,53.81928,-9.211259,12.34187,0,0,3,0.7194568,0.86672,0,0,0,3.315348,0.04154791,7.398801,10.7557,0,3318.508,-,-
+367.5,1227.39009732008,9.99999961853027,9.99999961853027,0,1.429176,593.6995,198.5116,198.5116,865.6505,-148.1575,12.34187,53.81928,-9.211259,12.34187,0,0,3,0.7194568,0.86672,0,0,0,3.315348,0.04154791,7.398801,10.7557,0,3318.508,-,-
+368.5,1230.16787499189,9.99999961853027,9.99999961853027,0,1.429176,593.6995,198.5116,198.5116,865.6505,-148.1575,12.34187,53.81928,-9.211259,12.34187,0,0,3,0.7194568,0.86672,0,0,0,3.315348,0.04154791,7.398801,10.7557,0,3318.508,-,-
+369.5,1232.94565266371,9.99999961853027,9.99999961853027,0,1.429176,593.6995,198.5116,198.5116,865.6505,-148.1575,12.34187,53.81928,-9.211259,12.34187,0,0,3,0.7194568,0.86672,0,0,0,3.315348,0.04154791,7.398801,10.7557,0,3318.508,-,-
+370.5,1235.72343033552,9.99999961853027,9.99999961853027,0,1.429176,593.6995,198.5116,198.5116,865.6505,-148.1575,12.34187,53.81928,-9.211259,12.34187,0,0,3,0.7194568,0.86672,0,0,0,3.315348,0.04154791,7.398801,10.7557,0,3318.508,-,-
+371.5,1238.50120800734,9.99999961853027,9.99999961853027,0,1.364814,593.6995,192.9612,192.9612,865.6505,-148.1575,11.99679,53.81928,-9.211259,11.99679,0,0,3,0.7125551,0.8616474,0,0,0,3.315378,0.04154791,7.065665,10.42259,0,3265.807,-,-
+372.5,1241.27898567915,9.99999961853027,9.99999961853027,0,1.300452,593.6995,187.4105,187.4105,863.5691,-148.1575,11.6517,53.68988,-9.211259,11.6517,0,0,3,0.7056529,0.8565744,0,0,0,3.315406,0.04154791,6.73252,10.08947,0,3213.104,-,-
+373.5,1244.05676335096,9.99999961853027,9.99999961853027,0,1.300452,593.6995,187.4105,187.4105,861.4876,-148.1575,11.6517,53.56047,-9.211259,11.6517,0,0,3,0.7056529,0.8565744,0,0,0,3.315406,0.04154791,6.73252,10.08947,0,3213.104,-,-
+374.5,1246.83454102278,9.99999961853027,9.99999961853027,0,1.300452,593.6995,187.4105,187.4105,861.4876,-148.1575,11.6517,53.56047,-9.211259,11.6517,0,0,3,0.7056529,0.8565744,0,0,0,3.315406,0.04154791,6.73252,10.08947,0,3213.104,-,-
+375.5,1249.61231869459,9.99999961853027,9.99999961853027,0,1.300452,593.6995,187.4105,187.4105,861.4876,-148.1575,11.6517,53.56047,-9.211259,11.6517,0,0,3,0.7056529,0.8565744,0,0,0,3.315406,0.04154791,6.73252,10.08947,0,3213.104,-,-
+376.5,1252.39009636641,9.99999961853027,9.99999961853027,0,1.300452,593.6995,187.4105,187.4105,861.4876,-148.1575,11.6517,53.56047,-9.211259,11.6517,0,0,3,0.7056529,0.8565744,0,0,0,3.315406,0.04154791,6.73252,10.08947,0,3213.104,-,-
+377.5,1255.16787403822,9.99999961853027,9.99999961853027,0,1.300452,593.6995,187.4105,187.4105,861.4876,-148.1575,11.6517,53.56047,-9.211259,11.6517,0,0,3,0.7056529,0.8565744,0,0,0,3.315406,0.04154791,6.73252,10.08947,0,3213.104,-,-
+378.5,1257.94565171003,9.99999961853027,9.99999961853027,0,1.300452,593.6995,187.4105,187.4105,861.4876,-148.1575,11.6517,53.56047,-9.211259,11.6517,0,0,3,0.7056529,0.8565744,0,0,0,3.315406,0.04154791,6.73252,10.08947,0,3213.104,-,-
+379.5,1260.72342938185,9.99999961853027,9.99999961853027,0,1.300452,593.6995,187.4105,187.4105,861.4876,-148.1575,11.6517,53.56047,-9.211259,11.6517,0,0,3,0.7056529,0.8565744,0,0,0,3.315406,0.04154791,6.73252,10.08947,0,3213.104,-,-
+380.5,1263.50120705366,9.99999961853027,9.99999961853027,0,1.300452,593.6995,187.4105,187.4105,861.4876,-148.1575,11.6517,53.56047,-9.211259,11.6517,0,0,3,0.7056529,0.8565744,0,0,0,3.315406,0.04154791,6.73252,10.08947,0,3213.104,-,-
+381.5,1266.27898472548,9.99999961853027,9.99999961853027,0,1.300452,593.6995,187.4105,187.4105,861.4876,-148.1575,11.6517,53.56047,-9.211259,11.6517,0,0,3,0.7056529,0.8565744,0,0,0,3.315406,0.04154791,6.73252,10.08947,0,3213.104,-,-
+382.5,1269.05676239729,9.99999961853027,9.99999961853027,0,1.171728,593.6995,176.3089,176.3089,861.4876,-148.1575,10.96149,53.56047,-9.211259,10.96149,0,0,3,0.6918491,0.846428,0,0,0,3.315459,0.04154791,6.066203,9.42321,0,3107.693,-,-
+383.5,1271.8345400691,9.99999961853027,9.99999961853027,0,1.171728,593.6995,176.3089,176.3089,857.3245,-148.1575,10.96149,53.30164,-9.211259,10.96149,0,0,3,0.6918491,0.846428,0,0,0,3.315459,0.04154791,6.066203,9.42321,0,3107.693,-,-
+384.5,1274.61231774092,9.99999961853027,9.99999961853027,0,1.171728,593.6995,176.3089,176.3089,857.3245,-148.1575,10.96149,53.30164,-9.211259,10.96149,0,0,3,0.6918491,0.846428,0,0,0,3.315459,0.04154791,6.066203,9.42321,0,3107.693,-,-
+385.5,1277.39009541273,9.99999961853027,9.99999961853027,0,1.171728,593.6995,176.3089,176.3089,857.3245,-148.1575,10.96149,53.30164,-9.211259,10.96149,0,0,3,0.6918491,0.846428,0,0,0,3.315459,0.04154791,6.066203,9.42321,0,3107.693,-,-
+386.5,1280.16787308455,9.99999961853027,9.99999961853027,0,1.171728,593.6995,176.3089,176.3089,857.3245,-148.1575,10.96149,53.30164,-9.211259,10.96149,0,0,3,0.6918491,0.846428,0,0,0,3.315459,0.04154791,6.066203,9.42321,0,3107.693,-,-
+387.5,1282.94565075636,9.99999961853027,9.99999961853027,0,1.171728,593.6995,176.3089,176.3089,857.3245,-148.1575,10.96149,53.30164,-9.211259,10.96149,0,0,3,0.6918491,0.846428,0,0,0,3.315459,0.04154791,6.066203,9.42321,0,3107.693,-,-
+388.5,1285.72342842817,9.99999961853027,9.99999961853027,0,1.171728,593.6995,176.3089,176.3089,857.3245,-148.1575,10.96149,53.30164,-9.211259,10.96149,0,0,3,0.6918491,0.846428,0,0,0,3.315459,0.04154791,6.066203,9.42321,0,3107.693,-,-
+389.5,1288.50120609999,9.99999961853027,9.99999961853027,0,1.171728,593.6995,176.3089,176.3089,857.3245,-148.1575,10.96149,53.30164,-9.211259,10.96149,0,0,3,0.6918491,0.846428,0,0,0,3.315459,0.04154791,6.066203,9.42321,0,3107.693,-,-
+390.5,1291.2789837718,9.99999961853027,9.99999961853027,0,1.171728,593.6995,176.3089,176.3089,857.3245,-148.1575,10.96149,53.30164,-9.211259,10.96149,0,0,3,0.6918491,0.846428,0,0,0,3.315459,0.04154791,6.066203,9.42321,0,3107.693,-,-
+391.5,1294.05676144362,9.99999961853027,9.99999961853027,0,1.171728,593.6995,176.3089,176.3089,857.3245,-148.1575,10.96149,53.30164,-9.211259,10.96149,0,0,3,0.6918491,0.846428,0,0,0,3.315459,0.04154791,6.066203,9.42321,0,3107.693,-,-
+392.5,1296.83453911543,9.99999961853027,9.99999961853027,0,1.171728,593.6995,176.3089,176.3089,857.3245,-148.1575,10.96149,53.30164,-9.211259,10.96149,0,0,3,0.6918491,0.846428,0,0,0,3.315459,0.04154791,6.066203,9.42321,0,3107.693,-,-
+393.5,1299.61231678724,9.99999961853027,9.99999961853027,0,1.043003,593.6995,165.2066,165.2066,857.3245,-148.1575,10.27124,53.30164,-9.211259,10.27124,0,0,3,0.6780436,0.8362815,0,0,0,3.315506,0.04154791,5.399857,8.756911,0,3002.277,-,-
+394.5,1302.39009445906,9.99999961853027,9.99999961853027,0,1.043003,593.6995,165.2066,165.2066,853.1611,-148.1575,10.27124,53.04279,-9.211259,10.27124,0,0,3,0.6780436,0.8362815,0,0,0,3.315506,0.04154791,5.399857,8.756911,0,3002.277,-,-
+395.5,1305.16787213087,9.99999961853027,9.99999961853027,0,1.043003,593.6995,165.2066,165.2066,853.1611,-148.1575,10.27124,53.04279,-9.211259,10.27124,0,0,3,0.6780436,0.8362815,0,0,0,3.315506,0.04154791,5.399857,8.756911,0,3002.277,-,-
+396.5,1307.94564980268,9.99999961853027,9.99999961853027,0,1.043003,593.6995,165.2066,165.2066,853.1611,-148.1575,10.27124,53.04279,-9.211259,10.27124,0,0,3,0.6780436,0.8362815,0,0,0,3.315506,0.04154791,5.399857,8.756911,0,3002.277,-,-
+397.5,1310.7234274745,9.99999961853027,9.99999961853027,0,1.043003,593.6995,165.2066,165.2066,853.1611,-148.1575,10.27124,53.04279,-9.211259,10.27124,0,0,3,0.6780436,0.8362815,0,0,0,3.315506,0.04154791,5.399857,8.756911,0,3002.277,-,-
+398.5,1313.50120514631,9.99999961853027,9.99999961853027,0,1.043003,593.6995,165.2066,165.2066,853.1611,-148.1575,10.27124,53.04279,-9.211259,10.27124,0,0,3,0.6780436,0.8362815,0,0,0,3.315506,0.04154791,5.399857,8.756911,0,3002.277,-,-
+399.5,1316.27898281813,9.99999961853027,9.99999961853027,0,1.043003,593.6995,165.2066,165.2066,853.1611,-148.1575,10.27124,53.04279,-9.211259,10.27124,0,0,3,0.6780436,0.8362815,0,0,0,3.315506,0.04154791,5.399857,8.756911,0,3002.277,-,-
+400.5,1319.05676048994,9.99999961853027,9.99999961853027,0,1.043003,593.6995,165.2066,165.2066,853.1611,-148.1575,10.27124,53.04279,-9.211259,10.27124,0,0,3,0.6780436,0.8362815,0,0,0,3.315506,0.04154791,5.399857,8.756911,0,3002.277,-,-
+401.5,1321.83453816175,9.99999961853027,9.99999961853027,0,1.043003,593.6995,165.2066,165.2066,853.1611,-148.1575,10.27124,53.04279,-9.211259,10.27124,0,0,3,0.6780436,0.8362815,0,0,0,3.315506,0.04154791,5.399857,8.756911,0,3002.277,-,-
+402.5,1324.61231583357,9.99999961853027,9.99999961853027,0,1.043003,593.6995,165.2066,165.2066,853.1611,-148.1575,10.27124,53.04279,-9.211259,10.27124,0,0,3,0.6780436,0.8362815,0,0,0,3.315506,0.04154791,5.399857,8.756911,0,3002.277,-,-
+403.5,1327.39009350538,9.99999961853027,9.99999961853027,0,1.043003,593.6995,165.2066,165.2066,853.1611,-148.1575,10.27124,53.04279,-9.211259,10.27124,0,0,3,0.6780436,0.8362815,0,0,0,3.315506,0.04154791,5.399857,8.756911,0,3002.277,-,-
+404.5,1330.1678711772,9.99999961853027,9.99999961853027,0,0.9142793,593.6995,154.1038,154.1038,853.1611,-148.1575,9.580951,53.04279,-9.211259,9.580951,0,0,3,0.6642381,0.826134,0,0,0,3.315548,0.04154791,4.733483,8.090579,0,2896.856,-,-
+405.5,1332.94564884901,9.99999961853027,9.99999961853027,0,0.9142793,593.6995,154.1038,154.1038,848.9976,-148.1575,9.580951,52.78394,-9.211259,9.580951,0,0,3,0.6642381,0.826134,0,0,0,3.315548,0.04154791,4.733483,8.090579,0,2896.856,-,-
+406.5,1335.72342652082,9.99999961853027,9.99999961853027,0,0.9142793,593.6995,154.1038,154.1038,848.9976,-148.1575,9.580951,52.78394,-9.211259,9.580951,0,0,3,0.6642381,0.826134,0,0,0,3.315548,0.04154791,4.733483,8.090579,0,2896.856,-,-
+407.5,1338.50120419264,9.99999961853027,9.99999961853027,0,0.9142793,593.6995,154.1038,154.1038,848.9976,-148.1575,9.580951,52.78394,-9.211259,9.580951,0,0,3,0.6642381,0.826134,0,0,0,3.315548,0.04154791,4.733483,8.090579,0,2896.856,-,-
+408.5,1341.27898186445,9.99999961853027,9.99999961853027,0,0.9142793,593.6995,154.1038,154.1038,848.9976,-148.1575,9.580951,52.78394,-9.211259,9.580951,0,0,3,0.6642381,0.826134,0,0,0,3.315548,0.04154791,4.733483,8.090579,0,2896.856,-,-
+409.5,1344.05675953627,9.99999961853027,9.99999961853027,0,0.9142793,593.6995,154.1038,154.1038,848.9976,-148.1575,9.580951,52.78394,-9.211259,9.580951,0,0,3,0.6642381,0.826134,0,0,0,3.315548,0.04154791,4.733483,8.090579,0,2896.856,-,-
+410.5,1346.83453720808,9.99999961853027,9.99999961853027,0,0.9142793,593.6995,154.1038,154.1038,848.9976,-148.1575,9.580951,52.78394,-9.211259,9.580951,0,0,3,0.6642381,0.826134,0,0,0,3.315548,0.04154791,4.733483,8.090579,0,2896.856,-,-
+411.5,1349.61231487989,9.99999961853027,9.99999961853027,0,0.9142793,593.6995,154.1038,154.1038,848.9976,-148.1575,9.580951,52.78394,-9.211259,9.580951,0,0,3,0.6642381,0.826134,0,0,0,3.315548,0.04154791,4.733483,8.090579,0,2896.856,-,-
+412.5,1352.39009255171,9.99999961853027,9.99999961853027,0,0.9142793,593.6995,154.1038,154.1038,848.9976,-148.1575,9.580951,52.78394,-9.211259,9.580951,0,0,3,0.6642381,0.826134,0,0,0,3.315548,0.04154791,4.733483,8.090579,0,2896.856,-,-
+413.5,1355.16787022352,9.99999961853027,9.99999961853027,0,0.9142793,593.6995,154.1038,154.1038,848.9976,-148.1575,9.580951,52.78394,-9.211259,9.580951,0,0,3,0.6642381,0.826134,0,0,0,3.315548,0.04154791,4.733483,8.090579,0,2896.856,-,-
+414.5,1357.94564789534,9.99999961853027,9.99999961853027,0,0.9142793,593.6995,154.1038,154.1038,848.9976,-148.1575,9.580951,52.78394,-9.211259,9.580951,0,0,3,0.6642381,0.826134,0,0,0,3.315548,0.04154791,4.733483,8.090579,0,2896.856,-,-
+415.5,1360.72342556715,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,848.9976,-148.1575,9.032977,52.78394,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+416.5,1363.50120323896,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+417.5,1366.27898091078,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+418.5,1369.05675858259,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+419.5,1371.83453625441,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+420.5,1374.61231392622,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+421.5,1377.39009159803,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+422.5,1380.16786926985,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+423.5,1382.94564694166,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+424.5,1385.72342461348,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+425.5,1388.50120228529,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+426.5,1391.2789799571,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+427.5,1394.05675762892,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+428.5,1396.83453530073,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+429.5,1399.61231297255,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+430.5,1402.39009064436,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+431.5,1405.16786831617,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+432.5,1407.94564598799,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+433.5,1410.7234236598,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+434.5,1413.50120133162,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+435.5,1416.27897900343,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+436.5,1419.05675667524,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+437.5,1421.83453434706,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+438.5,1424.61231201887,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+439.5,1427.39008969069,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+440.5,1430.1678673625,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+441.5,1432.94564503431,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+442.5,1435.72342270613,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+443.5,1438.50120037794,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+444.5,1441.27897804976,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+445.5,1444.05675572157,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+446.5,1446.83453339338,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+447.5,1449.6123110652,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+448.5,1452.39008873701,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+449.5,1455.16786640882,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+450.5,1457.94564408064,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+451.5,1460.72342175245,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+452.5,1463.50119942427,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+453.5,1466.27897709608,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+454.5,1469.05675476789,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+455.5,1471.83453243971,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+456.5,1474.61231011152,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+457.5,1477.39008778334,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+458.5,1480.16786545515,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+459.5,1482.94564312696,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+460.5,1485.72342079878,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+461.5,1488.50119847059,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+462.5,1491.27897614241,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+463.5,1494.05675381422,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+464.5,1496.83453148603,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+465.5,1499.61230915785,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+466.5,1502.39008682966,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+467.5,1505.16786450148,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+468.5,1507.94564217329,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+469.5,1510.7234198451,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+470.5,1513.50119751692,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+471.5,1516.27897518873,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+472.5,1519.05675286055,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+473.5,1521.83453053236,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+474.5,1524.61230820417,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+475.5,1527.39008587599,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+476.5,1530.1678635478,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+477.5,1532.94564121962,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+478.5,1535.72341889143,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+479.5,1538.50119656324,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+480.5,1541.27897423506,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+481.5,1544.05675190687,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+482.5,1546.83452957869,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+483.5,1549.6123072505,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+484.5,1552.39008492231,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+485.5,1555.16786259413,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+486.5,1557.94564026594,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+487.5,1560.72341793776,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+488.5,1563.50119560957,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+489.5,1566.27897328138,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+490.5,1569.0567509532,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+491.5,1571.83452862501,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+492.5,1574.61230629683,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+493.5,1577.39008396864,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+494.5,1580.16786164045,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+495.5,1582.94563931227,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+496.5,1585.72341698408,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+497.5,1588.5011946559,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+498.5,1591.27897232771,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+499.5,1594.05674999952,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+500.5,1596.83452767134,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+501.5,1599.61230534315,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+502.5,1602.39008301497,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+503.5,1605.16786068678,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+504.5,1607.94563835859,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+505.5,1610.72341603041,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+506.5,1613.50119370222,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+507.5,1616.27897137403,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+508.5,1619.05674904585,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+509.5,1621.83452671766,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+510.5,1624.61230438948,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+511.5,1627.39008206129,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+512.5,1630.1678597331,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+513.5,1632.94563740492,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+514.5,1635.72341507673,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+515.5,1638.50119274855,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+516.5,1641.27897042036,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+517.5,1644.05674809217,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+518.5,1646.83452576399,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+519.5,1649.6123034358,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+520.5,1652.39008110762,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+521.5,1655.16785877943,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+522.5,1657.94563645124,9.99999961853027,9.99999961853027,0,0.8113,593.6995,145.29,145.29,845.6924,-148.1575,9.032977,52.57845,-9.211259,9.032977,0,0,3,0.6532784,0.8222056,0,0,0,3.315578,0.04154791,4.200367,7.557493,0,2813.169,-,-
+523.5,1660.72341412306,9.99999961853027,9.99999961853027,0,0.7063125,593.6995,136.3697,136.3697,845.6924,-148.1575,8.478386,52.57845,-9.211259,8.478386,0,0,3,0.6421874,0.8222052,0,0,0,3.315604,0.04154791,3.656842,7.013993,0,2728.471,-,-
+524.5,1663.50119179487,9.99999961853027,9.99999961853027,0,0.7063125,593.6995,136.3697,136.3697,842.3473,-148.1575,8.478386,52.37047,-9.211259,8.478386,0,0,3,0.6421874,0.8222052,0,0,0,3.315604,0.04154791,3.656842,7.013993,0,2728.471,-,-
+525.5,1666.27896946669,9.99999961853027,9.99999961853027,0,0.7063125,593.6995,136.3697,136.3697,842.3473,-148.1575,8.478386,52.37047,-9.211259,8.478386,0,0,3,0.6421874,0.8222052,0,0,0,3.315604,0.04154791,3.656842,7.013993,0,2728.471,-,-
+526.5,1669.0567471385,9.99999961853027,9.99999961853027,0,0.7063125,593.6995,136.3697,136.3697,842.3473,-148.1575,8.478386,52.37047,-9.211259,8.478386,0,0,3,0.6421874,0.8222052,0,0,0,3.315604,0.04154791,3.656842,7.013993,0,2728.471,-,-
+527.5,1671.83452481031,9.99999961853027,9.99999961853027,0,0.7063125,593.6995,136.3697,136.3697,842.3473,-148.1575,8.478386,52.37047,-9.211259,8.478386,0,0,3,0.6421874,0.8222052,0,0,0,3.315604,0.04154791,3.656842,7.013993,0,2728.471,-,-
+528.5,1674.61230248213,9.99999961853027,9.99999961853027,0,0.7063125,593.6995,136.3697,136.3697,842.3473,-148.1575,8.478386,52.37047,-9.211259,8.478386,0,0,3,0.6421874,0.8222052,0,0,0,3.315604,0.04154791,3.656842,7.013993,0,2728.471,-,-
+529.5,1677.39008015394,9.99999961853027,9.99999961853027,0,0.7063125,593.6995,136.3697,136.3697,842.3473,-148.1575,8.478386,52.37047,-9.211259,8.478386,0,0,3,0.6421874,0.8222052,0,0,0,3.315604,0.04154791,3.656842,7.013993,0,2728.471,-,-
+530.5,1680.16785782576,9.99999961853027,9.99999961853027,0,0.7063125,593.6995,136.3697,136.3697,842.3473,-148.1575,8.478386,52.37047,-9.211259,8.478386,0,0,3,0.6421874,0.8222052,0,0,0,3.315604,0.04154791,3.656842,7.013993,0,2728.471,-,-
+531.5,1682.94563549757,9.99999961853027,9.99999961853027,0,0.7063125,593.6995,136.3697,136.3697,842.3473,-148.1575,8.478386,52.37047,-9.211259,8.478386,0,0,3,0.6421874,0.8222052,0,0,0,3.315604,0.04154791,3.656842,7.013993,0,2728.471,-,-
+532.5,1685.72341316938,9.99999961853027,9.99999961853027,0,0.7063125,593.6995,136.3697,136.3697,842.3473,-148.1575,8.478386,52.37047,-9.211259,8.478386,0,0,3,0.6421874,0.8222052,0,0,0,3.315604,0.04154791,3.656842,7.013993,0,2728.471,-,-
+533.5,1688.5011908412,9.99999961853027,9.99999961853027,0,0.7063125,593.6995,136.3697,136.3697,842.3473,-148.1575,8.478386,52.37047,-9.211259,8.478386,0,0,3,0.6421874,0.8222052,0,0,0,3.315604,0.04154791,3.656842,7.013993,0,2728.471,-,-
+534.5,1691.27896851301,9.99999961853027,9.99999961853027,0,0.7063125,593.6995,136.3697,136.3697,842.3473,-148.1575,8.478386,52.37047,-9.211259,8.478386,0,0,3,0.6421874,0.8222052,0,0,0,3.315604,0.04154791,3.656842,7.013993,0,2728.471,-,-
+535.5,1694.05674618483,9.99999961853027,9.99999961853027,0,0.7063125,593.6995,136.3697,136.3697,842.3473,-148.1575,8.478386,52.37047,-9.211259,8.478386,0,0,3,0.6421874,0.8222052,0,0,0,3.315604,0.04154791,3.656842,7.013993,0,2728.471,-,-
+536.5,1696.83452385664,9.99999961853027,9.99999961853027,0,0.7063125,593.6995,136.3697,136.3697,842.3473,-148.1575,8.478386,52.37047,-9.211259,8.478386,0,0,3,0.6421874,0.8222052,0,0,0,3.315604,0.04154791,3.656842,7.013993,0,2728.471,-,-
+537.5,1699.61230152845,9.99999961853027,9.99999961853027,0,0.7063125,593.6995,136.3697,136.3697,842.3473,-148.1575,8.478386,52.37047,-9.211259,8.478386,0,0,3,0.6421874,0.8222052,0,0,0,3.315604,0.04154791,3.656842,7.013993,0,2728.471,-,-
+538.5,1702.39007920027,9.99999961853027,9.99999961853027,0,0.7063125,593.6995,136.3697,136.3697,842.3473,-148.1575,8.478386,52.37047,-9.211259,8.478386,0,0,3,0.6421874,0.8222052,0,0,0,3.315604,0.04154791,3.656842,7.013993,0,2728.471,-,-
+539.5,1705.16785687208,9.99999961853027,9.99999961853027,0,0.7063125,593.6995,136.3697,136.3697,842.3473,-148.1575,8.478386,52.37047,-9.211259,8.478386,0,0,3,0.6421874,0.8222052,0,0,0,3.315604,0.04154791,3.656842,7.013993,0,2728.471,-,-
+540.5,1707.9456345439,9.99999961853027,9.99999961853027,0,0.7063125,593.6995,136.3697,136.3697,842.3473,-148.1575,8.478386,52.37047,-9.211259,8.478386,0,0,3,0.6421874,0.8222052,0,0,0,3.315604,0.04154791,3.656842,7.013993,0,2728.471,-,-
+541.5,1710.72341221571,9.99999961853027,9.99999961853027,0,0.5870085,593.6995,126.2327,126.2327,842.3473,-148.1575,7.848148,52.37047,-9.211259,7.848148,0,0,3,0.6295821,0.8222052,0,0,0,3.315629,0.04154791,3.039184,6.396361,0,2632.22,-,-
+542.5,1713.50118988752,9.99999961853027,9.99999961853027,0,0.5870085,593.6995,126.2327,126.2327,838.5459,-148.1575,7.848148,52.13413,-9.211259,7.848148,0,0,3,0.6295821,0.8222052,0,0,0,3.315629,0.04154791,3.039184,6.396361,0,2632.22,-,-
+543.5,1716.27896755934,9.99999961853027,9.99999961853027,0,0.5870085,593.6995,126.2327,126.2327,838.5459,-148.1575,7.848148,52.13413,-9.211259,7.848148,0,0,3,0.6295821,0.8222052,0,0,0,3.315629,0.04154791,3.039184,6.396361,0,2632.22,-,-
+544.5,1719.05674523115,9.99999961853027,9.99999961853027,0,0.5870085,593.6995,126.2327,126.2327,838.5459,-148.1575,7.848148,52.13413,-9.211259,7.848148,0,0,3,0.6295821,0.8222052,0,0,0,3.315629,0.04154791,3.039184,6.396361,0,2632.22,-,-
+545.5,1721.83452290297,9.99999961853027,9.99999961853027,0,0.5870085,593.6995,126.2327,126.2327,838.5459,-148.1575,7.848148,52.13413,-9.211259,7.848148,0,0,3,0.6295821,0.8222052,0,0,0,3.315629,0.04154791,3.039184,6.396361,0,2632.22,-,-
+546.5,1724.61230057478,9.99999961853027,9.99999961853027,0,0.5870085,593.6995,126.2327,126.2327,838.5459,-148.1575,7.848148,52.13413,-9.211259,7.848148,0,0,3,0.6295821,0.8222052,0,0,0,3.315629,0.04154791,3.039184,6.396361,0,2632.22,-,-
+547.5,1727.39007824659,9.99999961853027,9.99999961853027,0,0.5870085,593.6995,126.2327,126.2327,838.5459,-148.1575,7.848148,52.13413,-9.211259,7.848148,0,0,3,0.6295821,0.8222052,0,0,0,3.315629,0.04154791,3.039184,6.396361,0,2632.22,-,-
+548.5,1730.16785591841,9.99999961853027,9.99999961853027,0,0.5870085,593.6995,126.2327,126.2327,838.5459,-148.1575,7.848148,52.13413,-9.211259,7.848148,0,0,3,0.6295821,0.8222052,0,0,0,3.315629,0.04154791,3.039184,6.396361,0,2632.22,-,-
+549.5,1732.94563359022,9.99999961853027,9.99999961853027,0,0.5870085,593.6995,126.2327,126.2327,838.5459,-148.1575,7.848148,52.13413,-9.211259,7.848148,0,0,3,0.6295821,0.8222052,0,0,0,3.315629,0.04154791,3.039184,6.396361,0,2632.22,-,-
+550.5,1735.72341126204,9.99999961853027,9.99999961853027,0,0.5870085,593.6995,126.2327,126.2327,838.5459,-148.1575,7.848148,52.13413,-9.211259,7.848148,0,0,3,0.6295821,0.8222052,0,0,0,3.315629,0.04154791,3.039184,6.396361,0,2632.22,-,-
+551.5,1738.50118893385,9.99999961853027,9.99999961853027,0,0.5870085,593.6995,126.2327,126.2327,838.5459,-148.1575,7.848148,52.13413,-9.211259,7.848148,0,0,3,0.6295821,0.8222052,0,0,0,3.315629,0.04154791,3.039184,6.396361,0,2632.22,-,-
+552.5,1741.27896660566,9.99999961853027,9.99999961853027,0,0.5870085,593.6995,126.2327,126.2327,838.5459,-148.1575,7.848148,52.13413,-9.211259,7.848148,0,0,3,0.6295821,0.8222052,0,0,0,3.315629,0.04154791,3.039184,6.396361,0,2632.22,-,-
+553.5,1744.05674427748,9.99999961853027,9.99999961853027,0,0.5870085,593.6995,126.2327,126.2327,838.5459,-148.1575,7.848148,52.13413,-9.211259,7.848148,0,0,3,0.6295821,0.8222052,0,0,0,3.315629,0.04154791,3.039184,6.396361,0,2632.22,-,-
+554.5,1746.83452194929,9.99999961853027,9.99999961853027,0,0.5870085,593.6995,126.2327,126.2327,838.5459,-148.1575,7.848148,52.13413,-9.211259,7.848148,0,0,3,0.6295821,0.8222052,0,0,0,3.315629,0.04154791,3.039184,6.396361,0,2632.22,-,-
+555.5,1749.61229962111,9.99999961853027,9.99999961853027,0,0.5870085,593.6995,126.2327,126.2327,838.5459,-148.1575,7.848148,52.13413,-9.211259,7.848148,0,0,3,0.6295821,0.8222052,0,0,0,3.315629,0.04154791,3.039184,6.396361,0,2632.22,-,-
+556.5,1752.39007729292,9.99999961853027,9.99999961853027,0,0.5870085,593.6995,126.2327,126.2327,838.5459,-148.1575,7.848148,52.13413,-9.211259,7.848148,0,0,3,0.6295821,0.8222052,0,0,0,3.315629,0.04154791,3.039184,6.396361,0,2632.22,-,-
+557.5,1755.16785496473,9.99999961853027,9.99999961853027,0,0.5870085,593.6995,126.2327,126.2327,838.5459,-148.1575,7.848148,52.13413,-9.211259,7.848148,0,0,3,0.6295821,0.8222052,0,0,0,3.315629,0.04154791,3.039184,6.396361,0,2632.22,-,-
+558.5,1757.94563263655,9.99999961853027,9.99999961853027,0,0.5870085,593.6995,126.2327,126.2327,838.5459,-148.1575,7.848148,52.13413,-9.211259,7.848148,0,0,3,0.6295821,0.8222052,0,0,0,3.315629,0.04154791,3.039184,6.396361,0,2632.22,-,-
+559.5,1760.72341030836,9.99999961853027,9.99999961853027,0,0.4677045,593.6995,116.0955,116.0955,838.5459,-148.1575,7.217895,52.13413,-9.211259,7.217895,0,0,3,0.6169773,0.8222055,0,0,0,3.31565,0.04154791,2.421513,5.778712,0,2535.967,-,-
+560.5,1763.50118798018,9.99999961853027,9.99999961853027,0,0.4677045,593.6995,116.0955,116.0955,834.7444,-148.1575,7.217895,51.89779,-9.211259,7.217895,0,0,3,0.6169773,0.8222055,0,0,0,3.31565,0.04154791,2.421513,5.778712,0,2535.967,-,-
+561.5,1766.27896565199,9.99999961853027,9.99999961853027,0,0.4677045,593.6995,116.0955,116.0955,834.7444,-148.1575,7.217895,51.89779,-9.211259,7.217895,0,0,3,0.6169773,0.8222055,0,0,0,3.31565,0.04154791,2.421513,5.778712,0,2535.967,-,-
+562.5,1769.0567433238,9.99999961853027,9.99999961853027,0,0.4677045,593.6995,116.0955,116.0955,834.7444,-148.1575,7.217895,51.89779,-9.211259,7.217895,0,0,3,0.6169773,0.8222055,0,0,0,3.31565,0.04154791,2.421513,5.778712,0,2535.967,-,-
+563.5,1771.83452099562,9.99999961853027,9.99999961853027,0,0.4677045,593.6995,116.0955,116.0955,834.7444,-148.1575,7.217895,51.89779,-9.211259,7.217895,0,0,3,0.6169773,0.8222055,0,0,0,3.31565,0.04154791,2.421513,5.778712,0,2535.967,-,-
+564.5,1774.61229866743,9.99999961853027,9.99999961853027,0,0.4677045,593.6995,116.0955,116.0955,834.7444,-148.1575,7.217895,51.89779,-9.211259,7.217895,0,0,3,0.6169773,0.8222055,0,0,0,3.31565,0.04154791,2.421513,5.778712,0,2535.967,-,-
+565.5,1777.39007633924,9.99999961853027,9.99999961853027,0,0.4677045,593.6995,116.0955,116.0955,834.7444,-148.1575,7.217895,51.89779,-9.211259,7.217895,0,0,3,0.6169773,0.8222055,0,0,0,3.31565,0.04154791,2.421513,5.778712,0,2535.967,-,-
+566.5,1780.16785401106,9.99999961853027,9.99999961853027,0,0.4677045,593.6995,116.0955,116.0955,834.7444,-148.1575,7.217895,51.89779,-9.211259,7.217895,0,0,3,0.6169773,0.8222055,0,0,0,3.31565,0.04154791,2.421513,5.778712,0,2535.967,-,-
+567.5,1782.94563168287,9.99999961853027,9.99999961853027,0,0.4677045,593.6995,116.0955,116.0955,834.7444,-148.1575,7.217895,51.89779,-9.211259,7.217895,0,0,3,0.6169773,0.8222055,0,0,0,3.31565,0.04154791,2.421513,5.778712,0,2535.967,-,-
+568.5,1785.72340935469,9.99999961853027,9.99999961853027,0,0.4677045,593.6995,116.0955,116.0955,834.7444,-148.1575,7.217895,51.89779,-9.211259,7.217895,0,0,3,0.6169773,0.8222055,0,0,0,3.31565,0.04154791,2.421513,5.778712,0,2535.967,-,-
+569.5,1788.5011870265,9.99999961853027,9.99999961853027,0,0.4677045,593.6995,116.0955,116.0955,834.7444,-148.1575,7.217895,51.89779,-9.211259,7.217895,0,0,3,0.6169773,0.8222055,0,0,0,3.31565,0.04154791,2.421513,5.778712,0,2535.967,-,-
+570.5,1791.27896469831,9.99999961853027,9.99999961853027,0,0.4677045,593.6995,116.0955,116.0955,834.7444,-148.1575,7.217895,51.89779,-9.211259,7.217895,0,0,3,0.6169773,0.8222055,0,0,0,3.31565,0.04154791,2.421513,5.778712,0,2535.967,-,-
+571.5,1794.05674237013,9.99999961853027,9.99999961853027,0,0.4677045,593.6995,116.0955,116.0955,834.7444,-148.1575,7.217895,51.89779,-9.211259,7.217895,0,0,3,0.6169773,0.8222055,0,0,0,3.31565,0.04154791,2.421513,5.778712,0,2535.967,-,-
+572.5,1796.83452004194,9.99999961853027,9.99999961853027,0,0.4677045,593.6995,116.0955,116.0955,834.7444,-148.1575,7.217895,51.89779,-9.211259,7.217895,0,0,3,0.6169773,0.8222055,0,0,0,3.31565,0.04154791,2.421513,5.778712,0,2535.967,-,-
+573.5,1799.61229771376,9.99999961853027,9.99999961853027,0,0.4677045,593.6995,116.0955,116.0955,834.7444,-148.1575,7.217895,51.89779,-9.211259,7.217895,0,0,3,0.6169773,0.8222055,0,0,0,3.31565,0.04154791,2.421513,5.778712,0,2535.967,-,-
+574.5,1802.39007538557,9.99999961853027,9.99999961853027,0,0.4677045,593.6995,116.0955,116.0955,834.7444,-148.1575,7.217895,51.89779,-9.211259,7.217895,0,0,3,0.6169773,0.8222055,0,0,0,3.31565,0.04154791,2.421513,5.778712,0,2535.967,-,-
+575.5,1805.16785305738,9.99999961853027,9.99999961853027,0,0.4677045,593.6995,116.0955,116.0955,834.7444,-148.1575,7.217895,51.89779,-9.211259,7.217895,0,0,3,0.6169773,0.8222055,0,0,0,3.31565,0.04154791,2.421513,5.778712,0,2535.967,-,-
+576.5,1807.9456307292,9.99999961853027,9.99999961853027,0,0.4677045,593.6995,116.0955,116.0955,834.7444,-148.1575,7.217895,51.89779,-9.211259,7.217895,0,0,3,0.6169773,0.8222055,0,0,0,3.31565,0.04154791,2.421513,5.778712,0,2535.967,-,-
+577.5,1810.72340840101,9.99999961853027,9.99999961853027,0,0.3484004,593.6995,105.9579,105.9579,834.7444,-148.1575,6.587624,51.89779,-9.211259,6.587624,0,0,3,0.6043716,0.8222052,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2439.711,-,-
+578.5,1813.50118607283,9.99999961853027,9.99999961853027,0,0.3484004,593.6995,105.9579,105.9579,830.9429,-148.1575,6.587624,51.66144,-9.211259,6.587624,0,0,3,0.6043716,0.8222052,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2439.711,-,-
+579.5,1816.27896374464,9.99999961853027,9.99999961853027,0,0.3484004,593.6995,105.9579,105.9579,830.9429,-148.1575,6.587624,51.66144,-9.211259,6.587624,0,0,3,0.6043716,0.8222052,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2439.711,-,-
+580.5,1819.05674141645,9.99999961853027,9.99999961853027,0,0.3484004,593.6995,105.9579,105.9579,830.9429,-148.1575,6.587624,51.66144,-9.211259,6.587624,0,0,3,0.6043716,0.8222052,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2439.711,-,-
+581.5,1821.83451908827,9.99999961853027,9.99999961853027,0,0.3484004,593.6995,105.9579,105.9579,830.9429,-148.1575,6.587624,51.66144,-9.211259,6.587624,0,0,3,0.6043716,0.8222052,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2439.711,-,-
+582.5,1824.61229676008,9.99999961853027,9.99999961853027,0,0.3484004,593.6995,105.9579,105.9579,830.9429,-148.1575,6.587624,51.66144,-9.211259,6.587624,0,0,3,0.6043716,0.8222052,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2439.711,-,-
+583.5,1827.3900744319,9.99999961853027,9.99999961853027,0,0.3484004,593.6995,105.9579,105.9579,830.9429,-148.1575,6.587624,51.66144,-9.211259,6.587624,0,0,3,0.6043716,0.8222052,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2439.711,-,-
+584.5,1830.16785210371,9.99999961853027,9.99999961853027,0,0.3484004,593.6995,105.9579,105.9579,830.9429,-148.1575,6.587624,51.66144,-9.211259,6.587624,0,0,3,0.6043716,0.8222052,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2439.711,-,-
+585.5,1832.94562977552,9.99999961853027,9.99999961853027,0,0.3484004,593.6995,105.9579,105.9579,830.9429,-148.1575,6.587624,51.66144,-9.211259,6.587624,0,0,3,0.6043716,0.8222052,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2439.711,-,-
+586.5,1835.72340744734,9.99999961853027,9.99999961853027,0,0.3484004,593.6995,105.9579,105.9579,830.9429,-148.1575,6.587624,51.66144,-9.211259,6.587624,0,0,3,0.6043716,0.8222052,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2439.711,-,-
+587.5,1838.50118511915,9.99999961853027,9.99999961853027,0,0.3484004,593.6995,105.9579,105.9579,830.9429,-148.1575,6.587624,51.66144,-9.211259,6.587624,0,0,3,0.6043716,0.8222052,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2439.711,-,-
+588.5,1841.27896279097,9.99999961853027,9.99999961853027,0,0.3484004,593.6995,105.9579,105.9579,830.9429,-148.1575,6.587624,51.66144,-9.211259,6.587624,0,0,3,0.6043716,0.8222052,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2439.711,-,-
+589.5,1844.05674046278,9.99999961853027,9.99999961853027,0,0.3484004,593.6995,105.9579,105.9579,830.9429,-148.1575,6.587624,51.66144,-9.211259,6.587624,0,0,3,0.6043716,0.8222052,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2439.711,-,-
+590.5,1846.83451813459,9.99999961853027,9.99999961853027,0,0.3484004,593.6995,105.9579,105.9579,830.9429,-148.1575,6.587624,51.66144,-9.211259,6.587624,0,0,3,0.6043716,0.8222052,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2439.711,-,-
+591.5,1849.61229580641,9.99999961853027,9.99999961853027,0,0.3484004,593.6995,105.9579,105.9579,830.9429,-148.1575,6.587624,51.66144,-9.211259,6.587624,0,0,3,0.6043716,0.8222052,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2439.711,-,-
+592.5,1852.39007347822,9.99999961853027,9.99999961853027,0,0.3484004,593.6995,105.9579,105.9579,830.9429,-148.1575,6.587624,51.66144,-9.211259,6.587624,0,0,3,0.6043716,0.8222052,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2439.711,-,-
+593.5,1855.16785115004,9.99999961853027,9.99999961853027,0,0.3484004,593.6995,105.9579,105.9579,830.9429,-148.1575,6.587624,51.66144,-9.211259,6.587624,0,0,3,0.6043716,0.8222052,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2439.711,-,-
+594.5,1857.94562882185,9.99999961853027,9.99999961853027,0,0.3484004,593.6995,105.9579,105.9579,830.9429,-148.1575,6.587624,51.66144,-9.211259,6.587624,0,0,3,0.6043716,0.8222052,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2439.711,-,-
+595.5,1860.72340649366,9.99999961853027,9.99999961853027,0,0.3484004,593.6995,105.9579,105.9579,830.9429,-148.1575,6.587624,51.66144,-9.211259,6.587624,0,0,3,0.6043716,0.8222052,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2439.711,-,-
+596.5,1863.50118416548,9.99999961853027,9.99999961853027,0,0.3484004,593.6995,105.9579,105.9579,830.9429,-148.1575,6.587624,51.66144,-9.211259,6.587624,0,0,3,0.6043716,0.8222052,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2439.711,-,-
+597.5,1866.27896183729,9.99999961853027,9.99999961853027,0,0.3484004,593.6995,105.9579,105.9579,830.9429,-148.1575,6.587624,51.66144,-9.211259,6.587624,0,0,3,0.6043716,0.8222052,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2439.711,-,-
+598.5,1869.05673950911,9.99999961853027,9.99999961853027,0,0.3484004,593.6995,105.9579,105.9579,830.9429,-148.1575,6.587624,51.66144,-9.211259,6.587624,0,0,3,0.6043716,0.8222052,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2439.711,-,-
+599.5,1871.83451718092,9.99999961853027,9.99999961853027,0,0.3484004,593.6995,105.9579,105.9579,830.9429,-148.1575,6.587624,51.66144,-9.211259,6.587624,0,0,3,0.6043716,0.8222052,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2439.711,-,-
+600.5,1874.61229485273,9.99999961853027,9.99999961853027,0,0.3484004,593.6995,105.9579,105.9579,830.9429,-148.1575,6.587624,51.66144,-9.211259,6.587624,0,0,3,0.6043716,0.8222052,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2439.711,-,-
+601.5,1877.39007252455,9.99999961853027,9.99999961853027,0,0.3484004,593.6995,105.9579,105.9579,830.9429,-148.1575,6.587624,51.66144,-9.211259,6.587624,0,0,3,0.6043716,0.8222052,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2439.711,-,-
+602.5,1880.16785019636,9.99999961853027,9.99999961853027,0,0.3484004,593.6995,105.9579,105.9579,830.9429,-148.1575,6.587624,51.66144,-9.211259,6.587624,0,0,3,0.6043716,0.8222052,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2439.711,-,-
+603.5,1882.94562786818,9.99999961853027,9.99999961853027,0,0.3484004,593.6995,105.9579,105.9579,830.9429,-148.1575,6.587624,51.66144,-9.211259,6.587624,0,0,3,0.6043716,0.8222052,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2439.711,-,-
+604.5,1885.72340553999,9.99999961853027,9.99999961853027,0,0.3484004,593.6995,105.9579,105.9579,830.9429,-148.1575,6.587624,51.66144,-9.211259,6.587624,0,0,3,0.6043716,0.8222052,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2439.711,-,-
+605.5,1888.5011832118,9.99999961853027,9.99999961853027,0,0.3484004,593.6995,105.9579,105.9579,830.9429,-148.1575,6.587624,51.66144,-9.211259,6.587624,0,0,3,0.6043716,0.8222052,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2439.711,-,-
+606.5,1891.27896088362,9.99999961853027,9.99999961853027,0,0.3484004,593.6995,105.9579,105.9579,830.9429,-148.1575,6.587624,51.66144,-9.211259,6.587624,0,0,3,0.6043716,0.8222052,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2439.711,-,-
+607.5,1894.05673855543,9.99999961853027,9.99999961853027,0,0.3484004,593.6995,105.9579,105.9579,830.9429,-148.1575,6.587624,51.66144,-9.211259,6.587624,0,0,3,0.6043716,0.8222052,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2439.711,-,-
+608.5,1896.83451622725,9.99999961853027,9.99999961853027,0,0.3484004,593.6995,105.9579,105.9579,830.9429,-148.1575,6.587624,51.66144,-9.211259,6.587624,0,0,3,0.6043716,0.8222052,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2439.711,-,-
+609.5,1899.61229389906,9.99999961853027,9.99999961853027,0,0.3484004,593.6995,105.9579,105.9579,830.9429,-148.1575,6.587624,51.66144,-9.211259,6.587624,0,0,3,0.6043716,0.8222052,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2439.711,-,-
+610.5,1902.39007157087,9.99999961853027,9.99999961853027,0,0.3484004,593.6995,105.9579,105.9579,830.9429,-148.1575,6.587624,51.66144,-9.211259,6.587624,0,0,3,0.6043716,0.8222052,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2439.711,-,-
+611.5,1905.16784924269,9.99999961853027,9.99999961853027,0,0.3484004,593.6995,105.9579,105.9579,830.9429,-148.1575,6.587624,51.66144,-9.211259,6.587624,0,0,3,0.6043716,0.8222052,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2439.711,-,-
+612.5,1907.9456269145,9.99999961853027,9.99999961853027,0,0.3484004,593.6995,105.9579,105.9579,830.9429,-148.1575,6.587624,51.66144,-9.211259,6.587624,0,0,3,0.6043716,0.8222052,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2439.711,-,-
+613.5,1910.72340458632,9.99999961853027,9.99999961853027,0,0.3484004,593.6995,105.9579,105.9579,830.9429,-148.1575,6.587624,51.66144,-9.211259,6.587624,0,0,3,0.6043716,0.8222052,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2439.711,-,-
+614.5,1913.50118225813,9.99999961853027,9.99999961853027,0,0.3484004,593.6995,105.9579,105.9579,830.9429,-148.1575,6.587624,51.66144,-9.211259,6.587624,0,0,3,0.6043716,0.8222052,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2439.711,-,-
+615.5,1916.27895992994,9.99999961853027,9.99999961853027,0,0.3484004,593.6995,105.9579,105.9579,830.9429,-148.1575,6.587624,51.66144,-9.211259,6.587624,0,0,3,0.6043716,0.8222052,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2439.711,-,-
+616.5,1919.05673760176,9.99999961853027,9.99999961853027,0,0.3484004,593.6995,105.9579,105.9579,830.9429,-148.1575,6.587624,51.66144,-9.211259,6.587624,0,0,3,0.6043716,0.8222052,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2439.711,-,-
+617.5,1921.83451527357,9.99999961853027,9.99999961853027,0,0.3484004,593.6995,105.9579,105.9579,830.9429,-148.1575,6.587624,51.66144,-9.211259,6.587624,0,0,3,0.6043716,0.8222052,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2439.711,-,-
+618.5,1924.61229294539,9.99999961853027,9.99999961853027,0,0.3484004,593.6995,105.9579,105.9579,830.9429,-148.1575,6.587624,51.66144,-9.211259,6.587624,0,0,3,0.6043716,0.8222052,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2439.711,-,-
+619.5,1927.3900706172,9.99999961853027,9.99999961853027,0,0.3484004,593.6995,105.9579,105.9579,830.9429,-148.1575,6.587624,51.66144,-9.211259,6.587624,0,0,3,0.6043716,0.8222052,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2439.711,-,-
+620.5,1930.16784828901,9.99999961853027,9.99999961853027,0,0.3484004,593.6995,105.9579,105.9579,830.9429,-148.1575,6.587624,51.66144,-9.211259,6.587624,0,0,3,0.6043716,0.8222052,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2439.711,-,-
+621.5,1932.94562596083,9.99999961853027,9.99999961853027,0,0.3484004,593.6995,105.9579,105.9579,830.9429,-148.1575,6.587624,51.66144,-9.211259,6.587624,0,0,3,0.6043716,0.8222052,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2439.711,-,-
+622.5,1935.72340363264,9.99999961853027,9.99999961853027,0,0.3484004,593.6995,105.9579,105.9579,830.9429,-148.1575,6.587624,51.66144,-9.211259,6.587624,0,0,3,0.6043716,0.8222052,0,0,0,3.315667,0.04154791,1.803832,5.161047,0,2439.711,-,-
+623.5,1938.50118130445,9.99999961853027,9.99999961853027,0,0.4073252,593.6995,110.9649,110.9649,830.9429,-148.1575,6.898919,51.66144,-9.211259,6.898919,0,0,3,0.6105975,0.8222056,0,0,0,3.315659,0.04154791,2.108909,5.466116,0,2487.253,-,-
+624.5,1941.27895897627,9.99999961853027,9.99999961853027,0,0.46625,593.6995,115.9719,115.9719,832.8206,-148.1575,7.210211,51.77818,-9.211259,7.210211,0,0,3,0.6168235,0.8222051,0,0,0,3.315651,0.04154791,2.413983,5.771182,0,2534.793,-,-
+625.5,1944.05673664808,9.99999961853027,9.99999961853027,0,0.46625,593.6995,115.9719,115.9719,834.6981,-148.1575,7.210211,51.89491,-9.211259,7.210211,0,0,3,0.6168235,0.8222051,0,0,0,3.315651,0.04154791,2.413983,5.771182,0,2534.793,-,-
+626.5,1946.8345143199,9.99999961853027,9.99999961853027,0,0.46625,593.6995,115.9719,115.9719,834.6981,-148.1575,7.210211,51.89491,-9.211259,7.210211,0,0,3,0.6168235,0.8222051,0,0,0,3.315651,0.04154791,2.413983,5.771182,0,2534.793,-,-
+627.5,1949.61229199171,9.99999961853027,9.99999961853027,0,0.46625,593.6995,115.9719,115.9719,834.6981,-148.1575,7.210211,51.89491,-9.211259,7.210211,0,0,3,0.6168235,0.8222051,0,0,0,3.315651,0.04154791,2.413983,5.771182,0,2534.793,-,-
+628.5,1952.39006966352,9.99999961853027,9.99999961853027,0,0.46625,593.6995,115.9719,115.9719,834.6981,-148.1575,7.210211,51.89491,-9.211259,7.210211,0,0,3,0.6168235,0.8222051,0,0,0,3.315651,0.04154791,2.413983,5.771182,0,2534.793,-,-
+629.5,1955.16784733534,9.99999961853027,9.99999961853027,0,0.46625,593.6995,115.9719,115.9719,834.6981,-148.1575,7.210211,51.89491,-9.211259,7.210211,0,0,3,0.6168235,0.8222051,0,0,0,3.315651,0.04154791,2.413983,5.771182,0,2534.793,-,-
+630.5,1957.94562500715,9.99999961853027,9.99999961853027,0,0.46625,593.6995,115.9719,115.9719,834.6981,-148.1575,7.210211,51.89491,-9.211259,7.210211,0,0,3,0.6168235,0.8222051,0,0,0,3.315651,0.04154791,2.413983,5.771182,0,2534.793,-,-
+631.5,1960.72340267897,9.99999961853027,9.99999961853027,0,0.61045,593.6995,128.2245,128.2245,834.6981,-148.1575,7.971983,51.89491,-9.211259,7.971983,0,0,3,0.6320591,0.8222052,0,0,0,3.315625,0.04154791,3.160546,6.517719,0,2651.132,-,-
+632.5,1963.50118035078,9.99999961853027,9.99999961853027,0,0.61045,593.6995,128.2245,128.2245,839.2928,-148.1575,7.971983,52.18057,-9.211259,7.971983,0,0,3,0.6320591,0.8222052,0,0,0,3.315625,0.04154791,3.160546,6.517719,0,2651.132,-,-
+633.5,1966.27895802259,9.99999961853027,9.99999961853027,0,0.61045,593.6995,128.2245,128.2245,839.2928,-148.1575,7.971983,52.18057,-9.211259,7.971983,0,0,3,0.6320591,0.8222052,0,0,0,3.315625,0.04154791,3.160546,6.517719,0,2651.132,-,-
+634.5,1969.05673569441,9.99999961853027,9.99999961853027,0,0.61045,593.6995,128.2245,128.2245,839.2928,-148.1575,7.971983,52.18057,-9.211259,7.971983,0,0,3,0.6320591,0.8222052,0,0,0,3.315625,0.04154791,3.160546,6.517719,0,2651.132,-,-
+635.5,1971.83451336622,9.99999961853027,9.99999961853027,0,0.61045,593.6995,128.2245,128.2245,839.2928,-148.1575,7.971983,52.18057,-9.211259,7.971983,0,0,3,0.6320591,0.8222052,0,0,0,3.315625,0.04154791,3.160546,6.517719,0,2651.132,-,-
+636.5,1974.61229103804,9.99999961853027,9.99999961853027,0,0.61045,593.6995,128.2245,128.2245,839.2928,-148.1575,7.971983,52.18057,-9.211259,7.971983,0,0,3,0.6320591,0.8222052,0,0,0,3.315625,0.04154791,3.160546,6.517719,0,2651.132,-,-
+637.5,1977.39006870985,9.99999961853027,9.99999961853027,0,0.61045,593.6995,128.2245,128.2245,839.2928,-148.1575,7.971983,52.18057,-9.211259,7.971983,0,0,3,0.6320591,0.8222052,0,0,0,3.315625,0.04154791,3.160546,6.517719,0,2651.132,-,-
+638.5,1980.16784638166,9.99999961853027,9.99999961853027,0,0.7546501,593.6995,140.4767,140.4767,839.2928,-148.1575,8.733729,52.18057,-9.211259,8.733729,0,0,3,0.647294,0.8222055,0,0,0,3.315592,0.04154791,3.907089,7.26423,0,2767.467,-,-
+639.5,1982.94562405348,9.99999961853027,9.99999961853027,0,0.7546501,593.6995,140.4767,140.4767,843.8874,-148.1575,8.733729,52.46622,-9.211259,8.733729,0,0,3,0.647294,0.8222055,0,0,0,3.315592,0.04154791,3.907089,7.26423,0,2767.467,-,-
+640.5,1985.72340172529,9.99999961853027,9.99999961853027,0,0.7546501,593.6995,140.4767,140.4767,843.8874,-148.1575,8.733729,52.46622,-9.211259,8.733729,0,0,3,0.647294,0.8222055,0,0,0,3.315592,0.04154791,3.907089,7.26423,0,2767.467,-,-
+641.5,1988.50117939711,9.99999961853027,9.99999961853027,0,0.7546501,593.6995,140.4767,140.4767,843.8874,-148.1575,8.733729,52.46622,-9.211259,8.733729,0,0,3,0.647294,0.8222055,0,0,0,3.315592,0.04154791,3.907089,7.26423,0,2767.467,-,-
+642.5,1991.27895706892,9.99999961853027,9.99999961853027,0,0.7546501,593.6995,140.4767,140.4767,843.8874,-148.1575,8.733729,52.46622,-9.211259,8.733729,0,0,3,0.647294,0.8222055,0,0,0,3.315592,0.04154791,3.907089,7.26423,0,2767.467,-,-
+643.5,1994.05673474073,9.99999961853027,9.99999961853027,0,0.7546501,593.6995,140.4767,140.4767,843.8874,-148.1575,8.733729,52.46622,-9.211259,8.733729,0,0,3,0.647294,0.8222055,0,0,0,3.315592,0.04154791,3.907089,7.26423,0,2767.467,-,-
+644.5,1996.83451241255,9.99999961853027,9.99999961853027,0,0.7546501,593.6995,140.4767,140.4767,843.8874,-148.1575,8.733729,52.46622,-9.211259,8.733729,0,0,3,0.647294,0.8222055,0,0,0,3.315592,0.04154791,3.907089,7.26423,0,2767.467,-,-
+645.5,1999.61229008436,9.99999961853027,9.99999961853027,0,0.8988501,593.6995,152.7729,152.7729,843.8874,-148.1575,9.49821,52.46622,-9.211259,9.49821,0,0,3,0.6625838,0.8249181,0,0,0,3.315553,0.04154791,4.653608,8.010709,0,2884.22,-,-
+646.5,2002.39006775618,9.99999961853027,9.99999961853027,0,0.8988501,593.6995,152.7729,152.7729,848.4985,-148.1575,9.49821,52.75291,-9.211259,9.49821,0,0,3,0.6625838,0.8249181,0,0,0,3.315553,0.04154791,4.653608,8.010709,0,2884.22,-,-
+647.5,2005.16784542799,9.99999961853027,9.99999961853027,0,0.8988501,593.6995,152.7729,152.7729,848.4985,-148.1575,9.49821,52.75291,-9.211259,9.49821,0,0,3,0.6625838,0.8249181,0,0,0,3.315553,0.04154791,4.653608,8.010709,0,2884.22,-,-
+648.5,2007.9456230998,9.99999961853027,9.99999961853027,0,0.8988501,593.6995,152.7729,152.7729,848.4985,-148.1575,9.49821,52.75291,-9.211259,9.49821,0,0,3,0.6625838,0.8249181,0,0,0,3.315553,0.04154791,4.653608,8.010709,0,2884.22,-,-
+649.5,2010.72340077162,9.99999961853027,9.99999961853027,0,0.8988501,593.6995,152.7729,152.7729,848.4985,-148.1575,9.49821,52.75291,-9.211259,9.49821,0,0,3,0.6625838,0.8249181,0,0,0,3.315553,0.04154791,4.653608,8.010709,0,2884.22,-,-
+650.5,2013.50117844343,9.99999961853027,9.99999961853027,0,0.8988501,593.6995,152.7729,152.7729,848.4985,-148.1575,9.49821,52.75291,-9.211259,9.49821,0,0,3,0.6625838,0.8249181,0,0,0,3.315553,0.04154791,4.653608,8.010709,0,2884.22,-,-
+651.5,2016.27895611525,9.99999961853027,9.99999961853027,0,0.8988501,593.6995,152.7729,152.7729,848.4985,-148.1575,9.49821,52.75291,-9.211259,9.49821,0,0,3,0.6625838,0.8249181,0,0,0,3.315553,0.04154791,4.653608,8.010709,0,2884.22,-,-
+652.5,2019.05673378706,9.99999961853027,9.99999961853027,0,0.8988501,593.6995,152.7729,152.7729,848.4985,-148.1575,9.49821,52.75291,-9.211259,9.49821,0,0,3,0.6625838,0.8249181,0,0,0,3.315553,0.04154791,4.653608,8.010709,0,2884.22,-,-
+653.5,2021.83451145887,9.99999961853027,9.99999961853027,0,0.8988501,593.6995,152.7729,152.7729,848.4985,-148.1575,9.49821,52.75291,-9.211259,9.49821,0,0,3,0.6625838,0.8249181,0,0,0,3.315553,0.04154791,4.653608,8.010709,0,2884.22,-,-
+654.5,2024.61228913069,9.99999961853027,9.99999961853027,0,0.8988501,593.6995,152.7729,152.7729,848.4985,-148.1575,9.49821,52.75291,-9.211259,9.49821,0,0,3,0.6625838,0.8249181,0,0,0,3.315553,0.04154791,4.653608,8.010709,0,2884.22,-,-
+655.5,2027.3900668025,9.99999961853027,9.99999961853027,0,0.8988501,593.6995,152.7729,152.7729,848.4985,-148.1575,9.49821,52.75291,-9.211259,9.49821,0,0,3,0.6625838,0.8249181,0,0,0,3.315553,0.04154791,4.653608,8.010709,0,2884.22,-,-
+656.5,2030.16784447432,9.99999961853027,9.99999961853027,0,0.8988501,593.6995,152.7729,152.7729,848.4985,-148.1575,9.49821,52.75291,-9.211259,9.49821,0,0,3,0.6625838,0.8249181,0,0,0,3.315553,0.04154791,4.653608,8.010709,0,2884.22,-,-
+657.5,2032.94562214613,9.99999961853027,9.99999961853027,0,0.8988501,593.6995,152.7729,152.7729,848.4985,-148.1575,9.49821,52.75291,-9.211259,9.49821,0,0,3,0.6625838,0.8249181,0,0,0,3.315553,0.04154791,4.653608,8.010709,0,2884.22,-,-
+658.5,2035.72339981794,9.99999961853027,9.99999961853027,0,0.8988501,593.6995,152.7729,152.7729,848.4985,-148.1575,9.49821,52.75291,-9.211259,9.49821,0,0,3,0.6625838,0.8249181,0,0,0,3.315553,0.04154791,4.653608,8.010709,0,2884.22,-,-
+659.5,2038.50117748976,9.99999961853027,9.99999961853027,0,0.8988501,593.6995,152.7729,152.7729,848.4985,-148.1575,9.49821,52.75291,-9.211259,9.49821,0,0,3,0.6625838,0.8249181,0,0,0,3.315553,0.04154791,4.653608,8.010709,0,2884.22,-,-
+660.5,2041.27895516157,9.99999961853027,9.99999961853027,0,0.8988501,593.6995,152.7729,152.7729,848.4985,-148.1575,9.49821,52.75291,-9.211259,9.49821,0,0,3,0.6625838,0.8249181,0,0,0,3.315553,0.04154791,4.653608,8.010709,0,2884.22,-,-
+661.5,2044.05673283339,9.99999961853027,9.99999961853027,0,0.8988501,593.6995,152.7729,152.7729,848.4985,-148.1575,9.49821,52.75291,-9.211259,9.49821,0,0,3,0.6625838,0.8249181,0,0,0,3.315553,0.04154791,4.653608,8.010709,0,2884.22,-,-
+662.5,2046.8345105052,9.99999961853027,9.99999961853027,0,0.8988501,593.6995,152.7729,152.7729,848.4985,-148.1575,9.49821,52.75291,-9.211259,9.49821,0,0,3,0.6625838,0.8249181,0,0,0,3.315553,0.04154791,4.653608,8.010709,0,2884.22,-,-
+663.5,2049.61228817701,9.99999961853027,9.99999961853027,0,0.8988501,593.6995,152.7729,152.7729,848.4985,-148.1575,9.49821,52.75291,-9.211259,9.49821,0,0,3,0.6625838,0.8249181,0,0,0,3.315553,0.04154791,4.653608,8.010709,0,2884.22,-,-
+664.5,2052.39006584883,9.99999961853027,9.99999961853027,0,0.8988501,593.6995,152.7729,152.7729,848.4985,-148.1575,9.49821,52.75291,-9.211259,9.49821,0,0,3,0.6625838,0.8249181,0,0,0,3.315553,0.04154791,4.653608,8.010709,0,2884.22,-,-
+665.5,2055.16784352064,9.99999961853027,9.99999961853027,0,0.8988501,593.6995,152.7729,152.7729,848.4985,-148.1575,9.49821,52.75291,-9.211259,9.49821,0,0,3,0.6625838,0.8249181,0,0,0,3.315553,0.04154791,4.653608,8.010709,0,2884.22,-,-
+666.5,2057.94562119246,9.99999961853027,9.99999961853027,0,0.8988501,593.6995,152.7729,152.7729,848.4985,-148.1575,9.49821,52.75291,-9.211259,9.49821,0,0,3,0.6625838,0.8249181,0,0,0,3.315553,0.04154791,4.653608,8.010709,0,2884.22,-,-
+667.5,2060.72339886427,9.99999961853027,9.99999961853027,0,0.8988501,593.6995,152.7729,152.7729,848.4985,-148.1575,9.49821,52.75291,-9.211259,9.49821,0,0,3,0.6625838,0.8249181,0,0,0,3.315553,0.04154791,4.653608,8.010709,0,2884.22,-,-
+668.5,2063.50117653608,9.99999961853027,9.99999961853027,0,0.8988501,593.6995,152.7729,152.7729,848.4985,-148.1575,9.49821,52.75291,-9.211259,9.49821,0,0,3,0.6625838,0.8249181,0,0,0,3.315553,0.04154791,4.653608,8.010709,0,2884.22,-,-
+669.5,2066.2789542079,9.99999961853027,9.99999961853027,0,0.8988501,593.6995,152.7729,152.7729,848.4985,-148.1575,9.49821,52.75291,-9.211259,9.49821,0,0,3,0.6625838,0.8249181,0,0,0,3.315553,0.04154791,4.653608,8.010709,0,2884.22,-,-
+670.5,2069.05673187971,9.99999961853027,9.99999961853027,0,0.8988501,593.6995,152.7729,152.7729,848.4985,-148.1575,9.49821,52.75291,-9.211259,9.49821,0,0,3,0.6625838,0.8249181,0,0,0,3.315553,0.04154791,4.653608,8.010709,0,2884.22,-,-
+671.5,2071.83450955153,9.99999961853027,9.99999961853027,0,0.8988501,593.6995,152.7729,152.7729,848.4985,-148.1575,9.49821,52.75291,-9.211259,9.49821,0,0,3,0.6625838,0.8249181,0,0,0,3.315553,0.04154791,4.653608,8.010709,0,2884.22,-,-
+672.5,2074.61228722334,9.99999961853027,9.99999961853027,0,0.8988501,593.6995,152.7729,152.7729,848.4985,-148.1575,9.49821,52.75291,-9.211259,9.49821,0,0,3,0.6625838,0.8249181,0,0,0,3.315553,0.04154791,4.653608,8.010709,0,2884.22,-,-
+673.5,2077.39006489515,9.99999961853027,9.99999961853027,0,0.8988501,593.6995,152.7729,152.7729,848.4985,-148.1575,9.49821,52.75291,-9.211259,9.49821,0,0,3,0.6625838,0.8249181,0,0,0,3.315553,0.04154791,4.653608,8.010709,0,2884.22,-,-
+674.5,2080.16784256697,9.99999961853027,9.99999961853027,0,0.7737491,593.6995,142.0995,142.0995,848.4985,-148.1575,8.834619,52.75291,-9.211259,8.834619,0,0,3,0.6493118,0.8222051,0,0,0,3.315588,0.04154791,4.005966,7.363101,0,2782.875,-,-
+675.5,2082.94562023878,9.99999961853027,9.99999961853027,0,0.7737491,593.6995,142.0995,142.0995,844.496,-148.1575,8.834619,52.50406,-9.211259,8.834619,0,0,3,0.6493118,0.8222051,0,0,0,3.315588,0.04154791,4.005966,7.363101,0,2782.875,-,-
+676.5,2085.72339791059,9.99999961853027,9.99999961853027,0,0.7737491,593.6995,142.0995,142.0995,844.496,-148.1575,8.834619,52.50406,-9.211259,8.834619,0,0,3,0.6493118,0.8222051,0,0,0,3.315588,0.04154791,4.005966,7.363101,0,2782.875,-,-
+677.5,2088.50117558241,9.99999961853027,9.99999961853027,0,0.7737491,593.6995,142.0995,142.0995,844.496,-148.1575,8.834619,52.50406,-9.211259,8.834619,0,0,3,0.6493118,0.8222051,0,0,0,3.315588,0.04154791,4.005966,7.363101,0,2782.875,-,-
+678.5,2091.27895325422,9.99999961853027,9.99999961853027,0,0.7737491,593.6995,142.0995,142.0995,844.496,-148.1575,8.834619,52.50406,-9.211259,8.834619,0,0,3,0.6493118,0.8222051,0,0,0,3.315588,0.04154791,4.005966,7.363101,0,2782.875,-,-
+679.5,2094.05673092604,9.99999961853027,9.99999961853027,0,0.7737491,593.6995,142.0995,142.0995,844.496,-148.1575,8.834619,52.50406,-9.211259,8.834619,0,0,3,0.6493118,0.8222051,0,0,0,3.315588,0.04154791,4.005966,7.363101,0,2782.875,-,-
+680.5,2096.83450859785,9.99999961853027,9.99999961853027,0,0.7737491,593.6995,142.0995,142.0995,844.496,-148.1575,8.834619,52.50406,-9.211259,8.834619,0,0,3,0.6493118,0.8222051,0,0,0,3.315588,0.04154791,4.005966,7.363101,0,2782.875,-,-
+681.5,2099.61228626966,9.99999961853027,9.99999961853027,0,0.7737491,593.6995,142.0995,142.0995,844.496,-148.1575,8.834619,52.50406,-9.211259,8.834619,0,0,3,0.6493118,0.8222051,0,0,0,3.315588,0.04154791,4.005966,7.363101,0,2782.875,-,-
+682.5,2102.39006394148,9.99999961853027,9.99999961853027,0,0.7737491,593.6995,142.0995,142.0995,844.496,-148.1575,8.834619,52.50406,-9.211259,8.834619,0,0,3,0.6493118,0.8222051,0,0,0,3.315588,0.04154791,4.005966,7.363101,0,2782.875,-,-
+683.5,2105.16784161329,9.99999961853027,9.99999961853027,0,0.7737491,593.6995,142.0995,142.0995,844.496,-148.1575,8.834619,52.50406,-9.211259,8.834619,0,0,3,0.6493118,0.8222051,0,0,0,3.315588,0.04154791,4.005966,7.363101,0,2782.875,-,-
+684.5,2107.94561928511,9.99999961853027,9.99999961853027,0,0.7737491,593.6995,142.0995,142.0995,844.496,-148.1575,8.834619,52.50406,-9.211259,8.834619,0,0,3,0.6493118,0.8222051,0,0,0,3.315588,0.04154791,4.005966,7.363101,0,2782.875,-,-
+685.5,2110.72339695692,9.99999961853027,9.99999961853027,0,0.7737491,593.6995,142.0995,142.0995,844.496,-148.1575,8.834619,52.50406,-9.211259,8.834619,0,0,3,0.6493118,0.8222051,0,0,0,3.315588,0.04154791,4.005966,7.363101,0,2782.875,-,-
+686.5,2113.50117462873,9.99999961853027,9.99999961853027,0,0.7737491,593.6995,142.0995,142.0995,844.496,-148.1575,8.834619,52.50406,-9.211259,8.834619,0,0,3,0.6493118,0.8222051,0,0,0,3.315588,0.04154791,4.005966,7.363101,0,2782.875,-,-
+687.5,2116.27895230055,9.99999961853027,9.99999961853027,0,0.7737491,593.6995,142.0995,142.0995,844.496,-148.1575,8.834619,52.50406,-9.211259,8.834619,0,0,3,0.6493118,0.8222051,0,0,0,3.315588,0.04154791,4.005966,7.363101,0,2782.875,-,-
+688.5,2119.05672997236,9.99999961853027,9.99999961853027,0,0.6667119,593.6995,133.005,133.005,844.496,-148.1575,8.269194,52.50406,-9.211259,8.269194,0,0,3,0.6380031,0.8222054,0,0,0,3.315613,0.04154791,3.451824,6.808985,0,2696.523,-,-
+689.5,2121.83450764418,9.99999961853027,9.99999961853027,0,0.6667119,593.6995,133.005,133.005,841.0855,-148.1575,8.269194,52.29203,-9.211259,8.269194,0,0,3,0.6380031,0.8222054,0,0,0,3.315613,0.04154791,3.451824,6.808985,0,2696.523,-,-
+690.5,2124.61228531599,9.99999961853027,9.99999961853027,0,0.6667119,593.6995,133.005,133.005,841.0855,-148.1575,8.269194,52.29203,-9.211259,8.269194,0,0,3,0.6380031,0.8222054,0,0,0,3.315613,0.04154791,3.451824,6.808985,0,2696.523,-,-
+691.5,2127.3900629878,9.99999961853027,9.99999961853027,0,0.6667119,593.6995,133.005,133.005,841.0855,-148.1575,8.269194,52.29203,-9.211259,8.269194,0,0,3,0.6380031,0.8222054,0,0,0,3.315613,0.04154791,3.451824,6.808985,0,2696.523,-,-
+692.5,2130.16784065962,9.99999961853027,9.99999961853027,0,0.6667119,593.6995,133.005,133.005,841.0855,-148.1575,8.269194,52.29203,-9.211259,8.269194,0,0,3,0.6380031,0.8222054,0,0,0,3.315613,0.04154791,3.451824,6.808985,0,2696.523,-,-
+693.5,2132.94561833143,9.99999961853027,9.99999961853027,0,0.6667119,593.6995,133.005,133.005,841.0855,-148.1575,8.269194,52.29203,-9.211259,8.269194,0,0,3,0.6380031,0.8222054,0,0,0,3.315613,0.04154791,3.451824,6.808985,0,2696.523,-,-
+694.5,2135.72339600325,9.99999961853027,9.99999961853027,0,0.6667119,593.6995,133.005,133.005,841.0855,-148.1575,8.269194,52.29203,-9.211259,8.269194,0,0,3,0.6380031,0.8222054,0,0,0,3.315613,0.04154791,3.451824,6.808985,0,2696.523,-,-
+695.5,2138.50117367506,9.99999961853027,9.99999961853027,0,0.5714575,593.6995,124.9114,124.9114,841.0855,-148.1575,7.765998,52.29203,-9.211259,7.765998,0,0,3,0.627939,0.8222055,0,0,0,3.315633,0.04154791,2.958673,6.315853,0,2619.674,-,-
+696.5,2141.27895134687,9.99999961853027,9.99999961853027,0,0.4762033,593.6995,116.8176,116.8176,838.0504,-148.1575,7.262792,52.10333,-9.211259,7.262792,0,0,3,0.6178752,0.8222051,0,0,0,3.315649,0.04154791,2.465514,5.822711,0,2542.824,-,-
+697.5,2144.05672901869,9.99999961853027,9.99999961853027,0,0.4762033,593.6995,116.8176,116.8176,835.0153,-148.1575,7.262792,51.91463,-9.211259,7.262792,0,0,3,0.6178752,0.8222051,0,0,0,3.315649,0.04154791,2.465514,5.822711,0,2542.824,-,-
+698.5,2146.8345066905,9.99999961853027,9.99999961853027,0,0.4762033,593.6995,116.8176,116.8176,835.0153,-148.1575,7.262792,51.91463,-9.211259,7.262792,0,0,3,0.6178752,0.8222051,0,0,0,3.315649,0.04154791,2.465514,5.822711,0,2542.824,-,-
+699.5,2149.61228436232,9.99999961853027,9.99999961853027,0,0.4762033,593.6995,116.8176,116.8176,835.0153,-148.1575,7.262792,51.91463,-9.211259,7.262792,0,0,3,0.6178752,0.8222051,0,0,0,3.315649,0.04154791,2.465514,5.822711,0,2542.824,-,-
+700.5,2152.39006203413,9.99999961853027,9.99999961853027,0,0.4762033,593.6995,116.8176,116.8176,835.0153,-148.1575,7.262792,51.91463,-9.211259,7.262792,0,0,3,0.6178752,0.8222051,0,0,0,3.315649,0.04154791,2.465514,5.822711,0,2542.824,-,-
+701.5,2155.16783970594,9.99999961853027,9.99999961853027,0,0.4762033,593.6995,116.8176,116.8176,835.0153,-148.1575,7.262792,51.91463,-9.211259,7.262792,0,0,3,0.6178752,0.8222051,0,0,0,3.315649,0.04154791,2.465514,5.822711,0,2542.824,-,-
+702.5,2157.94561737776,9.99999961853027,9.99999961853027,0,0.4762033,593.6995,116.8176,116.8176,835.0153,-148.1575,7.262792,51.91463,-9.211259,7.262792,0,0,3,0.6178752,0.8222051,0,0,0,3.315649,0.04154791,2.465514,5.822711,0,2542.824,-,-
+703.5,2160.72339504957,9.99999961853027,9.99999961853027,0,0.2784847,593.6995,100.0169,100.0169,835.0153,-148.1575,6.21826,51.91463,-9.211259,6.21826,0,0,3,0.5969846,0.8222055,0,0,0,3.315674,0.04154791,1.441849,4.79907,0,2383.302,-,-
+704.5,2163.50117272139,9.99999961853027,9.99999961853027,0,0.2784847,593.6995,100.0169,100.0169,828.715,-148.1575,6.21826,51.52293,-9.211259,6.21826,0,0,3,0.5969846,0.8222055,0,0,0,3.315674,0.04154791,1.441849,4.79907,0,2383.302,-,-
+705.5,2166.2789503932,9.99999961853027,9.99999961853027,0,0.2784847,593.6995,100.0169,100.0169,828.715,-148.1575,6.21826,51.52293,-9.211259,6.21826,0,0,3,0.5969846,0.8222055,0,0,0,3.315674,0.04154791,1.441849,4.79907,0,2383.302,-,-
+706.5,2169.05672806501,9.99999961853027,9.99999961853027,0,0.2784847,593.6995,100.0169,100.0169,828.715,-148.1575,6.21826,51.52293,-9.211259,6.21826,0,0,3,0.5969846,0.8222055,0,0,0,3.315674,0.04154791,1.441849,4.79907,0,2383.302,-,-
+707.5,2171.83450573683,9.99999961853027,9.99999961853027,0,0.2784847,593.6995,100.0169,100.0169,828.715,-148.1575,6.21826,51.52293,-9.211259,6.21826,0,0,3,0.5969846,0.8222055,0,0,0,3.315674,0.04154791,1.441849,4.79907,0,2383.302,-,-
+708.5,2174.61228340864,9.99999961853027,9.99999961853027,0,0.2784847,593.6995,100.0169,100.0169,828.715,-148.1575,6.21826,51.52293,-9.211259,6.21826,0,0,3,0.5969846,0.8222055,0,0,0,3.315674,0.04154791,1.441849,4.79907,0,2383.302,-,-
+709.5,2177.39006108046,9.99999961853027,9.99999961853027,0,0.2784847,593.6995,100.0169,100.0169,828.715,-148.1575,6.21826,51.52293,-9.211259,6.21826,0,0,3,0.5969846,0.8222055,0,0,0,3.315674,0.04154791,1.441849,4.79907,0,2383.302,-,-
+710.5,2180.16783875227,9.99999961853027,9.99999961853027,0,0.0808,593.6995,83.21869,83.21869,828.715,-148.1575,5.173878,51.52293,-9.211259,5.173878,0,0,3,0.5760969,0.8222054,0,0,0,3.315686,0.04154791,0.4183418,3.775576,0,2223.802,-,-
+711.5,2182.94561642408,9.99999961853027,9.99999961853027,0,0.0808,593.6995,83.21869,83.21869,822.4156,-148.1575,5.173878,51.13128,-9.211259,5.173878,0,0,3,0.5760969,0.8222054,0,0,0,3.315686,0.04154791,0.4183418,3.775576,0,2223.802,-,-
+712.5,2185.7233940959,9.99999961853027,9.99999961853027,0,0.0808,593.6995,83.21869,83.21869,822.4156,-148.1575,5.173878,51.13128,-9.211259,5.173878,0,0,3,0.5760969,0.8222054,0,0,0,3.315686,0.04154791,0.4183418,3.775576,0,2223.802,-,-
+713.5,2188.50117176771,9.99999961853027,9.99999961853027,0,0.0808,593.6995,83.21869,83.21869,822.4156,-148.1575,5.173878,51.13128,-9.211259,5.173878,0,0,3,0.5760969,0.8222054,0,0,0,3.315686,0.04154791,0.4183418,3.775576,0,2223.802,-,-
+714.5,2191.27894943953,9.99999961853027,9.99999961853027,0,0.0808,593.6995,83.21869,83.21869,822.4156,-148.1575,5.173878,51.13128,-9.211259,5.173878,0,0,3,0.5760969,0.8222054,0,0,0,3.315686,0.04154791,0.4183418,3.775576,0,2223.802,-,-
+715.5,2194.05672711134,9.99999961853027,9.99999961853027,0,0.0808,593.6995,83.21869,83.21869,822.4156,-148.1575,5.173878,51.13128,-9.211259,5.173878,0,0,3,0.5760969,0.8222054,0,0,0,3.315686,0.04154791,0.4183418,3.775576,0,2223.802,-,-
+716.5,2196.83450478315,9.99999961853027,9.99999961853027,0,0.0808,593.6995,83.21869,83.21869,822.4156,-148.1575,5.173878,51.13128,-9.211259,5.173878,0,0,3,0.5760969,0.8222054,0,0,0,3.315686,0.04154791,0.4183418,3.775576,0,2223.802,-,-
+717.5,2199.61228245497,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,822.4156,-148.1575,4.129118,51.13128,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+718.5,2202.39006012678,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+719.5,2205.1678377986,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+720.5,2207.94561547041,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+721.5,2210.72339314222,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+722.5,2213.50117081404,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+723.5,2216.27894848585,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+724.5,2219.05672615767,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+725.5,2221.83450382948,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+726.5,2224.61228150129,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+727.5,2227.39005917311,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+728.5,2230.16783684492,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+729.5,2232.94561451674,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+730.5,2235.72339218855,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+731.5,2238.50116986036,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+732.5,2241.27894753218,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+733.5,2244.05672520399,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+734.5,2246.8345028758,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+735.5,2249.61228054762,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+736.5,2252.39005821943,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+737.5,2255.16783589125,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+738.5,2257.94561356306,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+739.5,2260.72339123487,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+740.5,2263.50116890669,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+741.5,2266.2789465785,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+742.5,2269.05672425032,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+743.5,2271.83450192213,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+744.5,2274.61227959394,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+745.5,2277.39005726576,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+746.5,2280.16783493757,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+747.5,2282.94561260939,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+748.5,2285.7233902812,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+749.5,2288.50116795301,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+750.5,2291.27894562483,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+751.5,2294.05672329664,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+752.5,2296.83450096846,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+753.5,2299.61227864027,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+754.5,2302.39005631208,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+755.5,2305.1678339839,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+756.5,2307.94561165571,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+757.5,2310.72338932753,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+758.5,2313.50116699934,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+759.5,2316.27894467115,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+760.5,2319.05672234297,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+761.5,2321.83450001478,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+762.5,2324.6122776866,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+763.5,2327.39005535841,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+764.5,2330.16783303022,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+765.5,2332.94561070204,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+766.5,2335.72338837385,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+767.5,2338.50116604567,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+768.5,2341.27894371748,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+769.5,2344.05672138929,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+770.5,2346.83449906111,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+771.5,2349.61227673292,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+772.5,2352.39005440474,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+773.5,2355.16783207655,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+774.5,2357.94560974836,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+775.5,2360.72338742018,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+776.5,2363.50116509199,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+777.5,2366.27894276381,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+778.5,2369.05672043562,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+779.5,2371.83449810743,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+780.5,2374.61227577925,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+781.5,2377.39005345106,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+782.5,2380.16783112288,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+783.5,2382.94560879469,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+784.5,2385.7233864665,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+785.5,2388.50116413832,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+786.5,2391.27894181013,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+787.5,2394.05671948195,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+788.5,2396.83449715376,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+789.5,2399.61227482557,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+790.5,2402.39005249739,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+791.5,2405.1678301692,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+792.5,2407.94560784101,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+793.5,2410.72338551283,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+794.5,2413.50116318464,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+795.5,2416.27894085646,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+796.5,2419.05671852827,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+797.5,2421.83449620008,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+798.5,2424.6122738719,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+799.5,2427.39005154371,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+800.5,2430.16782921553,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+801.5,2432.94560688734,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+802.5,2435.72338455915,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+803.5,2438.50116223097,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+804.5,2441.27893990278,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+805.5,2444.0567175746,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+806.5,2446.83449524641,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+807.5,2449.61227291822,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+808.5,2452.39005059004,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+809.5,2455.16782826185,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+810.5,2457.94560593367,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+811.5,2460.72338360548,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+812.5,2463.50116127729,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+813.5,2466.27893894911,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+814.5,2469.05671662092,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+815.5,2471.83449429274,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+816.5,2474.61227196455,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+817.5,2477.39004963636,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+818.5,2480.16782730818,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+819.5,2482.94560497999,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+820.5,2485.72338265181,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+821.5,2488.50116032362,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+822.5,2491.27893799543,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+823.5,2494.05671566725,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+824.5,2496.83449333906,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+825.5,2499.61227101088,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+826.5,2502.39004868269,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+827.5,2505.1678263545,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+828.5,2507.94560402632,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+829.5,2510.72338169813,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+830.5,2513.50115936995,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+831.5,2516.27893704176,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+832.5,2519.05671471357,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+833.5,2521.83449238539,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+834.5,2524.6122700572,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+835.5,2527.39004772902,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+836.5,2530.16782540083,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+837.5,2532.94560307264,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+838.5,2535.72338074446,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+839.5,2538.50115841627,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+840.5,2541.27893608809,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+841.5,2544.0567137599,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+842.5,2546.83449143171,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+843.5,2549.61226910353,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+844.5,2552.39004677534,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+845.5,2555.16782444716,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+846.5,2557.94560211897,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+847.5,2560.72337979078,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+848.5,2563.5011574626,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+849.5,2566.27893513441,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+850.5,2569.05671280622,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+851.5,2571.83449047804,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+852.5,2574.61226814985,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+853.5,2577.39004582167,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+854.5,2580.16782349348,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+855.5,2582.94560116529,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+856.5,2585.72337883711,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+857.5,2588.50115650892,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+858.5,2591.27893418074,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+859.5,2594.05671185255,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+860.5,2596.83448952436,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+861.5,2599.61226719618,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+862.5,2602.39004486799,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+863.5,2605.16782253981,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+864.5,2607.94560021162,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+865.5,2610.72337788343,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+866.5,2613.50115555525,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+867.5,2616.27893322706,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+868.5,2619.05671089888,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+869.5,2621.83448857069,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+870.5,2624.6122662425,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+871.5,2627.39004391432,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+872.5,2630.16782158613,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+873.5,2632.94559925795,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+874.5,2635.72337692976,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+875.5,2638.50115460157,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+876.5,2641.27893227339,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+877.5,2644.0567099452,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+878.5,2646.83448761702,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+879.5,2649.61226528883,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+880.5,2652.39004296064,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+881.5,2655.16782063246,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+882.5,2657.94559830427,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+883.5,2660.72337597609,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+884.5,2663.5011536479,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+885.5,2666.27893131971,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+886.5,2669.05670899153,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+887.5,2671.83448666334,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+888.5,2674.61226433516,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+889.5,2677.39004200697,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+890.5,2680.16781967878,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+891.5,2682.9455973506,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+892.5,2685.72337502241,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+893.5,2688.50115269423,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+894.5,2691.27893036604,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+895.5,2694.05670803785,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+896.5,2696.83448570967,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+897.5,2699.61226338148,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+898.5,2702.3900410533,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+899.5,2705.16781872511,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+900.5,2707.94559639692,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+901.5,2710.72337406874,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+902.5,2713.50115174055,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+903.5,2716.27892941237,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+904.5,2719.05670708418,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+905.5,2721.83448475599,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+906.5,2724.61226242781,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+907.5,2727.39004009962,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+908.5,2730.16781777143,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+909.5,2732.94559544325,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+910.5,2735.72337311506,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+911.5,2738.50115078688,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+912.5,2741.27892845869,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+913.5,2744.0567061305,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+914.5,2746.83448380232,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+915.5,2749.61226147413,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+916.5,2752.39003914595,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+917.5,2755.16781681776,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+918.5,2757.94559448957,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+919.5,2760.72337216139,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+920.5,2763.5011498332,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+921.5,2766.27892750502,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+922.5,2769.05670517683,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+923.5,2771.83448284864,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+924.5,2774.61226052046,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+925.5,2777.39003819227,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+926.5,2780.16781586409,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+927.5,2782.9455935359,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+928.5,2785.72337120771,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+929.5,2788.50114887953,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+930.5,2791.27892655134,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+931.5,2794.05670422316,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+932.5,2796.83448189497,9.99999961853027,9.99999961853027,0,-0.1169525,593.6995,66.41436,66.41436,816.114,-148.1575,4.129118,50.7395,-9.211259,4.129118,0,0,3,0.5552016,0.8222053,0,0,0,3.315685,0.04154791,-0.6055213,2.751711,0,2064.245,-,-
+933.5,2799.61225956678,9.99999961853027,9.99999961853027,0,-0.0088,593.6995,75.6048,75.6048,816.114,-148.1575,4.700507,50.7395,-9.211259,4.700507,0,0,3,0.5666293,0.8222053,0,0,0,3.315687,0.04154791,-0.045562,3.311673,0,2151.508,-,-
+934.5,2802.3900372386,9.99999961853027,9.99999961853027,0,-0.0088,593.6995,75.6048,75.6048,819.5605,-148.1575,4.700507,50.95377,-9.211259,4.700507,0,0,3,0.5666293,0.8222053,0,0,0,3.315687,0.04154791,-0.045562,3.311673,0,2151.508,-,-
+935.5,2805.16781491041,9.99999961853027,9.99999961853027,0,-0.0088,593.6995,75.6048,75.6048,819.5605,-148.1575,4.700507,50.95377,-9.211259,4.700507,0,0,3,0.5666293,0.8222053,0,0,0,3.315687,0.04154791,-0.045562,3.311673,0,2151.508,-,-
+936.5,2807.94559258223,9.99999961853027,9.99999961853027,0,-0.0088,593.6995,75.6048,75.6048,819.5605,-148.1575,4.700507,50.95377,-9.211259,4.700507,0,0,3,0.5666293,0.8222053,0,0,0,3.315687,0.04154791,-0.045562,3.311673,0,2151.508,-,-
+937.5,2810.72337025404,9.99999961853027,9.99999961853027,0,-0.0088,593.6995,75.6048,75.6048,819.5605,-148.1575,4.700507,50.95377,-9.211259,4.700507,0,0,3,0.5666293,0.8222053,0,0,0,3.315687,0.04154791,-0.045562,3.311673,0,2151.508,-,-
+938.5,2813.50114792585,9.99999961853027,9.99999961853027,0,-0.0088,593.6995,75.6048,75.6048,819.5605,-148.1575,4.700507,50.95377,-9.211259,4.700507,0,0,3,0.5666293,0.8222053,0,0,0,3.315687,0.04154791,-0.045562,3.311673,0,2151.508,-,-
+939.5,2816.27892559767,9.99999961853027,9.99999961853027,0,-0.0088,593.6995,75.6048,75.6048,819.5605,-148.1575,4.700507,50.95377,-9.211259,4.700507,0,0,3,0.5666293,0.8222053,0,0,0,3.315687,0.04154791,-0.045562,3.311673,0,2151.508,-,-
+940.5,2819.05670326948,9.99999961853027,9.99999961853027,0,0.1013454,593.6995,84.96455,84.96455,819.5605,-148.1575,5.282422,50.95377,-9.211259,5.282422,0,0,3,0.5782675,0.8222054,0,0,0,3.315685,0.04154791,0.5247153,3.881948,0,2240.379,-,-
+941.5,2821.8344809413,9.99999961853027,9.99999961853027,0,0.1013454,593.6995,84.96455,84.96455,823.0704,-148.1575,5.282422,51.17199,-9.211259,5.282422,0,0,3,0.5782675,0.8222054,0,0,0,3.315685,0.04154791,0.5247153,3.881948,0,2240.379,-,-
+942.5,2824.61225861311,9.99999961853027,9.99999961853027,0,0.1013454,593.6995,84.96455,84.96455,823.0704,-148.1575,5.282422,51.17199,-9.211259,5.282422,0,0,3,0.5782675,0.8222054,0,0,0,3.315685,0.04154791,0.5247153,3.881948,0,2240.379,-,-
+943.5,2827.39003628492,9.99999961853027,9.99999961853027,0,0.1013454,593.6995,84.96455,84.96455,823.0704,-148.1575,5.282422,51.17199,-9.211259,5.282422,0,0,3,0.5782675,0.8222054,0,0,0,3.315685,0.04154791,0.5247153,3.881948,0,2240.379,-,-
+944.5,2830.16781395674,9.99999961853027,9.99999961853027,0,0.1013454,593.6995,84.96455,84.96455,823.0704,-148.1575,5.282422,51.17199,-9.211259,5.282422,0,0,3,0.5782675,0.8222054,0,0,0,3.315685,0.04154791,0.5247153,3.881948,0,2240.379,-,-
+945.5,2832.94559162855,9.99999961853027,9.99999961853027,0,0.1013454,593.6995,84.96455,84.96455,823.0704,-148.1575,5.282422,51.17199,-9.211259,5.282422,0,0,3,0.5782675,0.8222054,0,0,0,3.315685,0.04154791,0.5247153,3.881948,0,2240.379,-,-
+946.5,2835.72336930037,9.99999961853027,9.99999961853027,0,0.1013454,593.6995,84.96455,84.96455,823.0704,-148.1575,5.282422,51.17199,-9.211259,5.282422,0,0,3,0.5782675,0.8222054,0,0,0,3.315685,0.04154791,0.5247153,3.881948,0,2240.379,-,-
+947.5,2838.50114697218,9.99999961853027,9.99999961853027,0,0.1564167,593.6995,89.64426,89.64426,823.0704,-148.1575,5.573369,51.17199,-9.211259,5.573369,0,0,3,0.5840865,0.8222053,0,0,0,3.315683,0.04154791,0.8098465,4.167077,0,2284.813,-,-
+948.5,2841.27892464399,9.99999961853027,9.99999961853027,0,0.2114881,593.6995,94.32396,94.32396,824.8253,-148.1575,5.864316,51.28109,-9.211259,5.864316,0,0,3,0.5899057,0.8222054,0,0,0,3.315679,0.04154791,1.094977,4.452204,0,2329.247,-,-
+949.5,2844.05670231581,9.99999961853027,9.99999961853027,0,0.2114881,593.6995,94.32396,94.32396,826.5801,-148.1575,5.864316,51.3902,-9.211259,5.864316,0,0,3,0.5899057,0.8222054,0,0,0,3.315679,0.04154791,1.094977,4.452204,0,2329.247,-,-
+950.5,2846.83447998762,9.99999961853027,9.99999961853027,0,0.2114881,593.6995,94.32396,94.32396,826.5801,-148.1575,5.864316,51.3902,-9.211259,5.864316,0,0,3,0.5899057,0.8222054,0,0,0,3.315679,0.04154791,1.094977,4.452204,0,2329.247,-,-
+951.5,2849.61225765944,9.99999961853027,9.99999961853027,0,0.2114881,593.6995,94.32396,94.32396,826.5801,-148.1575,5.864316,51.3902,-9.211259,5.864316,0,0,3,0.5899057,0.8222054,0,0,0,3.315679,0.04154791,1.094977,4.452204,0,2329.247,-,-
+952.5,2852.39003533125,9.99999961853027,9.99999961853027,0,0.2114881,593.6995,94.32396,94.32396,826.5801,-148.1575,5.864316,51.3902,-9.211259,5.864316,0,0,3,0.5899057,0.8222054,0,0,0,3.315679,0.04154791,1.094977,4.452204,0,2329.247,-,-
+953.5,2855.16781300306,9.99999961853027,9.99999961853027,0,0.2114881,593.6995,94.32396,94.32396,826.5801,-148.1575,5.864316,51.3902,-9.211259,5.864316,0,0,3,0.5899057,0.8222054,0,0,0,3.315679,0.04154791,1.094977,4.452204,0,2329.247,-,-
+954.5,2857.94559067488,9.99999961853027,9.99999961853027,0,0.2114881,593.6995,94.32396,94.32396,826.5801,-148.1575,5.864316,51.3902,-9.211259,5.864316,0,0,3,0.5899057,0.8222054,0,0,0,3.315679,0.04154791,1.094977,4.452204,0,2329.247,-,-
+955.5,2860.72336834669,9.99999961853027,9.99999961853027,0,0.3216308,593.6995,103.6832,103.6832,826.5801,-148.1575,6.446201,51.3902,-9.211259,6.446201,0,0,3,0.6015432,0.8222054,0,0,0,3.31567,0.04154791,1.665235,5.022452,0,2418.113,-,-
+956.5,2863.50114601851,9.99999961853027,9.99999961853027,0,0.3216308,593.6995,103.6832,103.6832,830.0899,-148.1575,6.446201,51.60841,-9.211259,6.446201,0,0,3,0.6015432,0.8222054,0,0,0,3.31567,0.04154791,1.665235,5.022452,0,2418.113,-,-
+957.5,2866.27892369032,9.99999961853027,9.99999961853027,0,0.3216308,593.6995,103.6832,103.6832,830.0899,-148.1575,6.446201,51.60841,-9.211259,6.446201,0,0,3,0.6015432,0.8222054,0,0,0,3.31567,0.04154791,1.665235,5.022452,0,2418.113,-,-
+958.5,2869.05670136213,9.99999961853027,9.99999961853027,0,0.3216308,593.6995,103.6832,103.6832,830.0899,-148.1575,6.446201,51.60841,-9.211259,6.446201,0,0,3,0.6015432,0.8222054,0,0,0,3.31567,0.04154791,1.665235,5.022452,0,2418.113,-,-
+959.5,2871.83447903395,9.99999961853027,9.99999961853027,0,0.3216308,593.6995,103.6832,103.6832,830.0899,-148.1575,6.446201,51.60841,-9.211259,6.446201,0,0,3,0.6015432,0.8222054,0,0,0,3.31567,0.04154791,1.665235,5.022452,0,2418.113,-,-
+960.5,2874.61225670576,9.99999961853027,9.99999961853027,0,0.3216308,593.6995,103.6832,103.6832,830.0899,-148.1575,6.446201,51.60841,-9.211259,6.446201,0,0,3,0.6015432,0.8222054,0,0,0,3.31567,0.04154791,1.665235,5.022452,0,2418.113,-,-
+961.5,2877.39003437757,9.99999961853027,9.99999961853027,0,0.3216308,593.6995,103.6832,103.6832,830.0899,-148.1575,6.446201,51.60841,-9.211259,6.446201,0,0,3,0.6015432,0.8222054,0,0,0,3.31567,0.04154791,1.665235,5.022452,0,2418.113,-,-
+962.5,2880.16781204939,9.99999961853027,9.99999961853027,0,0.4317735,593.6995,113.0423,113.0423,830.0899,-148.1575,7.028076,51.60841,-9.211259,7.028076,0,0,3,0.6131806,0.8222053,0,0,0,3.315656,0.04154791,2.235486,5.59269,0,2506.978,-,-
+963.5,2882.9455897212,9.99999961853027,9.99999961853027,0,0.4317735,593.6995,113.0423,113.0423,833.5995,-148.1575,7.028076,51.82661,-9.211259,7.028076,0,0,3,0.6131806,0.8222053,0,0,0,3.315656,0.04154791,2.235486,5.59269,0,2506.978,-,-
+964.5,2885.72336739302,9.99999961853027,9.99999961853027,0,0.4317735,593.6995,113.0423,113.0423,833.5995,-148.1575,7.028076,51.82661,-9.211259,7.028076,0,0,3,0.6131806,0.8222053,0,0,0,3.315656,0.04154791,2.235486,5.59269,0,2506.978,-,-
+965.5,2888.50114506483,9.99999961853027,9.99999961853027,0,0.4317735,593.6995,113.0423,113.0423,833.5995,-148.1575,7.028076,51.82661,-9.211259,7.028076,0,0,3,0.6131806,0.8222053,0,0,0,3.315656,0.04154791,2.235486,5.59269,0,2506.978,-,-
+966.5,2891.27892273664,9.99999961853027,9.99999961853027,0,0.4317735,593.6995,113.0423,113.0423,833.5995,-148.1575,7.028076,51.82661,-9.211259,7.028076,0,0,3,0.6131806,0.8222053,0,0,0,3.315656,0.04154791,2.235486,5.59269,0,2506.978,-,-
+967.5,2894.05670040846,9.99999961853027,9.99999961853027,0,0.4317735,593.6995,113.0423,113.0423,833.5995,-148.1575,7.028076,51.82661,-9.211259,7.028076,0,0,3,0.6131806,0.8222053,0,0,0,3.315656,0.04154791,2.235486,5.59269,0,2506.978,-,-
+968.5,2896.83447808027,9.99999961853027,9.99999961853027,0,0.4317735,593.6995,113.0423,113.0423,833.5995,-148.1575,7.028076,51.82661,-9.211259,7.028076,0,0,3,0.6131806,0.8222053,0,0,0,3.315656,0.04154791,2.235486,5.59269,0,2506.978,-,-
+969.5,2899.61225575209,9.99999961853027,9.99999961853027,0,0.5419162,593.6995,122.4013,122.4013,833.5995,-148.1575,7.60994,51.82661,-9.211259,7.60994,0,0,3,0.6248182,0.8222055,0,0,0,3.315638,0.04154791,2.80573,6.162916,0,2595.841,-,-
+970.5,2902.3900334239,9.99999961853027,9.99999961853027,0,0.5419162,593.6995,122.4013,122.4013,837.1091,-148.1575,7.60994,52.04481,-9.211259,7.60994,0,0,3,0.6248182,0.8222055,0,0,0,3.315638,0.04154791,2.80573,6.162916,0,2595.841,-,-
+971.5,2905.16781109571,9.99999961853027,9.99999961853027,0,0.5419162,593.6995,122.4013,122.4013,837.1091,-148.1575,7.60994,52.04481,-9.211259,7.60994,0,0,3,0.6248182,0.8222055,0,0,0,3.315638,0.04154791,2.80573,6.162916,0,2595.841,-,-
+972.5,2907.94558876753,9.99999961853027,9.99999961853027,0,0.5419162,593.6995,122.4013,122.4013,837.1091,-148.1575,7.60994,52.04481,-9.211259,7.60994,0,0,3,0.6248182,0.8222055,0,0,0,3.315638,0.04154791,2.80573,6.162916,0,2595.841,-,-
+973.5,2910.72336643934,9.99999961853027,9.99999961853027,0,0.5419162,593.6995,122.4013,122.4013,837.1091,-148.1575,7.60994,52.04481,-9.211259,7.60994,0,0,3,0.6248182,0.8222055,0,0,0,3.315638,0.04154791,2.80573,6.162916,0,2595.841,-,-
+974.5,2913.50114411116,9.99999961853027,9.99999961853027,0,0.5419162,593.6995,122.4013,122.4013,837.1091,-148.1575,7.60994,52.04481,-9.211259,7.60994,0,0,3,0.6248182,0.8222055,0,0,0,3.315638,0.04154791,2.80573,6.162916,0,2595.841,-,-
+975.5,2916.27892178297,9.99999961853027,9.99999961853027,0,0.5419162,593.6995,122.4013,122.4013,837.1091,-148.1575,7.60994,52.04481,-9.211259,7.60994,0,0,3,0.6248182,0.8222055,0,0,0,3.315638,0.04154791,2.80573,6.162916,0,2595.841,-,-
+976.5,2919.05669945478,9.99999961853027,9.99999961853027,0,0.652059,593.6995,131.7599,131.7599,837.1091,-148.1575,8.191788,52.04481,-9.211259,8.191788,0,0,3,0.6364549,0.8222053,0,0,0,3.315616,0.04154791,3.375963,6.733128,0,2684.701,-,-
+977.5,2921.8344771266,9.99999961853027,9.99999961853027,0,0.652059,593.6995,131.7599,131.7599,840.6186,-148.1575,8.191788,52.263,-9.211259,8.191788,0,0,3,0.6364549,0.8222053,0,0,0,3.315616,0.04154791,3.375963,6.733128,0,2684.701,-,-
+978.5,2924.61225479841,9.99999961853027,9.99999961853027,0,0.652059,593.6995,131.7599,131.7599,840.6186,-148.1575,8.191788,52.263,-9.211259,8.191788,0,0,3,0.6364549,0.8222053,0,0,0,3.315616,0.04154791,3.375963,6.733128,0,2684.701,-,-
+979.5,2927.39003247023,9.99999961853027,9.99999961853027,0,0.652059,593.6995,131.7599,131.7599,840.6186,-148.1575,8.191788,52.263,-9.211259,8.191788,0,0,3,0.6364549,0.8222053,0,0,0,3.315616,0.04154791,3.375963,6.733128,0,2684.701,-,-
+980.5,2930.16781014204,9.99999961853027,9.99999961853027,0,0.652059,593.6995,131.7599,131.7599,840.6186,-148.1575,8.191788,52.263,-9.211259,8.191788,0,0,3,0.6364549,0.8222053,0,0,0,3.315616,0.04154791,3.375963,6.733128,0,2684.701,-,-
+981.5,2932.94558781385,9.99999961853027,9.99999961853027,0,0.652059,593.6995,131.7599,131.7599,840.6186,-148.1575,8.191788,52.263,-9.211259,8.191788,0,0,3,0.6364549,0.8222053,0,0,0,3.315616,0.04154791,3.375963,6.733128,0,2684.701,-,-
+982.5,2935.72336548567,9.99999961853027,9.99999961853027,0,0.652059,593.6995,131.7599,131.7599,840.6186,-148.1575,8.191788,52.263,-9.211259,8.191788,0,0,3,0.6364549,0.8222053,0,0,0,3.315616,0.04154791,3.375963,6.733128,0,2684.701,-,-
+983.5,2938.50114315748,9.99999961853027,9.99999961853027,0,0.7071303,593.6995,136.4392,136.4392,840.6186,-148.1575,8.482705,52.263,-9.211259,8.482705,0,0,3,0.6422735,0.8222052,0,0,0,3.315604,0.04154791,3.661075,7.018227,0,2729.13,-,-
+984.5,2941.2789208293,9.99999961853027,9.99999961853027,0,0.7622016,593.6995,141.1183,141.1183,842.3734,-148.1575,8.77362,52.37209,-9.211259,8.77362,0,0,3,0.6480916,0.8222054,0,0,0,3.31559,0.04154791,3.946184,7.303323,0,2773.559,-,-
+985.5,2944.05669850111,9.99999961853027,9.99999961853027,0,0.7622016,593.6995,141.1183,141.1183,844.1281,-148.1575,8.77362,52.48119,-9.211259,8.77362,0,0,3,0.6480916,0.8222054,0,0,0,3.31559,0.04154791,3.946184,7.303323,0,2773.559,-,-
+986.5,2946.83447617292,9.99999961853027,9.99999961853027,0,0.7622016,593.6995,141.1183,141.1183,844.1281,-148.1575,8.77362,52.48119,-9.211259,8.77362,0,0,3,0.6480916,0.8222054,0,0,0,3.31559,0.04154791,3.946184,7.303323,0,2773.559,-,-
+987.5,2949.61225384474,9.99999961853027,9.99999961853027,0,0.7622016,593.6995,141.1183,141.1183,844.1281,-148.1575,8.77362,52.48119,-9.211259,8.77362,0,0,3,0.6480916,0.8222054,0,0,0,3.31559,0.04154791,3.946184,7.303323,0,2773.559,-,-
+988.5,2952.39003151655,9.99999961853027,9.99999961853027,0,0.7622016,593.6995,141.1183,141.1183,844.1281,-148.1575,8.77362,52.48119,-9.211259,8.77362,0,0,3,0.6480916,0.8222054,0,0,0,3.31559,0.04154791,3.946184,7.303323,0,2773.559,-,-
+989.5,2955.16780918837,9.99999961853027,9.99999961853027,0,0.7622016,593.6995,141.1183,141.1183,844.1281,-148.1575,8.77362,52.48119,-9.211259,8.77362,0,0,3,0.6480916,0.8222054,0,0,0,3.31559,0.04154791,3.946184,7.303323,0,2773.559,-,-
+990.5,2957.94558686018,9.99999961853027,9.99999961853027,0,0.7622016,593.6995,141.1183,141.1183,844.1281,-148.1575,8.77362,52.48119,-9.211259,8.77362,0,0,3,0.6480916,0.8222054,0,0,0,3.31559,0.04154791,3.946184,7.303323,0,2773.559,-,-
+991.5,2960.72336453199,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,844.1281,-148.1575,9.356069,52.48119,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+992.5,2963.50114220381,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+993.5,2966.27891987562,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+994.5,2969.05669754744,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+995.5,2971.83447521925,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+996.5,2974.61225289106,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+997.5,2977.39003056288,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+998.5,2980.16780823469,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+999.5,2982.94558590651,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+1000.5,2985.72336357832,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+1001.5,2988.50114125013,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+1002.5,2991.27891892195,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+1003.5,2994.05669659376,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+1004.5,2996.83447426558,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+1005.5,2999.61225193739,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+1006.5,3002.3900296092,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+1007.5,3005.16780728102,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+1008.5,3007.94558495283,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+1009.5,3010.72336262465,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+1010.5,3013.50114029646,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+1011.5,3016.27891796827,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+1012.5,3019.05669564009,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+1013.5,3021.8344733119,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+1014.5,3024.61225098372,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+1015.5,3027.39002865553,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+1016.5,3030.16780632734,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+1017.5,3032.94558399916,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+1018.5,3035.72336167097,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+1019.5,3038.50113934278,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+1020.5,3041.2789170146,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+1021.5,3044.05669468641,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+1022.5,3046.83447235823,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+1023.5,3049.61225003004,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+1024.5,3052.39002770185,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+1025.5,3055.16780537367,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+1026.5,3057.94558304548,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+1027.5,3060.7233607173,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+1028.5,3063.50113838911,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+1029.5,3066.27891606092,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+1030.5,3069.05669373274,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+1031.5,3071.83447140455,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+1032.5,3074.61224907637,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+1033.5,3077.39002674818,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+1034.5,3080.16780441999,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+1035.5,3082.94558209181,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+1036.5,3085.72335976362,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+1037.5,3088.50113743544,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+1038.5,3091.27891510725,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+1039.5,3094.05669277906,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+1040.5,3096.83447045088,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+1041.5,3099.61224812269,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+1042.5,3102.39002579451,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+1043.5,3105.16780346632,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+1044.5,3107.94558113813,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+1045.5,3110.72335880995,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+1046.5,3113.50113648176,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+1047.5,3116.27891415358,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+1048.5,3119.05669182539,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+1049.5,3121.8344694972,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+1050.5,3124.61224716902,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+1051.5,3127.39002484083,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+1052.5,3130.16780251265,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+1053.5,3132.94558018446,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+1054.5,3135.72335785627,9.99999961853027,9.99999961853027,0,0.8723443,593.6995,150.4867,150.4867,847.6412,-148.1575,9.356069,52.6996,-9.211259,9.356069,0,0,3,0.6597407,0.8228286,0,0,0,3.315561,0.04154791,4.516391,7.873499,0,2862.512,-,-
+1055.5,3138.50113552809,9.99999961853027,9.99999961853027,0,0.9294809,593.6995,155.415,155.415,847.6412,-148.1575,9.662472,52.6996,-9.211259,9.662472,0,0,3,0.6658682,0.8273323,0,0,0,3.315543,0.04154791,4.81218,8.169271,0,2909.306,-,-
+1056.5,3141.2789131999,9.99999961853027,9.99999961853027,0,0.9866174,593.6995,160.3432,160.3432,849.4893,-148.1575,9.96887,52.81451,-9.211259,9.96887,0,0,3,0.6719969,0.8318368,0,0,0,3.315525,0.04154791,5.107963,8.465036,0,2956.1,-,-
+1057.5,3144.05669087172,9.99999961853027,9.99999961853027,0,0.9866174,593.6995,160.3432,160.3432,851.3373,-148.1575,9.96887,52.92941,-9.211259,9.96887,0,0,3,0.6719969,0.8318368,0,0,0,3.315525,0.04154791,5.107963,8.465036,0,2956.1,-,-
+1058.5,3146.83446854353,9.99999961853027,9.99999961853027,0,0.9866174,593.6995,160.3432,160.3432,851.3373,-148.1575,9.96887,52.92941,-9.211259,9.96887,0,0,3,0.6719969,0.8318368,0,0,0,3.315525,0.04154791,5.107963,8.465036,0,2956.1,-,-
+1059.5,3149.61224621534,9.99999961853027,9.99999961853027,0,0.9866174,593.6995,160.3432,160.3432,851.3373,-148.1575,9.96887,52.92941,-9.211259,9.96887,0,0,3,0.6719969,0.8318368,0,0,0,3.315525,0.04154791,5.107963,8.465036,0,2956.1,-,-
+1060.5,3152.39002388716,9.99999961853027,9.99999961853027,0,0.9866174,593.6995,160.3432,160.3432,851.3373,-148.1575,9.96887,52.92941,-9.211259,9.96887,0,0,3,0.6719969,0.8318368,0,0,0,3.315525,0.04154791,5.107963,8.465036,0,2956.1,-,-
+1061.5,3155.16780155897,9.99999961853027,9.99999961853027,0,0.9866174,593.6995,160.3432,160.3432,851.3373,-148.1575,9.96887,52.92941,-9.211259,9.96887,0,0,3,0.6719969,0.8318368,0,0,0,3.315525,0.04154791,5.107963,8.465036,0,2956.1,-,-
+1062.5,3157.94557923079,9.99999961853027,9.99999961853027,0,0.9866174,593.6995,160.3432,160.3432,851.3373,-148.1575,9.96887,52.92941,-9.211259,9.96887,0,0,3,0.6719969,0.8318368,0,0,0,3.315525,0.04154791,5.107963,8.465036,0,2956.1,-,-
+1063.5,3160.7233569026,9.99999961853027,9.99999961853027,0,0.9866174,593.6995,160.3432,160.3432,851.3373,-148.1575,9.96887,52.92941,-9.211259,9.96887,0,0,3,0.6719969,0.8318368,0,0,0,3.315525,0.04154791,5.107963,8.465036,0,2956.1,-,-
+1064.5,3163.50113457441,9.99999961853027,9.99999961853027,0,0.9866174,593.6995,160.3432,160.3432,851.3373,-148.1575,9.96887,52.92941,-9.211259,9.96887,0,0,3,0.6719969,0.8318368,0,0,0,3.315525,0.04154791,5.107963,8.465036,0,2956.1,-,-
+1065.5,3166.27891224623,9.99999961853027,9.99999961853027,0,0.9866174,593.6995,160.3432,160.3432,851.3373,-148.1575,9.96887,52.92941,-9.211259,9.96887,0,0,3,0.6719969,0.8318368,0,0,0,3.315525,0.04154791,5.107963,8.465036,0,2956.1,-,-
+1066.5,3169.05668991804,9.99999961853027,9.99999961853027,0,1.13118,593.6995,172.8117,172.8117,851.3373,-148.1575,10.74406,52.92941,-9.211259,10.74406,0,0,3,0.6875005,0.8432319,0,0,0,3.315475,0.04154791,5.856308,9.21333,0,3074.488,-,-
+1067.5,3171.83446758986,9.99999961853027,9.99999961853027,0,1.13118,593.6995,172.8117,172.8117,856.0131,-148.1575,10.74406,53.2201,-9.211259,10.74406,0,0,3,0.6875005,0.8432319,0,0,0,3.315475,0.04154791,5.856308,9.21333,0,3074.488,-,-
+1068.5,3174.61224526167,9.99999961853027,9.99999961853027,0,1.13118,593.6995,172.8117,172.8117,856.0131,-148.1575,10.74406,53.2201,-9.211259,10.74406,0,0,3,0.6875005,0.8432319,0,0,0,3.315475,0.04154791,5.856308,9.21333,0,3074.488,-,-
+1069.5,3177.39002293348,9.99999961853027,9.99999961853027,0,1.13118,593.6995,172.8117,172.8117,856.0131,-148.1575,10.74406,53.2201,-9.211259,10.74406,0,0,3,0.6875005,0.8432319,0,0,0,3.315475,0.04154791,5.856308,9.21333,0,3074.488,-,-
+1070.5,3180.1678006053,9.99999961853027,9.99999961853027,0,1.13118,593.6995,172.8117,172.8117,856.0131,-148.1575,10.74406,53.2201,-9.211259,10.74406,0,0,3,0.6875005,0.8432319,0,0,0,3.315475,0.04154791,5.856308,9.21333,0,3074.488,-,-
+1071.5,3182.94557827711,9.99999961853027,9.99999961853027,0,1.13118,593.6995,172.8117,172.8117,856.0131,-148.1575,10.74406,53.2201,-9.211259,10.74406,0,0,3,0.6875005,0.8432319,0,0,0,3.315475,0.04154791,5.856308,9.21333,0,3074.488,-,-
+1072.5,3185.72335594893,9.99999961853027,9.99999961853027,0,1.13118,593.6995,172.8117,172.8117,856.0131,-148.1575,10.74406,53.2201,-9.211259,10.74406,0,0,3,0.6875005,0.8432319,0,0,0,3.315475,0.04154791,5.856308,9.21333,0,3074.488,-,-
+1073.5,3188.50113362074,9.99999961853027,9.99999961853027,0,1.13118,593.6995,172.8117,172.8117,856.0131,-148.1575,10.74406,53.2201,-9.211259,10.74406,0,0,3,0.6875005,0.8432319,0,0,0,3.315475,0.04154791,5.856308,9.21333,0,3074.488,-,-
+1074.5,3191.27891129255,9.99999961853027,9.99999961853027,0,1.13118,593.6995,172.8117,172.8117,856.0131,-148.1575,10.74406,53.2201,-9.211259,10.74406,0,0,3,0.6875005,0.8432319,0,0,0,3.315475,0.04154791,5.856308,9.21333,0,3074.488,-,-
+1075.5,3194.05668896437,9.99999961853027,9.99999961853027,0,1.13118,593.6995,172.8117,172.8117,856.0131,-148.1575,10.74406,53.2201,-9.211259,10.74406,0,0,3,0.6875005,0.8432319,0,0,0,3.315475,0.04154791,5.856308,9.21333,0,3074.488,-,-
+1076.5,3196.83446663618,9.99999961853027,9.99999961853027,0,1.13118,593.6995,172.8117,172.8117,856.0131,-148.1575,10.74406,53.2201,-9.211259,10.74406,0,0,3,0.6875005,0.8432319,0,0,0,3.315475,0.04154791,5.856308,9.21333,0,3074.488,-,-
+1077.5,3199.61224430799,9.99999961853027,9.99999961853027,0,1.268351,593.6995,184.6421,184.6421,856.0131,-148.1575,11.47958,53.2201,-9.211259,11.47958,0,0,3,0.702211,0.8540441,0,0,0,3.31542,0.04154791,6.566358,9.923326,0,3186.817,-,-
+1078.5,3202.39002197981,9.99999961853027,9.99999961853027,0,1.268351,593.6995,184.6421,184.6421,860.4495,-148.1575,11.47958,53.49592,-9.211259,11.47958,0,0,3,0.702211,0.8540441,0,0,0,3.31542,0.04154791,6.566358,9.923326,0,3186.817,-,-
+1079.5,3205.16779965162,9.99999961853027,9.99999961853027,0,1.268351,593.6995,184.6421,184.6421,860.4495,-148.1575,11.47958,53.49592,-9.211259,11.47958,0,0,3,0.702211,0.8540441,0,0,0,3.31542,0.04154791,6.566358,9.923326,0,3186.817,-,-
+1080.5,3207.94557732344,9.99999961853027,9.99999961853027,0,1.268351,593.6995,184.6421,184.6421,860.4495,-148.1575,11.47958,53.49592,-9.211259,11.47958,0,0,3,0.702211,0.8540441,0,0,0,3.31542,0.04154791,6.566358,9.923326,0,3186.817,-,-
+1081.5,3210.72335499525,9.99999961853027,9.99999961853027,0,1.268351,593.6995,184.6421,184.6421,860.4495,-148.1575,11.47958,53.49592,-9.211259,11.47958,0,0,3,0.702211,0.8540441,0,0,0,3.31542,0.04154791,6.566358,9.923326,0,3186.817,-,-
+1082.5,3213.50113266706,9.99999961853027,9.99999961853027,0,1.268351,593.6995,184.6421,184.6421,860.4495,-148.1575,11.47958,53.49592,-9.211259,11.47958,0,0,3,0.702211,0.8540441,0,0,0,3.31542,0.04154791,6.566358,9.923326,0,3186.817,-,-
+1083.5,3216.27891033888,9.99999961853027,9.99999961853027,0,1.268351,593.6995,184.6421,184.6421,860.4495,-148.1575,11.47958,53.49592,-9.211259,11.47958,0,0,3,0.702211,0.8540441,0,0,0,3.31542,0.04154791,6.566358,9.923326,0,3186.817,-,-
+1084.5,3219.05668801069,9.99999961853027,9.99999961853027,0,1.268351,593.6995,184.6421,184.6421,860.4495,-148.1575,11.47958,53.49592,-9.211259,11.47958,0,0,3,0.702211,0.8540441,0,0,0,3.31542,0.04154791,6.566358,9.923326,0,3186.817,-,-
+1085.5,3221.83446568251,9.99999961853027,9.99999961853027,0,1.268351,593.6995,184.6421,184.6421,860.4495,-148.1575,11.47958,53.49592,-9.211259,11.47958,0,0,3,0.702211,0.8540441,0,0,0,3.31542,0.04154791,6.566358,9.923326,0,3186.817,-,-
+1086.5,3224.61224335432,9.99999961853027,9.99999961853027,0,1.268351,593.6995,184.6421,184.6421,860.4495,-148.1575,11.47958,53.49592,-9.211259,11.47958,0,0,3,0.702211,0.8540441,0,0,0,3.31542,0.04154791,6.566358,9.923326,0,3186.817,-,-
+1087.5,3227.39002102613,9.99999961853027,9.99999961853027,0,1.268351,593.6995,184.6421,184.6421,860.4495,-148.1575,11.47958,53.49592,-9.211259,11.47958,0,0,3,0.702211,0.8540441,0,0,0,3.31542,0.04154791,6.566358,9.923326,0,3186.817,-,-
+1088.5,3230.16779869795,9.99999961853027,9.99999961853027,0,1.268351,593.6995,184.6421,184.6421,860.4495,-148.1575,11.47958,53.49592,-9.211259,11.47958,0,0,3,0.702211,0.8540441,0,0,0,3.31542,0.04154791,6.566358,9.923326,0,3186.817,-,-
+1089.5,3232.94557636976,9.99999961853027,9.99999961853027,0,1.268351,593.6995,184.6421,184.6421,860.4495,-148.1575,11.47958,53.49592,-9.211259,11.47958,0,0,3,0.702211,0.8540441,0,0,0,3.31542,0.04154791,6.566358,9.923326,0,3186.817,-,-
+1090.5,3235.72335404158,9.99999961853027,9.99999961853027,0,1.268351,593.6995,184.6421,184.6421,860.4495,-148.1575,11.47958,53.49592,-9.211259,11.47958,0,0,3,0.702211,0.8540441,0,0,0,3.31542,0.04154791,6.566358,9.923326,0,3186.817,-,-
+1091.5,3238.50113171339,9.99999961853027,9.99999961853027,0,1.216903,593.6995,180.205,180.205,860.4495,-148.1575,11.20372,53.49592,-9.211259,11.20372,0,0,3,0.6966938,0.8499884,0,0,0,3.315441,0.04154791,6.300047,9.657037,0,3144.687,-,-
+1092.5,3241.2789093852,9.99999961853027,9.99999961853027,0,1.165454,593.6995,175.7678,175.7678,858.7855,-148.1575,10.92785,53.39247,-9.211259,10.92785,0,0,3,0.6911758,0.8459339,0,0,0,3.315462,0.04154791,6.03373,9.390739,0,3102.556,-,-
+1093.5,3244.05668705702,9.99999961853027,9.99999961853027,0,1.165454,593.6995,175.7678,175.7678,857.1216,-148.1575,10.92785,53.28902,-9.211259,10.92785,0,0,3,0.6911758,0.8459339,0,0,0,3.315462,0.04154791,6.03373,9.390739,0,3102.556,-,-
+1094.5,3246.83446472883,9.99999961853027,9.99999961853027,0,1.165454,593.6995,175.7678,175.7678,857.1216,-148.1575,10.92785,53.28902,-9.211259,10.92785,0,0,3,0.6911758,0.8459339,0,0,0,3.315462,0.04154791,6.03373,9.390739,0,3102.556,-,-
+1095.5,3249.61224240065,9.99999961853027,9.99999961853027,0,1.165454,593.6995,175.7678,175.7678,857.1216,-148.1575,10.92785,53.28902,-9.211259,10.92785,0,0,3,0.6911758,0.8459339,0,0,0,3.315462,0.04154791,6.03373,9.390739,0,3102.556,-,-
+1096.5,3252.39002007246,9.99999961853027,9.99999961853027,0,1.165454,593.6995,175.7678,175.7678,857.1216,-148.1575,10.92785,53.28902,-9.211259,10.92785,0,0,3,0.6911758,0.8459339,0,0,0,3.315462,0.04154791,6.03373,9.390739,0,3102.556,-,-
+1097.5,3255.16779774427,9.99999961853027,9.99999961853027,0,1.165454,593.6995,175.7678,175.7678,857.1216,-148.1575,10.92785,53.28902,-9.211259,10.92785,0,0,3,0.6911758,0.8459339,0,0,0,3.315462,0.04154791,6.03373,9.390739,0,3102.556,-,-
+1098.5,3257.94557541609,9.99999961853027,9.99999961853027,0,1.165454,593.6995,175.7678,175.7678,857.1216,-148.1575,10.92785,53.28902,-9.211259,10.92785,0,0,3,0.6911758,0.8459339,0,0,0,3.315462,0.04154791,6.03373,9.390739,0,3102.556,-,-
+1099.5,3260.7233530879,9.99999961853027,9.99999961853027,0,1.165454,593.6995,175.7678,175.7678,857.1216,-148.1575,10.92785,53.28902,-9.211259,10.92785,0,0,3,0.6911758,0.8459339,0,0,0,3.315462,0.04154791,6.03373,9.390739,0,3102.556,-,-
+1100.5,3263.50113075972,9.99999961853027,9.99999961853027,0,1.165454,593.6995,175.7678,175.7678,857.1216,-148.1575,10.92785,53.28902,-9.211259,10.92785,0,0,3,0.6911758,0.8459339,0,0,0,3.315462,0.04154791,6.03373,9.390739,0,3102.556,-,-
+1101.5,3266.27890843153,9.99999961853027,9.99999961853027,0,1.165454,593.6995,175.7678,175.7678,857.1216,-148.1575,10.92785,53.28902,-9.211259,10.92785,0,0,3,0.6911758,0.8459339,0,0,0,3.315462,0.04154791,6.03373,9.390739,0,3102.556,-,-
+1102.5,3269.05668610334,9.99999961853027,9.99999961853027,0,1.165454,593.6995,175.7678,175.7678,857.1216,-148.1575,10.92785,53.28902,-9.211259,10.92785,0,0,3,0.6911758,0.8459339,0,0,0,3.315462,0.04154791,6.03373,9.390739,0,3102.556,-,-
+1103.5,3271.83446377516,9.99999961853027,9.99999961853027,0,1.165454,593.6995,175.7678,175.7678,857.1216,-148.1575,10.92785,53.28902,-9.211259,10.92785,0,0,3,0.6911758,0.8459339,0,0,0,3.315462,0.04154791,6.03373,9.390739,0,3102.556,-,-
+1104.5,3274.61224144697,9.99999961853027,9.99999961853027,0,1.165454,593.6995,175.7678,175.7678,857.1216,-148.1575,10.92785,53.28902,-9.211259,10.92785,0,0,3,0.6911758,0.8459339,0,0,0,3.315462,0.04154791,6.03373,9.390739,0,3102.556,-,-
+1105.5,3277.39001911879,9.99999961853027,9.99999961853027,0,1.165454,593.6995,175.7678,175.7678,857.1216,-148.1575,10.92785,53.28902,-9.211259,10.92785,0,0,3,0.6911758,0.8459339,0,0,0,3.315462,0.04154791,6.03373,9.390739,0,3102.556,-,-
+1106.5,3280.1677967906,9.99999961853027,9.99999961853027,0,1.062558,593.6995,166.8932,166.8932,857.1216,-148.1575,10.37609,53.28902,-9.211259,10.37609,0,0,3,0.6801413,0.8378226,0,0,0,3.3155,0.04154791,5.501083,8.85813,0,3018.292,-,-
+1107.5,3282.94557446241,9.99999961853027,9.99999961853027,0,1.062558,593.6995,166.8932,166.8932,853.7936,-148.1575,10.37609,53.08212,-9.211259,10.37609,0,0,3,0.6801413,0.8378226,0,0,0,3.3155,0.04154791,5.501083,8.85813,0,3018.292,-,-
+1108.5,3285.72335213423,9.99999961853027,9.99999961853027,0,1.062558,593.6995,166.8932,166.8932,853.7936,-148.1575,10.37609,53.08212,-9.211259,10.37609,0,0,3,0.6801413,0.8378226,0,0,0,3.3155,0.04154791,5.501083,8.85813,0,3018.292,-,-
+1109.5,3288.50112980604,9.99999961853027,9.99999961853027,0,1.062558,593.6995,166.8932,166.8932,853.7936,-148.1575,10.37609,53.08212,-9.211259,10.37609,0,0,3,0.6801413,0.8378226,0,0,0,3.3155,0.04154791,5.501083,8.85813,0,3018.292,-,-
+1110.5,3291.27890747786,9.99999961853027,9.99999961853027,0,1.062558,593.6995,166.8932,166.8932,853.7936,-148.1575,10.37609,53.08212,-9.211259,10.37609,0,0,3,0.6801413,0.8378226,0,0,0,3.3155,0.04154791,5.501083,8.85813,0,3018.292,-,-
+1111.5,3294.05668514967,9.99999961853027,9.99999961853027,0,1.062558,593.6995,166.8932,166.8932,853.7936,-148.1575,10.37609,53.08212,-9.211259,10.37609,0,0,3,0.6801413,0.8378226,0,0,0,3.3155,0.04154791,5.501083,8.85813,0,3018.292,-,-
+1112.5,3296.83446282148,9.99999961853027,9.99999961853027,0,1.062558,593.6995,166.8932,166.8932,853.7936,-148.1575,10.37609,53.08212,-9.211259,10.37609,0,0,3,0.6801413,0.8378226,0,0,0,3.3155,0.04154791,5.501083,8.85813,0,3018.292,-,-
+1113.5,3299.6122404933,9.99999961853027,9.99999961853027,0,1.062558,593.6995,166.8932,166.8932,853.7936,-148.1575,10.37609,53.08212,-9.211259,10.37609,0,0,3,0.6801413,0.8378226,0,0,0,3.3155,0.04154791,5.501083,8.85813,0,3018.292,-,-
+1114.5,3302.39001816511,9.99999961853027,9.99999961853027,0,1.062558,593.6995,166.8932,166.8932,853.7936,-148.1575,10.37609,53.08212,-9.211259,10.37609,0,0,3,0.6801413,0.8378226,0,0,0,3.3155,0.04154791,5.501083,8.85813,0,3018.292,-,-
+1115.5,3305.16779583693,9.99999961853027,9.99999961853027,0,1.062558,593.6995,166.8932,166.8932,853.7936,-148.1575,10.37609,53.08212,-9.211259,10.37609,0,0,3,0.6801413,0.8378226,0,0,0,3.3155,0.04154791,5.501083,8.85813,0,3018.292,-,-
+1116.5,3307.94557350874,9.99999961853027,9.99999961853027,0,1.062558,593.6995,166.8932,166.8932,853.7936,-148.1575,10.37609,53.08212,-9.211259,10.37609,0,0,3,0.6801413,0.8378226,0,0,0,3.3155,0.04154791,5.501083,8.85813,0,3018.292,-,-
+1117.5,3310.72335118055,9.99999961853027,9.99999961853027,0,1.062558,593.6995,166.8932,166.8932,853.7936,-148.1575,10.37609,53.08212,-9.211259,10.37609,0,0,3,0.6801413,0.8378226,0,0,0,3.3155,0.04154791,5.501083,8.85813,0,3018.292,-,-
+1118.5,3313.50112885237,9.99999961853027,9.99999961853027,0,1.062558,593.6995,166.8932,166.8932,853.7936,-148.1575,10.37609,53.08212,-9.211259,10.37609,0,0,3,0.6801413,0.8378226,0,0,0,3.3155,0.04154791,5.501083,8.85813,0,3018.292,-,-
+1119.5,3316.27890652418,9.99999961853027,9.99999961853027,0,1.062558,593.6995,166.8932,166.8932,853.7936,-148.1575,10.37609,53.08212,-9.211259,10.37609,0,0,3,0.6801413,0.8378226,0,0,0,3.3155,0.04154791,5.501083,8.85813,0,3018.292,-,-
+1120.5,3319.056684196,9.99999961853027,9.99999961853027,0,0.9596614,593.6995,158.0182,158.0182,853.7936,-148.1575,9.824317,53.08212,-9.211259,9.824317,0,0,3,0.6691055,0.8297114,0,0,0,3.315534,0.04154791,4.968418,8.3255,0,2934.023,-,-
+1121.5,3321.83446186781,9.99999961853027,9.99999961853027,0,0.9596614,593.6995,158.0182,158.0182,850.4655,-148.1575,9.824317,52.8752,-9.211259,9.824317,0,0,3,0.6691055,0.8297114,0,0,0,3.315534,0.04154791,4.968418,8.3255,0,2934.023,-,-
+1122.5,3324.61223953962,9.99999961853027,9.99999961853027,0,0.9596614,593.6995,158.0182,158.0182,850.4655,-148.1575,9.824317,52.8752,-9.211259,9.824317,0,0,3,0.6691055,0.8297114,0,0,0,3.315534,0.04154791,4.968418,8.3255,0,2934.023,-,-
+1123.5,3327.39001721144,9.99999961853027,9.99999961853027,0,0.9596614,593.6995,158.0182,158.0182,850.4655,-148.1575,9.824317,52.8752,-9.211259,9.824317,0,0,3,0.6691055,0.8297114,0,0,0,3.315534,0.04154791,4.968418,8.3255,0,2934.023,-,-
+1124.5,3330.16779488325,9.99999961853027,9.99999961853027,0,0.9596614,593.6995,158.0182,158.0182,850.4655,-148.1575,9.824317,52.8752,-9.211259,9.824317,0,0,3,0.6691055,0.8297114,0,0,0,3.315534,0.04154791,4.968418,8.3255,0,2934.023,-,-
+1125.5,3332.94557255507,9.99999961853027,9.99999961853027,0,0.9596614,593.6995,158.0182,158.0182,850.4655,-148.1575,9.824317,52.8752,-9.211259,9.824317,0,0,3,0.6691055,0.8297114,0,0,0,3.315534,0.04154791,4.968418,8.3255,0,2934.023,-,-
+1126.5,3335.72335022688,9.99999961853027,9.99999961853027,0,0.9596614,593.6995,158.0182,158.0182,850.4655,-148.1575,9.824317,52.8752,-9.211259,9.824317,0,0,3,0.6691055,0.8297114,0,0,0,3.315534,0.04154791,4.968418,8.3255,0,2934.023,-,-
+1127.5,3338.50112789869,9.99999961853027,9.99999961853027,0,0.8881592,593.6995,151.8508,151.8508,850.4655,-148.1575,9.44088,52.8752,-9.211259,9.44088,0,0,3,0.6614368,0.8240753,0,0,0,3.315556,0.04154791,4.598263,7.955367,0,2875.464,-,-
+1128.5,3341.27890557051,9.99999961853027,9.99999961853027,0,0.816657,593.6995,145.7451,145.7451,848.1527,-148.1575,9.061274,52.73141,-9.211259,9.061274,0,0,3,0.6538443,0.8222055,0,0,0,3.315576,0.04154791,4.2281,7.585224,0,2817.49,-,-
+1129.5,3344.05668324232,9.99999961853027,9.99999961853027,0,0.816657,593.6995,145.7451,145.7451,845.8631,-148.1575,9.061274,52.58906,-9.211259,9.061274,0,0,3,0.6538443,0.8222055,0,0,0,3.315576,0.04154791,4.2281,7.585224,0,2817.49,-,-
+1130.5,3346.83446091414,9.99999961853027,9.99999961853027,0,0.816657,593.6995,145.7451,145.7451,845.8631,-148.1575,9.061274,52.58906,-9.211259,9.061274,0,0,3,0.6538443,0.8222055,0,0,0,3.315576,0.04154791,4.2281,7.585224,0,2817.49,-,-
+1131.5,3349.61223858595,9.99999961853027,9.99999961853027,0,0.816657,593.6995,145.7451,145.7451,845.8631,-148.1575,9.061274,52.58906,-9.211259,9.061274,0,0,3,0.6538443,0.8222055,0,0,0,3.315576,0.04154791,4.2281,7.585224,0,2817.49,-,-
+1132.5,3352.39001625776,9.99999961853027,9.99999961853027,0,0.816657,593.6995,145.7451,145.7451,845.8631,-148.1575,9.061274,52.58906,-9.211259,9.061274,0,0,3,0.6538443,0.8222055,0,0,0,3.315576,0.04154791,4.2281,7.585224,0,2817.49,-,-
+1133.5,3355.16779392958,9.99999961853027,9.99999961853027,0,0.816657,593.6995,145.7451,145.7451,845.8631,-148.1575,9.061274,52.58906,-9.211259,9.061274,0,0,3,0.6538443,0.8222055,0,0,0,3.315576,0.04154791,4.2281,7.585224,0,2817.49,-,-
+1134.5,3357.94557160139,9.99999961853027,9.99999961853027,0,0.816657,593.6995,145.7451,145.7451,845.8631,-148.1575,9.061274,52.58906,-9.211259,9.061274,0,0,3,0.6538443,0.8222055,0,0,0,3.315576,0.04154791,4.2281,7.585224,0,2817.49,-,-
+1135.5,3360.7233492732,9.99999961853027,9.99999961853027,0,0.668834,593.6995,133.1853,133.1853,845.8631,-148.1575,8.280404,52.58906,-9.211259,8.280404,0,0,3,0.6382276,0.8222055,0,0,0,3.315613,0.04154791,3.46281,6.819971,0,2698.235,-,-
+1136.5,3363.50112694502,9.99999961853027,9.99999961853027,0,0.668834,593.6995,133.1853,133.1853,841.1531,-148.1575,8.280404,52.29623,-9.211259,8.280404,0,0,3,0.6382276,0.8222055,0,0,0,3.315613,0.04154791,3.46281,6.819971,0,2698.235,-,-
+1137.5,3366.27890461683,9.99999961853027,9.99999961853027,0,0.668834,593.6995,133.1853,133.1853,841.1531,-148.1575,8.280404,52.29623,-9.211259,8.280404,0,0,3,0.6382276,0.8222055,0,0,0,3.315613,0.04154791,3.46281,6.819971,0,2698.235,-,-
+1138.5,3369.05668228865,9.99999961853027,9.99999961853027,0,0.668834,593.6995,133.1853,133.1853,841.1531,-148.1575,8.280404,52.29623,-9.211259,8.280404,0,0,3,0.6382276,0.8222055,0,0,0,3.315613,0.04154791,3.46281,6.819971,0,2698.235,-,-
+1139.5,3371.83445996046,9.99999961853027,9.99999961853027,0,0.668834,593.6995,133.1853,133.1853,841.1531,-148.1575,8.280404,52.29623,-9.211259,8.280404,0,0,3,0.6382276,0.8222055,0,0,0,3.315613,0.04154791,3.46281,6.819971,0,2698.235,-,-
+1140.5,3374.61223763227,9.99999961853027,9.99999961853027,0,0.668834,593.6995,133.1853,133.1853,841.1531,-148.1575,8.280404,52.29623,-9.211259,8.280404,0,0,3,0.6382276,0.8222055,0,0,0,3.315613,0.04154791,3.46281,6.819971,0,2698.235,-,-
+1141.5,3377.39001530409,9.99999961853027,9.99999961853027,0,0.668834,593.6995,133.1853,133.1853,841.1531,-148.1575,8.280404,52.29623,-9.211259,8.280404,0,0,3,0.6382276,0.8222055,0,0,0,3.315613,0.04154791,3.46281,6.819971,0,2698.235,-,-
+1142.5,3380.1677929759,9.99999961853027,9.99999961853027,0,0.5210108,593.6995,120.6249,120.6249,841.1531,-148.1575,7.499502,52.29623,-9.211259,7.499502,0,0,3,0.6226094,0.8222054,0,0,0,3.315642,0.04154791,2.697497,6.054687,0,2578.974,-,-
+1143.5,3382.94557064772,9.99999961853027,9.99999961853027,0,0.5210108,593.6995,120.6249,120.6249,836.4431,-148.1575,7.499502,52.0034,-9.211259,7.499502,0,0,3,0.6226094,0.8222054,0,0,0,3.315642,0.04154791,2.697497,6.054687,0,2578.974,-,-
+1144.5,3385.72334831953,9.99999961853027,9.99999961853027,0,0.5210108,593.6995,120.6249,120.6249,836.4431,-148.1575,7.499502,52.0034,-9.211259,7.499502,0,0,3,0.6226094,0.8222054,0,0,0,3.315642,0.04154791,2.697497,6.054687,0,2578.974,-,-
+1145.5,3388.50112599134,9.99999961853027,9.99999961853027,0,0.5210108,593.6995,120.6249,120.6249,836.4431,-148.1575,7.499502,52.0034,-9.211259,7.499502,0,0,3,0.6226094,0.8222054,0,0,0,3.315642,0.04154791,2.697497,6.054687,0,2578.974,-,-
+1146.5,3391.27890366316,9.99999961853027,9.99999961853027,0,0.5210108,593.6995,120.6249,120.6249,836.4431,-148.1575,7.499502,52.0034,-9.211259,7.499502,0,0,3,0.6226094,0.8222054,0,0,0,3.315642,0.04154791,2.697497,6.054687,0,2578.974,-,-
+1147.5,3394.05668133497,9.99999961853027,9.99999961853027,0,0.5210108,593.6995,120.6249,120.6249,836.4431,-148.1575,7.499502,52.0034,-9.211259,7.499502,0,0,3,0.6226094,0.8222054,0,0,0,3.315642,0.04154791,2.697497,6.054687,0,2578.974,-,-
+1148.5,3396.83445900679,9.99999961853027,9.99999961853027,0,0.5210108,593.6995,120.6249,120.6249,836.4431,-148.1575,7.499502,52.0034,-9.211259,7.499502,0,0,3,0.6226094,0.8222054,0,0,0,3.315642,0.04154791,2.697497,6.054687,0,2578.974,-,-
+1149.5,3399.6122366786,9.99999961853027,9.99999961853027,0,0.38797,593.6995,109.3203,109.3203,836.4431,-148.1575,6.796667,52.0034,-9.211259,6.796667,0,0,3,0.6085525,0.8222052,0,0,0,3.315662,0.04154791,2.0087,5.36591,0,2471.636,-,-
+1150.5,3402.39001435041,9.99999961853027,9.99999961853027,0,0.38797,593.6995,109.3203,109.3203,832.2038,-148.1575,6.796667,51.73983,-9.211259,6.796667,0,0,3,0.6085525,0.8222052,0,0,0,3.315662,0.04154791,2.0087,5.36591,0,2471.636,-,-
+1151.5,3405.16779202223,9.99999961853027,9.99999961853027,0,0.38797,593.6995,109.3203,109.3203,832.2038,-148.1575,6.796667,51.73983,-9.211259,6.796667,0,0,3,0.6085525,0.8222052,0,0,0,3.315662,0.04154791,2.0087,5.36591,0,2471.636,-,-
+1152.5,3407.94556969404,9.99999961853027,9.99999961853027,0,0.38797,593.6995,109.3203,109.3203,832.2038,-148.1575,6.796667,51.73983,-9.211259,6.796667,0,0,3,0.6085525,0.8222052,0,0,0,3.315662,0.04154791,2.0087,5.36591,0,2471.636,-,-
+1153.5,3410.72334736586,9.99999961853027,9.99999961853027,0,0.38797,593.6995,109.3203,109.3203,832.2038,-148.1575,6.796667,51.73983,-9.211259,6.796667,0,0,3,0.6085525,0.8222052,0,0,0,3.315662,0.04154791,2.0087,5.36591,0,2471.636,-,-
+1154.5,3413.50112503767,9.99999961853027,9.99999961853027,0,0.38797,593.6995,109.3203,109.3203,832.2038,-148.1575,6.796667,51.73983,-9.211259,6.796667,0,0,3,0.6085525,0.8222052,0,0,0,3.315662,0.04154791,2.0087,5.36591,0,2471.636,-,-
+1155.5,3416.27890270948,9.99999961853027,9.99999961853027,0,0.38797,593.6995,109.3203,109.3203,832.2038,-148.1575,6.796667,51.73983,-9.211259,6.796667,0,0,3,0.6085525,0.8222052,0,0,0,3.315662,0.04154791,2.0087,5.36591,0,2471.636,-,-
+1156.5,3419.0566803813,9.99999961853027,9.99999961853027,0,0.38797,593.6995,109.3203,109.3203,832.2038,-148.1575,6.796667,51.73983,-9.211259,6.796667,0,0,3,0.6085525,0.8222052,0,0,0,3.315662,0.04154791,2.0087,5.36591,0,2471.636,-,-
+1157.5,3421.83445805311,9.99999961853027,9.99999961853027,0,0.38797,593.6995,109.3203,109.3203,832.2038,-148.1575,6.796667,51.73983,-9.211259,6.796667,0,0,3,0.6085525,0.8222052,0,0,0,3.315662,0.04154791,2.0087,5.36591,0,2471.636,-,-
+1158.5,3424.61223572493,9.99999961853027,9.99999961853027,0,0.38797,593.6995,109.3203,109.3203,832.2038,-148.1575,6.796667,51.73983,-9.211259,6.796667,0,0,3,0.6085525,0.8222052,0,0,0,3.315662,0.04154791,2.0087,5.36591,0,2471.636,-,-
+1159.5,3427.39001339674,9.99999961853027,9.99999961853027,0,0.38797,593.6995,109.3203,109.3203,832.2038,-148.1575,6.796667,51.73983,-9.211259,6.796667,0,0,3,0.6085525,0.8222052,0,0,0,3.315662,0.04154791,2.0087,5.36591,0,2471.636,-,-
+1160.5,3430.16779106855,9.99999961853027,9.99999961853027,0,0.38797,593.6995,109.3203,109.3203,832.2038,-148.1575,6.796667,51.73983,-9.211259,6.796667,0,0,3,0.6085525,0.8222052,0,0,0,3.315662,0.04154791,2.0087,5.36591,0,2471.636,-,-
+1161.5,3432.94556874037,9.99999961853027,9.99999961853027,0,0.38797,593.6995,109.3203,109.3203,832.2038,-148.1575,6.796667,51.73983,-9.211259,6.796667,0,0,3,0.6085525,0.8222052,0,0,0,3.315662,0.04154791,2.0087,5.36591,0,2471.636,-,-
+1162.5,3435.72334641218,9.99999961853027,9.99999961853027,0,0.38797,593.6995,109.3203,109.3203,832.2038,-148.1575,6.796667,51.73983,-9.211259,6.796667,0,0,3,0.6085525,0.8222052,0,0,0,3.315662,0.04154791,2.0087,5.36591,0,2471.636,-,-
+1163.5,3438.501124084,9.99999961853027,9.99999961853027,0,0.38797,593.6995,109.3203,109.3203,832.2038,-148.1575,6.796667,51.73983,-9.211259,6.796667,0,0,3,0.6085525,0.8222052,0,0,0,3.315662,0.04154791,2.0087,5.36591,0,2471.636,-,-
+1164.5,3441.27890175581,9.99999961853027,9.99999961853027,0,0.38797,593.6995,109.3203,109.3203,832.2038,-148.1575,6.796667,51.73983,-9.211259,6.796667,0,0,3,0.6085525,0.8222052,0,0,0,3.315662,0.04154791,2.0087,5.36591,0,2471.636,-,-
+1165.5,3444.05667942762,9.99999961853027,9.99999961853027,0,0.38797,593.6995,109.3203,109.3203,832.2038,-148.1575,6.796667,51.73983,-9.211259,6.796667,0,0,3,0.6085525,0.8222052,0,0,0,3.315662,0.04154791,2.0087,5.36591,0,2471.636,-,-
+1166.5,3446.83445709944,9.99999961853027,9.99999961853027,0,0.38797,593.6995,109.3203,109.3203,832.2038,-148.1575,6.796667,51.73983,-9.211259,6.796667,0,0,3,0.6085525,0.8222052,0,0,0,3.315662,0.04154791,2.0087,5.36591,0,2471.636,-,-
+1167.5,3449.61223477125,9.99999961853027,9.99999961853027,0,0.38797,593.6995,109.3203,109.3203,832.2038,-148.1575,6.796667,51.73983,-9.211259,6.796667,0,0,3,0.6085525,0.8222052,0,0,0,3.315662,0.04154791,2.0087,5.36591,0,2471.636,-,-
+1168.5,3452.39001244307,9.99999961853027,9.99999961853027,0,0.38797,593.6995,109.3203,109.3203,832.2038,-148.1575,6.796667,51.73983,-9.211259,6.796667,0,0,3,0.6085525,0.8222052,0,0,0,3.315662,0.04154791,2.0087,5.36591,0,2471.636,-,-
+1169.5,3455.16779011488,9.99999961853027,9.99999961853027,0,0.38797,593.6995,109.3203,109.3203,832.2038,-148.1575,6.796667,51.73983,-9.211259,6.796667,0,0,3,0.6085525,0.8222052,0,0,0,3.315662,0.04154791,2.0087,5.36591,0,2471.636,-,-
+1170.5,3457.94556778669,9.99999961853027,9.99999961853027,0,0.38797,593.6995,109.3203,109.3203,832.2038,-148.1575,6.796667,51.73983,-9.211259,6.796667,0,0,3,0.6085525,0.8222052,0,0,0,3.315662,0.04154791,2.0087,5.36591,0,2471.636,-,-
+1171.5,3460.72334545851,9.99999961853027,9.99999961853027,0,0.38797,593.6995,109.3203,109.3203,832.2038,-148.1575,6.796667,51.73983,-9.211259,6.796667,0,0,3,0.6085525,0.8222052,0,0,0,3.315662,0.04154791,2.0087,5.36591,0,2471.636,-,-
+1172.5,3463.50112313032,9.99999961853027,9.99999961853027,0,0.38797,593.6995,109.3203,109.3203,832.2038,-148.1575,6.796667,51.73983,-9.211259,6.796667,0,0,3,0.6085525,0.8222052,0,0,0,3.315662,0.04154791,2.0087,5.36591,0,2471.636,-,-
+1173.5,3466.27890080214,9.99999961853027,9.99999961853027,0,0.38797,593.6995,109.3203,109.3203,832.2038,-148.1575,6.796667,51.73983,-9.211259,6.796667,0,0,3,0.6085525,0.8222052,0,0,0,3.315662,0.04154791,2.0087,5.36591,0,2471.636,-,-
+1174.5,3469.05667847395,9.99999961853027,9.99999961853027,0,0.5265904,593.6995,121.099,121.099,832.2038,-148.1575,7.528977,51.73983,-9.211259,7.528977,0,0,3,0.6231988,0.8222057,0,0,0,3.315641,0.04154791,2.726384,6.083572,0,2583.476,-,-
+1175.5,3471.83445614576,9.99999961853027,9.99999961853027,0,0.5265904,593.6995,121.099,121.099,836.6208,-148.1575,7.528977,52.01445,-9.211259,7.528977,0,0,3,0.6231988,0.8222057,0,0,0,3.315641,0.04154791,2.726384,6.083572,0,2583.476,-,-
+1176.5,3474.61223381758,9.99999961853027,9.99999961853027,0,0.5265904,593.6995,121.099,121.099,836.6208,-148.1575,7.528977,52.01445,-9.211259,7.528977,0,0,3,0.6231988,0.8222057,0,0,0,3.315641,0.04154791,2.726384,6.083572,0,2583.476,-,-
+1177.5,3477.39001148939,9.99999961853027,9.99999961853027,0,0.5265904,593.6995,121.099,121.099,836.6208,-148.1575,7.528977,52.01445,-9.211259,7.528977,0,0,3,0.6231988,0.8222057,0,0,0,3.315641,0.04154791,2.726384,6.083572,0,2583.476,-,-
+1178.5,3480.16778916121,9.99999961853027,9.99999961853027,0,0.5265904,593.6995,121.099,121.099,836.6208,-148.1575,7.528977,52.01445,-9.211259,7.528977,0,0,3,0.6231988,0.8222057,0,0,0,3.315641,0.04154791,2.726384,6.083572,0,2583.476,-,-
+1179.5,3482.94556683302,9.99999961853027,9.99999961853027,0,0.5265904,593.6995,121.099,121.099,836.6208,-148.1575,7.528977,52.01445,-9.211259,7.528977,0,0,3,0.6231988,0.8222057,0,0,0,3.315641,0.04154791,2.726384,6.083572,0,2583.476,-,-
+1180.5,3485.72334450483,9.99999961853027,9.99999961853027,0,0.5265904,593.6995,121.099,121.099,836.6208,-148.1575,7.528977,52.01445,-9.211259,7.528977,0,0,3,0.6231988,0.8222057,0,0,0,3.315641,0.04154791,2.726384,6.083572,0,2583.476,-,-
+1181.5,3488.50112217665,9.99999961853027,9.99999961853027,0,0.625605,593.6995,129.5122,129.5122,836.6208,-148.1575,8.052042,52.01445,-9.211259,8.052042,0,0,3,0.6336601,0.8222056,0,0,0,3.315622,0.04154791,3.239006,6.596176,0,2663.359,-,-
+1182.5,3491.27889984846,9.99999961853027,9.99999961853027,0,0.7246196,593.6995,137.9252,137.9252,839.7757,-148.1575,8.575092,52.21059,-9.211259,8.575092,0,0,3,0.6441208,0.8222052,0,0,0,3.3156,0.04154791,3.751619,7.108767,0,2743.24,-,-
+1183.5,3494.05667752028,9.99999961853027,9.99999961853027,0,0.7246196,593.6995,137.9252,137.9252,842.9306,-148.1575,8.575092,52.40674,-9.211259,8.575092,0,0,3,0.6441208,0.8222052,0,0,0,3.3156,0.04154791,3.751619,7.108767,0,2743.24,-,-
+1184.5,3496.83445519209,9.99999961853027,9.99999961853027,0,0.7246196,593.6995,137.9252,137.9252,842.9306,-148.1575,8.575092,52.40674,-9.211259,8.575092,0,0,3,0.6441208,0.8222052,0,0,0,3.3156,0.04154791,3.751619,7.108767,0,2743.24,-,-
+1185.5,3499.6122328639,9.99999961853027,9.99999961853027,0,0.7246196,593.6995,137.9252,137.9252,842.9306,-148.1575,8.575092,52.40674,-9.211259,8.575092,0,0,3,0.6441208,0.8222052,0,0,0,3.3156,0.04154791,3.751619,7.108767,0,2743.24,-,-
+1186.5,3502.39001053572,9.99999961853027,9.99999961853027,0,0.7246196,593.6995,137.9252,137.9252,842.9306,-148.1575,8.575092,52.40674,-9.211259,8.575092,0,0,3,0.6441208,0.8222052,0,0,0,3.3156,0.04154791,3.751619,7.108767,0,2743.24,-,-
+1187.5,3505.16778820753,9.99999961853027,9.99999961853027,0,0.7246196,593.6995,137.9252,137.9252,842.9306,-148.1575,8.575092,52.40674,-9.211259,8.575092,0,0,3,0.6441208,0.8222052,0,0,0,3.3156,0.04154791,3.751619,7.108767,0,2743.24,-,-
+1188.5,3507.94556587934,9.99999961853027,9.99999961853027,0,0.7246196,593.6995,137.9252,137.9252,842.9306,-148.1575,8.575092,52.40674,-9.211259,8.575092,0,0,3,0.6441208,0.8222052,0,0,0,3.3156,0.04154791,3.751619,7.108767,0,2743.24,-,-
+1189.5,3510.72334355116,9.99999961853027,9.99999961853027,0,0.9226487,593.6995,154.8257,154.8257,842.9306,-148.1575,9.625834,52.40674,-9.211259,9.625834,0,0,3,0.6651359,0.826794,0,0,0,3.315546,0.04154791,4.77681,8.133904,0,2903.71,-,-
+1190.5,3513.50112122297,9.99999961853027,9.99999961853027,0,0.9226487,593.6995,154.8257,154.8257,849.2683,-148.1575,9.625834,52.80077,-9.211259,9.625834,0,0,3,0.6651359,0.826794,0,0,0,3.315546,0.04154791,4.77681,8.133904,0,2903.71,-,-
+1191.5,3516.27889889479,9.99999961853027,9.99999961853027,0,0.9226487,593.6995,154.8257,154.8257,849.2683,-148.1575,9.625834,52.80077,-9.211259,9.625834,0,0,3,0.6651359,0.826794,0,0,0,3.315546,0.04154791,4.77681,8.133904,0,2903.71,-,-
+1192.5,3519.0566765666,9.99999961853027,9.99999961853027,0,0.9226487,593.6995,154.8257,154.8257,849.2683,-148.1575,9.625834,52.80077,-9.211259,9.625834,0,0,3,0.6651359,0.826794,0,0,0,3.315546,0.04154791,4.77681,8.133904,0,2903.71,-,-
+1193.5,3521.83445423841,9.99999961853027,9.99999961853027,0,0.9226487,593.6995,154.8257,154.8257,849.2683,-148.1575,9.625834,52.80077,-9.211259,9.625834,0,0,3,0.6651359,0.826794,0,0,0,3.315546,0.04154791,4.77681,8.133904,0,2903.71,-,-
+1194.5,3524.61223191023,9.99999961853027,9.99999961853027,0,0.9226487,593.6995,154.8257,154.8257,849.2683,-148.1575,9.625834,52.80077,-9.211259,9.625834,0,0,3,0.6651359,0.826794,0,0,0,3.315546,0.04154791,4.77681,8.133904,0,2903.71,-,-
+1195.5,3527.39000958204,9.99999961853027,9.99999961853027,0,0.9226487,593.6995,154.8257,154.8257,849.2683,-148.1575,9.625834,52.80077,-9.211259,9.625834,0,0,3,0.6651359,0.826794,0,0,0,3.315546,0.04154791,4.77681,8.133904,0,2903.71,-,-
+1196.5,3530.16778725386,9.99999961853027,9.99999961853027,0,1.120678,593.6995,171.906,171.906,849.2683,-148.1575,10.68775,52.80077,-9.211259,10.68775,0,0,3,0.6863741,0.8424039,0,0,0,3.315479,0.04154791,5.801945,9.158972,0,3065.888,-,-
+1197.5,3532.94556492567,9.99999961853027,9.99999961853027,0,1.120678,593.6995,171.906,171.906,855.6734,-148.1575,10.68775,53.19899,-9.211259,10.68775,0,0,3,0.6863741,0.8424039,0,0,0,3.315479,0.04154791,5.801945,9.158972,0,3065.888,-,-
+1198.5,3535.72334259748,9.99999961853027,9.99999961853027,0,1.120678,593.6995,171.906,171.906,855.6734,-148.1575,10.68775,53.19899,-9.211259,10.68775,0,0,3,0.6863741,0.8424039,0,0,0,3.315479,0.04154791,5.801945,9.158972,0,3065.888,-,-
+1199.5,3538.5011202693,9.99999961853027,9.99999961853027,0,1.120678,593.6995,171.906,171.906,855.6734,-148.1575,10.68775,53.19899,-9.211259,10.68775,0,0,3,0.6863741,0.8424039,0,0,0,3.315479,0.04154791,5.801945,9.158972,0,3065.888,-,-
+1200.5,3541.27889794111,9.99999961853027,9.99999961853027,0,1.120678,593.6995,171.906,171.906,855.6734,-148.1575,10.68775,53.19899,-9.211259,10.68775,0,0,3,0.6863741,0.8424039,0,0,0,3.315479,0.04154791,5.801945,9.158972,0,3065.888,-,-
+1201.5,3544.05667561293,9.99999961853027,9.99999961853027,0,1.120678,593.6995,171.906,171.906,855.6734,-148.1575,10.68775,53.19899,-9.211259,10.68775,0,0,3,0.6863741,0.8424039,0,0,0,3.315479,0.04154791,5.801945,9.158972,0,3065.888,-,-
+1202.5,3546.83445328474,9.99999961853027,9.99999961853027,0,1.120678,593.6995,171.906,171.906,855.6734,-148.1575,10.68775,53.19899,-9.211259,10.68775,0,0,3,0.6863741,0.8424039,0,0,0,3.315479,0.04154791,5.801945,9.158972,0,3065.888,-,-
+1203.5,3549.61223095655,9.99999961853027,9.99999961853027,0,1.318707,593.6995,188.9849,188.9849,855.6734,-148.1575,11.74958,53.19899,-9.211259,11.74958,0,0,3,0.7076108,0.8580132,0,0,0,3.315398,0.04154791,6.827012,10.18396,0,3228.052,-,-
+1204.5,3552.39000862837,9.99999961853027,9.99999961853027,0,1.318707,593.6995,188.9849,188.9849,862.0781,-148.1575,11.74958,53.59718,-9.211259,11.74958,0,0,3,0.7076108,0.8580132,0,0,0,3.315398,0.04154791,6.827012,10.18396,0,3228.052,-,-
+1205.5,3555.16778630018,9.99999961853027,9.99999961853027,0,1.318707,593.6995,188.9849,188.9849,862.0781,-148.1575,11.74958,53.59718,-9.211259,11.74958,0,0,3,0.7076108,0.8580132,0,0,0,3.315398,0.04154791,6.827012,10.18396,0,3228.052,-,-
+1206.5,3557.945563972,9.99999961853027,9.99999961853027,0,1.318707,593.6995,188.9849,188.9849,862.0781,-148.1575,11.74958,53.59718,-9.211259,11.74958,0,0,3,0.7076108,0.8580132,0,0,0,3.315398,0.04154791,6.827012,10.18396,0,3228.052,-,-
+1207.5,3560.72334164381,9.99999961853027,9.99999961853027,0,1.318707,593.6995,188.9849,188.9849,862.0781,-148.1575,11.74958,53.59718,-9.211259,11.74958,0,0,3,0.7076108,0.8580132,0,0,0,3.315398,0.04154791,6.827012,10.18396,0,3228.052,-,-
+1208.5,3563.50111931562,9.99999961853027,9.99999961853027,0,1.318707,593.6995,188.9849,188.9849,862.0781,-148.1575,11.74958,53.59718,-9.211259,11.74958,0,0,3,0.7076108,0.8580132,0,0,0,3.315398,0.04154791,6.827012,10.18396,0,3228.052,-,-
+1209.5,3566.27889698744,9.99999961853027,9.99999961853027,0,1.318707,593.6995,188.9849,188.9849,862.0781,-148.1575,11.74958,53.59718,-9.211259,11.74958,0,0,3,0.7076108,0.8580132,0,0,0,3.315398,0.04154791,6.827012,10.18396,0,3228.052,-,-
+1210.5,3569.05667465925,9.99999961853027,9.99999961853027,0,1.516736,593.6995,206.0623,206.0623,862.0781,-148.1575,12.81132,53.59718,-9.211259,12.81132,0,0,3,0.7288457,0.8736205,0,0,0,3.315305,0.04154791,7.851998,11.20885,0,3396.234,-,-
+1211.5,3571.83445233107,9.99999961853027,9.99999961853027,0,1.516736,593.6995,206.0623,206.0623,868.482,-148.1575,12.81132,53.99532,-9.211259,12.81132,0,0,3,0.7288457,0.8736205,0,0,0,3.315305,0.04154791,7.851998,11.20885,0,3396.234,-,-
+1212.5,3574.61223000288,9.99999961853027,9.99999961853027,0,1.516736,593.6995,206.0623,206.0623,868.482,-148.1575,12.81132,53.99532,-9.211259,12.81132,0,0,3,0.7288457,0.8736205,0,0,0,3.315305,0.04154791,7.851998,11.20885,0,3396.234,-,-
+1213.5,3577.39000767469,9.99999961853027,9.99999961853027,0,1.516736,593.6995,206.0623,206.0623,868.482,-148.1575,12.81132,53.99532,-9.211259,12.81132,0,0,3,0.7288457,0.8736205,0,0,0,3.315305,0.04154791,7.851998,11.20885,0,3396.234,-,-
+1214.5,3580.16778534651,9.99999961853027,9.99999961853027,0,1.516736,593.6995,206.0623,206.0623,868.482,-148.1575,12.81132,53.99532,-9.211259,12.81132,0,0,3,0.7288457,0.8736205,0,0,0,3.315305,0.04154791,7.851998,11.20885,0,3396.234,-,-
+1215.5,3582.94556301832,9.99999961853027,9.99999961853027,0,1.516736,593.6995,206.0623,206.0623,868.482,-148.1575,12.81132,53.99532,-9.211259,12.81132,0,0,3,0.7288457,0.8736205,0,0,0,3.315305,0.04154791,7.851998,11.20885,0,3396.234,-,-
+1216.5,3585.72334069014,9.99999961853027,9.99999961853027,0,1.516736,593.6995,206.0623,206.0623,868.482,-148.1575,12.81132,53.99532,-9.211259,12.81132,0,0,3,0.7288457,0.8736205,0,0,0,3.315305,0.04154791,7.851998,11.20885,0,3396.234,-,-
+1217.5,3588.50111836195,9.99999961853027,9.99999961853027,0,1.615751,593.6995,214.6003,214.6003,868.482,-148.1575,13.34214,53.99532,-9.211259,13.34214,0,0,3,0.7394618,0.8814232,0,0,0,3.315254,0.04154791,8.364458,11.72126,0,3485.798,-,-
+1218.5,3591.27889603376,9.99999961853027,9.99999961853027,0,1.714765,593.6995,223.1379,223.1379,871.6837,-148.1575,13.87294,54.19438,-9.211259,13.87294,0,0,3,0.7500778,0.8892266,0,0,0,3.315199,0.04154791,8.876892,12.23364,0,3575.357,-,-
+1219.5,3594.05667370558,9.99999961853027,9.99999961853027,0,1.714765,593.6995,223.1379,223.1379,874.8854,-148.1575,13.87294,54.39343,-9.211259,13.87294,0,0,3,0.7500778,0.8892266,0,0,0,3.315199,0.04154791,8.876892,12.23364,0,3575.357,-,-
+1220.5,3596.83445137739,9.99999961853027,9.99999961853027,0,1.714765,593.6995,223.1379,223.1379,874.8854,-148.1575,13.87294,54.39343,-9.211259,13.87294,0,0,3,0.7500778,0.8892266,0,0,0,3.315199,0.04154791,8.876892,12.23364,0,3575.357,-,-
+1221.5,3599.61222904921,9.99999961853027,9.99999961853027,0,1.714765,593.6995,223.1379,223.1379,874.8854,-148.1575,13.87294,54.39343,-9.211259,13.87294,0,0,3,0.7500778,0.8892266,0,0,0,3.315199,0.04154791,8.876892,12.23364,0,3575.357,-,-
+1222.5,3602.39000672102,9.99999961853027,9.99999961853027,0,1.714765,593.6995,223.1379,223.1379,874.8854,-148.1575,13.87294,54.39343,-9.211259,13.87294,0,0,3,0.7500778,0.8892266,0,0,0,3.315199,0.04154791,8.876892,12.23364,0,3575.357,-,-
+1223.5,3605.16778439283,9.99999961853027,9.99999961853027,0,1.714765,593.6995,223.1379,223.1379,874.8854,-148.1575,13.87294,54.39343,-9.211259,13.87294,0,0,3,0.7500778,0.8892266,0,0,0,3.315199,0.04154791,8.876892,12.23364,0,3575.357,-,-
+1224.5,3607.94556206465,9.99999961853027,9.99999961853027,0,1.714765,593.6995,223.1379,223.1379,874.8854,-148.1575,13.87294,54.39343,-9.211259,13.87294,0,0,3,0.7500778,0.8892266,0,0,0,3.315199,0.04154791,8.876892,12.23364,0,3575.357,-,-
+1225.5,3610.72333973646,9.99999961853027,9.99999961853027,0,1.912794,593.6995,240.2115,240.2115,874.8854,-148.1575,14.93445,54.39343,-9.211259,14.93445,0,0,3,0.7713078,0.9048309,0,0,0,3.31508,0.04154791,9.901682,13.25831,0,3756.289,-,-
+1226.5,3613.50111740828,9.99999961853027,9.99999961853027,0,1.912794,593.6995,240.2115,240.2115,881.288,-148.1575,14.93445,54.7915,-9.211259,14.93445,0,0,3,0.7713078,0.9048309,0,0,0,3.31508,0.04154791,9.901682,13.25831,0,3756.289,-,-
+1227.5,3616.27889508009,9.99999961853027,9.99999961853027,0,1.912794,593.6995,240.2115,240.2115,881.288,-148.1575,14.93445,54.7915,-9.211259,14.93445,0,0,3,0.7713078,0.9048309,0,0,0,3.31508,0.04154791,9.901682,13.25831,0,3756.289,-,-
+1228.5,3619.0566727519,9.99999961853027,9.99999961853027,0,1.912794,593.6995,240.2115,240.2115,881.288,-148.1575,14.93445,54.7915,-9.211259,14.93445,0,0,3,0.7713078,0.9048309,0,0,0,3.31508,0.04154791,9.901682,13.25831,0,3756.289,-,-
+1229.5,3621.83445042372,9.99999961853027,9.99999961853027,0,1.912794,593.6995,240.2115,240.2115,881.288,-148.1575,14.93445,54.7915,-9.211259,14.93445,0,0,3,0.7713078,0.9048309,0,0,0,3.31508,0.04154791,9.901682,13.25831,0,3756.289,-,-
+1230.5,3624.61222809553,9.99999961853027,9.99999961853027,0,1.912794,593.6995,240.2115,240.2115,881.288,-148.1575,14.93445,54.7915,-9.211259,14.93445,0,0,3,0.7713078,0.9048309,0,0,0,3.31508,0.04154791,9.901682,13.25831,0,3756.289,-,-
+1231.5,3627.39000576735,9.99999961853027,9.99999961853027,0,1.912794,593.6995,240.2115,240.2115,881.288,-148.1575,14.93445,54.7915,-9.211259,14.93445,0,0,3,0.7713078,0.9048309,0,0,0,3.31508,0.04154791,9.901682,13.25831,0,3756.289,-,-
+1232.5,3630.16778343916,9.99999961853027,9.99999961853027,0,2.108194,593.6995,257.0564,257.0564,881.288,-148.1575,15.98173,54.7915,-9.211259,15.98173,0,0,3,0.7922537,0.9202257,0,0,0,3.31495,0.04154791,10.91275,14.26925,0,3936.529,-,-
+1233.5,3632.94556111097,9.99999961853027,9.99999961853027,0,2.108194,593.6995,257.0564,257.0564,887.6048,-148.1575,15.98173,55.18423,-9.211259,15.98173,0,0,3,0.7922537,0.9202257,0,0,0,3.31495,0.04154791,10.91275,14.26925,0,3936.529,-,-
+1234.5,3635.72333878279,9.99999961853027,9.99999961853027,0,2.108194,593.6995,257.0564,257.0564,887.6048,-148.1575,15.98173,55.18423,-9.211259,15.98173,0,0,3,0.7922537,0.9202257,0,0,0,3.31495,0.04154791,10.91275,14.26925,0,3936.529,-,-
+1235.5,3638.5011164546,9.99999961853027,9.99999961853027,0,2.108194,593.6995,257.0564,257.0564,887.6048,-148.1575,15.98173,55.18423,-9.211259,15.98173,0,0,3,0.7922537,0.9202257,0,0,0,3.31495,0.04154791,10.91275,14.26925,0,3936.529,-,-
+1236.5,3641.27889412642,9.99999961853027,9.99999961853027,0,2.108194,593.6995,257.0564,257.0564,887.6048,-148.1575,15.98173,55.18423,-9.211259,15.98173,0,0,3,0.7922537,0.9202257,0,0,0,3.31495,0.04154791,10.91275,14.26925,0,3936.529,-,-
+1237.5,3644.05667179823,9.99999961853027,9.99999961853027,0,2.108194,593.6995,257.0564,257.0564,887.6048,-148.1575,15.98173,55.18423,-9.211259,15.98173,0,0,3,0.7922537,0.9202257,0,0,0,3.31495,0.04154791,10.91275,14.26925,0,3936.529,-,-
+1238.5,3646.83444947004,9.99999961853027,9.99999961853027,0,2.108194,593.6995,257.0564,257.0564,887.6048,-148.1575,15.98173,55.18423,-9.211259,15.98173,0,0,3,0.7922537,0.9202257,0,0,0,3.31495,0.04154791,10.91275,14.26925,0,3936.529,-,-
+1239.5,3649.61222714186,9.99999961853027,9.99999961853027,0,2.253637,593.6995,269.5931,269.5931,887.6048,-148.1575,16.76116,55.18423,-9.211259,16.76116,0,0,3,0.807842,0.9316832,0,0,0,3.314845,0.04154791,11.66524,15.02163,0,4070.671,-,-
+1240.5,3652.39000481367,9.99999961853027,9.99999961853027,0,2.253637,593.6995,269.5931,269.5931,892.306,-148.1575,16.76116,55.47651,-9.211259,16.76116,0,0,3,0.807842,0.9316832,0,0,0,3.314845,0.04154791,11.66524,15.02163,0,4070.671,-,-
+1241.5,3655.16778248549,9.99999961853027,9.99999961853027,0,2.253637,593.6995,269.5931,269.5931,892.306,-148.1575,16.76116,55.47651,-9.211259,16.76116,0,0,3,0.807842,0.9316832,0,0,0,3.314845,0.04154791,11.66524,15.02163,0,4070.671,-,-
+1242.5,3657.9455601573,9.99999961853027,9.99999961853027,0,2.253637,593.6995,269.5931,269.5931,892.306,-148.1575,16.76116,55.47651,-9.211259,16.76116,0,0,3,0.807842,0.9316832,0,0,0,3.314845,0.04154791,11.66524,15.02163,0,4070.671,-,-
+1243.5,3660.72333782911,9.99999961853027,9.99999961853027,0,2.253637,593.6995,269.5931,269.5931,892.306,-148.1575,16.76116,55.47651,-9.211259,16.76116,0,0,3,0.807842,0.9316832,0,0,0,3.314845,0.04154791,11.66524,15.02163,0,4070.671,-,-
+1244.5,3663.50111550093,9.99999961853027,9.99999961853027,0,2.253637,593.6995,269.5931,269.5931,892.306,-148.1575,16.76116,55.47651,-9.211259,16.76116,0,0,3,0.807842,0.9316832,0,0,0,3.314845,0.04154791,11.66524,15.02163,0,4070.671,-,-
+1245.5,3666.27889317274,9.99999961853027,9.99999961853027,0,2.253637,593.6995,269.5931,269.5931,892.306,-148.1575,16.76116,55.47651,-9.211259,16.76116,0,0,3,0.807842,0.9316832,0,0,0,3.314845,0.04154791,11.66524,15.02163,0,4070.671,-,-
+1246.5,3669.05667084455,9.99999961853027,9.99999961853027,0,2.253637,593.6995,269.5931,269.5931,892.306,-148.1575,16.76116,55.47651,-9.211259,16.76116,0,0,3,0.807842,0.9316832,0,0,0,3.314845,0.04154791,11.66524,15.02163,0,4070.671,-,-
+1247.5,3671.83444851637,9.99999961853027,9.99999961853027,0,2.253637,593.6995,269.5931,269.5931,892.306,-148.1575,16.76116,55.47651,-9.211259,16.76116,0,0,3,0.807842,0.9316832,0,0,0,3.314845,0.04154791,11.66524,15.02163,0,4070.671,-,-
+1248.5,3674.61222618818,9.99999961853027,9.99999961853027,0,2.253637,593.6995,269.5931,269.5931,892.306,-148.1575,16.76116,55.47651,-9.211259,16.76116,0,0,3,0.807842,0.9316832,0,0,0,3.314845,0.04154791,11.66524,15.02163,0,4070.671,-,-
+1249.5,3677.39000386,9.99999961853027,9.99999961853027,0,2.253637,593.6995,269.5931,269.5931,892.306,-148.1575,16.76116,55.47651,-9.211259,16.76116,0,0,3,0.807842,0.9316832,0,0,0,3.314845,0.04154791,11.66524,15.02163,0,4070.671,-,-
+1250.5,3680.16778153181,9.99999961853027,9.99999961853027,0,2.253637,593.6995,269.5931,269.5931,892.306,-148.1575,16.76116,55.47651,-9.211259,16.76116,0,0,3,0.807842,0.9316832,0,0,0,3.314845,0.04154791,11.66524,15.02163,0,4070.671,-,-
+1251.5,3682.94555920362,9.99999961853027,9.99999961853027,0,2.253637,593.6995,269.5931,269.5931,892.306,-148.1575,16.76116,55.47651,-9.211259,16.76116,0,0,3,0.807842,0.9316832,0,0,0,3.314845,0.04154791,11.66524,15.02163,0,4070.671,-,-
+1252.5,3685.72333687544,9.99999961853027,9.99999961853027,0,2.253637,593.6995,269.5931,269.5931,892.306,-148.1575,16.76116,55.47651,-9.211259,16.76116,0,0,3,0.807842,0.9316832,0,0,0,3.314845,0.04154791,11.66524,15.02163,0,4070.671,-,-
+1253.5,3688.50111454725,9.99999961853027,9.99999961853027,0,2.253637,593.6995,269.5931,269.5931,892.306,-148.1575,16.76116,55.47651,-9.211259,16.76116,0,0,3,0.807842,0.9316832,0,0,0,3.314845,0.04154791,11.66524,15.02163,0,4070.671,-,-
+1254.5,3691.27889221907,9.99999961853027,9.99999961853027,0,2.253637,593.6995,269.5931,269.5931,892.306,-148.1575,16.76116,55.47651,-9.211259,16.76116,0,0,3,0.807842,0.9316832,0,0,0,3.314845,0.04154791,11.66524,15.02163,0,4070.671,-,-
+1255.5,3694.05666989088,9.99999961853027,9.99999961853027,0,2.253637,593.6995,269.5931,269.5931,892.306,-148.1575,16.76116,55.47651,-9.211259,16.76116,0,0,3,0.807842,0.9316832,0,0,0,3.314845,0.04154791,11.66524,15.02163,0,4070.671,-,-
+1256.5,3696.83444756269,9.99999961853027,9.99999961853027,0,2.253637,593.6995,269.5931,269.5931,892.306,-148.1575,16.76116,55.47651,-9.211259,16.76116,0,0,3,0.807842,0.9316832,0,0,0,3.314845,0.04154791,11.66524,15.02163,0,4070.671,-,-
+1257.5,3699.61222523451,9.99999961853027,9.99999961853027,0,2.253637,593.6995,269.5931,269.5931,892.306,-148.1575,16.76116,55.47651,-9.211259,16.76116,0,0,3,0.807842,0.9316832,0,0,0,3.314845,0.04154791,11.66524,15.02163,0,4070.671,-,-
+1258.5,3702.39000290632,9.99999961853027,9.99999961853027,0,2.253637,593.6995,269.5931,269.5931,892.306,-148.1575,16.76116,55.47651,-9.211259,16.76116,0,0,3,0.807842,0.9316832,0,0,0,3.314845,0.04154791,11.66524,15.02163,0,4070.671,-,-
+1259.5,3705.16778057814,9.99999961853027,9.99999961853027,0,2.253637,593.6995,269.5931,269.5931,892.306,-148.1575,16.76116,55.47651,-9.211259,16.76116,0,0,3,0.807842,0.9316832,0,0,0,3.314845,0.04154791,11.66524,15.02163,0,4070.671,-,-
+1260.5,3707.94555824995,9.99999961853027,9.99999961853027,0,2.253637,593.6995,269.5931,269.5931,892.306,-148.1575,16.76116,55.47651,-9.211259,16.76116,0,0,3,0.807842,0.9316832,0,0,0,3.314845,0.04154791,11.66524,15.02163,0,4070.671,-,-
+1261.5,3710.72333592176,9.99999961853027,9.99999961853027,0,2.145383,593.6995,260.2621,260.2621,892.306,-148.1575,16.18103,55.47651,-9.211259,16.18103,0,0,3,0.7962399,0.9231554,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3970.829,-,-
+1262.5,3713.50111359358,9.99999961853027,9.99999961853027,0,2.145383,593.6995,260.2621,260.2621,888.8069,-148.1575,16.18103,55.25896,-9.211259,16.18103,0,0,3,0.7962399,0.9231554,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3970.829,-,-
+1263.5,3716.27889126539,9.99999961853027,9.99999961853027,0,2.145383,593.6995,260.2621,260.2621,888.8069,-148.1575,16.18103,55.25896,-9.211259,16.18103,0,0,3,0.7962399,0.9231554,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3970.829,-,-
+1264.5,3719.05666893721,9.99999961853027,9.99999961853027,0,2.145383,593.6995,260.2621,260.2621,888.8069,-148.1575,16.18103,55.25896,-9.211259,16.18103,0,0,3,0.7962399,0.9231554,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3970.829,-,-
+1265.5,3721.83444660902,9.99999961853027,9.99999961853027,0,2.145383,593.6995,260.2621,260.2621,888.8069,-148.1575,16.18103,55.25896,-9.211259,16.18103,0,0,3,0.7962399,0.9231554,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3970.829,-,-
+1266.5,3724.61222428083,9.99999961853027,9.99999961853027,0,2.145383,593.6995,260.2621,260.2621,888.8069,-148.1575,16.18103,55.25896,-9.211259,16.18103,0,0,3,0.7962399,0.9231554,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3970.829,-,-
+1267.5,3727.39000195265,9.99999961853027,9.99999961853027,0,2.145383,593.6995,260.2621,260.2621,888.8069,-148.1575,16.18103,55.25896,-9.211259,16.18103,0,0,3,0.7962399,0.9231554,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3970.829,-,-
+1268.5,3730.16777962446,9.99999961853027,9.99999961853027,0,2.145383,593.6995,260.2621,260.2621,888.8069,-148.1575,16.18103,55.25896,-9.211259,16.18103,0,0,3,0.7962399,0.9231554,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3970.829,-,-
+1269.5,3732.94555729628,9.99999961853027,9.99999961853027,0,2.145383,593.6995,260.2621,260.2621,888.8069,-148.1575,16.18103,55.25896,-9.211259,16.18103,0,0,3,0.7962399,0.9231554,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3970.829,-,-
+1270.5,3735.72333496809,9.99999961853027,9.99999961853027,0,2.145383,593.6995,260.2621,260.2621,888.8069,-148.1575,16.18103,55.25896,-9.211259,16.18103,0,0,3,0.7962399,0.9231554,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3970.829,-,-
+1271.5,3738.5011126399,9.99999961853027,9.99999961853027,0,2.145383,593.6995,260.2621,260.2621,888.8069,-148.1575,16.18103,55.25896,-9.211259,16.18103,0,0,3,0.7962399,0.9231554,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3970.829,-,-
+1272.5,3741.27889031172,9.99999961853027,9.99999961853027,0,2.145383,593.6995,260.2621,260.2621,888.8069,-148.1575,16.18103,55.25896,-9.211259,16.18103,0,0,3,0.7962399,0.9231554,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3970.829,-,-
+1273.5,3744.05666798353,9.99999961853027,9.99999961853027,0,2.145383,593.6995,260.2621,260.2621,888.8069,-148.1575,16.18103,55.25896,-9.211259,16.18103,0,0,3,0.7962399,0.9231554,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3970.829,-,-
+1274.5,3746.83444565535,9.99999961853027,9.99999961853027,0,2.145383,593.6995,260.2621,260.2621,888.8069,-148.1575,16.18103,55.25896,-9.211259,16.18103,0,0,3,0.7962399,0.9231554,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3970.829,-,-
+1275.5,3749.61222332716,9.99999961853027,9.99999961853027,0,2.145383,593.6995,260.2621,260.2621,888.8069,-148.1575,16.18103,55.25896,-9.211259,16.18103,0,0,3,0.7962399,0.9231554,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3970.829,-,-
+1276.5,3752.39000099897,9.99999961853027,9.99999961853027,0,2.145383,593.6995,260.2621,260.2621,888.8069,-148.1575,16.18103,55.25896,-9.211259,16.18103,0,0,3,0.7962399,0.9231554,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3970.829,-,-
+1277.5,3755.16777867079,9.99999961853027,9.99999961853027,0,2.145383,593.6995,260.2621,260.2621,888.8069,-148.1575,16.18103,55.25896,-9.211259,16.18103,0,0,3,0.7962399,0.9231554,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3970.829,-,-
+1278.5,3757.9455563426,9.99999961853027,9.99999961853027,0,2.145383,593.6995,260.2621,260.2621,888.8069,-148.1575,16.18103,55.25896,-9.211259,16.18103,0,0,3,0.7962399,0.9231554,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3970.829,-,-
+1279.5,3760.72333401442,9.99999961853027,9.99999961853027,0,2.145383,593.6995,260.2621,260.2621,888.8069,-148.1575,16.18103,55.25896,-9.211259,16.18103,0,0,3,0.7962399,0.9231554,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3970.829,-,-
+1280.5,3763.50111168623,9.99999961853027,9.99999961853027,0,2.145383,593.6995,260.2621,260.2621,888.8069,-148.1575,16.18103,55.25896,-9.211259,16.18103,0,0,3,0.7962399,0.9231554,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3970.829,-,-
+1281.5,3766.27888935804,9.99999961853027,9.99999961853027,0,2.145383,593.6995,260.2621,260.2621,888.8069,-148.1575,16.18103,55.25896,-9.211259,16.18103,0,0,3,0.7962399,0.9231554,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3970.829,-,-
+1282.5,3769.05666702986,9.99999961853027,9.99999961853027,0,2.145383,593.6995,260.2621,260.2621,888.8069,-148.1575,16.18103,55.25896,-9.211259,16.18103,0,0,3,0.7962399,0.9231554,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3970.829,-,-
+1283.5,3771.83444470167,9.99999961853027,9.99999961853027,0,2.145383,593.6995,260.2621,260.2621,888.8069,-148.1575,16.18103,55.25896,-9.211259,16.18103,0,0,3,0.7962399,0.9231554,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3970.829,-,-
+1284.5,3774.61222237349,9.99999961853027,9.99999961853027,0,2.145383,593.6995,260.2621,260.2621,888.8069,-148.1575,16.18103,55.25896,-9.211259,16.18103,0,0,3,0.7962399,0.9231554,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3970.829,-,-
+1285.5,3777.3900000453,9.99999961853027,9.99999961853027,0,2.145383,593.6995,260.2621,260.2621,888.8069,-148.1575,16.18103,55.25896,-9.211259,16.18103,0,0,3,0.7962399,0.9231554,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3970.829,-,-
+1286.5,3780.16777771711,9.99999961853027,9.99999961853027,0,2.145383,593.6995,260.2621,260.2621,888.8069,-148.1575,16.18103,55.25896,-9.211259,16.18103,0,0,3,0.7962399,0.9231554,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3970.829,-,-
+1287.5,3782.94555538893,9.99999961853027,9.99999961853027,0,2.145383,593.6995,260.2621,260.2621,888.8069,-148.1575,16.18103,55.25896,-9.211259,16.18103,0,0,3,0.7962399,0.9231554,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3970.829,-,-
+1288.5,3785.72333306074,9.99999961853027,9.99999961853027,0,2.145383,593.6995,260.2621,260.2621,888.8069,-148.1575,16.18103,55.25896,-9.211259,16.18103,0,0,3,0.7962399,0.9231554,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3970.829,-,-
+1289.5,3788.50111073256,9.99999961853027,9.99999961853027,0,2.145383,593.6995,260.2621,260.2621,888.8069,-148.1575,16.18103,55.25896,-9.211259,16.18103,0,0,3,0.7962399,0.9231554,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3970.829,-,-
+1290.5,3791.27888840437,9.99999961853027,9.99999961853027,0,2.145383,593.6995,260.2621,260.2621,888.8069,-148.1575,16.18103,55.25896,-9.211259,16.18103,0,0,3,0.7962399,0.9231554,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3970.829,-,-
+1291.5,3794.05666607618,9.99999961853027,9.99999961853027,0,2.145383,593.6995,260.2621,260.2621,888.8069,-148.1575,16.18103,55.25896,-9.211259,16.18103,0,0,3,0.7962399,0.9231554,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3970.829,-,-
+1292.5,3796.834443748,9.99999961853027,9.99999961853027,0,2.145383,593.6995,260.2621,260.2621,888.8069,-148.1575,16.18103,55.25896,-9.211259,16.18103,0,0,3,0.7962399,0.9231554,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3970.829,-,-
+1293.5,3799.61222141981,9.99999961853027,9.99999961853027,0,2.145383,593.6995,260.2621,260.2621,888.8069,-148.1575,16.18103,55.25896,-9.211259,16.18103,0,0,3,0.7962399,0.9231554,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3970.829,-,-
+1294.5,3802.38999909163,9.99999961853027,9.99999961853027,0,2.145383,593.6995,260.2621,260.2621,888.8069,-148.1575,16.18103,55.25896,-9.211259,16.18103,0,0,3,0.7962399,0.9231554,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3970.829,-,-
+1295.5,3805.16777676344,9.99999961853027,9.99999961853027,0,2.145383,593.6995,260.2621,260.2621,888.8069,-148.1575,16.18103,55.25896,-9.211259,16.18103,0,0,3,0.7962399,0.9231554,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3970.829,-,-
+1296.5,3807.94555443525,9.99999961853027,9.99999961853027,0,2.145383,593.6995,260.2621,260.2621,888.8069,-148.1575,16.18103,55.25896,-9.211259,16.18103,0,0,3,0.7962399,0.9231554,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3970.829,-,-
+1297.5,3810.72333210707,9.99999961853027,9.99999961853027,0,2.145383,593.6995,260.2621,260.2621,888.8069,-148.1575,16.18103,55.25896,-9.211259,16.18103,0,0,3,0.7962399,0.9231554,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3970.829,-,-
+1298.5,3813.50110977888,9.99999961853027,9.99999961853027,0,2.145383,593.6995,260.2621,260.2621,888.8069,-148.1575,16.18103,55.25896,-9.211259,16.18103,0,0,3,0.7962399,0.9231554,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3970.829,-,-
+1299.5,3816.2788874507,9.99999961853027,9.99999961853027,0,2.145383,593.6995,260.2621,260.2621,888.8069,-148.1575,16.18103,55.25896,-9.211259,16.18103,0,0,3,0.7962399,0.9231554,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3970.829,-,-
+1300.5,3819.05666512251,9.99999961853027,9.99999961853027,0,2.145383,593.6995,260.2621,260.2621,888.8069,-148.1575,16.18103,55.25896,-9.211259,16.18103,0,0,3,0.7962399,0.9231554,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3970.829,-,-
+1301.5,3821.83444279432,9.99999961853027,9.99999961853027,0,2.145383,593.6995,260.2621,260.2621,888.8069,-148.1575,16.18103,55.25896,-9.211259,16.18103,0,0,3,0.7962399,0.9231554,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3970.829,-,-
+1302.5,3824.61222046614,9.99999961853027,9.99999961853027,0,2.145383,593.6995,260.2621,260.2621,888.8069,-148.1575,16.18103,55.25896,-9.211259,16.18103,0,0,3,0.7962399,0.9231554,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3970.829,-,-
+1303.5,3827.38999813795,9.99999961853027,9.99999961853027,0,2.145383,593.6995,260.2621,260.2621,888.8069,-148.1575,16.18103,55.25896,-9.211259,16.18103,0,0,3,0.7962399,0.9231554,0,0,0,3.314924,0.04154791,11.10516,14.46164,0,3970.829,-,-
+1304.5,3830.16777580976,9.99999961853027,9.99999961853027,0,2.24564,593.6995,268.9038,268.9038,888.8069,-148.1575,16.71831,55.25896,-9.211259,16.71831,0,0,3,0.8069853,0.9310538,0,0,0,3.314851,0.04154791,11.62387,14.98027,0,4063.296,-,-
+1305.5,3832.94555348158,9.99999961853027,9.99999961853027,0,2.24564,593.6995,268.9038,268.9038,892.0475,-148.1575,16.71831,55.46044,-9.211259,16.71831,0,0,3,0.8069853,0.9310538,0,0,0,3.314851,0.04154791,11.62387,14.98027,0,4063.296,-,-
+1306.5,3835.72333115339,9.99999961853027,9.99999961853027,0,2.24564,593.6995,268.9038,268.9038,892.0475,-148.1575,16.71831,55.46044,-9.211259,16.71831,0,0,3,0.8069853,0.9310538,0,0,0,3.314851,0.04154791,11.62387,14.98027,0,4063.296,-,-
+1307.5,3838.50110882521,9.99999961853027,9.99999961853027,0,2.24564,593.6995,268.9038,268.9038,892.0475,-148.1575,16.71831,55.46044,-9.211259,16.71831,0,0,3,0.8069853,0.9310538,0,0,0,3.314851,0.04154791,11.62387,14.98027,0,4063.296,-,-
+1308.5,3841.27888649702,9.99999961853027,9.99999961853027,0,2.24564,593.6995,268.9038,268.9038,892.0475,-148.1575,16.71831,55.46044,-9.211259,16.71831,0,0,3,0.8069853,0.9310538,0,0,0,3.314851,0.04154791,11.62387,14.98027,0,4063.296,-,-
+1309.5,3844.05666416883,9.99999961853027,9.99999961853027,0,2.24564,593.6995,268.9038,268.9038,892.0475,-148.1575,16.71831,55.46044,-9.211259,16.71831,0,0,3,0.8069853,0.9310538,0,0,0,3.314851,0.04154791,11.62387,14.98027,0,4063.296,-,-
+1310.5,3846.83444184065,9.99999961853027,9.99999961853027,0,2.24564,593.6995,268.9038,268.9038,892.0475,-148.1575,16.71831,55.46044,-9.211259,16.71831,0,0,3,0.8069853,0.9310538,0,0,0,3.314851,0.04154791,11.62387,14.98027,0,4063.296,-,-
+1311.5,3849.61221951246,9.99999961853027,9.99999961853027,0,2.24564,593.6995,268.9038,268.9038,892.0475,-148.1575,16.71831,55.46044,-9.211259,16.71831,0,0,3,0.8069853,0.9310538,0,0,0,3.314851,0.04154791,11.62387,14.98027,0,4063.296,-,-
+1312.5,3852.38999718428,9.99999961853027,9.99999961853027,0,2.24564,593.6995,268.9038,268.9038,892.0475,-148.1575,16.71831,55.46044,-9.211259,16.71831,0,0,3,0.8069853,0.9310538,0,0,0,3.314851,0.04154791,11.62387,14.98027,0,4063.296,-,-
+1313.5,3855.16777485609,9.99999961853027,9.99999961853027,0,2.24564,593.6995,268.9038,268.9038,892.0475,-148.1575,16.71831,55.46044,-9.211259,16.71831,0,0,3,0.8069853,0.9310538,0,0,0,3.314851,0.04154791,11.62387,14.98027,0,4063.296,-,-
+1314.5,3857.9455525279,9.99999961853027,9.99999961853027,0,2.24564,593.6995,268.9038,268.9038,892.0475,-148.1575,16.71831,55.46044,-9.211259,16.71831,0,0,3,0.8069853,0.9310538,0,0,0,3.314851,0.04154791,11.62387,14.98027,0,4063.296,-,-
+1315.5,3860.72333019972,9.99999961853027,9.99999961853027,0,2.36691,593.6995,279.356,279.356,892.0475,-148.1575,17.36814,55.46044,-9.211259,17.36814,0,0,3,0.8199816,0.940606,0,0,0,3.314758,0.04154791,12.25125,15.60755,0,4175.134,-,-
+1316.5,3863.50110787153,9.99999961853027,9.99999961853027,0,2.36691,593.6995,279.356,279.356,895.9672,-148.1575,17.36814,55.70413,-9.211259,17.36814,0,0,3,0.8199816,0.940606,0,0,0,3.314758,0.04154791,12.25125,15.60755,0,4175.134,-,-
+1317.5,3866.27888554335,9.99999961853027,9.99999961853027,0,2.36691,593.6995,279.356,279.356,895.9672,-148.1575,17.36814,55.70413,-9.211259,17.36814,0,0,3,0.8199816,0.940606,0,0,0,3.314758,0.04154791,12.25125,15.60755,0,4175.134,-,-
+1318.5,3869.05666321516,9.99999961853027,9.99999961853027,0,2.36691,593.6995,279.356,279.356,895.9672,-148.1575,17.36814,55.70413,-9.211259,17.36814,0,0,3,0.8199816,0.940606,0,0,0,3.314758,0.04154791,12.25125,15.60755,0,4175.134,-,-
+1319.5,3871.83444088697,9.99999961853027,9.99999961853027,0,2.36691,593.6995,279.356,279.356,895.9672,-148.1575,17.36814,55.70413,-9.211259,17.36814,0,0,3,0.8199816,0.940606,0,0,0,3.314758,0.04154791,12.25125,15.60755,0,4175.134,-,-
+1320.5,3874.61221855879,9.99999961853027,9.99999961853027,0,2.36691,593.6995,279.356,279.356,895.9672,-148.1575,17.36814,55.70413,-9.211259,17.36814,0,0,3,0.8199816,0.940606,0,0,0,3.314758,0.04154791,12.25125,15.60755,0,4175.134,-,-
+1321.5,3877.3899962306,9.99999961853027,9.99999961853027,0,2.36691,593.6995,279.356,279.356,895.9672,-148.1575,17.36814,55.70413,-9.211259,17.36814,0,0,3,0.8199816,0.940606,0,0,0,3.314758,0.04154791,12.25125,15.60755,0,4175.134,-,-
+1322.5,3880.16777390242,9.99999961853027,9.99999961853027,0,2.36691,593.6995,279.356,279.356,895.9672,-148.1575,17.36814,55.70413,-9.211259,17.36814,0,0,3,0.8199816,0.940606,0,0,0,3.314758,0.04154791,12.25125,15.60755,0,4175.134,-,-
+1323.5,3882.94555157423,9.99999961853027,9.99999961853027,0,2.36691,593.6995,279.356,279.356,895.9672,-148.1575,17.36814,55.70413,-9.211259,17.36814,0,0,3,0.8199816,0.940606,0,0,0,3.314758,0.04154791,12.25125,15.60755,0,4175.134,-,-
+1324.5,3885.72332924604,9.99999961853027,9.99999961853027,0,2.36691,593.6995,279.356,279.356,895.9672,-148.1575,17.36814,55.70413,-9.211259,17.36814,0,0,3,0.8199816,0.940606,0,0,0,3.314758,0.04154791,12.25125,15.60755,0,4175.134,-,-
+1325.5,3888.50110691786,9.99999961853027,9.99999961853027,0,2.427546,593.6995,284.5818,284.5818,895.9672,-148.1575,17.69304,55.70413,-9.211259,17.69304,0,0,3,0.8264808,0.9453817,0,0,0,3.31471,0.04154791,12.56492,15.92118,0,4231.05,-,-
+1326.5,3891.27888458967,9.99999961853027,9.99999961853027,0,2.488181,593.6995,289.8073,289.8073,897.9268,-148.1575,18.01792,55.82597,-9.211259,18.01792,0,0,3,0.8329768,0.9501573,0,0,0,3.314661,0.04154791,12.87857,16.23478,0,4286.963,-,-
+1327.5,3894.05666226149,9.99999961853027,9.99999961853027,0,2.488181,593.6995,289.8073,289.8073,899.8864,-148.1575,18.01792,55.9478,-9.211259,18.01792,0,0,3,0.8329768,0.9501573,0,0,0,3.314661,0.04154791,12.87857,16.23478,0,4286.963,-,-
+1328.5,3896.8344399333,9.99999961853027,9.99999961853027,0,2.488181,593.6995,289.8073,289.8073,899.8864,-148.1575,18.01792,55.9478,-9.211259,18.01792,0,0,3,0.8329768,0.9501573,0,0,0,3.314661,0.04154791,12.87857,16.23478,0,4286.963,-,-
+1329.5,3899.61221760511,9.99999961853027,9.99999961853027,0,2.488181,593.6995,289.8073,289.8073,899.8864,-148.1575,18.01792,55.9478,-9.211259,18.01792,0,0,3,0.8329768,0.9501573,0,0,0,3.314661,0.04154791,12.87857,16.23478,0,4286.963,-,-
+1330.5,3902.38999527693,9.99999961853027,9.99999961853027,0,2.488181,593.6995,289.8073,289.8073,899.8864,-148.1575,18.01792,55.9478,-9.211259,18.01792,0,0,3,0.8329768,0.9501573,0,0,0,3.314661,0.04154791,12.87857,16.23478,0,4286.963,-,-
+1331.5,3905.16777294874,9.99999961853027,9.99999961853027,0,2.488181,593.6995,289.8073,289.8073,899.8864,-148.1575,18.01792,55.9478,-9.211259,18.01792,0,0,3,0.8329768,0.9501573,0,0,0,3.314661,0.04154791,12.87857,16.23478,0,4286.963,-,-
+1332.5,3907.94555062056,9.99999961853027,9.99999961853027,0,2.488181,593.6995,289.8073,289.8073,899.8864,-148.1575,18.01792,55.9478,-9.211259,18.01792,0,0,3,0.8329768,0.9501573,0,0,0,3.314661,0.04154791,12.87857,16.23478,0,4286.963,-,-
+1333.5,3910.72332829237,9.99999961853027,9.99999961853027,0,2.488181,593.6995,289.8073,289.8073,899.8864,-148.1575,18.01792,55.9478,-9.211259,18.01792,0,0,3,0.8329768,0.9501573,0,0,0,3.314661,0.04154791,12.87857,16.23478,0,4286.963,-,-
+1334.5,3913.50110596418,9.99999961853027,9.99999961853027,0,2.488181,593.6995,289.8073,289.8073,899.8864,-148.1575,18.01792,55.9478,-9.211259,18.01792,0,0,3,0.8329768,0.9501573,0,0,0,3.314661,0.04154791,12.87857,16.23478,0,4286.963,-,-
+1335.5,3916.278883636,9.99999961853027,9.99999961853027,0,2.488181,593.6995,289.8073,289.8073,899.8864,-148.1575,18.01792,55.9478,-9.211259,18.01792,0,0,3,0.8329768,0.9501573,0,0,0,3.314661,0.04154791,12.87857,16.23478,0,4286.963,-,-
+1336.5,3919.05666130781,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,899.8864,-148.1575,18.66763,55.9478,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1337.5,3921.83443897963,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1338.5,3924.61221665144,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1339.5,3927.38999432325,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1340.5,3930.16777199507,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1341.5,3932.94554966688,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1342.5,3935.7233273387,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1343.5,3938.50110501051,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1344.5,3941.27888268232,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1345.5,3944.05666035414,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1346.5,3946.83443802595,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1347.5,3949.61221569777,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1348.5,3952.38999336958,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1349.5,3955.16777104139,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1350.5,3957.94554871321,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1351.5,3960.72332638502,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1352.5,3963.50110405684,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1353.5,3966.27888172865,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1354.5,3969.05665940046,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1355.5,3971.83443707228,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1356.5,3974.61221474409,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1357.5,3977.38999241591,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1358.5,3980.16777008772,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1359.5,3982.94554775953,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1360.5,3985.72332543135,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1361.5,3988.50110310316,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1362.5,3991.27888077497,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1363.5,3994.05665844679,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1364.5,3996.8344361186,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1365.5,3999.61221379042,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1366.5,4002.38999146223,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1367.5,4005.16776913404,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1368.5,4007.94554680586,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1369.5,4010.72332447767,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1370.5,4013.50110214949,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1371.5,4016.2788798213,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1372.5,4019.05665749311,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1373.5,4021.83443516493,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1374.5,4024.61221283674,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1375.5,4027.38999050856,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1376.5,4030.16776818037,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1377.5,4032.94554585218,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1378.5,4035.723323524,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1379.5,4038.50110119581,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1380.5,4041.27887886763,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1381.5,4044.05665653944,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1382.5,4046.83443421125,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1383.5,4049.61221188307,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1384.5,4052.38998955488,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1385.5,4055.1677672267,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1386.5,4057.94554489851,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1387.5,4060.72332257032,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1388.5,4063.50110024214,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1389.5,4066.27887791395,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1390.5,4069.05665558577,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1391.5,4071.83443325758,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1392.5,4074.61221092939,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1393.5,4077.38998860121,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1394.5,4080.16776627302,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1395.5,4082.94554394484,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1396.5,4085.72332161665,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1397.5,4088.50109928846,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1398.5,4091.27887696028,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1399.5,4094.05665463209,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1400.5,4096.83443230391,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1401.5,4099.61220997572,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1402.5,4102.38998764753,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1403.5,4105.16776531935,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1404.5,4107.94554299116,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1405.5,4110.72332066298,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1406.5,4113.50109833479,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1407.5,4116.2788760066,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1408.5,4119.05665367842,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1409.5,4121.83443135023,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1410.5,4124.61220902205,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1411.5,4127.38998669386,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1412.5,4130.16776436567,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1413.5,4132.94554203749,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1414.5,4135.7233197093,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1415.5,4138.50109738112,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1416.5,4141.27887505293,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1417.5,4144.05665272474,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1418.5,4146.83443039656,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1419.5,4149.61220806837,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1420.5,4152.38998574018,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1421.5,4155.167763412,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1422.5,4157.94554108381,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1423.5,4160.72331875563,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1424.5,4163.50109642744,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1425.5,4166.27887409925,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1426.5,4169.05665177107,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1427.5,4171.83442944288,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1428.5,4174.6122071147,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1429.5,4177.38998478651,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1430.5,4180.16776245832,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1431.5,4182.94554013014,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1432.5,4185.72331780195,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1433.5,4188.50109547377,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1434.5,4191.27887314558,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1435.5,4194.05665081739,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1436.5,4196.83442848921,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1437.5,4199.61220616102,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1438.5,4202.38998383284,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1439.5,4205.16776150465,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1440.5,4207.94553917646,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1441.5,4210.72331684828,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1442.5,4213.50109452009,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1443.5,4216.27887219191,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1444.5,4219.05664986372,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1445.5,4221.83442753553,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1446.5,4224.61220520735,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1447.5,4227.38998287916,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1448.5,4230.16776055098,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1449.5,4232.94553822279,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1450.5,4235.7233158946,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1451.5,4238.50109356642,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1452.5,4241.27887123823,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1453.5,4244.05664891005,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1454.5,4246.83442658186,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1455.5,4249.61220425367,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1456.5,4252.38998192549,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1457.5,4255.1677595973,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1458.5,4257.94553726912,9.99999961853027,9.99999961853027,0,2.609452,593.6995,300.2575,300.2575,903.8052,-148.1575,18.66763,56.19144,-9.211259,18.66763,0,0,3,0.8459719,0.9597086,0,0,0,3.314559,0.04154791,13.50584,16.86195,0,4398.78,-,-
+1459.5,4260.72331494093,9.99999961853027,9.99999961853027,0,2.462007,593.6995,287.5516,287.5516,903.8052,-148.1575,17.87768,56.19144,-9.211259,17.87768,0,0,3,0.8301736,0.9480964,0,0,0,3.314682,0.04154791,12.74318,16.09941,0,4262.828,-,-
+1460.5,4263.50109261274,9.99999961853027,9.99999961853027,0,2.462007,593.6995,287.5516,287.5516,899.0405,-148.1575,17.87768,55.89521,-9.211259,17.87768,0,0,3,0.8301736,0.9480964,0,0,0,3.314682,0.04154791,12.74318,16.09941,0,4262.828,-,-
+1461.5,4266.27887028456,9.99999961853027,9.99999961853027,0,2.462007,593.6995,287.5516,287.5516,899.0405,-148.1575,17.87768,55.89521,-9.211259,17.87768,0,0,3,0.8301736,0.9480964,0,0,0,3.314682,0.04154791,12.74318,16.09941,0,4262.828,-,-
+1462.5,4269.05664795637,9.99999961853027,9.99999961853027,0,2.462007,593.6995,287.5516,287.5516,899.0405,-148.1575,17.87768,55.89521,-9.211259,17.87768,0,0,3,0.8301736,0.9480964,0,0,0,3.314682,0.04154791,12.74318,16.09941,0,4262.828,-,-
+1463.5,4271.83442562819,9.99999961853027,9.99999961853027,0,2.462007,593.6995,287.5516,287.5516,899.0405,-148.1575,17.87768,55.89521,-9.211259,17.87768,0,0,3,0.8301736,0.9480964,0,0,0,3.314682,0.04154791,12.74318,16.09941,0,4262.828,-,-
+1464.5,4274.6122033,9.99999961853027,9.99999961853027,0,2.462007,593.6995,287.5516,287.5516,899.0405,-148.1575,17.87768,55.89521,-9.211259,17.87768,0,0,3,0.8301736,0.9480964,0,0,0,3.314682,0.04154791,12.74318,16.09941,0,4262.828,-,-
+1465.5,4277.38998097181,9.99999961853027,9.99999961853027,0,2.462007,593.6995,287.5516,287.5516,899.0405,-148.1575,17.87768,55.89521,-9.211259,17.87768,0,0,3,0.8301736,0.9480964,0,0,0,3.314682,0.04154791,12.74318,16.09941,0,4262.828,-,-
+1466.5,4280.16775864363,9.99999961853027,9.99999961853027,0,2.361491,593.6995,278.889,278.889,899.0405,-148.1575,17.33911,55.89521,-9.211259,17.33911,0,0,3,0.8194016,0.9401789,0,0,0,3.314763,0.04154791,12.22321,15.57952,0,4170.137,-,-
+1467.5,4282.94553631544,9.99999961853027,9.99999961853027,0,2.361491,593.6995,278.889,278.889,895.7921,-148.1575,17.33911,55.69324,-9.211259,17.33911,0,0,3,0.8194016,0.9401789,0,0,0,3.314763,0.04154791,12.22321,15.57952,0,4170.137,-,-
+1468.5,4285.72331398726,9.99999961853027,9.99999961853027,0,2.361491,593.6995,278.889,278.889,895.7921,-148.1575,17.33911,55.69324,-9.211259,17.33911,0,0,3,0.8194016,0.9401789,0,0,0,3.314763,0.04154791,12.22321,15.57952,0,4170.137,-,-
+1469.5,4288.50109165907,9.99999961853027,9.99999961853027,0,2.361491,593.6995,278.889,278.889,895.7921,-148.1575,17.33911,55.69324,-9.211259,17.33911,0,0,3,0.8194016,0.9401789,0,0,0,3.314763,0.04154791,12.22321,15.57952,0,4170.137,-,-
+1470.5,4291.27886933088,9.99999961853027,9.99999961853027,0,2.361491,593.6995,278.889,278.889,895.7921,-148.1575,17.33911,55.69324,-9.211259,17.33911,0,0,3,0.8194016,0.9401789,0,0,0,3.314763,0.04154791,12.22321,15.57952,0,4170.137,-,-
+1471.5,4294.0566470027,9.99999961853027,9.99999961853027,0,2.361491,593.6995,278.889,278.889,895.7921,-148.1575,17.33911,55.69324,-9.211259,17.33911,0,0,3,0.8194016,0.9401789,0,0,0,3.314763,0.04154791,12.22321,15.57952,0,4170.137,-,-
+1472.5,4296.83442467451,9.99999961853027,9.99999961853027,0,2.361491,593.6995,278.889,278.889,895.7921,-148.1575,17.33911,55.69324,-9.211259,17.33911,0,0,3,0.8194016,0.9401789,0,0,0,3.314763,0.04154791,12.22321,15.57952,0,4170.137,-,-
+1473.5,4299.61220234632,9.99999961853027,9.99999961853027,0,2.260976,593.6995,270.2257,270.2257,895.7921,-148.1575,16.80049,55.69324,-9.211259,16.80049,0,0,3,0.8086298,0.9322616,0,0,0,3.31484,0.04154791,11.70321,15.0596,0,4077.44,-,-
+1474.5,4302.38998001814,9.99999961853027,9.99999961853027,0,2.260976,593.6995,270.2257,270.2257,892.5433,-148.1575,16.80049,55.49126,-9.211259,16.80049,0,0,3,0.8086298,0.9322616,0,0,0,3.31484,0.04154791,11.70321,15.0596,0,4077.44,-,-
+1475.5,4305.16775768995,9.99999961853027,9.99999961853027,0,2.260976,593.6995,270.2257,270.2257,892.5433,-148.1575,16.80049,55.49126,-9.211259,16.80049,0,0,3,0.8086298,0.9322616,0,0,0,3.31484,0.04154791,11.70321,15.0596,0,4077.44,-,-
+1476.5,4307.94553536177,9.99999961853027,9.99999961853027,0,2.260976,593.6995,270.2257,270.2257,892.5433,-148.1575,16.80049,55.49126,-9.211259,16.80049,0,0,3,0.8086298,0.9322616,0,0,0,3.31484,0.04154791,11.70321,15.0596,0,4077.44,-,-
+1477.5,4310.72331303358,9.99999961853027,9.99999961853027,0,2.260976,593.6995,270.2257,270.2257,892.5433,-148.1575,16.80049,55.49126,-9.211259,16.80049,0,0,3,0.8086298,0.9322616,0,0,0,3.31484,0.04154791,11.70321,15.0596,0,4077.44,-,-
+1478.5,4313.50109070539,9.99999961853027,9.99999961853027,0,2.260976,593.6995,270.2257,270.2257,892.5433,-148.1575,16.80049,55.49126,-9.211259,16.80049,0,0,3,0.8086298,0.9322616,0,0,0,3.31484,0.04154791,11.70321,15.0596,0,4077.44,-,-
+1479.5,4316.27886837721,9.99999961853027,9.99999961853027,0,2.260976,593.6995,270.2257,270.2257,892.5433,-148.1575,16.80049,55.49126,-9.211259,16.80049,0,0,3,0.8086298,0.9322616,0,0,0,3.31484,0.04154791,11.70321,15.0596,0,4077.44,-,-
+1480.5,4319.05664604902,9.99999961853027,9.99999961853027,0,2.16046,593.6995,261.5617,261.5617,892.5433,-148.1575,16.26183,55.49126,-9.211259,16.26183,0,0,3,0.7978554,0.9243427,0,0,0,3.314913,0.04154791,11.18317,14.53963,0,3984.735,-,-
+1481.5,4321.83442372084,9.99999961853027,9.99999961853027,0,2.16046,593.6995,261.5617,261.5617,889.2943,-148.1575,16.26183,55.28927,-9.211259,16.26183,0,0,3,0.7978554,0.9243427,0,0,0,3.314913,0.04154791,11.18317,14.53963,0,3984.735,-,-
+1482.5,4324.61220139265,9.99999961853027,9.99999961853027,0,2.16046,593.6995,261.5617,261.5617,889.2943,-148.1575,16.26183,55.28927,-9.211259,16.26183,0,0,3,0.7978554,0.9243427,0,0,0,3.314913,0.04154791,11.18317,14.53963,0,3984.735,-,-
+1483.5,4327.38997906446,9.99999961853027,9.99999961853027,0,2.16046,593.6995,261.5617,261.5617,889.2943,-148.1575,16.26183,55.28927,-9.211259,16.26183,0,0,3,0.7978554,0.9243427,0,0,0,3.314913,0.04154791,11.18317,14.53963,0,3984.735,-,-
+1484.5,4330.16775673628,9.99999961853027,9.99999961853027,0,2.16046,593.6995,261.5617,261.5617,889.2943,-148.1575,16.26183,55.28927,-9.211259,16.26183,0,0,3,0.7978554,0.9243427,0,0,0,3.314913,0.04154791,11.18317,14.53963,0,3984.735,-,-
+1485.5,4332.94553440809,9.99999961853027,9.99999961853027,0,2.16046,593.6995,261.5617,261.5617,889.2943,-148.1575,16.26183,55.28927,-9.211259,16.26183,0,0,3,0.7978554,0.9243427,0,0,0,3.314913,0.04154791,11.18317,14.53963,0,3984.735,-,-
+1486.5,4335.72331207991,9.99999961853027,9.99999961853027,0,2.16046,593.6995,261.5617,261.5617,889.2943,-148.1575,16.26183,55.28927,-9.211259,16.26183,0,0,3,0.7978554,0.9243427,0,0,0,3.314913,0.04154791,11.18317,14.53963,0,3984.735,-,-
+1487.5,4338.50108975172,9.99999961853027,9.99999961853027,0,2.110202,593.6995,257.2295,257.2295,889.2943,-148.1575,15.99249,55.28927,-9.211259,15.99249,0,0,3,0.7924691,0.920384,0,0,0,3.314949,0.04154791,10.92314,14.27964,0,3938.381,-,-
+1488.5,4341.27886742353,9.99999961853027,9.99999961853027,0,2.059945,593.6995,252.8971,252.8971,887.6697,-148.1575,15.72314,55.18826,-9.211259,15.72314,0,0,3,0.7870821,0.9164245,0,0,0,3.314983,0.04154791,10.6631,14.01963,0,3892.024,-,-
+1489.5,4344.05664509535,9.99999961853027,9.99999961853027,0,2.059945,593.6995,252.8971,252.8971,886.0451,-148.1575,15.72314,55.08726,-9.211259,15.72314,0,0,3,0.7870821,0.9164245,0,0,0,3.314983,0.04154791,10.6631,14.01963,0,3892.024,-,-
+1490.5,4346.83442276716,9.99999961853027,9.99999961853027,0,2.059945,593.6995,252.8971,252.8971,886.0451,-148.1575,15.72314,55.08726,-9.211259,15.72314,0,0,3,0.7870821,0.9164245,0,0,0,3.314983,0.04154791,10.6631,14.01963,0,3892.024,-,-
+1491.5,4349.61220043898,9.99999961853027,9.99999961853027,0,2.059945,593.6995,252.8971,252.8971,886.0451,-148.1575,15.72314,55.08726,-9.211259,15.72314,0,0,3,0.7870821,0.9164245,0,0,0,3.314983,0.04154791,10.6631,14.01963,0,3892.024,-,-
+1492.5,4352.38997811079,9.99999961853027,9.99999961853027,0,2.059945,593.6995,252.8971,252.8971,886.0451,-148.1575,15.72314,55.08726,-9.211259,15.72314,0,0,3,0.7870821,0.9164245,0,0,0,3.314983,0.04154791,10.6631,14.01963,0,3892.024,-,-
+1493.5,4355.1677557826,9.99999961853027,9.99999961853027,0,2.059945,593.6995,252.8971,252.8971,886.0451,-148.1575,15.72314,55.08726,-9.211259,15.72314,0,0,3,0.7870821,0.9164245,0,0,0,3.314983,0.04154791,10.6631,14.01963,0,3892.024,-,-
+1494.5,4357.94553345442,9.99999961853027,9.99999961853027,0,2.059945,593.6995,252.8971,252.8971,886.0451,-148.1575,15.72314,55.08726,-9.211259,15.72314,0,0,3,0.7870821,0.9164245,0,0,0,3.314983,0.04154791,10.6631,14.01963,0,3892.024,-,-
+1495.5,4360.72331112623,9.99999961853027,9.99999961853027,0,1.959357,593.6995,244.2257,244.2257,886.0451,-148.1575,15.18402,55.08726,-9.211259,15.18402,0,0,3,0.7763,0.908499,0,0,0,3.31505,0.04154791,10.14262,13.49922,0,3799.24,-,-
+1496.5,4363.50108879805,9.99999961853027,9.99999961853027,0,1.959357,593.6995,244.2257,244.2257,882.7933,-148.1575,15.18402,54.88509,-9.211259,15.18402,0,0,3,0.7763,0.908499,0,0,0,3.31505,0.04154791,10.14262,13.49922,0,3799.24,-,-
+1497.5,4366.27886646986,9.99999961853027,9.99999961853027,0,1.959357,593.6995,244.2257,244.2257,882.7933,-148.1575,15.18402,54.88509,-9.211259,15.18402,0,0,3,0.7763,0.908499,0,0,0,3.31505,0.04154791,10.14262,13.49922,0,3799.24,-,-
+1498.5,4369.05664414167,9.99999961853027,9.99999961853027,0,1.959357,593.6995,244.2257,244.2257,882.7933,-148.1575,15.18402,54.88509,-9.211259,15.18402,0,0,3,0.7763,0.908499,0,0,0,3.31505,0.04154791,10.14262,13.49922,0,3799.24,-,-
+1499.5,4371.83442181349,9.99999961853027,9.99999961853027,0,1.959357,593.6995,244.2257,244.2257,882.7933,-148.1575,15.18402,54.88509,-9.211259,15.18402,0,0,3,0.7763,0.908499,0,0,0,3.31505,0.04154791,10.14262,13.49922,0,3799.24,-,-
+1500.5,4374.6121994853,9.99999961853027,9.99999961853027,0,1.959357,593.6995,244.2257,244.2257,882.7933,-148.1575,15.18402,54.88509,-9.211259,15.18402,0,0,3,0.7763,0.908499,0,0,0,3.31505,0.04154791,10.14262,13.49922,0,3799.24,-,-
+1501.5,4377.38997715712,9.99999961853027,9.99999961853027,0,1.959357,593.6995,244.2257,244.2257,882.7933,-148.1575,15.18402,54.88509,-9.211259,15.18402,0,0,3,0.7763,0.908499,0,0,0,3.31505,0.04154791,10.14262,13.49922,0,3799.24,-,-
+1502.5,4380.16775482893,9.99999961853027,9.99999961853027,0,1.858117,593.6995,235.4975,235.4975,882.7933,-148.1575,14.64137,54.88509,-9.211259,14.64137,0,0,3,0.7654463,0.900522,0,0,0,3.315114,0.04154791,9.618737,12.9754,0,3705.849,-,-
+1503.5,4382.94553250074,9.99999961853027,9.99999961853027,0,1.858117,593.6995,235.4975,235.4975,879.5202,-148.1575,14.64137,54.68159,-9.211259,14.64137,0,0,3,0.7654463,0.900522,0,0,0,3.315114,0.04154791,9.618737,12.9754,0,3705.849,-,-
+1504.5,4385.72331017256,9.99999961853027,9.99999961853027,0,1.858117,593.6995,235.4975,235.4975,879.5202,-148.1575,14.64137,54.68159,-9.211259,14.64137,0,0,3,0.7654463,0.900522,0,0,0,3.315114,0.04154791,9.618737,12.9754,0,3705.849,-,-
+1505.5,4388.50108784437,9.99999961853027,9.99999961853027,0,1.858117,593.6995,235.4975,235.4975,879.5202,-148.1575,14.64137,54.68159,-9.211259,14.64137,0,0,3,0.7654463,0.900522,0,0,0,3.315114,0.04154791,9.618737,12.9754,0,3705.849,-,-
+1506.5,4391.27886551619,9.99999961853027,9.99999961853027,0,1.858117,593.6995,235.4975,235.4975,879.5202,-148.1575,14.64137,54.68159,-9.211259,14.64137,0,0,3,0.7654463,0.900522,0,0,0,3.315114,0.04154791,9.618737,12.9754,0,3705.849,-,-
+1507.5,4394.056643188,9.99999961853027,9.99999961853027,0,1.858117,593.6995,235.4975,235.4975,879.5202,-148.1575,14.64137,54.68159,-9.211259,14.64137,0,0,3,0.7654463,0.900522,0,0,0,3.315114,0.04154791,9.618737,12.9754,0,3705.849,-,-
+1508.5,4396.83442085981,9.99999961853027,9.99999961853027,0,1.858117,593.6995,235.4975,235.4975,879.5202,-148.1575,14.64137,54.68159,-9.211259,14.64137,0,0,3,0.7654463,0.900522,0,0,0,3.315114,0.04154791,9.618737,12.9754,0,3705.849,-,-
+1509.5,4399.61219853163,9.99999961853027,9.99999961853027,0,1.756876,593.6995,226.7688,226.7688,879.5202,-148.1575,14.09868,54.68159,-9.211259,14.09868,0,0,3,0.7545927,0.8925451,0,0,0,3.315175,0.04154791,9.094824,12.45155,0,3613.445,-,-
+1510.5,4402.38997620344,9.99999961853027,9.99999961853027,0,1.756876,593.6995,226.7688,226.7688,876.247,-148.1575,14.09868,54.47809,-9.211259,14.09868,0,0,3,0.7545927,0.8925451,0,0,0,3.315175,0.04154791,9.094824,12.45155,0,3613.445,-,-
+1511.5,4405.16775387526,9.99999961853027,9.99999961853027,0,1.756876,593.6995,226.7688,226.7688,876.247,-148.1575,14.09868,54.47809,-9.211259,14.09868,0,0,3,0.7545927,0.8925451,0,0,0,3.315175,0.04154791,9.094824,12.45155,0,3613.445,-,-
+1512.5,4407.94553154707,9.99999961853027,9.99999961853027,0,1.756876,593.6995,226.7688,226.7688,876.247,-148.1575,14.09868,54.47809,-9.211259,14.09868,0,0,3,0.7545927,0.8925451,0,0,0,3.315175,0.04154791,9.094824,12.45155,0,3613.445,-,-
+1513.5,4410.72330921888,9.99999961853027,9.99999961853027,0,1.756876,593.6995,226.7688,226.7688,876.247,-148.1575,14.09868,54.47809,-9.211259,14.09868,0,0,3,0.7545927,0.8925451,0,0,0,3.315175,0.04154791,9.094824,12.45155,0,3613.445,-,-
+1514.5,4413.5010868907,9.99999961853027,9.99999961853027,0,1.756876,593.6995,226.7688,226.7688,876.247,-148.1575,14.09868,54.47809,-9.211259,14.09868,0,0,3,0.7545927,0.8925451,0,0,0,3.315175,0.04154791,9.094824,12.45155,0,3613.445,-,-
+1515.5,4416.27886456251,9.99999961853027,9.99999961853027,0,1.756876,593.6995,226.7688,226.7688,876.247,-148.1575,14.09868,54.47809,-9.211259,14.09868,0,0,3,0.7545927,0.8925451,0,0,0,3.315175,0.04154791,9.094824,12.45155,0,3613.445,-,-
+1516.5,4419.05664223433,9.99999961853027,9.99999961853027,0,1.655636,593.6995,218.0395,218.0395,876.247,-148.1575,13.55597,54.47809,-9.211259,13.55597,0,0,3,0.7437381,0.8845673,0,0,0,3.315232,0.04154791,8.57088,11.92766,0,3521.875,-,-
+1517.5,4421.83441990614,9.99999961853027,9.99999961853027,0,1.655636,593.6995,218.0395,218.0395,872.9734,-148.1575,13.55597,54.27457,-9.211259,13.55597,0,0,3,0.7437381,0.8845673,0,0,0,3.315232,0.04154791,8.57088,11.92766,0,3521.875,-,-
+1518.5,4424.61219757795,9.99999961853027,9.99999961853027,0,1.655636,593.6995,218.0395,218.0395,872.9734,-148.1575,13.55597,54.27457,-9.211259,13.55597,0,0,3,0.7437381,0.8845673,0,0,0,3.315232,0.04154791,8.57088,11.92766,0,3521.875,-,-
+1519.5,4427.38997524977,9.99999961853027,9.99999961853027,0,1.655636,593.6995,218.0395,218.0395,872.9734,-148.1575,13.55597,54.27457,-9.211259,13.55597,0,0,3,0.7437381,0.8845673,0,0,0,3.315232,0.04154791,8.57088,11.92766,0,3521.875,-,-
+1520.5,4430.16775292158,9.99999961853027,9.99999961853027,0,1.655636,593.6995,218.0395,218.0395,872.9734,-148.1575,13.55597,54.27457,-9.211259,13.55597,0,0,3,0.7437381,0.8845673,0,0,0,3.315232,0.04154791,8.57088,11.92766,0,3521.875,-,-
+1521.5,4432.9455305934,9.99999961853027,9.99999961853027,0,1.655636,593.6995,218.0395,218.0395,872.9734,-148.1575,13.55597,54.27457,-9.211259,13.55597,0,0,3,0.7437381,0.8845673,0,0,0,3.315232,0.04154791,8.57088,11.92766,0,3521.875,-,-
+1522.5,4435.72330826521,9.99999961853027,9.99999961853027,0,1.655636,593.6995,218.0395,218.0395,872.9734,-148.1575,13.55597,54.27457,-9.211259,13.55597,0,0,3,0.7437381,0.8845673,0,0,0,3.315232,0.04154791,8.57088,11.92766,0,3521.875,-,-
+1523.5,4438.50108593702,9.99999961853027,9.99999961853027,0,1.655636,593.6995,218.0395,218.0395,872.9734,-148.1575,13.55597,54.27457,-9.211259,13.55597,0,0,3,0.7437381,0.8845673,0,0,0,3.315232,0.04154791,8.57088,11.92766,0,3521.875,-,-
+1524.5,4441.27886360884,9.99999961853027,9.99999961853027,0,1.655636,593.6995,218.0395,218.0395,872.9734,-148.1575,13.55597,54.27457,-9.211259,13.55597,0,0,3,0.7437381,0.8845673,0,0,0,3.315232,0.04154791,8.57088,11.92766,0,3521.875,-,-
+1525.5,4444.05664128065,9.99999961853027,9.99999961853027,0,1.655636,593.6995,218.0395,218.0395,872.9734,-148.1575,13.55597,54.27457,-9.211259,13.55597,0,0,3,0.7437381,0.8845673,0,0,0,3.315232,0.04154791,8.57088,11.92766,0,3521.875,-,-
+1526.5,4446.83441895247,9.99999961853027,9.99999961853027,0,1.655636,593.6995,218.0395,218.0395,872.9734,-148.1575,13.55597,54.27457,-9.211259,13.55597,0,0,3,0.7437381,0.8845673,0,0,0,3.315232,0.04154791,8.57088,11.92766,0,3521.875,-,-
+1527.5,4449.61219662428,9.99999961853027,9.99999961853027,0,1.655636,593.6995,218.0395,218.0395,872.9734,-148.1575,13.55597,54.27457,-9.211259,13.55597,0,0,3,0.7437381,0.8845673,0,0,0,3.315232,0.04154791,8.57088,11.92766,0,3521.875,-,-
+1528.5,4452.38997429609,9.99999961853027,9.99999961853027,0,1.655636,593.6995,218.0395,218.0395,872.9734,-148.1575,13.55597,54.27457,-9.211259,13.55597,0,0,3,0.7437381,0.8845673,0,0,0,3.315232,0.04154791,8.57088,11.92766,0,3521.875,-,-
+1529.5,4455.16775196791,9.99999961853027,9.99999961853027,0,1.655636,593.6995,218.0395,218.0395,872.9734,-148.1575,13.55597,54.27457,-9.211259,13.55597,0,0,3,0.7437381,0.8845673,0,0,0,3.315232,0.04154791,8.57088,11.92766,0,3521.875,-,-
+1530.5,4457.94552963972,9.99999961853027,9.99999961853027,0,1.655636,593.6995,218.0395,218.0395,872.9734,-148.1575,13.55597,54.27457,-9.211259,13.55597,0,0,3,0.7437381,0.8845673,0,0,0,3.315232,0.04154791,8.57088,11.92766,0,3521.875,-,-
+1531.5,4460.72330731153,9.99999961853027,9.99999961853027,0,1.655636,593.6995,218.0395,218.0395,872.9734,-148.1575,13.55597,54.27457,-9.211259,13.55597,0,0,3,0.7437381,0.8845673,0,0,0,3.315232,0.04154791,8.57088,11.92766,0,3521.875,-,-
+1532.5,4463.50108498335,9.99999961853027,9.99999961853027,0,1.655636,593.6995,218.0395,218.0395,872.9734,-148.1575,13.55597,54.27457,-9.211259,13.55597,0,0,3,0.7437381,0.8845673,0,0,0,3.315232,0.04154791,8.57088,11.92766,0,3521.875,-,-
+1533.5,4466.27886265516,9.99999961853027,9.99999961853027,0,1.655636,593.6995,218.0395,218.0395,872.9734,-148.1575,13.55597,54.27457,-9.211259,13.55597,0,0,3,0.7437381,0.8845673,0,0,0,3.315232,0.04154791,8.57088,11.92766,0,3521.875,-,-
+1534.5,4469.05664032698,9.99999961853027,9.99999961853027,0,1.894037,593.6995,238.5944,238.5944,872.9734,-148.1575,14.83391,54.27457,-9.211259,14.83391,0,0,3,0.7692972,0.9033529,0,0,0,3.315092,0.04154791,9.804618,13.16126,0,3738.985,-,-
+1535.5,4471.83441799879,9.99999961853027,9.99999961853027,0,1.894037,593.6995,238.5944,238.5944,880.6816,-148.1575,14.83391,54.7538,-9.211259,14.83391,0,0,3,0.7692972,0.9033529,0,0,0,3.315092,0.04154791,9.804618,13.16126,0,3738.985,-,-
+1536.5,4474.6121956706,9.99999961853027,9.99999961853027,0,1.894037,593.6995,238.5944,238.5944,880.6816,-148.1575,14.83391,54.7538,-9.211259,14.83391,0,0,3,0.7692972,0.9033529,0,0,0,3.315092,0.04154791,9.804618,13.16126,0,3738.985,-,-
+1537.5,4477.38997334242,9.99999961853027,9.99999961853027,0,1.894037,593.6995,238.5944,238.5944,880.6816,-148.1575,14.83391,54.7538,-9.211259,14.83391,0,0,3,0.7692972,0.9033529,0,0,0,3.315092,0.04154791,9.804618,13.16126,0,3738.985,-,-
+1538.5,4480.16775101423,9.99999961853027,9.99999961853027,0,2.043206,593.6995,251.4542,251.4542,880.6816,-148.1575,15.63343,54.7538,-9.211259,15.63343,0,0,3,0.7852878,0.9151054,0,0,0,3.314995,0.04154791,10.57649,13.93303,0,3876.585,-,-
+1539.5,4482.94552868605,9.99999961853027,9.99999961853027,0,2.043206,593.6995,251.4542,251.4542,885.504,-148.1575,15.63343,55.05362,-9.211259,15.63343,0,0,3,0.7852878,0.9151054,0,0,0,3.314995,0.04154791,10.57649,13.93303,0,3876.585,-,-
+1540.5,4485.72330635786,9.99999961853027,9.99999961853027,0,2.043206,593.6995,251.4542,251.4542,885.504,-148.1575,15.63343,55.05362,-9.211259,15.63343,0,0,3,0.7852878,0.9151054,0,0,0,3.314995,0.04154791,10.57649,13.93303,0,3876.585,-,-
+1541.5,4488.50108402967,9.99999961853027,9.99999961853027,0,2.11779,593.6995,257.8836,257.8836,885.504,-148.1575,16.03316,55.05362,-9.211259,16.03316,0,0,3,0.7932826,0.9209816,0,0,0,3.314943,0.04154791,10.9624,14.31889,0,3945.379,-,-
+1542.5,4491.27886170149,9.99999961853027,9.99999961853027,0,2.192375,593.6995,264.3127,264.3127,887.915,-148.1575,16.43287,55.20351,-9.211259,16.43287,0,0,3,0.8012769,0.9268578,0,0,0,3.31489,0.04154791,11.34829,14.70473,0,4014.17,-,-
+1543.5,4494.0566393733,9.99999961853027,9.99999961853027,0,2.192375,593.6995,264.3127,264.3127,890.3259,-148.1575,16.43287,55.3534,-9.211259,16.43287,0,0,3,0.8012769,0.9268578,0,0,0,3.31489,0.04154791,11.34829,14.70473,0,4014.17,-,-
+1544.5,4496.83441704512,9.99999961853027,9.99999961853027,0,2.192375,593.6995,264.3127,264.3127,890.3259,-148.1575,16.43287,55.3534,-9.211259,16.43287,0,0,3,0.8012769,0.9268578,0,0,0,3.31489,0.04154791,11.34829,14.70473,0,4014.17,-,-
+1545.5,4499.61219471693,9.99999961853027,9.99999961853027,0,2.341543,593.6995,277.1697,277.1697,890.3259,-148.1575,17.23222,55.3534,-9.211259,17.23222,0,0,3,0.8172628,0.9386073,0,0,0,3.314778,0.04154791,12.12002,15.47635,0,4151.741,-,-
+1546.5,4502.38997238874,9.99999961853027,9.99999961853027,0,2.341543,593.6995,277.1697,277.1697,895.1473,-148.1575,17.23222,55.65316,-9.211259,17.23222,0,0,3,0.8172628,0.9386073,0,0,0,3.314778,0.04154791,12.12002,15.47635,0,4151.741,-,-
+1547.5,4505.16775006056,9.99999961853027,9.99999961853027,0,2.341543,593.6995,277.1697,277.1697,895.1473,-148.1575,17.23222,55.65316,-9.211259,17.23222,0,0,3,0.8172628,0.9386073,0,0,0,3.314778,0.04154791,12.12002,15.47635,0,4151.741,-,-
+1548.5,4507.94552773237,9.99999961853027,9.99999961853027,0,2.341543,593.6995,277.1697,277.1697,895.1473,-148.1575,17.23222,55.65316,-9.211259,17.23222,0,0,3,0.8172628,0.9386073,0,0,0,3.314778,0.04154791,12.12002,15.47635,0,4151.741,-,-
+1549.5,4510.72330540419,9.99999961853027,9.99999961853027,0,2.490712,593.6995,290.0254,290.0254,895.1473,-148.1575,18.03148,55.65316,-9.211259,18.03148,0,0,3,0.8332484,0.9503565,0,0,0,3.314659,0.04154791,12.89166,16.24787,0,4289.296,-,-
+1550.5,4513.501083076,9.99999961853027,9.99999961853027,0,2.490712,593.6995,290.0254,290.0254,899.9681,-148.1575,18.03148,55.95288,-9.211259,18.03148,0,0,3,0.8332484,0.9503565,0,0,0,3.314659,0.04154791,12.89166,16.24787,0,4289.296,-,-
+1551.5,4516.27886074781,9.99999961853027,9.99999961853027,0,2.490712,593.6995,290.0254,290.0254,899.9681,-148.1575,18.03148,55.95288,-9.211259,18.03148,0,0,3,0.8332484,0.9503565,0,0,0,3.314659,0.04154791,12.89166,16.24787,0,4289.296,-,-
+1552.5,4519.05663841963,9.99999961853027,9.99999961853027,0,2.639881,593.6995,302.8795,302.8795,899.9681,-148.1575,18.83064,55.95288,-9.211259,18.83064,0,0,3,0.8492329,0.9621041,0,0,0,3.314532,0.04154791,13.66323,17.01931,0,4426.835,-,-
+1553.5,4521.83441609144,9.99999961853027,9.99999961853027,0,2.639881,593.6995,302.8795,302.8795,904.7885,-148.1575,18.83064,56.25257,-9.211259,18.83064,0,0,3,0.8492329,0.9621041,0,0,0,3.314532,0.04154791,13.66323,17.01931,0,4426.835,-,-
+1554.5,4524.61219376326,9.99999961853027,9.99999961853027,0,2.639881,593.6995,302.8795,302.8795,904.7885,-148.1575,18.83064,56.25257,-9.211259,18.83064,0,0,3,0.8492329,0.9621041,0,0,0,3.314532,0.04154791,13.66323,17.01931,0,4426.835,-,-
+1555.5,4527.38997143507,9.99999961853027,9.99999961853027,0,2.639881,593.6995,302.8795,302.8795,904.7885,-148.1575,18.83064,56.25257,-9.211259,18.83064,0,0,3,0.8492329,0.9621041,0,0,0,3.314532,0.04154791,13.66323,17.01931,0,4426.835,-,-
+1556.5,4530.16774910688,9.99999961853027,9.99999961853027,0,2.78905,593.6995,315.7319,315.7319,904.7885,-148.1575,19.6297,56.25257,-9.211259,19.6297,0,0,3,0.8652129,0.9738497,0,0,0,3.314398,0.04154791,14.43469,17.79064,0,4564.356,-,-
+1557.5,4532.9455267787,9.99999961853027,9.99999961853027,0,2.78905,593.6995,315.7319,315.7319,909.6082,-148.1575,19.6297,56.55222,-9.211259,19.6297,0,0,3,0.8652129,0.9738497,0,0,0,3.314398,0.04154791,14.43469,17.79064,0,4564.356,-,-
+1558.5,4535.72330445051,9.99999961853027,9.99999961853027,0,2.78905,593.6995,315.7319,315.7319,909.6082,-148.1575,19.6297,56.55222,-9.211259,19.6297,0,0,3,0.8652129,0.9738497,0,0,0,3.314398,0.04154791,14.43469,17.79064,0,4564.356,-,-
+1559.5,4538.50108212233,9.99999961853027,9.99999961853027,0,2.863635,593.6995,322.1574,322.1574,909.6082,-148.1575,20.02919,56.55222,-9.211259,20.02919,0,0,3,0.8732039,0.979723,0,0,0,3.314328,0.04154791,14.82039,18.17627,0,4633.11,-,-
+1560.5,4541.27885979414,9.99999961853027,9.99999961853027,0,2.938219,593.6995,328.5826,328.5826,912.0177,-148.1575,20.42866,56.70203,-9.211259,20.42866,0,0,3,0.881192,0.9855953,0,0,0,3.314256,0.04154791,15.20607,18.56187,0,4701.858,-,-
+1561.5,4544.05663746595,9.99999961853027,9.99999961853027,0,2.938219,593.6995,328.5826,328.5826,914.4271,-148.1575,20.42866,56.85183,-9.211259,20.42866,0,0,3,0.881192,0.9855953,0,0,0,3.314256,0.04154791,15.20607,18.56187,0,4701.858,-,-
+1562.5,4546.83441513777,9.99999961853027,9.99999961853027,0,2.938219,593.6995,328.5826,328.5826,914.4271,-148.1575,20.42866,56.85183,-9.211259,20.42866,0,0,3,0.881192,0.9855953,0,0,0,3.314256,0.04154791,15.20607,18.56187,0,4701.858,-,-
+1563.5,4549.61219280958,9.99999961853027,9.99999961853027,0,3.087388,593.6995,341.4314,341.4314,914.4271,-148.1575,21.2275,56.85183,-9.211259,21.2275,0,0,3,0.8971686,0.9973382,0,0,0,3.314108,0.04154791,15.97734,19.33299,0,4839.341,-,-
+1564.5,4552.3899704814,9.99999961853027,9.99999961853027,0,3.087388,593.6995,341.4314,341.4314,919.2455,-148.1575,21.2275,57.15139,-9.211259,21.2275,0,0,3,0.8971686,0.9973382,0,0,0,3.314108,0.04154791,15.97734,19.33299,0,4839.341,-,-
+1565.5,4555.16774815321,9.99999961853027,9.99999961853027,0,3.087388,593.6995,341.4314,341.4314,919.2455,-148.1575,21.2275,57.15139,-9.211259,21.2275,0,0,3,0.8971686,0.9973382,0,0,0,3.314108,0.04154791,15.97734,19.33299,0,4839.341,-,-
+1566.5,4557.94552582502,9.99999961853027,9.99999961853027,0,3.087388,593.6995,341.4314,341.4314,919.2455,-148.1575,21.2275,57.15139,-9.211259,21.2275,0,0,3,0.8971686,0.9973382,0,0,0,3.314108,0.04154791,15.97734,19.33299,0,4839.341,-,-
+1567.5,4560.72330349684,9.99999961853027,9.99999961853027,0,3.236557,593.6995,354.2785,354.2785,919.2455,-148.1575,22.02623,57.15139,-9.211259,22.02623,0,0,3,0.9131446,1.00908,0,0,0,3.313951,0.04154791,16.7485,20.104,0,4976.805,-,-
+1568.5,4563.50108116865,9.99999961853027,9.99999961853027,0,3.236557,593.6995,354.2785,354.2785,924.063,-148.1575,22.02623,57.45091,-9.211259,22.02623,0,0,3,0.9131446,1.00908,0,0,0,3.313951,0.04154791,16.7485,20.104,0,4976.805,-,-
+1569.5,4566.27885884047,9.99999961853027,9.99999961853027,0,3.236557,593.6995,354.2785,354.2785,924.063,-148.1575,22.02623,57.45091,-9.211259,22.02623,0,0,3,0.9131446,1.00908,0,0,0,3.313951,0.04154791,16.7485,20.104,0,4976.805,-,-
+1570.5,4569.05663651228,9.99999961853027,9.99999961853027,0,3.385725,593.6995,367.1234,367.1234,924.063,-148.1575,22.82482,57.45091,-9.211259,22.82482,0,0,3,0.9291149,1.020819,0,0,0,3.313788,0.04154791,17.51955,20.87489,0,5114.246,-,-
+1571.5,4571.83441418409,9.99999961853027,9.99999961853027,0,3.385725,593.6995,367.1234,367.1234,928.8799,-148.1575,22.82482,57.75039,-9.211259,22.82482,0,0,3,0.9291149,1.020819,0,0,0,3.313788,0.04154791,17.51955,20.87489,0,5114.246,-,-
+1572.5,4574.61219185591,9.99999961853027,9.99999961853027,0,3.385725,593.6995,367.1234,367.1234,928.8799,-148.1575,22.82482,57.75039,-9.211259,22.82482,0,0,3,0.9291149,1.020819,0,0,0,3.313788,0.04154791,17.51955,20.87489,0,5114.246,-,-
+1573.5,4577.38996952772,9.99999961853027,9.99999961853027,0,3.385725,593.6995,367.1234,367.1234,928.8799,-148.1575,22.82482,57.75039,-9.211259,22.82482,0,0,3,0.9291149,1.020819,0,0,0,3.313788,0.04154791,17.51955,20.87489,0,5114.246,-,-
+1574.5,4580.16774719954,9.99999961853027,9.99999961853027,0,3.534894,593.6995,379.9664,379.9664,928.8799,-148.1575,23.6233,57.75039,-9.211259,23.6233,0,0,3,0.9450849,1.032556,0,0,0,3.313617,0.04154791,18.29049,21.64566,0,5251.666,-,-
+1575.5,4582.94552487135,9.99999961853027,9.99999961853027,0,3.534894,593.6995,379.9664,379.9664,933.696,-148.1575,23.6233,58.04982,-9.211259,23.6233,0,0,3,0.9450849,1.032556,0,0,0,3.313617,0.04154791,18.29049,21.64566,0,5251.666,-,-
+1576.5,4585.72330254316,9.99999961853027,9.99999961853027,0,3.534894,593.6995,379.9664,379.9664,933.696,-148.1575,23.6233,58.04982,-9.211259,23.6233,0,0,3,0.9450849,1.032556,0,0,0,3.313617,0.04154791,18.29049,21.64566,0,5251.666,-,-
+1577.5,4588.50108021498,9.99999961853027,9.99999961853027,0,3.609479,593.6995,386.3871,386.3871,933.696,-148.1575,24.02249,58.04982,-9.211259,24.02249,0,0,3,0.9530694,1.038426,0,0,0,3.313529,0.04154791,18.67591,22.03099,0,5320.368,-,-
+1578.5,4591.27885788679,9.99999961853027,9.99999961853027,0,3.684063,593.6995,392.8072,392.8072,936.1038,-148.1575,24.42164,58.19951,-9.211259,24.42164,0,0,3,0.9610512,1.044292,0,0,0,3.313439,0.04154791,19.06131,22.41629,0,5389.063,-,-
+1579.5,4594.05663555861,9.99999961853027,9.99999961853027,0,3.684063,593.6995,392.8072,392.8072,938.5114,-148.1575,24.42164,58.34919,-9.211259,24.42164,0,0,3,0.9610512,1.044292,0,0,0,3.313439,0.04154791,19.06131,22.41629,0,5389.063,-,-
+1580.5,4596.83441323042,9.99999961853027,9.99999961853027,0,3.684063,593.6995,392.8072,392.8072,938.5114,-148.1575,24.42164,58.34919,-9.211259,24.42164,0,0,3,0.9610512,1.044292,0,0,0,3.313439,0.04154791,19.06131,22.41629,0,5389.063,-,-
+1581.5,4599.61219090223,9.99999961853027,9.99999961853027,0,3.822083,593.6995,404.6863,404.6863,938.5114,-148.1575,25.16018,58.34919,-9.211259,25.16018,0,0,3,0.9758227,1.055149,0,0,0,3.313267,0.04154791,19.77439,23.12921,0,5520.386,-,-
+1582.5,4602.38996857405,9.99999961853027,9.99999961853027,0,3.822083,593.6995,404.6863,404.6863,942.9659,-148.1575,25.16018,58.62614,-9.211259,25.16018,0,0,3,0.9758227,1.055149,0,0,0,3.313267,0.04154791,19.77439,23.12921,0,5520.386,-,-
+1583.5,4605.16774624586,9.99999961853027,9.99999961853027,0,3.822083,593.6995,404.6863,404.6863,942.9659,-148.1575,25.16018,58.62614,-9.211259,25.16018,0,0,3,0.9758227,1.055149,0,0,0,3.313267,0.04154791,19.77439,23.12921,0,5520.386,-,-
+1584.5,4607.94552391768,9.99999961853027,9.99999961853027,0,3.822083,593.6995,404.6863,404.6863,942.9659,-148.1575,25.16018,58.62614,-9.211259,25.16018,0,0,3,0.9758227,1.055149,0,0,0,3.313267,0.04154791,19.77439,23.12921,0,5520.386,-,-
+1585.5,4610.72330158949,9.99999961853027,9.99999961853027,0,3.952671,593.6995,415.9238,415.9238,942.9659,-148.1575,25.85884,58.62614,-9.211259,25.85884,0,0,3,0.9897965,1.065419,0,0,0,3.3131,0.04154791,20.44898,23.80363,0,5650.742,-,-
+1586.5,4613.5010792613,9.99999961853027,9.99999961853027,0,3.952671,593.6995,415.9238,415.9238,947.1801,-148.1575,25.85884,58.88815,-9.211259,25.85884,0,0,3,0.9897965,1.065419,0,0,0,3.3131,0.04154791,20.44898,23.80363,0,5650.742,-,-
+1587.5,4616.27885693312,9.99999961853027,9.99999961853027,0,3.952671,593.6995,415.9238,415.9238,947.1801,-148.1575,25.85884,58.88815,-9.211259,25.85884,0,0,3,0.9897965,1.065419,0,0,0,3.3131,0.04154791,20.44898,23.80363,0,5650.742,-,-
+1588.5,4619.05663460493,9.99999961853027,9.99999961853027,0,4.083258,593.6995,427.1595,427.1595,947.1801,-148.1575,26.55739,58.88815,-9.211259,26.55739,0,0,3,1.003768,1.075688,0,0,0,3.312926,0.04154791,21.12346,24.47794,0,5781.076,-,-
+1589.5,4621.83441227674,9.99999961853027,9.99999961853027,0,4.083258,593.6995,427.1595,427.1595,951.3935,-148.1575,26.55739,59.1501,-9.211259,26.55739,0,0,3,1.003768,1.075688,0,0,0,3.312926,0.04154791,21.12346,24.47794,0,5781.076,-,-
+1590.5,4624.61218994856,9.99999961853027,9.99999961853027,0,4.083258,593.6995,427.1595,427.1595,951.3935,-148.1575,26.55739,59.1501,-9.211259,26.55739,0,0,3,1.003768,1.075688,0,0,0,3.312926,0.04154791,21.12346,24.47794,0,5781.076,-,-
+1591.5,4627.38996762037,9.99999961853027,9.99999961853027,0,4.083258,593.6995,427.1595,427.1595,951.3935,-148.1575,26.55739,59.1501,-9.211259,26.55739,0,0,3,1.003768,1.075688,0,0,0,3.312926,0.04154791,21.12346,24.47794,0,5781.076,-,-
+1592.5,4630.16774529219,9.99999961853027,9.99999961853027,0,4.213845,593.6995,438.3934,438.3934,951.3935,-148.1575,27.25582,59.1501,-9.211259,27.25582,0,0,3,1.017735,1.085956,0,0,0,3.312747,0.04154791,21.79784,25.15213,0,5921.139,-,-
+1593.5,4632.945522964,9.99999961853027,9.99999961853027,0,4.213845,593.6995,438.3934,438.3934,955.6061,-148.1575,27.25582,59.41201,-9.211259,27.25582,0,0,3,1.017735,1.085956,0,0,0,3.312747,0.04154791,21.79784,25.15213,0,5921.139,-,-
+1594.5,4635.72330063581,9.99999961853027,9.99999961853027,0,4.213845,593.6995,438.3934,438.3934,955.6061,-148.1575,27.25582,59.41201,-9.211259,27.25582,0,0,3,1.017735,1.085956,0,0,0,3.312747,0.04154791,21.79784,25.15213,0,5921.139,-,-
+1595.5,4638.50107830763,9.99999961853027,9.99999961853027,0,4.279139,593.6995,444.0096,444.0096,955.6061,-148.1575,27.605,59.41201,-9.211259,27.605,0,0,3,1.02472,1.091088,0,0,0,3.312655,0.04154791,22.13498,25.48919,0,5994.235,-,-
+1596.5,4641.27885597944,9.99999961853027,9.99999961853027,0,4.344433,593.6995,449.6253,449.6253,957.7123,-148.1575,27.95414,59.54295,-9.211259,27.95414,0,0,3,1.031702,1.09622,0,0,0,3.312562,0.04154791,22.4721,25.82621,0,6067.323,-,-
+1597.5,4644.05663365126,9.99999961853027,9.99999961853027,0,4.344433,593.6995,449.6253,449.6253,959.8182,-148.1575,27.95414,59.67388,-9.211259,27.95414,0,0,3,1.031702,1.09622,0,0,0,3.312562,0.04154791,22.4721,25.82621,0,6067.323,-,-
+1598.5,4646.83441132307,9.99999961853027,9.99999961853027,0,4.344433,593.6995,449.6253,449.6253,959.8182,-148.1575,27.95414,59.67388,-9.211259,27.95414,0,0,3,1.031702,1.09622,0,0,0,3.312562,0.04154791,22.4721,25.82621,0,6067.323,-,-
+1599.5,4649.61218899488,9.99999961853027,9.99999961853027,0,4.47502,593.6995,460.8552,460.8552,959.8182,-148.1575,28.65232,59.67388,-9.211259,28.65232,0,0,3,1.045666,1.106483,0,0,0,3.312372,0.04154791,23.14625,26.50017,0,6213.48,-,-
+1600.5,4652.3899666667,9.99999961853027,9.99999961853027,0,4.47502,593.6995,460.8552,460.8552,964.0294,-148.1575,28.65232,59.9357,-9.211259,28.65232,0,0,3,1.045666,1.106483,0,0,0,3.312372,0.04154791,23.14625,26.50017,0,6213.48,-,-
+1601.5,4655.16774433851,9.99999961853027,9.99999961853027,0,4.47502,593.6995,460.8552,460.8552,964.0294,-148.1575,28.65232,59.9357,-9.211259,28.65232,0,0,3,1.045666,1.106483,0,0,0,3.312372,0.04154791,23.14625,26.50017,0,6213.48,-,-
+1602.5,4657.94552201033,9.99999961853027,9.99999961853027,0,4.47502,593.6995,460.8552,460.8552,964.0294,-148.1575,28.65232,59.9357,-9.211259,28.65232,0,0,3,1.045666,1.106483,0,0,0,3.312372,0.04154791,23.14625,26.50017,0,6213.48,-,-
+1603.5,4660.72329968214,9.99999961853027,9.99999961853027,0,4.47502,593.6995,460.8552,460.8552,964.0294,-148.1575,28.65232,59.9357,-9.211259,28.65232,0,0,3,1.045666,1.106483,0,0,0,3.312372,0.04154791,23.14625,26.50017,0,6213.48,-,-
+1604.5,4663.50107735395,9.99999961853027,9.99999961853027,0,4.47502,593.6995,460.8552,460.8552,964.0294,-148.1575,28.65232,59.9357,-9.211259,28.65232,0,0,3,1.045666,1.106483,0,0,0,3.312372,0.04154791,23.14625,26.50017,0,6213.48,-,-
+1605.5,4666.27885502577,9.99999961853027,9.99999961853027,0,4.47502,593.6995,460.8552,460.8552,964.0294,-148.1575,28.65232,59.9357,-9.211259,28.65232,0,0,3,1.045666,1.106483,0,0,0,3.312372,0.04154791,23.14625,26.50017,0,6213.48,-,-
+1606.5,4669.05663269758,9.99999961853027,9.99999961853027,0,4.47502,593.6995,460.8552,460.8552,964.0294,-148.1575,28.65232,59.9357,-9.211259,28.65232,0,0,3,1.045666,1.106483,0,0,0,3.312372,0.04154791,23.14625,26.50017,0,6213.48,-,-
+1607.5,4671.8344103694,9.99999961853027,9.99999961853027,0,4.47502,593.6995,460.8552,460.8552,964.0294,-148.1575,28.65232,59.9357,-9.211259,28.65232,0,0,3,1.045666,1.106483,0,0,0,3.312372,0.04154791,23.14625,26.50017,0,6213.48,-,-
+1608.5,4674.61218804121,9.99999961853027,9.99999961853027,0,4.47502,593.6995,460.8552,460.8552,964.0294,-148.1575,28.65232,59.9357,-9.211259,28.65232,0,0,3,1.045666,1.106483,0,0,0,3.312372,0.04154791,23.14625,26.50017,0,6213.48,-,-
+1609.5,4677.38996571302,9.99999961853027,9.99999961853027,0,4.47502,593.6995,460.8552,460.8552,964.0294,-148.1575,28.65232,59.9357,-9.211259,28.65232,0,0,3,1.045666,1.106483,0,0,0,3.312372,0.04154791,23.14625,26.50017,0,6213.48,-,-
+1610.5,4680.16774338484,9.99999961853027,9.99999961853027,0,4.47502,593.6995,460.8552,460.8552,964.0294,-148.1575,28.65232,59.9357,-9.211259,28.65232,0,0,3,1.045666,1.106483,0,0,0,3.312372,0.04154791,23.14625,26.50017,0,6213.48,-,-
+1611.5,4682.94552105665,9.99999961853027,9.99999961853027,0,4.47502,593.6995,460.8552,460.8552,964.0294,-148.1575,28.65232,59.9357,-9.211259,28.65232,0,0,3,1.045666,1.106483,0,0,0,3.312372,0.04154791,23.14625,26.50017,0,6213.48,-,-
+1612.5,4685.72329872847,9.99999961853027,9.99999961853027,0,4.47502,593.6995,460.8552,460.8552,964.0294,-148.1575,28.65232,59.9357,-9.211259,28.65232,0,0,3,1.045666,1.106483,0,0,0,3.312372,0.04154791,23.14625,26.50017,0,6213.48,-,-
+1613.5,4688.50107640028,9.99999961853027,9.99999961853027,0,4.47502,593.6995,460.8552,460.8552,964.0294,-148.1575,28.65232,59.9357,-9.211259,28.65232,0,0,3,1.045666,1.106483,0,0,0,3.312372,0.04154791,23.14625,26.50017,0,6213.48,-,-
+1614.5,4691.27885407209,9.99999961853027,9.99999961853027,0,4.47502,593.6995,460.8552,460.8552,964.0294,-148.1575,28.65232,59.9357,-9.211259,28.65232,0,0,3,1.045666,1.106483,0,0,0,3.312372,0.04154791,23.14625,26.50017,0,6213.48,-,-
+1615.5,4694.05663174391,9.99999961853027,9.99999961853027,0,4.47502,593.6995,460.8552,460.8552,964.0294,-148.1575,28.65232,59.9357,-9.211259,28.65232,0,0,3,1.045666,1.106483,0,0,0,3.312372,0.04154791,23.14625,26.50017,0,6213.48,-,-
+1616.5,4696.83440941572,9.99999961853027,9.99999961853027,0,4.47502,593.6995,460.8552,460.8552,964.0294,-148.1575,28.65232,59.9357,-9.211259,28.65232,0,0,3,1.045666,1.106483,0,0,0,3.312372,0.04154791,23.14625,26.50017,0,6213.48,-,-
+1617.5,4699.61218708754,9.99999961853027,9.99999961853027,0,4.47502,593.6995,460.8552,460.8552,964.0294,-148.1575,28.65232,59.9357,-9.211259,28.65232,0,0,3,1.045666,1.106483,0,0,0,3.312372,0.04154791,23.14625,26.50017,0,6213.48,-,-
+1618.5,4702.38996475935,9.99999961853027,9.99999961853027,0,4.47502,593.6995,460.8552,460.8552,964.0294,-148.1575,28.65232,59.9357,-9.211259,28.65232,0,0,3,1.045666,1.106483,0,0,0,3.312372,0.04154791,23.14625,26.50017,0,6213.48,-,-
+1619.5,4705.16774243116,9.99999961853027,9.99999961853027,0,4.47502,593.6995,460.8552,460.8552,964.0294,-148.1575,28.65232,59.9357,-9.211259,28.65232,0,0,3,1.045666,1.106483,0,0,0,3.312372,0.04154791,23.14625,26.50017,0,6213.48,-,-
+1620.5,4707.94552010298,9.99999961853027,9.99999961853027,0,4.47502,593.6995,460.8552,460.8552,964.0294,-148.1575,28.65232,59.9357,-9.211259,28.65232,0,0,3,1.045666,1.106483,0,0,0,3.312372,0.04154791,23.14625,26.50017,0,6213.48,-,-
+1621.5,4710.72329777479,9.99999961853027,9.99999961853027,0,4.47502,593.6995,460.8552,460.8552,964.0294,-148.1575,28.65232,59.9357,-9.211259,28.65232,0,0,3,1.045666,1.106483,0,0,0,3.312372,0.04154791,23.14625,26.50017,0,6213.48,-,-
+1622.5,4713.50107544661,9.99999961853027,9.99999961853027,0,4.47502,593.6995,460.8552,460.8552,964.0294,-148.1575,28.65232,59.9357,-9.211259,28.65232,0,0,3,1.045666,1.106483,0,0,0,3.312372,0.04154791,23.14625,26.50017,0,6213.48,-,-
+1623.5,4716.27885311842,9.99999961853027,9.99999961853027,0,4.47502,593.6995,460.8552,460.8552,964.0294,-148.1575,28.65232,59.9357,-9.211259,28.65232,0,0,3,1.045666,1.106483,0,0,0,3.312372,0.04154791,23.14625,26.50017,0,6213.48,-,-
+1624.5,4719.05663079023,9.99999961853027,9.99999961853027,0,4.374867,593.6995,452.2426,452.2426,964.0294,-148.1575,28.11686,59.9357,-9.211259,28.11686,0,0,3,1.034956,1.098611,0,0,0,3.312518,0.04154791,22.62923,25.98329,0,6101.387,-,-
+1625.5,4721.83440846205,9.99999961853027,9.99999961853027,0,4.374867,593.6995,452.2426,452.2426,960.7996,-148.1575,28.11686,59.7349,-9.211259,28.11686,0,0,3,1.034956,1.098611,0,0,0,3.312518,0.04154791,22.62923,25.98329,0,6101.387,-,-
+1626.5,4724.61218613386,9.99999961853027,9.99999961853027,0,4.374867,593.6995,452.2426,452.2426,960.7996,-148.1575,28.11686,59.7349,-9.211259,28.11686,0,0,3,1.034956,1.098611,0,0,0,3.312518,0.04154791,22.62923,25.98329,0,6101.387,-,-
+1627.5,4727.38996380568,9.99999961853027,9.99999961853027,0,4.374867,593.6995,452.2426,452.2426,960.7996,-148.1575,28.11686,59.7349,-9.211259,28.11686,0,0,3,1.034956,1.098611,0,0,0,3.312518,0.04154791,22.62923,25.98329,0,6101.387,-,-
+1628.5,4730.16774147749,9.99999961853027,9.99999961853027,0,4.374867,593.6995,452.2426,452.2426,960.7996,-148.1575,28.11686,59.7349,-9.211259,28.11686,0,0,3,1.034956,1.098611,0,0,0,3.312518,0.04154791,22.62923,25.98329,0,6101.387,-,-
+1629.5,4732.9455191493,9.99999961853027,9.99999961853027,0,4.374867,593.6995,452.2426,452.2426,960.7996,-148.1575,28.11686,59.7349,-9.211259,28.11686,0,0,3,1.034956,1.098611,0,0,0,3.312518,0.04154791,22.62923,25.98329,0,6101.387,-,-
+1630.5,4735.72329682112,9.99999961853027,9.99999961853027,0,4.374867,593.6995,452.2426,452.2426,960.7996,-148.1575,28.11686,59.7349,-9.211259,28.11686,0,0,3,1.034956,1.098611,0,0,0,3.312518,0.04154791,22.62923,25.98329,0,6101.387,-,-
+1631.5,4738.50107449293,9.99999961853027,9.99999961853027,0,4.374867,593.6995,452.2426,452.2426,960.7996,-148.1575,28.11686,59.7349,-9.211259,28.11686,0,0,3,1.034956,1.098611,0,0,0,3.312518,0.04154791,22.62923,25.98329,0,6101.387,-,-
+1632.5,4741.27885216475,9.99999961853027,9.99999961853027,0,4.374867,593.6995,452.2426,452.2426,960.7996,-148.1575,28.11686,59.7349,-9.211259,28.11686,0,0,3,1.034956,1.098611,0,0,0,3.312518,0.04154791,22.62923,25.98329,0,6101.387,-,-
+1633.5,4744.05662983656,9.99999961853027,9.99999961853027,0,4.374867,593.6995,452.2426,452.2426,960.7996,-148.1575,28.11686,59.7349,-9.211259,28.11686,0,0,3,1.034956,1.098611,0,0,0,3.312518,0.04154791,22.62923,25.98329,0,6101.387,-,-
+1634.5,4746.83440750837,9.99999961853027,9.99999961853027,0,4.374867,593.6995,452.2426,452.2426,960.7996,-148.1575,28.11686,59.7349,-9.211259,28.11686,0,0,3,1.034956,1.098611,0,0,0,3.312518,0.04154791,22.62923,25.98329,0,6101.387,-,-
+1635.5,4749.61218518019,9.99999961853027,9.99999961853027,0,4.374867,593.6995,452.2426,452.2426,960.7996,-148.1575,28.11686,59.7349,-9.211259,28.11686,0,0,3,1.034956,1.098611,0,0,0,3.312518,0.04154791,22.62923,25.98329,0,6101.387,-,-
+1636.5,4752.389962852,9.99999961853027,9.99999961853027,0,4.374867,593.6995,452.2426,452.2426,960.7996,-148.1575,28.11686,59.7349,-9.211259,28.11686,0,0,3,1.034956,1.098611,0,0,0,3.312518,0.04154791,22.62923,25.98329,0,6101.387,-,-
+1637.5,4755.16774052382,9.99999961853027,9.99999961853027,0,4.374867,593.6995,452.2426,452.2426,960.7996,-148.1575,28.11686,59.7349,-9.211259,28.11686,0,0,3,1.034956,1.098611,0,0,0,3.312518,0.04154791,22.62923,25.98329,0,6101.387,-,-
+1638.5,4757.94551819563,9.99999961853027,9.99999961853027,0,4.374867,593.6995,452.2426,452.2426,960.7996,-148.1575,28.11686,59.7349,-9.211259,28.11686,0,0,3,1.034956,1.098611,0,0,0,3.312518,0.04154791,22.62923,25.98329,0,6101.387,-,-
+1639.5,4760.72329586744,9.99999961853027,9.99999961853027,0,4.374867,593.6995,452.2426,452.2426,960.7996,-148.1575,28.11686,59.7349,-9.211259,28.11686,0,0,3,1.034956,1.098611,0,0,0,3.312518,0.04154791,22.62923,25.98329,0,6101.387,-,-
+1640.5,4763.50107353926,9.99999961853027,9.99999961853027,0,4.374867,593.6995,452.2426,452.2426,960.7996,-148.1575,28.11686,59.7349,-9.211259,28.11686,0,0,3,1.034956,1.098611,0,0,0,3.312518,0.04154791,22.62923,25.98329,0,6101.387,-,-
+1641.5,4766.27885121107,9.99999961853027,9.99999961853027,0,4.374867,593.6995,452.2426,452.2426,960.7996,-148.1575,28.11686,59.7349,-9.211259,28.11686,0,0,3,1.034956,1.098611,0,0,0,3.312518,0.04154791,22.62923,25.98329,0,6101.387,-,-
+1642.5,4769.05662888289,9.99999961853027,9.99999961853027,0,4.374867,593.6995,452.2426,452.2426,960.7996,-148.1575,28.11686,59.7349,-9.211259,28.11686,0,0,3,1.034956,1.098611,0,0,0,3.312518,0.04154791,22.62923,25.98329,0,6101.387,-,-
+1643.5,4771.8344065547,9.99999961853027,9.99999961853027,0,4.374867,593.6995,452.2426,452.2426,960.7996,-148.1575,28.11686,59.7349,-9.211259,28.11686,0,0,3,1.034956,1.098611,0,0,0,3.312518,0.04154791,22.62923,25.98329,0,6101.387,-,-
+1644.5,4774.61218422651,9.99999961853027,9.99999961853027,0,4.374867,593.6995,452.2426,452.2426,960.7996,-148.1575,28.11686,59.7349,-9.211259,28.11686,0,0,3,1.034956,1.098611,0,0,0,3.312518,0.04154791,22.62923,25.98329,0,6101.387,-,-
+1645.5,4777.38996189833,9.99999961853027,9.99999961853027,0,4.374867,593.6995,452.2426,452.2426,960.7996,-148.1575,28.11686,59.7349,-9.211259,28.11686,0,0,3,1.034956,1.098611,0,0,0,3.312518,0.04154791,22.62923,25.98329,0,6101.387,-,-
+1646.5,4780.16773957014,9.99999961853027,9.99999961853027,0,4.26369,593.6995,442.6808,442.6808,960.7996,-148.1575,27.52238,59.7349,-9.211259,27.52238,0,0,3,1.023067,1.089873,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5976.939,-,-
+1647.5,4782.94551724195,9.99999961853027,9.99999961853027,0,4.26369,593.6995,442.6808,442.6808,957.2139,-148.1575,27.52238,59.51197,-9.211259,27.52238,0,0,3,1.023067,1.089873,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5976.939,-,-
+1648.5,4785.72329491377,9.99999961853027,9.99999961853027,0,4.26369,593.6995,442.6808,442.6808,957.2139,-148.1575,27.52238,59.51197,-9.211259,27.52238,0,0,3,1.023067,1.089873,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5976.939,-,-
+1649.5,4788.50107258558,9.99999961853027,9.99999961853027,0,4.26369,593.6995,442.6808,442.6808,957.2139,-148.1575,27.52238,59.51197,-9.211259,27.52238,0,0,3,1.023067,1.089873,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5976.939,-,-
+1650.5,4791.2788502574,9.99999961853027,9.99999961853027,0,4.26369,593.6995,442.6808,442.6808,957.2139,-148.1575,27.52238,59.51197,-9.211259,27.52238,0,0,3,1.023067,1.089873,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5976.939,-,-
+1651.5,4794.05662792921,9.99999961853027,9.99999961853027,0,4.26369,593.6995,442.6808,442.6808,957.2139,-148.1575,27.52238,59.51197,-9.211259,27.52238,0,0,3,1.023067,1.089873,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5976.939,-,-
+1652.5,4796.83440560102,9.99999961853027,9.99999961853027,0,4.26369,593.6995,442.6808,442.6808,957.2139,-148.1575,27.52238,59.51197,-9.211259,27.52238,0,0,3,1.023067,1.089873,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5976.939,-,-
+1653.5,4799.61218327284,9.99999961853027,9.99999961853027,0,4.26369,593.6995,442.6808,442.6808,957.2139,-148.1575,27.52238,59.51197,-9.211259,27.52238,0,0,3,1.023067,1.089873,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5976.939,-,-
+1654.5,4802.38996094465,9.99999961853027,9.99999961853027,0,4.26369,593.6995,442.6808,442.6808,957.2139,-148.1575,27.52238,59.51197,-9.211259,27.52238,0,0,3,1.023067,1.089873,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5976.939,-,-
+1655.5,4805.16773861647,9.99999961853027,9.99999961853027,0,4.26369,593.6995,442.6808,442.6808,957.2139,-148.1575,27.52238,59.51197,-9.211259,27.52238,0,0,3,1.023067,1.089873,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5976.939,-,-
+1656.5,4807.94551628828,9.99999961853027,9.99999961853027,0,4.26369,593.6995,442.6808,442.6808,957.2139,-148.1575,27.52238,59.51197,-9.211259,27.52238,0,0,3,1.023067,1.089873,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5976.939,-,-
+1657.5,4810.72329396009,9.99999961853027,9.99999961853027,0,4.26369,593.6995,442.6808,442.6808,957.2139,-148.1575,27.52238,59.51197,-9.211259,27.52238,0,0,3,1.023067,1.089873,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5976.939,-,-
+1658.5,4813.50107163191,9.99999961853027,9.99999961853027,0,4.26369,593.6995,442.6808,442.6808,957.2139,-148.1575,27.52238,59.51197,-9.211259,27.52238,0,0,3,1.023067,1.089873,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5976.939,-,-
+1659.5,4816.27884930372,9.99999961853027,9.99999961853027,0,4.26369,593.6995,442.6808,442.6808,957.2139,-148.1575,27.52238,59.51197,-9.211259,27.52238,0,0,3,1.023067,1.089873,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5976.939,-,-
+1660.5,4819.05662697554,9.99999961853027,9.99999961853027,0,4.26369,593.6995,442.6808,442.6808,957.2139,-148.1575,27.52238,59.51197,-9.211259,27.52238,0,0,3,1.023067,1.089873,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5976.939,-,-
+1661.5,4821.83440464735,9.99999961853027,9.99999961853027,0,4.26369,593.6995,442.6808,442.6808,957.2139,-148.1575,27.52238,59.51197,-9.211259,27.52238,0,0,3,1.023067,1.089873,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5976.939,-,-
+1662.5,4824.61218231916,9.99999961853027,9.99999961853027,0,4.26369,593.6995,442.6808,442.6808,957.2139,-148.1575,27.52238,59.51197,-9.211259,27.52238,0,0,3,1.023067,1.089873,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5976.939,-,-
+1663.5,4827.38995999098,9.99999961853027,9.99999961853027,0,4.26369,593.6995,442.6808,442.6808,957.2139,-148.1575,27.52238,59.51197,-9.211259,27.52238,0,0,3,1.023067,1.089873,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5976.939,-,-
+1664.5,4830.16773766279,9.99999961853027,9.99999961853027,0,4.26369,593.6995,442.6808,442.6808,957.2139,-148.1575,27.52238,59.51197,-9.211259,27.52238,0,0,3,1.023067,1.089873,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5976.939,-,-
+1665.5,4832.94551533461,9.99999961853027,9.99999961853027,0,4.26369,593.6995,442.6808,442.6808,957.2139,-148.1575,27.52238,59.51197,-9.211259,27.52238,0,0,3,1.023067,1.089873,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5976.939,-,-
+1666.5,4835.72329300642,9.99999961853027,9.99999961853027,0,4.26369,593.6995,442.6808,442.6808,957.2139,-148.1575,27.52238,59.51197,-9.211259,27.52238,0,0,3,1.023067,1.089873,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5976.939,-,-
+1667.5,4838.50107067823,9.99999961853027,9.99999961853027,0,4.26369,593.6995,442.6808,442.6808,957.2139,-148.1575,27.52238,59.51197,-9.211259,27.52238,0,0,3,1.023067,1.089873,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5976.939,-,-
+1668.5,4841.27884835005,9.99999961853027,9.99999961853027,0,4.26369,593.6995,442.6808,442.6808,957.2139,-148.1575,27.52238,59.51197,-9.211259,27.52238,0,0,3,1.023067,1.089873,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5976.939,-,-
+1669.5,4844.05662602186,9.99999961853027,9.99999961853027,0,4.26369,593.6995,442.6808,442.6808,957.2139,-148.1575,27.52238,59.51197,-9.211259,27.52238,0,0,3,1.023067,1.089873,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5976.939,-,-
+1670.5,4846.83440369368,9.99999961853027,9.99999961853027,0,4.26369,593.6995,442.6808,442.6808,957.2139,-148.1575,27.52238,59.51197,-9.211259,27.52238,0,0,3,1.023067,1.089873,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5976.939,-,-
+1671.5,4849.61218136549,9.99999961853027,9.99999961853027,0,4.26369,593.6995,442.6808,442.6808,957.2139,-148.1575,27.52238,59.51197,-9.211259,27.52238,0,0,3,1.023067,1.089873,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5976.939,-,-
+1672.5,4852.3899590373,9.99999961853027,9.99999961853027,0,4.26369,593.6995,442.6808,442.6808,957.2139,-148.1575,27.52238,59.51197,-9.211259,27.52238,0,0,3,1.023067,1.089873,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5976.939,-,-
+1673.5,4855.16773670912,9.99999961853027,9.99999961853027,0,4.26369,593.6995,442.6808,442.6808,957.2139,-148.1575,27.52238,59.51197,-9.211259,27.52238,0,0,3,1.023067,1.089873,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5976.939,-,-
+1674.5,4857.94551438093,9.99999961853027,9.99999961853027,0,4.26369,593.6995,442.6808,442.6808,957.2139,-148.1575,27.52238,59.51197,-9.211259,27.52238,0,0,3,1.023067,1.089873,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5976.939,-,-
+1675.5,4860.72329205275,9.99999961853027,9.99999961853027,0,4.26369,593.6995,442.6808,442.6808,957.2139,-148.1575,27.52238,59.51197,-9.211259,27.52238,0,0,3,1.023067,1.089873,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5976.939,-,-
+1676.5,4863.50106972456,9.99999961853027,9.99999961853027,0,4.26369,593.6995,442.6808,442.6808,957.2139,-148.1575,27.52238,59.51197,-9.211259,27.52238,0,0,3,1.023067,1.089873,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5976.939,-,-
+1677.5,4866.27884739637,9.99999961853027,9.99999961853027,0,4.26369,593.6995,442.6808,442.6808,957.2139,-148.1575,27.52238,59.51197,-9.211259,27.52238,0,0,3,1.023067,1.089873,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5976.939,-,-
+1678.5,4869.05662506819,9.99999961853027,9.99999961853027,0,4.26369,593.6995,442.6808,442.6808,957.2139,-148.1575,27.52238,59.51197,-9.211259,27.52238,0,0,3,1.023067,1.089873,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5976.939,-,-
+1679.5,4871.83440274,9.99999961853027,9.99999961853027,0,4.26369,593.6995,442.6808,442.6808,957.2139,-148.1575,27.52238,59.51197,-9.211259,27.52238,0,0,3,1.023067,1.089873,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5976.939,-,-
+1680.5,4874.61218041182,9.99999961853027,9.99999961853027,0,4.26369,593.6995,442.6808,442.6808,957.2139,-148.1575,27.52238,59.51197,-9.211259,27.52238,0,0,3,1.023067,1.089873,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5976.939,-,-
+1681.5,4877.38995808363,9.99999961853027,9.99999961853027,0,4.26369,593.6995,442.6808,442.6808,957.2139,-148.1575,27.52238,59.51197,-9.211259,27.52238,0,0,3,1.023067,1.089873,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5976.939,-,-
+1682.5,4880.16773575544,9.99999961853027,9.99999961853027,0,4.26369,593.6995,442.6808,442.6808,957.2139,-148.1575,27.52238,59.51197,-9.211259,27.52238,0,0,3,1.023067,1.089873,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5976.939,-,-
+1683.5,4882.94551342726,9.99999961853027,9.99999961853027,0,4.26369,593.6995,442.6808,442.6808,957.2139,-148.1575,27.52238,59.51197,-9.211259,27.52238,0,0,3,1.023067,1.089873,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5976.939,-,-
+1684.5,4885.72329109907,9.99999961853027,9.99999961853027,0,4.26369,593.6995,442.6808,442.6808,957.2139,-148.1575,27.52238,59.51197,-9.211259,27.52238,0,0,3,1.023067,1.089873,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5976.939,-,-
+1685.5,4888.50106877089,9.99999961853027,9.99999961853027,0,4.26369,593.6995,442.6808,442.6808,957.2139,-148.1575,27.52238,59.51197,-9.211259,27.52238,0,0,3,1.023067,1.089873,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5976.939,-,-
+1686.5,4891.2788464427,9.99999961853027,9.99999961853027,0,4.26369,593.6995,442.6808,442.6808,957.2139,-148.1575,27.52238,59.51197,-9.211259,27.52238,0,0,3,1.023067,1.089873,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5976.939,-,-
+1687.5,4894.05662411451,9.99999961853027,9.99999961853027,0,4.26369,593.6995,442.6808,442.6808,957.2139,-148.1575,27.52238,59.51197,-9.211259,27.52238,0,0,3,1.023067,1.089873,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5976.939,-,-
+1688.5,4896.83440178633,9.99999961853027,9.99999961853027,0,4.26369,593.6995,442.6808,442.6808,957.2139,-148.1575,27.52238,59.51197,-9.211259,27.52238,0,0,3,1.023067,1.089873,0,0,0,3.312677,0.04154791,22.05521,25.40944,0,5976.939,-,-
+1689.5,4899.61217945814,9.99999961853027,9.99999961853027,0,4.162775,593.6995,434.0003,434.0003,957.2139,-148.1575,26.9827,59.51197,-9.211259,26.9827,0,0,3,1.012273,1.081939,0,0,0,3.312818,0.04154791,21.53412,24.88848,0,5863.963,-,-
+1690.5,4902.38995712996,9.99999961853027,9.99999961853027,0,4.162775,593.6995,434.0003,434.0003,953.9588,-148.1575,26.9827,59.30959,-9.211259,26.9827,0,0,3,1.012273,1.081939,0,0,0,3.312818,0.04154791,21.53412,24.88848,0,5863.963,-,-
+1691.5,4905.16773480177,9.99999961853027,9.99999961853027,0,4.162775,593.6995,434.0003,434.0003,953.9588,-148.1575,26.9827,59.30959,-9.211259,26.9827,0,0,3,1.012273,1.081939,0,0,0,3.312818,0.04154791,21.53412,24.88848,0,5863.963,-,-
+1692.5,4907.94551247358,9.99999961853027,9.99999961853027,0,4.162775,593.6995,434.0003,434.0003,953.9588,-148.1575,26.9827,59.30959,-9.211259,26.9827,0,0,3,1.012273,1.081939,0,0,0,3.312818,0.04154791,21.53412,24.88848,0,5863.963,-,-
+1693.5,4910.7232901454,9.99999961853027,9.99999961853027,0,4.162775,593.6995,434.0003,434.0003,953.9588,-148.1575,26.9827,59.30959,-9.211259,26.9827,0,0,3,1.012273,1.081939,0,0,0,3.312818,0.04154791,21.53412,24.88848,0,5863.963,-,-
+1694.5,4913.50106781721,9.99999961853027,9.99999961853027,0,4.162775,593.6995,434.0003,434.0003,953.9588,-148.1575,26.9827,59.30959,-9.211259,26.9827,0,0,3,1.012273,1.081939,0,0,0,3.312818,0.04154791,21.53412,24.88848,0,5863.963,-,-
+1695.5,4916.27884548903,9.99999961853027,9.99999961853027,0,4.162775,593.6995,434.0003,434.0003,953.9588,-148.1575,26.9827,59.30959,-9.211259,26.9827,0,0,3,1.012273,1.081939,0,0,0,3.312818,0.04154791,21.53412,24.88848,0,5863.963,-,-
+1696.5,4919.05662316084,9.99999961853027,9.99999961853027,0,4.014036,593.6995,421.2039,421.2039,953.9588,-148.1575,26.18712,59.30959,-9.211259,26.18712,0,0,3,0.9963613,1.070244,0,0,0,3.313019,0.04154791,20.76595,24.12051,0,5711.99,-,-
+1697.5,4921.83440083265,9.99999961853027,9.99999961853027,0,4.014036,593.6995,421.2039,421.2039,949.1602,-148.1575,26.18712,59.01125,-9.211259,26.18712,0,0,3,0.9963613,1.070244,0,0,0,3.313019,0.04154791,20.76595,24.12051,0,5711.99,-,-
+1698.5,4924.61217850447,9.99999961853027,9.99999961853027,0,4.014036,593.6995,421.2039,421.2039,949.1602,-148.1575,26.18712,59.01125,-9.211259,26.18712,0,0,3,0.9963613,1.070244,0,0,0,3.313019,0.04154791,20.76595,24.12051,0,5711.99,-,-
+1699.5,4927.38995617628,9.99999961853027,9.99999961853027,0,4.014036,593.6995,421.2039,421.2039,949.1602,-148.1575,26.18712,59.01125,-9.211259,26.18712,0,0,3,0.9963613,1.070244,0,0,0,3.313019,0.04154791,20.76595,24.12051,0,5711.99,-,-
+1700.5,4930.16773384809,9.99999961853027,9.99999961853027,0,4.014036,593.6995,421.2039,421.2039,949.1602,-148.1575,26.18712,59.01125,-9.211259,26.18712,0,0,3,0.9963613,1.070244,0,0,0,3.313019,0.04154791,20.76595,24.12051,0,5711.99,-,-
+1701.5,4932.94551151991,9.99999961853027,9.99999961853027,0,4.014036,593.6995,421.2039,421.2039,949.1602,-148.1575,26.18712,59.01125,-9.211259,26.18712,0,0,3,0.9963613,1.070244,0,0,0,3.313019,0.04154791,20.76595,24.12051,0,5711.99,-,-
+1702.5,4935.72328919172,9.99999961853027,9.99999961853027,0,4.014036,593.6995,421.2039,421.2039,949.1602,-148.1575,26.18712,59.01125,-9.211259,26.18712,0,0,3,0.9963613,1.070244,0,0,0,3.313019,0.04154791,20.76595,24.12051,0,5711.99,-,-
+1703.5,4938.50106686354,9.99999961853027,9.99999961853027,0,3.939658,593.6995,414.8042,414.8042,949.1602,-148.1575,25.78923,59.01125,-9.211259,25.78923,0,0,3,0.9884043,1.064396,0,0,0,3.313117,0.04154791,20.38177,23.73643,0,5637.753,-,-
+1704.5,4941.27884453535,9.99999961853027,9.99999961853027,0,3.865281,593.6995,408.4038,408.4038,946.7602,-148.1575,25.39131,58.86204,-9.211259,25.39131,0,0,3,0.9804446,1.058547,0,0,0,3.313213,0.04154791,19.99756,23.35232,0,5563.509,-,-
+1705.5,4944.05662220716,9.99999961853027,9.99999961853027,0,3.865281,593.6995,408.4038,408.4038,944.3601,-148.1575,25.39131,58.71282,-9.211259,25.39131,0,0,3,0.9804446,1.058547,0,0,0,3.313213,0.04154791,19.99756,23.35232,0,5563.509,-,-
+1706.5,4946.83439987898,9.99999961853027,9.99999961853027,0,3.865281,593.6995,408.4038,408.4038,944.3601,-148.1575,25.39131,58.71282,-9.211259,25.39131,0,0,3,0.9804446,1.058547,0,0,0,3.313213,0.04154791,19.99756,23.35232,0,5563.509,-,-
+1707.5,4949.61217755079,9.99999961853027,9.99999961853027,0,3.865281,593.6995,408.4038,408.4038,944.3601,-148.1575,25.39131,58.71282,-9.211259,25.39131,0,0,3,0.9804446,1.058547,0,0,0,3.313213,0.04154791,19.99756,23.35232,0,5563.509,-,-
+1708.5,4952.38995522261,9.99999961853027,9.99999961853027,0,3.865281,593.6995,408.4038,408.4038,944.3601,-148.1575,25.39131,58.71282,-9.211259,25.39131,0,0,3,0.9804446,1.058547,0,0,0,3.313213,0.04154791,19.99756,23.35232,0,5563.509,-,-
+1709.5,4955.16773289442,9.99999961853027,9.99999961853027,0,3.865281,593.6995,408.4038,408.4038,944.3601,-148.1575,25.39131,58.71282,-9.211259,25.39131,0,0,3,0.9804446,1.058547,0,0,0,3.313213,0.04154791,19.99756,23.35232,0,5563.509,-,-
+1710.5,4957.94551056623,9.99999961853027,9.99999961853027,0,3.865281,593.6995,408.4038,408.4038,944.3601,-148.1575,25.39131,58.71282,-9.211259,25.39131,0,0,3,0.9804446,1.058547,0,0,0,3.313213,0.04154791,19.99756,23.35232,0,5563.509,-,-
+1711.5,4960.72328823805,9.99999961853027,9.99999961853027,0,3.716526,593.6995,395.6014,395.6014,944.3601,-148.1575,24.59536,58.71282,-9.211259,24.59536,0,0,3,0.9645264,1.046847,0,0,0,3.313399,0.04154791,19.22904,22.58398,0,5418.96,-,-
+1712.5,4963.50106590986,9.99999961853027,9.99999961853027,0,3.716526,593.6995,395.6014,395.6014,939.5592,-148.1575,24.59536,58.41434,-9.211259,24.59536,0,0,3,0.9645264,1.046847,0,0,0,3.313399,0.04154791,19.22904,22.58398,0,5418.96,-,-
+1713.5,4966.27884358168,9.99999961853027,9.99999961853027,0,3.716526,593.6995,395.6014,395.6014,939.5592,-148.1575,24.59536,58.41434,-9.211259,24.59536,0,0,3,0.9645264,1.046847,0,0,0,3.313399,0.04154791,19.22904,22.58398,0,5418.96,-,-
+1714.5,4969.05662125349,9.99999961853027,9.99999961853027,0,3.716526,593.6995,395.6014,395.6014,939.5592,-148.1575,24.59536,58.41434,-9.211259,24.59536,0,0,3,0.9645264,1.046847,0,0,0,3.313399,0.04154791,19.22904,22.58398,0,5418.96,-,-
+1715.5,4971.8343989253,9.99999961853027,9.99999961853027,0,3.716526,593.6995,395.6014,395.6014,939.5592,-148.1575,24.59536,58.41434,-9.211259,24.59536,0,0,3,0.9645264,1.046847,0,0,0,3.313399,0.04154791,19.22904,22.58398,0,5418.96,-,-
+1716.5,4974.61217659712,9.99999961853027,9.99999961853027,0,3.716526,593.6995,395.6014,395.6014,939.5592,-148.1575,24.59536,58.41434,-9.211259,24.59536,0,0,3,0.9645264,1.046847,0,0,0,3.313399,0.04154791,19.22904,22.58398,0,5418.96,-,-
+1717.5,4977.38995426893,9.99999961853027,9.99999961853027,0,3.716526,593.6995,395.6014,395.6014,939.5592,-148.1575,24.59536,58.41434,-9.211259,24.59536,0,0,3,0.9645264,1.046847,0,0,0,3.313399,0.04154791,19.22904,22.58398,0,5418.96,-,-
+1718.5,4980.16773194075,9.99999961853027,9.99999961853027,0,3.567958,593.6995,382.8127,382.8127,939.5592,-148.1575,23.80026,58.41434,-9.211259,23.80026,0,0,3,0.9486237,1.035158,0,0,0,3.313578,0.04154791,18.46135,21.81648,0,5282.122,-,-
+1719.5,4982.94550961256,9.99999961853027,9.99999961853027,0,3.567958,593.6995,382.8127,382.8127,934.7635,-148.1575,23.80026,58.11618,-9.211259,23.80026,0,0,3,0.9486237,1.035158,0,0,0,3.313578,0.04154791,18.46135,21.81648,0,5282.122,-,-
+1720.5,4985.72328728437,9.99999961853027,9.99999961853027,0,3.567958,593.6995,382.8127,382.8127,934.7635,-148.1575,23.80026,58.11618,-9.211259,23.80026,0,0,3,0.9486237,1.035158,0,0,0,3.313578,0.04154791,18.46135,21.81648,0,5282.122,-,-
+1721.5,4988.50106495619,9.99999961853027,9.99999961853027,0,3.567958,593.6995,382.8127,382.8127,934.7635,-148.1575,23.80026,58.11618,-9.211259,23.80026,0,0,3,0.9486237,1.035158,0,0,0,3.313578,0.04154791,18.46135,21.81648,0,5282.122,-,-
+1722.5,4991.278842628,9.99999961853027,9.99999961853027,0,3.567958,593.6995,382.8127,382.8127,934.7635,-148.1575,23.80026,58.11618,-9.211259,23.80026,0,0,3,0.9486237,1.035158,0,0,0,3.313578,0.04154791,18.46135,21.81648,0,5282.122,-,-
+1723.5,4994.05662029982,9.99999961853027,9.99999961853027,0,3.567958,593.6995,382.8127,382.8127,934.7635,-148.1575,23.80026,58.11618,-9.211259,23.80026,0,0,3,0.9486237,1.035158,0,0,0,3.313578,0.04154791,18.46135,21.81648,0,5282.122,-,-
+1724.5,4996.83439797163,9.99999961853027,9.99999961853027,0,3.567958,593.6995,382.8127,382.8127,934.7635,-148.1575,23.80026,58.11618,-9.211259,23.80026,0,0,3,0.9486237,1.035158,0,0,0,3.313578,0.04154791,18.46135,21.81648,0,5282.122,-,-
+1725.5,4999.61217564344,9.99999961853027,9.99999961853027,0,3.419514,593.6995,370.0327,370.0327,934.7635,-148.1575,23.0057,58.11618,-9.211259,23.0057,0,0,3,0.9327325,1.023477,0,0,0,3.31375,0.04154791,17.69419,21.04949,0,5145.375,-,-
+1726.5,5002.38995331526,9.99999961853027,9.99999961853027,0,3.419514,593.6995,370.0327,370.0327,929.9709,-148.1575,23.0057,57.81822,-9.211259,23.0057,0,0,3,0.9327325,1.023477,0,0,0,3.31375,0.04154791,17.69419,21.04949,0,5145.375,-,-
+1727.5,5005.16773098707,9.99999961853027,9.99999961853027,0,3.419514,593.6995,370.0327,370.0327,929.9709,-148.1575,23.0057,57.81822,-9.211259,23.0057,0,0,3,0.9327325,1.023477,0,0,0,3.31375,0.04154791,17.69419,21.04949,0,5145.375,-,-
+1728.5,5007.94550865889,9.99999961853027,9.99999961853027,0,3.419514,593.6995,370.0327,370.0327,929.9709,-148.1575,23.0057,57.81822,-9.211259,23.0057,0,0,3,0.9327325,1.023477,0,0,0,3.31375,0.04154791,17.69419,21.04949,0,5145.375,-,-
+1729.5,5010.7232863307,9.99999961853027,9.99999961853027,0,3.419514,593.6995,370.0327,370.0327,929.9709,-148.1575,23.0057,57.81822,-9.211259,23.0057,0,0,3,0.9327325,1.023477,0,0,0,3.31375,0.04154791,17.69419,21.04949,0,5145.375,-,-
+1730.5,5013.50106400251,9.99999961853027,9.99999961853027,0,3.419514,593.6995,370.0327,370.0327,929.9709,-148.1575,23.0057,57.81822,-9.211259,23.0057,0,0,3,0.9327325,1.023477,0,0,0,3.31375,0.04154791,17.69419,21.04949,0,5145.375,-,-
+1731.5,5016.27884167433,9.99999961853027,9.99999961853027,0,3.419514,593.6995,370.0327,370.0327,929.9709,-148.1575,23.0057,57.81822,-9.211259,23.0057,0,0,3,0.9327325,1.023477,0,0,0,3.31375,0.04154791,17.69419,21.04949,0,5145.375,-,-
+1732.5,5019.05661934614,9.99999961853027,9.99999961853027,0,3.271069,593.6995,357.2505,357.2505,929.9709,-148.1575,22.21101,57.81822,-9.211259,22.21101,0,0,3,0.9168392,1.011796,0,0,0,3.313914,0.04154791,16.92691,20.28237,0,5008.606,-,-
+1733.5,5021.83439701796,9.99999961853027,9.99999961853027,0,3.271069,593.6995,357.2505,357.2505,925.1777,-148.1575,22.21101,57.52021,-9.211259,22.21101,0,0,3,0.9168392,1.011796,0,0,0,3.313914,0.04154791,16.92691,20.28237,0,5008.606,-,-
+1734.5,5024.61217468977,9.99999961853027,9.99999961853027,0,3.271069,593.6995,357.2505,357.2505,925.1777,-148.1575,22.21101,57.52021,-9.211259,22.21101,0,0,3,0.9168392,1.011796,0,0,0,3.313914,0.04154791,16.92691,20.28237,0,5008.606,-,-
+1735.5,5027.38995236158,9.99999961853027,9.99999961853027,0,3.271069,593.6995,357.2505,357.2505,925.1777,-148.1575,22.21101,57.52021,-9.211259,22.21101,0,0,3,0.9168392,1.011796,0,0,0,3.313914,0.04154791,16.92691,20.28237,0,5008.606,-,-
+1736.5,5030.1677300334,9.99999961853027,9.99999961853027,0,3.271069,593.6995,357.2505,357.2505,925.1777,-148.1575,22.21101,57.52021,-9.211259,22.21101,0,0,3,0.9168392,1.011796,0,0,0,3.313914,0.04154791,16.92691,20.28237,0,5008.606,-,-
+1737.5,5032.94550770521,9.99999961853027,9.99999961853027,0,3.271069,593.6995,357.2505,357.2505,925.1777,-148.1575,22.21101,57.52021,-9.211259,22.21101,0,0,3,0.9168392,1.011796,0,0,0,3.313914,0.04154791,16.92691,20.28237,0,5008.606,-,-
+1738.5,5035.72328537703,9.99999961853027,9.99999961853027,0,3.271069,593.6995,357.2505,357.2505,925.1777,-148.1575,22.21101,57.52021,-9.211259,22.21101,0,0,3,0.9168392,1.011796,0,0,0,3.313914,0.04154791,16.92691,20.28237,0,5008.606,-,-
+1739.5,5038.50106304884,9.99999961853027,9.99999961853027,0,3.19708,593.6995,350.8788,350.8788,925.1777,-148.1575,21.81486,57.52021,-9.211259,21.81486,0,0,3,0.9089164,1.005972,0,0,0,3.313993,0.04154791,16.54443,19.89997,0,4940.428,-,-
+1740.5,5041.27884072065,9.99999961853027,9.99999961853027,0,3.123091,593.6995,344.5065,344.5065,922.7882,-148.1575,21.41868,57.37165,-9.211259,21.41868,0,0,3,0.9009925,1.00015,0,0,0,3.314071,0.04154791,16.16192,19.51754,0,4872.245,-,-
+1741.5,5044.05661839247,9.99999961853027,9.99999961853027,0,3.123091,593.6995,344.5065,344.5065,920.3986,-148.1575,21.41868,57.22309,-9.211259,21.41868,0,0,3,0.9009925,1.00015,0,0,0,3.314071,0.04154791,16.16192,19.51754,0,4872.245,-,-
+1742.5,5046.83439606428,9.99999961853027,9.99999961853027,0,3.123091,593.6995,344.5065,344.5065,920.3986,-148.1575,21.41868,57.22309,-9.211259,21.41868,0,0,3,0.9009925,1.00015,0,0,0,3.314071,0.04154791,16.16192,19.51754,0,4872.245,-,-
+1743.5,5049.6121737361,9.99999961853027,9.99999961853027,0,3.123091,593.6995,344.5065,344.5065,920.3986,-148.1575,21.41868,57.22309,-9.211259,21.41868,0,0,3,0.9009925,1.00015,0,0,0,3.314071,0.04154791,16.16192,19.51754,0,4872.245,-,-
+1744.5,5052.38995140791,9.99999961853027,9.99999961853027,0,3.123091,593.6995,344.5065,344.5065,920.3986,-148.1575,21.41868,57.22309,-9.211259,21.41868,0,0,3,0.9009925,1.00015,0,0,0,3.314071,0.04154791,16.16192,19.51754,0,4872.245,-,-
+1745.5,5055.16772907972,9.99999961853027,9.99999961853027,0,3.123091,593.6995,344.5065,344.5065,920.3986,-148.1575,21.41868,57.22309,-9.211259,21.41868,0,0,3,0.9009925,1.00015,0,0,0,3.314071,0.04154791,16.16192,19.51754,0,4872.245,-,-
+1746.5,5057.94550675154,9.99999961853027,9.99999961853027,0,3.123091,593.6995,344.5065,344.5065,920.3986,-148.1575,21.41868,57.22309,-9.211259,21.41868,0,0,3,0.9009925,1.00015,0,0,0,3.314071,0.04154791,16.16192,19.51754,0,4872.245,-,-
+1747.5,5060.72328442335,9.99999961853027,9.99999961853027,0,2.975682,593.6995,331.8097,331.8097,920.3986,-148.1575,20.62929,57.22309,-9.211259,20.62929,0,0,3,0.8852049,0.9885449,0,0,0,3.31422,0.04154791,15.39978,18.75554,0,4736.389,-,-
+1748.5,5063.50106209517,9.99999961853027,9.99999961853027,0,2.975682,593.6995,331.8097,331.8097,915.6373,-148.1575,20.62929,56.92707,-9.211259,20.62929,0,0,3,0.8852049,0.9885449,0,0,0,3.31422,0.04154791,15.39978,18.75554,0,4736.389,-,-
+1749.5,5066.27883976698,9.99999961853027,9.99999961853027,0,2.975682,593.6995,331.8097,331.8097,915.6373,-148.1575,20.62929,56.92707,-9.211259,20.62929,0,0,3,0.8852049,0.9885449,0,0,0,3.31422,0.04154791,15.39978,18.75554,0,4736.389,-,-
+1750.5,5069.05661743879,9.99999961853027,9.99999961853027,0,2.975682,593.6995,331.8097,331.8097,915.6373,-148.1575,20.62929,56.92707,-9.211259,20.62929,0,0,3,0.8852049,0.9885449,0,0,0,3.31422,0.04154791,15.39978,18.75554,0,4736.389,-,-
+1751.5,5071.83439511061,9.99999961853027,9.99999961853027,0,2.975682,593.6995,331.8097,331.8097,915.6373,-148.1575,20.62929,56.92707,-9.211259,20.62929,0,0,3,0.8852049,0.9885449,0,0,0,3.31422,0.04154791,15.39978,18.75554,0,4736.389,-,-
+1752.5,5074.61217278242,9.99999961853027,9.99999961853027,0,2.975682,593.6995,331.8097,331.8097,915.6373,-148.1575,20.62929,56.92707,-9.211259,20.62929,0,0,3,0.8852049,0.9885449,0,0,0,3.31422,0.04154791,15.39978,18.75554,0,4736.389,-,-
+1753.5,5077.38995045424,9.99999961853027,9.99999961853027,0,2.975682,593.6995,331.8097,331.8097,915.6373,-148.1575,20.62929,56.92707,-9.211259,20.62929,0,0,3,0.8852049,0.9885449,0,0,0,3.31422,0.04154791,15.39978,18.75554,0,4736.389,-,-
+1754.5,5080.16772812605,9.99999961853027,9.99999961853027,0,2.828273,593.6995,319.1111,319.1111,915.6373,-148.1575,19.83979,56.92707,-9.211259,19.83979,0,0,3,0.8694147,0.9769394,0,0,0,3.314361,0.04154791,14.63753,17.99344,0,4600.513,-,-
+1755.5,5082.94550579786,9.99999961853027,9.99999961853027,0,2.828273,593.6995,319.1111,319.1111,910.8754,-148.1575,19.83979,56.631,-9.211259,19.83979,0,0,3,0.8694147,0.9769394,0,0,0,3.314361,0.04154791,14.63753,17.99344,0,4600.513,-,-
+1756.5,5085.72328346968,9.99999961853027,9.99999961853027,0,2.828273,593.6995,319.1111,319.1111,910.8754,-148.1575,19.83979,56.631,-9.211259,19.83979,0,0,3,0.8694147,0.9769394,0,0,0,3.314361,0.04154791,14.63753,17.99344,0,4600.513,-,-
+1757.5,5088.50106114149,9.99999961853027,9.99999961853027,0,2.828273,593.6995,319.1111,319.1111,910.8754,-148.1575,19.83979,56.631,-9.211259,19.83979,0,0,3,0.8694147,0.9769394,0,0,0,3.314361,0.04154791,14.63753,17.99344,0,4600.513,-,-
+1758.5,5091.2788388133,9.99999961853027,9.99999961853027,0,2.828273,593.6995,319.1111,319.1111,910.8754,-148.1575,19.83979,56.631,-9.211259,19.83979,0,0,3,0.8694147,0.9769394,0,0,0,3.314361,0.04154791,14.63753,17.99344,0,4600.513,-,-
+1759.5,5094.05661648512,9.99999961853027,9.99999961853027,0,2.828273,593.6995,319.1111,319.1111,910.8754,-148.1575,19.83979,56.631,-9.211259,19.83979,0,0,3,0.8694147,0.9769394,0,0,0,3.314361,0.04154791,14.63753,17.99344,0,4600.513,-,-
+1760.5,5096.83439415693,9.99999961853027,9.99999961853027,0,2.828273,593.6995,319.1111,319.1111,910.8754,-148.1575,19.83979,56.631,-9.211259,19.83979,0,0,3,0.8694147,0.9769394,0,0,0,3.314361,0.04154791,14.63753,17.99344,0,4600.513,-,-
+1761.5,5099.61217182875,9.99999961853027,9.99999961853027,0,2.828273,593.6995,319.1111,319.1111,910.8754,-148.1575,19.83979,56.631,-9.211259,19.83979,0,0,3,0.8694147,0.9769394,0,0,0,3.314361,0.04154791,14.63753,17.99344,0,4600.513,-,-
+1762.5,5102.38994950056,9.99999961853027,9.99999961853027,0,2.828273,593.6995,319.1111,319.1111,910.8754,-148.1575,19.83979,56.631,-9.211259,19.83979,0,0,3,0.8694147,0.9769394,0,0,0,3.314361,0.04154791,14.63753,17.99344,0,4600.513,-,-
+1763.5,5105.16772717237,9.99999961853027,9.99999961853027,0,2.828273,593.6995,319.1111,319.1111,910.8754,-148.1575,19.83979,56.631,-9.211259,19.83979,0,0,3,0.8694147,0.9769394,0,0,0,3.314361,0.04154791,14.63753,17.99344,0,4600.513,-,-
+1764.5,5107.94550484419,9.99999961853027,9.99999961853027,0,2.828273,593.6995,319.1111,319.1111,910.8754,-148.1575,19.83979,56.631,-9.211259,19.83979,0,0,3,0.8694147,0.9769394,0,0,0,3.314361,0.04154791,14.63753,17.99344,0,4600.513,-,-
+1765.5,5110.723282516,9.99999961853027,9.99999961853027,0,2.828273,593.6995,319.1111,319.1111,910.8754,-148.1575,19.83979,56.631,-9.211259,19.83979,0,0,3,0.8694147,0.9769394,0,0,0,3.314361,0.04154791,14.63753,17.99344,0,4600.513,-,-
+1766.5,5113.50106018782,9.99999961853027,9.99999961853027,0,2.828273,593.6995,319.1111,319.1111,910.8754,-148.1575,19.83979,56.631,-9.211259,19.83979,0,0,3,0.8694147,0.9769394,0,0,0,3.314361,0.04154791,14.63753,17.99344,0,4600.513,-,-
+1767.5,5116.27883785963,9.99999961853027,9.99999961853027,0,2.828273,593.6995,319.1111,319.1111,910.8754,-148.1575,19.83979,56.631,-9.211259,19.83979,0,0,3,0.8694147,0.9769394,0,0,0,3.314361,0.04154791,14.63753,17.99344,0,4600.513,-,-
+1768.5,5119.05661553144,9.99999961853027,9.99999961853027,0,2.828273,593.6995,319.1111,319.1111,910.8754,-148.1575,19.83979,56.631,-9.211259,19.83979,0,0,3,0.8694147,0.9769394,0,0,0,3.314361,0.04154791,14.63753,17.99344,0,4600.513,-,-
+1769.5,5121.83439320326,9.99999961853027,9.99999961853027,0,2.828273,593.6995,319.1111,319.1111,910.8754,-148.1575,19.83979,56.631,-9.211259,19.83979,0,0,3,0.8694147,0.9769394,0,0,0,3.314361,0.04154791,14.63753,17.99344,0,4600.513,-,-
+1770.5,5124.61217087507,9.99999961853027,9.99999961853027,0,2.828273,593.6995,319.1111,319.1111,910.8754,-148.1575,19.83979,56.631,-9.211259,19.83979,0,0,3,0.8694147,0.9769394,0,0,0,3.314361,0.04154791,14.63753,17.99344,0,4600.513,-,-
+1771.5,5127.38994854689,9.99999961853027,9.99999961853027,0,2.828273,593.6995,319.1111,319.1111,910.8754,-148.1575,19.83979,56.631,-9.211259,19.83979,0,0,3,0.8694147,0.9769394,0,0,0,3.314361,0.04154791,14.63753,17.99344,0,4600.513,-,-
+1772.5,5130.1677262187,9.99999961853027,9.99999961853027,0,2.679824,593.6995,306.321,306.321,910.8754,-148.1575,19.04461,56.631,-9.211259,19.04461,0,0,3,0.8535107,0.9652503,0,0,0,3.314497,0.04154791,13.86981,17.22585,0,4463.66,-,-
+1773.5,5132.94550389051,9.99999961853027,9.99999961853027,0,2.679824,593.6995,306.321,306.321,906.079,-148.1575,19.04461,56.33281,-9.211259,19.04461,0,0,3,0.8535107,0.9652503,0,0,0,3.314497,0.04154791,13.86981,17.22585,0,4463.66,-,-
+1774.5,5135.72328156233,9.99999961853027,9.99999961853027,0,2.679824,593.6995,306.321,306.321,906.079,-148.1575,19.04461,56.33281,-9.211259,19.04461,0,0,3,0.8535107,0.9652503,0,0,0,3.314497,0.04154791,13.86981,17.22585,0,4463.66,-,-
+1775.5,5138.50105923414,9.99999961853027,9.99999961853027,0,2.679824,593.6995,306.321,306.321,906.079,-148.1575,19.04461,56.33281,-9.211259,19.04461,0,0,3,0.8535107,0.9652503,0,0,0,3.314497,0.04154791,13.86981,17.22585,0,4463.66,-,-
+1776.5,5141.27883690596,9.99999961853027,9.99999961853027,0,2.679824,593.6995,306.321,306.321,906.079,-148.1575,19.04461,56.33281,-9.211259,19.04461,0,0,3,0.8535107,0.9652503,0,0,0,3.314497,0.04154791,13.86981,17.22585,0,4463.66,-,-
+1777.5,5144.05661457777,9.99999961853027,9.99999961853027,0,2.679824,593.6995,306.321,306.321,906.079,-148.1575,19.04461,56.33281,-9.211259,19.04461,0,0,3,0.8535107,0.9652503,0,0,0,3.314497,0.04154791,13.86981,17.22585,0,4463.66,-,-
+1778.5,5146.83439224958,9.99999961853027,9.99999961853027,0,2.679824,593.6995,306.321,306.321,906.079,-148.1575,19.04461,56.33281,-9.211259,19.04461,0,0,3,0.8535107,0.9652503,0,0,0,3.314497,0.04154791,13.86981,17.22585,0,4463.66,-,-
+1779.5,5149.6121699214,9.99999961853027,9.99999961853027,0,2.561917,593.6995,296.1613,296.1613,906.079,-148.1575,18.41296,56.33281,-9.211259,18.41296,0,0,3,0.8408777,0.9559648,0,0,0,3.314599,0.04154791,13.25997,16.61612,0,4354.952,-,-
+1780.5,5152.38994759321,9.99999961853027,9.99999961853027,0,2.561917,593.6995,296.1613,296.1613,902.2692,-148.1575,18.41296,56.09594,-9.211259,18.41296,0,0,3,0.8408777,0.9559648,0,0,0,3.314599,0.04154791,13.25997,16.61612,0,4354.952,-,-
+1781.5,5155.16772526503,9.99999961853027,9.99999961853027,0,2.561917,593.6995,296.1613,296.1613,902.2692,-148.1575,18.41296,56.09594,-9.211259,18.41296,0,0,3,0.8408777,0.9559648,0,0,0,3.314599,0.04154791,13.25997,16.61612,0,4354.952,-,-
+1782.5,5157.94550293684,9.99999961853027,9.99999961853027,0,2.561917,593.6995,296.1613,296.1613,902.2692,-148.1575,18.41296,56.09594,-9.211259,18.41296,0,0,3,0.8408777,0.9559648,0,0,0,3.314599,0.04154791,13.25997,16.61612,0,4354.952,-,-
+1783.5,5160.72328060865,9.99999961853027,9.99999961853027,0,2.561917,593.6995,296.1613,296.1613,902.2692,-148.1575,18.41296,56.09594,-9.211259,18.41296,0,0,3,0.8408777,0.9559648,0,0,0,3.314599,0.04154791,13.25997,16.61612,0,4354.952,-,-
+1784.5,5163.50105828047,9.99999961853027,9.99999961853027,0,2.561917,593.6995,296.1613,296.1613,902.2692,-148.1575,18.41296,56.09594,-9.211259,18.41296,0,0,3,0.8408777,0.9559648,0,0,0,3.314599,0.04154791,13.25997,16.61612,0,4354.952,-,-
+1785.5,5166.27883595228,9.99999961853027,9.99999961853027,0,2.561917,593.6995,296.1613,296.1613,902.2692,-148.1575,18.41296,56.09594,-9.211259,18.41296,0,0,3,0.8408777,0.9559648,0,0,0,3.314599,0.04154791,13.25997,16.61612,0,4354.952,-,-
+1786.5,5169.0566136241,9.99999961853027,9.99999961853027,0,2.443964,593.6995,285.9966,285.9966,902.2692,-148.1575,17.781,56.09594,-9.211259,17.781,0,0,3,0.8282384,0.9466749,0,0,0,3.314697,0.04154791,12.64984,16.00609,0,4246.189,-,-
+1787.5,5171.83439129591,9.99999961853027,9.99999961853027,0,2.443964,593.6995,285.9966,285.9966,898.4574,-148.1575,17.781,55.85896,-9.211259,17.781,0,0,3,0.8282384,0.9466749,0,0,0,3.314697,0.04154791,12.64984,16.00609,0,4246.189,-,-
+1788.5,5174.61216896772,9.99999961853027,9.99999961853027,0,2.443964,593.6995,285.9966,285.9966,898.4574,-148.1575,17.781,55.85896,-9.211259,17.781,0,0,3,0.8282384,0.9466749,0,0,0,3.314697,0.04154791,12.64984,16.00609,0,4246.189,-,-
+1789.5,5177.38994663954,9.99999961853027,9.99999961853027,0,2.443964,593.6995,285.9966,285.9966,898.4574,-148.1575,17.781,55.85896,-9.211259,17.781,0,0,3,0.8282384,0.9466749,0,0,0,3.314697,0.04154791,12.64984,16.00609,0,4246.189,-,-
+1790.5,5180.16772431135,9.99999961853027,9.99999961853027,0,2.443964,593.6995,285.9966,285.9966,898.4574,-148.1575,17.781,55.85896,-9.211259,17.781,0,0,3,0.8282384,0.9466749,0,0,0,3.314697,0.04154791,12.64984,16.00609,0,4246.189,-,-
+1791.5,5182.94550198317,9.99999961853027,9.99999961853027,0,2.443964,593.6995,285.9966,285.9966,898.4574,-148.1575,17.781,55.85896,-9.211259,17.781,0,0,3,0.8282384,0.9466749,0,0,0,3.314697,0.04154791,12.64984,16.00609,0,4246.189,-,-
+1792.5,5185.72327965498,9.99999961853027,9.99999961853027,0,2.443964,593.6995,285.9966,285.9966,898.4574,-148.1575,17.781,55.85896,-9.211259,17.781,0,0,3,0.8282384,0.9466749,0,0,0,3.314697,0.04154791,12.64984,16.00609,0,4246.189,-,-
+1793.5,5188.50105732679,9.99999961853027,9.99999961853027,0,2.384856,593.6995,280.9026,280.9026,898.4574,-148.1575,17.46429,55.85896,-9.211259,17.46429,0,0,3,0.8219051,0.9420193,0,0,0,3.314744,0.04154791,12.34408,15.70037,0,4191.683,-,-
+1794.5,5191.27883499861,9.99999961853027,9.99999961853027,0,2.325747,593.6995,275.8083,275.8083,896.5471,-148.1575,17.14757,55.74019,-9.211259,17.14757,0,0,3,0.8155705,0.9373637,0,0,0,3.31479,0.04154791,12.0383,15.39464,0,4137.174,-,-
+1795.5,5194.05661267042,9.99999961853027,9.99999961853027,0,2.325747,593.6995,275.8083,275.8083,894.6368,-148.1575,17.14757,55.62142,-9.211259,17.14757,0,0,3,0.8155705,0.9373637,0,0,0,3.31479,0.04154791,12.0383,15.39464,0,4137.174,-,-
+1796.5,5196.83439034224,9.99999961853027,9.99999961853027,0,2.325747,593.6995,275.8083,275.8083,894.6368,-148.1575,17.14757,55.62142,-9.211259,17.14757,0,0,3,0.8155705,0.9373637,0,0,0,3.31479,0.04154791,12.0383,15.39464,0,4137.174,-,-
+1797.5,5199.61216801405,9.99999961853027,9.99999961853027,0,2.325747,593.6995,275.8083,275.8083,894.6368,-148.1575,17.14757,55.62142,-9.211259,17.14757,0,0,3,0.8155705,0.9373637,0,0,0,3.31479,0.04154791,12.0383,15.39464,0,4137.174,-,-
+1798.5,5202.38994568586,9.99999961853027,9.99999961853027,0,2.325747,593.6995,275.8083,275.8083,894.6368,-148.1575,17.14757,55.62142,-9.211259,17.14757,0,0,3,0.8155705,0.9373637,0,0,0,3.31479,0.04154791,12.0383,15.39464,0,4137.174,-,-
+1799.5,5205.16772335768,9.99999961853027,9.99999961853027,0,2.325747,593.6995,275.8083,275.8083,894.6368,-148.1575,17.14757,55.62142,-9.211259,17.14757,0,0,3,0.8155705,0.9373637,0,0,0,3.31479,0.04154791,12.0383,15.39464,0,4137.174,-,-
+1800.5,5207.94550102949,9.99999961853027,9.99999961853027,0,2.325747,593.6995,275.8083,275.8083,894.6368,-148.1575,17.14757,55.62142,-9.211259,17.14757,0,0,3,0.8155705,0.9373637,0,0,0,3.31479,0.04154791,12.0383,15.39464,0,4137.174,-,-
+1801.5,5210.72327870131,9.99999961853027,9.99999961853027,0,2.20753,593.6995,265.619,265.619,894.6368,-148.1575,16.51408,55.62142,-9.211259,16.51408,0,0,3,0.8029006,0.9280509,0,0,0,3.314879,0.04154791,11.4267,14.78313,0,4028.148,-,-
+1802.5,5213.50105637312,9.99999961853027,9.99999961853027,0,2.20753,593.6995,265.619,265.619,890.8157,-148.1575,16.51408,55.38386,-9.211259,16.51408,0,0,3,0.8029006,0.9280509,0,0,0,3.314879,0.04154791,11.4267,14.78313,0,4028.148,-,-
+1803.5,5216.27883404493,9.99999961853027,9.99999961853027,0,2.20753,593.6995,265.619,265.619,890.8157,-148.1575,16.51408,55.38386,-9.211259,16.51408,0,0,3,0.8029006,0.9280509,0,0,0,3.314879,0.04154791,11.4267,14.78313,0,4028.148,-,-
+1804.5,5219.05661171675,9.99999961853027,9.99999961853027,0,2.20753,593.6995,265.619,265.619,890.8157,-148.1575,16.51408,55.38386,-9.211259,16.51408,0,0,3,0.8029006,0.9280509,0,0,0,3.314879,0.04154791,11.4267,14.78313,0,4028.148,-,-
+1805.5,5221.83438938856,9.99999961853027,9.99999961853027,0,2.20753,593.6995,265.619,265.619,890.8157,-148.1575,16.51408,55.38386,-9.211259,16.51408,0,0,3,0.8029006,0.9280509,0,0,0,3.314879,0.04154791,11.4267,14.78313,0,4028.148,-,-
+1806.5,5224.61216706038,9.99999961853027,9.99999961853027,0,2.20753,593.6995,265.619,265.619,890.8157,-148.1575,16.51408,55.38386,-9.211259,16.51408,0,0,3,0.8029006,0.9280509,0,0,0,3.314879,0.04154791,11.4267,14.78313,0,4028.148,-,-
+1807.5,5227.38994473219,9.99999961853027,9.99999961853027,0,2.20753,593.6995,265.619,265.619,890.8157,-148.1575,16.51408,55.38386,-9.211259,16.51408,0,0,3,0.8029006,0.9280509,0,0,0,3.314879,0.04154791,11.4267,14.78313,0,4028.148,-,-
+1808.5,5230.167722404,9.99999961853027,9.99999961853027,0,2.089313,593.6995,255.4288,255.4288,890.8157,-148.1575,15.88053,55.38386,-9.211259,15.88053,0,0,3,0.7902303,0.9187377,0,0,0,3.314963,0.04154791,10.81505,14.17157,0,3919.113,-,-
+1809.5,5232.94550007582,9.99999961853027,9.99999961853027,0,2.089313,593.6995,255.4288,255.4288,886.9944,-148.1575,15.88053,55.14628,-9.211259,15.88053,0,0,3,0.7902303,0.9187377,0,0,0,3.314963,0.04154791,10.81505,14.17157,0,3919.113,-,-
+1810.5,5235.72327774763,9.99999961853027,9.99999961853027,0,2.089313,593.6995,255.4288,255.4288,886.9944,-148.1575,15.88053,55.14628,-9.211259,15.88053,0,0,3,0.7902303,0.9187377,0,0,0,3.314963,0.04154791,10.81505,14.17157,0,3919.113,-,-
+1811.5,5238.50105541945,9.99999961853027,9.99999961853027,0,2.089313,593.6995,255.4288,255.4288,886.9944,-148.1575,15.88053,55.14628,-9.211259,15.88053,0,0,3,0.7902303,0.9187377,0,0,0,3.314963,0.04154791,10.81505,14.17157,0,3919.113,-,-
+1812.5,5241.27883309126,9.99999961853027,9.99999961853027,0,2.089313,593.6995,255.4288,255.4288,886.9944,-148.1575,15.88053,55.14628,-9.211259,15.88053,0,0,3,0.7902303,0.9187377,0,0,0,3.314963,0.04154791,10.81505,14.17157,0,3919.113,-,-
+1813.5,5244.05661076307,9.99999961853027,9.99999961853027,0,2.089313,593.6995,255.4288,255.4288,886.9944,-148.1575,15.88053,55.14628,-9.211259,15.88053,0,0,3,0.7902303,0.9187377,0,0,0,3.314963,0.04154791,10.81505,14.17157,0,3919.113,-,-
+1814.5,5246.83438843489,9.99999961853027,9.99999961853027,0,2.089313,593.6995,255.4288,255.4288,886.9944,-148.1575,15.88053,55.14628,-9.211259,15.88053,0,0,3,0.7902303,0.9187377,0,0,0,3.314963,0.04154791,10.81505,14.17157,0,3919.113,-,-
+1815.5,5249.6121661067,9.99999961853027,9.99999961853027,0,1.971096,593.6995,245.2377,245.2377,886.9944,-148.1575,15.24694,55.14628,-9.211259,15.24694,0,0,3,0.7775577,0.9094239,0,0,0,3.315043,0.04154791,10.20337,13.55996,0,3810.069,-,-
+1816.5,5252.38994377851,9.99999961853027,9.99999961853027,0,1.971096,593.6995,245.2377,245.2377,883.1728,-148.1575,15.24694,54.90868,-9.211259,15.24694,0,0,3,0.7775577,0.9094239,0,0,0,3.315043,0.04154791,10.20337,13.55996,0,3810.069,-,-
+1817.5,5255.16772145033,9.99999961853027,9.99999961853027,0,1.971096,593.6995,245.2377,245.2377,883.1728,-148.1575,15.24694,54.90868,-9.211259,15.24694,0,0,3,0.7775577,0.9094239,0,0,0,3.315043,0.04154791,10.20337,13.55996,0,3810.069,-,-
+1818.5,5257.94549912214,9.99999961853027,9.99999961853027,0,1.971096,593.6995,245.2377,245.2377,883.1728,-148.1575,15.24694,54.90868,-9.211259,15.24694,0,0,3,0.7775577,0.9094239,0,0,0,3.315043,0.04154791,10.20337,13.55996,0,3810.069,-,-
+1819.5,5260.72327679396,9.99999961853027,9.99999961853027,0,1.971096,593.6995,245.2377,245.2377,883.1728,-148.1575,15.24694,54.90868,-9.211259,15.24694,0,0,3,0.7775577,0.9094239,0,0,0,3.315043,0.04154791,10.20337,13.55996,0,3810.069,-,-
+1820.5,5263.50105446577,9.99999961853027,9.99999961853027,0,1.971096,593.6995,245.2377,245.2377,883.1728,-148.1575,15.24694,54.90868,-9.211259,15.24694,0,0,3,0.7775577,0.9094239,0,0,0,3.315043,0.04154791,10.20337,13.55996,0,3810.069,-,-
+1821.5,5266.27883213758,9.99999961853027,9.99999961853027,0,1.971096,593.6995,245.2377,245.2377,883.1728,-148.1575,15.24694,54.90868,-9.211259,15.24694,0,0,3,0.7775577,0.9094239,0,0,0,3.315043,0.04154791,10.20337,13.55996,0,3810.069,-,-
+1822.5,5269.0566098094,9.99999961853027,9.99999961853027,0,1.852879,593.6995,235.0459,235.0459,883.1728,-148.1575,14.61329,54.90868,-9.211259,14.61329,0,0,3,0.7648846,0.9001095,0,0,0,3.315118,0.04154791,9.591632,12.9483,0,3701.017,-,-
+1823.5,5271.83438748121,9.99999961853027,9.99999961853027,0,1.852879,593.6995,235.0459,235.0459,879.3509,-148.1575,14.61329,54.67106,-9.211259,14.61329,0,0,3,0.7648846,0.9001095,0,0,0,3.315118,0.04154791,9.591632,12.9483,0,3701.017,-,-
+1824.5,5274.61216515303,9.99999961853027,9.99999961853027,0,1.852879,593.6995,235.0459,235.0459,879.3509,-148.1575,14.61329,54.67106,-9.211259,14.61329,0,0,3,0.7648846,0.9001095,0,0,0,3.315118,0.04154791,9.591632,12.9483,0,3701.017,-,-
+1825.5,5277.38994282484,9.99999961853027,9.99999961853027,0,1.852879,593.6995,235.0459,235.0459,879.3509,-148.1575,14.61329,54.67106,-9.211259,14.61329,0,0,3,0.7648846,0.9001095,0,0,0,3.315118,0.04154791,9.591632,12.9483,0,3701.017,-,-
+1826.5,5280.16772049665,9.99999961853027,9.99999961853027,0,1.852879,593.6995,235.0459,235.0459,879.3509,-148.1575,14.61329,54.67106,-9.211259,14.61329,0,0,3,0.7648846,0.9001095,0,0,0,3.315118,0.04154791,9.591632,12.9483,0,3701.017,-,-
+1827.5,5282.94549816847,9.99999961853027,9.99999961853027,0,1.852879,593.6995,235.0459,235.0459,879.3509,-148.1575,14.61329,54.67106,-9.211259,14.61329,0,0,3,0.7648846,0.9001095,0,0,0,3.315118,0.04154791,9.591632,12.9483,0,3701.017,-,-
+1828.5,5285.72327584028,9.99999961853027,9.99999961853027,0,1.852879,593.6995,235.0459,235.0459,879.3509,-148.1575,14.61329,54.67106,-9.211259,14.61329,0,0,3,0.7648846,0.9001095,0,0,0,3.315118,0.04154791,9.591632,12.9483,0,3701.017,-,-
+1829.5,5288.5010535121,9.99999961853027,9.99999961853027,0,1.79377,593.6995,229.9497,229.9497,879.3509,-148.1575,14.29645,54.67106,-9.211259,14.29645,0,0,3,0.7585486,0.8954517,0,0,0,3.315153,0.04154791,9.285749,12.64245,0,3646.813,-,-
+1830.5,5291.27883118391,9.99999961853027,9.99999961853027,0,1.734661,593.6995,224.8533,224.8533,877.4398,-148.1575,13.9796,54.55225,-9.211259,13.9796,0,0,3,0.7522109,0.8907937,0,0,0,3.315188,0.04154791,8.979857,12.33659,0,3593.352,-,-
+1831.5,5294.05660885572,9.99999961853027,9.99999961853027,0,1.734661,593.6995,224.8533,224.8533,875.5286,-148.1575,13.9796,54.43343,-9.211259,13.9796,0,0,3,0.7522109,0.8907937,0,0,0,3.315188,0.04154791,8.979857,12.33659,0,3593.352,-,-
+1832.5,5296.83438652754,9.99999961853027,9.99999961853027,0,1.734661,593.6995,224.8533,224.8533,875.5286,-148.1575,13.9796,54.43343,-9.211259,13.9796,0,0,3,0.7522109,0.8907937,0,0,0,3.315188,0.04154791,8.979857,12.33659,0,3593.352,-,-
+1833.5,5299.61216419935,9.99999961853027,9.99999961853027,0,1.734661,593.6995,224.8533,224.8533,875.5286,-148.1575,13.9796,54.43343,-9.211259,13.9796,0,0,3,0.7522109,0.8907937,0,0,0,3.315188,0.04154791,8.979857,12.33659,0,3593.352,-,-
+1834.5,5302.38994187117,9.99999961853027,9.99999961853027,0,1.734661,593.6995,224.8533,224.8533,875.5286,-148.1575,13.9796,54.43343,-9.211259,13.9796,0,0,3,0.7522109,0.8907937,0,0,0,3.315188,0.04154791,8.979857,12.33659,0,3593.352,-,-
+1835.5,5305.16771954298,9.99999961853027,9.99999961853027,0,1.734661,593.6995,224.8533,224.8533,875.5286,-148.1575,13.9796,54.43343,-9.211259,13.9796,0,0,3,0.7522109,0.8907937,0,0,0,3.315188,0.04154791,8.979857,12.33659,0,3593.352,-,-
+1836.5,5307.94549721479,9.99999961853027,9.99999961853027,0,1.734661,593.6995,224.8533,224.8533,875.5286,-148.1575,13.9796,54.43343,-9.211259,13.9796,0,0,3,0.7522109,0.8907937,0,0,0,3.315188,0.04154791,8.979857,12.33659,0,3593.352,-,-
+1837.5,5310.72327488661,9.99999961853027,9.99999961853027,0,1.550064,593.6995,208.9361,208.9361,875.5286,-148.1575,12.98999,54.43343,-9.211259,12.98999,0,0,3,0.7324193,0.8762469,0,0,0,3.315289,0.04154791,8.02449,11.38133,0,3426.381,-,-
+1838.5,5313.50105255842,9.99999961853027,9.99999961853027,0,1.550064,593.6995,208.9361,208.9361,869.5598,-148.1575,12.98999,54.06233,-9.211259,12.98999,0,0,3,0.7324193,0.8762469,0,0,0,3.315289,0.04154791,8.02449,11.38133,0,3426.381,-,-
+1839.5,5316.27883023024,9.99999961853027,9.99999961853027,0,1.550064,593.6995,208.9361,208.9361,869.5598,-148.1575,12.98999,54.06233,-9.211259,12.98999,0,0,3,0.7324193,0.8762469,0,0,0,3.315289,0.04154791,8.02449,11.38133,0,3426.381,-,-
+1840.5,5319.05660790205,9.99999961853027,9.99999961853027,0,1.550064,593.6995,208.9361,208.9361,869.5598,-148.1575,12.98999,54.06233,-9.211259,12.98999,0,0,3,0.7324193,0.8762469,0,0,0,3.315289,0.04154791,8.02449,11.38133,0,3426.381,-,-
+1841.5,5321.83438557386,9.99999961853027,9.99999961853027,0,1.550064,593.6995,208.9361,208.9361,869.5598,-148.1575,12.98999,54.06233,-9.211259,12.98999,0,0,3,0.7324193,0.8762469,0,0,0,3.315289,0.04154791,8.02449,11.38133,0,3426.381,-,-
+1842.5,5324.61216324568,9.99999961853027,9.99999961853027,0,1.550064,593.6995,208.9361,208.9361,869.5598,-148.1575,12.98999,54.06233,-9.211259,12.98999,0,0,3,0.7324193,0.8762469,0,0,0,3.315289,0.04154791,8.02449,11.38133,0,3426.381,-,-
+1843.5,5327.38994091749,9.99999961853027,9.99999961853027,0,1.550064,593.6995,208.9361,208.9361,869.5598,-148.1575,12.98999,54.06233,-9.211259,12.98999,0,0,3,0.7324193,0.8762469,0,0,0,3.315289,0.04154791,8.02449,11.38133,0,3426.381,-,-
+1844.5,5330.16771858931,9.99999961853027,9.99999961853027,0,1.432002,593.6995,198.7553,198.7553,869.5598,-148.1575,12.35703,54.06233,-9.211259,12.35703,0,0,3,0.7197601,0.8669423,0,0,0,3.315347,0.04154791,7.413429,10.77032,0,3320.822,-,-
+1845.5,5332.94549626112,9.99999961853027,9.99999961853027,0,1.432002,593.6995,198.7553,198.7553,865.7419,-148.1575,12.35703,53.82496,-9.211259,12.35703,0,0,3,0.7197601,0.8669423,0,0,0,3.315347,0.04154791,7.413429,10.77032,0,3320.822,-,-
+1846.5,5335.72327393293,9.99999961853027,9.99999961853027,0,1.432002,593.6995,198.7553,198.7553,865.7419,-148.1575,12.35703,53.82496,-9.211259,12.35703,0,0,3,0.7197601,0.8669423,0,0,0,3.315347,0.04154791,7.413429,10.77032,0,3320.822,-,-
+1847.5,5338.50105160475,9.99999961853027,9.99999961853027,0,1.432002,593.6995,198.7553,198.7553,865.7419,-148.1575,12.35703,53.82496,-9.211259,12.35703,0,0,3,0.7197601,0.8669423,0,0,0,3.315347,0.04154791,7.413429,10.77032,0,3320.822,-,-
+1848.5,5341.27882927656,9.99999961853027,9.99999961853027,0,1.432002,593.6995,198.7553,198.7553,865.7419,-148.1575,12.35703,53.82496,-9.211259,12.35703,0,0,3,0.7197601,0.8669423,0,0,0,3.315347,0.04154791,7.413429,10.77032,0,3320.822,-,-
+1849.5,5344.05660694838,9.99999961853027,9.99999961853027,0,1.432002,593.6995,198.7553,198.7553,865.7419,-148.1575,12.35703,53.82496,-9.211259,12.35703,0,0,3,0.7197601,0.8669423,0,0,0,3.315347,0.04154791,7.413429,10.77032,0,3320.822,-,-
+1850.5,5346.83438462019,9.99999961853027,9.99999961853027,0,1.432002,593.6995,198.7553,198.7553,865.7419,-148.1575,12.35703,53.82496,-9.211259,12.35703,0,0,3,0.7197601,0.8669423,0,0,0,3.315347,0.04154791,7.413429,10.77032,0,3320.822,-,-
+1851.5,5349.612162292,9.99999961853027,9.99999961853027,0,1.432002,593.6995,198.7553,198.7553,865.7419,-148.1575,12.35703,53.82496,-9.211259,12.35703,0,0,3,0.7197601,0.8669423,0,0,0,3.315347,0.04154791,7.413429,10.77032,0,3320.822,-,-
+1852.5,5352.38993996382,9.99999961853027,9.99999961853027,0,1.432002,593.6995,198.7553,198.7553,865.7419,-148.1575,12.35703,53.82496,-9.211259,12.35703,0,0,3,0.7197601,0.8669423,0,0,0,3.315347,0.04154791,7.413429,10.77032,0,3320.822,-,-
+1853.5,5355.16771763563,9.99999961853027,9.99999961853027,0,1.432002,593.6995,198.7553,198.7553,865.7419,-148.1575,12.35703,53.82496,-9.211259,12.35703,0,0,3,0.7197601,0.8669423,0,0,0,3.315347,0.04154791,7.413429,10.77032,0,3320.822,-,-
+1854.5,5357.94549530745,9.99999961853027,9.99999961853027,0,1.432002,593.6995,198.7553,198.7553,865.7419,-148.1575,12.35703,53.82496,-9.211259,12.35703,0,0,3,0.7197601,0.8669423,0,0,0,3.315347,0.04154791,7.413429,10.77032,0,3320.822,-,-
+1855.5,5360.72327297926,9.99999961853027,9.99999961853027,0,1.299241,593.6995,187.3061,187.3061,865.7419,-148.1575,11.64521,53.82496,-9.211259,11.64521,0,0,3,0.7055231,0.8564792,0,0,0,3.315407,0.04154791,6.72625,10.08321,0,3212.112,-,-
+1856.5,5363.50105065107,9.99999961853027,9.99999961853027,0,1.299241,593.6995,187.3061,187.3061,861.4485,-148.1575,11.64521,53.55804,-9.211259,11.64521,0,0,3,0.7055231,0.8564792,0,0,0,3.315407,0.04154791,6.72625,10.08321,0,3212.112,-,-
+1857.5,5366.27882832289,9.99999961853027,9.99999961853027,0,1.299241,593.6995,187.3061,187.3061,861.4485,-148.1575,11.64521,53.55804,-9.211259,11.64521,0,0,3,0.7055231,0.8564792,0,0,0,3.315407,0.04154791,6.72625,10.08321,0,3212.112,-,-
+1858.5,5369.0566059947,9.99999961853027,9.99999961853027,0,1.299241,593.6995,187.3061,187.3061,861.4485,-148.1575,11.64521,53.55804,-9.211259,11.64521,0,0,3,0.7055231,0.8564792,0,0,0,3.315407,0.04154791,6.72625,10.08321,0,3212.112,-,-
+1859.5,5371.83438366652,9.99999961853027,9.99999961853027,0,1.299241,593.6995,187.3061,187.3061,861.4485,-148.1575,11.64521,53.55804,-9.211259,11.64521,0,0,3,0.7055231,0.8564792,0,0,0,3.315407,0.04154791,6.72625,10.08321,0,3212.112,-,-
+1860.5,5374.61216133833,9.99999961853027,9.99999961853027,0,1.299241,593.6995,187.3061,187.3061,861.4485,-148.1575,11.64521,53.55804,-9.211259,11.64521,0,0,3,0.7055231,0.8564792,0,0,0,3.315407,0.04154791,6.72625,10.08321,0,3212.112,-,-
+1861.5,5377.38993901014,9.99999961853027,9.99999961853027,0,1.299241,593.6995,187.3061,187.3061,861.4485,-148.1575,11.64521,53.55804,-9.211259,11.64521,0,0,3,0.7055231,0.8564792,0,0,0,3.315407,0.04154791,6.72625,10.08321,0,3212.112,-,-
+1862.5,5380.16771668196,9.99999961853027,9.99999961853027,0,1.299241,593.6995,187.3061,187.3061,861.4485,-148.1575,11.64521,53.55804,-9.211259,11.64521,0,0,3,0.7055231,0.8564792,0,0,0,3.315407,0.04154791,6.72625,10.08321,0,3212.112,-,-
+1863.5,5382.94549435377,9.99999961853027,9.99999961853027,0,1.299241,593.6995,187.3061,187.3061,861.4485,-148.1575,11.64521,53.55804,-9.211259,11.64521,0,0,3,0.7055231,0.8564792,0,0,0,3.315407,0.04154791,6.72625,10.08321,0,3212.112,-,-
+1864.5,5385.72327202559,9.99999961853027,9.99999961853027,0,1.299241,593.6995,187.3061,187.3061,861.4485,-148.1575,11.64521,53.55804,-9.211259,11.64521,0,0,3,0.7055231,0.8564792,0,0,0,3.315407,0.04154791,6.72625,10.08321,0,3212.112,-,-
+1865.5,5388.5010496974,9.99999961853027,9.99999961853027,0,1.23286,593.6995,181.5812,181.5812,861.4485,-148.1575,11.28928,53.55804,-9.211259,11.28928,0,0,3,0.6984046,0.8512467,0,0,0,3.315435,0.04154791,6.382647,9.73963,0,3157.754,-,-
+1866.5,5391.27882736921,9.99999961853027,9.99999961853027,0,1.166479,593.6995,175.8562,175.8562,859.3016,-148.1575,10.93334,53.42456,-9.211259,10.93334,0,0,3,0.6912864,0.8460141,0,0,0,3.315461,0.04154791,6.039035,9.396045,0,3103.395,-,-
+1867.5,5394.05660504103,9.99999961853027,9.99999961853027,0,1.166479,593.6995,175.8562,175.8562,857.1547,-148.1575,10.93334,53.29108,-9.211259,10.93334,0,0,3,0.6912864,0.8460141,0,0,0,3.315461,0.04154791,6.039035,9.396045,0,3103.395,-,-
+1868.5,5396.83438271284,9.99999961853027,9.99999961853027,0,1.166479,593.6995,175.8562,175.8562,857.1547,-148.1575,10.93334,53.29108,-9.211259,10.93334,0,0,3,0.6912864,0.8460141,0,0,0,3.315461,0.04154791,6.039035,9.396045,0,3103.395,-,-
+1869.5,5399.61216038466,9.99999961853027,9.99999961853027,0,1.166479,593.6995,175.8562,175.8562,857.1547,-148.1575,10.93334,53.29108,-9.211259,10.93334,0,0,3,0.6912864,0.8460141,0,0,0,3.315461,0.04154791,6.039035,9.396045,0,3103.395,-,-
+1870.5,5402.38993805647,9.99999961853027,9.99999961853027,0,1.166479,593.6995,175.8562,175.8562,857.1547,-148.1575,10.93334,53.29108,-9.211259,10.93334,0,0,3,0.6912864,0.8460141,0,0,0,3.315461,0.04154791,6.039035,9.396045,0,3103.395,-,-
+1871.5,5405.16771572828,9.99999961853027,9.99999961853027,0,1.166479,593.6995,175.8562,175.8562,857.1547,-148.1575,10.93334,53.29108,-9.211259,10.93334,0,0,3,0.6912864,0.8460141,0,0,0,3.315461,0.04154791,6.039035,9.396045,0,3103.395,-,-
+1872.5,5407.9454934001,9.99999961853027,9.99999961853027,0,1.166479,593.6995,175.8562,175.8562,857.1547,-148.1575,10.93334,53.29108,-9.211259,10.93334,0,0,3,0.6912864,0.8460141,0,0,0,3.315461,0.04154791,6.039035,9.396045,0,3103.395,-,-
+1873.5,5410.72327107191,9.99999961853027,9.99999961853027,0,1.166479,593.6995,175.8562,175.8562,857.1547,-148.1575,10.93334,53.29108,-9.211259,10.93334,0,0,3,0.6912864,0.8460141,0,0,0,3.315461,0.04154791,6.039035,9.396045,0,3103.395,-,-
+1874.5,5413.50104874372,9.99999961853027,9.99999961853027,0,1.166479,593.6995,175.8562,175.8562,857.1547,-148.1575,10.93334,53.29108,-9.211259,10.93334,0,0,3,0.6912864,0.8460141,0,0,0,3.315461,0.04154791,6.039035,9.396045,0,3103.395,-,-
+1875.5,5416.27882641554,9.99999961853027,9.99999961853027,0,1.166479,593.6995,175.8562,175.8562,857.1547,-148.1575,10.93334,53.29108,-9.211259,10.93334,0,0,3,0.6912864,0.8460141,0,0,0,3.315461,0.04154791,6.039035,9.396045,0,3103.395,-,-
+1876.5,5419.05660408735,9.99999961853027,9.99999961853027,0,1.033718,593.6995,164.4057,164.4057,857.1547,-148.1575,10.22144,53.29108,-9.211259,10.22144,0,0,3,0.677048,0.8355495,0,0,0,3.31551,0.04154791,5.351789,8.708846,0,2994.673,-,-
+1877.5,5421.83438175917,9.99999961853027,9.99999961853027,0,1.033718,593.6995,164.4057,164.4057,852.8608,-148.1575,10.22144,53.02412,-9.211259,10.22144,0,0,3,0.677048,0.8355495,0,0,0,3.31551,0.04154791,5.351789,8.708846,0,2994.673,-,-
+1878.5,5424.61215943098,9.99999961853027,9.99999961853027,0,1.033718,593.6995,164.4057,164.4057,852.8608,-148.1575,10.22144,53.02412,-9.211259,10.22144,0,0,3,0.677048,0.8355495,0,0,0,3.31551,0.04154791,5.351789,8.708846,0,2994.673,-,-
+1879.5,5427.38993710279,9.99999961853027,9.99999961853027,0,1.033718,593.6995,164.4057,164.4057,852.8608,-148.1575,10.22144,53.02412,-9.211259,10.22144,0,0,3,0.677048,0.8355495,0,0,0,3.31551,0.04154791,5.351789,8.708846,0,2994.673,-,-
+1880.5,5430.16771477461,9.99999961853027,9.99999961853027,0,1.033718,593.6995,164.4057,164.4057,852.8608,-148.1575,10.22144,53.02412,-9.211259,10.22144,0,0,3,0.677048,0.8355495,0,0,0,3.31551,0.04154791,5.351789,8.708846,0,2994.673,-,-
+1881.5,5432.94549244642,9.99999961853027,9.99999961853027,0,1.033718,593.6995,164.4057,164.4057,852.8608,-148.1575,10.22144,53.02412,-9.211259,10.22144,0,0,3,0.677048,0.8355495,0,0,0,3.31551,0.04154791,5.351789,8.708846,0,2994.673,-,-
+1882.5,5435.72327011824,9.99999961853027,9.99999961853027,0,1.033718,593.6995,164.4057,164.4057,852.8608,-148.1575,10.22144,53.02412,-9.211259,10.22144,0,0,3,0.677048,0.8355495,0,0,0,3.31551,0.04154791,5.351789,8.708846,0,2994.673,-,-
+1883.5,5438.50104779005,9.99999961853027,9.99999961853027,0,1.033718,593.6995,164.4057,164.4057,852.8608,-148.1575,10.22144,53.02412,-9.211259,10.22144,0,0,3,0.677048,0.8355495,0,0,0,3.31551,0.04154791,5.351789,8.708846,0,2994.673,-,-
+1884.5,5441.27882546186,9.99999961853027,9.99999961853027,0,1.033718,593.6995,164.4057,164.4057,852.8608,-148.1575,10.22144,53.02412,-9.211259,10.22144,0,0,3,0.677048,0.8355495,0,0,0,3.31551,0.04154791,5.351789,8.708846,0,2994.673,-,-
+1885.5,5444.05660313368,9.99999961853027,9.99999961853027,0,1.033718,593.6995,164.4057,164.4057,852.8608,-148.1575,10.22144,53.02412,-9.211259,10.22144,0,0,3,0.677048,0.8355495,0,0,0,3.31551,0.04154791,5.351789,8.708846,0,2994.673,-,-
+1886.5,5446.83438080549,9.99999961853027,9.99999961853027,0,1.033718,593.6995,164.4057,164.4057,852.8608,-148.1575,10.22144,53.02412,-9.211259,10.22144,0,0,3,0.677048,0.8355495,0,0,0,3.31551,0.04154791,5.351789,8.708846,0,2994.673,-,-
+1887.5,5449.61215847731,9.99999961853027,9.99999961853027,0,0.9009566,593.6995,152.9547,152.9547,852.8608,-148.1575,9.509507,53.02412,-9.211259,9.509507,0,0,3,0.6628096,0.825084,0,0,0,3.315552,0.04154791,4.664514,8.021614,0,2885.945,-,-
+1888.5,5452.38993614912,9.99999961853027,9.99999961853027,0,0.9009566,593.6995,152.9547,152.9547,848.5667,-148.1575,9.509507,52.75714,-9.211259,9.509507,0,0,3,0.6628096,0.825084,0,0,0,3.315552,0.04154791,4.664514,8.021614,0,2885.945,-,-
+1889.5,5455.16771382093,9.99999961853027,9.99999961853027,0,0.9009566,593.6995,152.9547,152.9547,848.5667,-148.1575,9.509507,52.75714,-9.211259,9.509507,0,0,3,0.6628096,0.825084,0,0,0,3.315552,0.04154791,4.664514,8.021614,0,2885.945,-,-
+1890.5,5457.94549149275,9.99999961853027,9.99999961853027,0,0.9009566,593.6995,152.9547,152.9547,848.5667,-148.1575,9.509507,52.75714,-9.211259,9.509507,0,0,3,0.6628096,0.825084,0,0,0,3.315552,0.04154791,4.664514,8.021614,0,2885.945,-,-
+1891.5,5460.72326916456,9.99999961853027,9.99999961853027,0,0.9009566,593.6995,152.9547,152.9547,848.5667,-148.1575,9.509507,52.75714,-9.211259,9.509507,0,0,3,0.6628096,0.825084,0,0,0,3.315552,0.04154791,4.664514,8.021614,0,2885.945,-,-
+1892.5,5463.50104683638,9.99999961853027,9.99999961853027,0,0.9009566,593.6995,152.9547,152.9547,848.5667,-148.1575,9.509507,52.75714,-9.211259,9.509507,0,0,3,0.6628096,0.825084,0,0,0,3.315552,0.04154791,4.664514,8.021614,0,2885.945,-,-
+1893.5,5466.27882450819,9.99999961853027,9.99999961853027,0,0.9009566,593.6995,152.9547,152.9547,848.5667,-148.1575,9.509507,52.75714,-9.211259,9.509507,0,0,3,0.6628096,0.825084,0,0,0,3.315552,0.04154791,4.664514,8.021614,0,2885.945,-,-
+1894.5,5469.05660218,9.99999961853027,9.99999961853027,0,0.9009566,593.6995,152.9547,152.9547,848.5667,-148.1575,9.509507,52.75714,-9.211259,9.509507,0,0,3,0.6628096,0.825084,0,0,0,3.315552,0.04154791,4.664514,8.021614,0,2885.945,-,-
+1895.5,5471.83437985182,9.99999961853027,9.99999961853027,0,0.9009566,593.6995,152.9547,152.9547,848.5667,-148.1575,9.509507,52.75714,-9.211259,9.509507,0,0,3,0.6628096,0.825084,0,0,0,3.315552,0.04154791,4.664514,8.021614,0,2885.945,-,-
+1896.5,5474.61215752363,9.99999961853027,9.99999961853027,0,0.9009566,593.6995,152.9547,152.9547,848.5667,-148.1575,9.509507,52.75714,-9.211259,9.509507,0,0,3,0.6628096,0.825084,0,0,0,3.315552,0.04154791,4.664514,8.021614,0,2885.945,-,-
+1897.5,5477.38993519545,9.99999961853027,9.99999961853027,0,0.9009566,593.6995,152.9547,152.9547,848.5667,-148.1575,9.509507,52.75714,-9.211259,9.509507,0,0,3,0.6628096,0.825084,0,0,0,3.315552,0.04154791,4.664514,8.021614,0,2885.945,-,-
+1898.5,5480.16771286726,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,848.5667,-148.1575,8.805281,52.75714,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1899.5,5482.94549053907,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1900.5,5485.72326821089,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1901.5,5488.5010458827,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1902.5,5491.27882355452,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1903.5,5494.05660122633,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1904.5,5496.83437889814,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1905.5,5499.61215656996,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1906.5,5502.38993424177,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1907.5,5505.16771191359,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1908.5,5507.9454895854,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1909.5,5510.72326725721,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1910.5,5513.50104492903,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1911.5,5516.27882260084,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1912.5,5519.05660027266,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1913.5,5521.83437794447,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1914.5,5524.61215561628,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1915.5,5527.3899332881,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1916.5,5530.16771095991,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1917.5,5532.94548863173,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1918.5,5535.72326630354,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1919.5,5538.50104397535,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1920.5,5541.27882164717,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1921.5,5544.05659931898,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1922.5,5546.8343769908,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1923.5,5549.61215466261,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1924.5,5552.38993233442,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1925.5,5555.16771000624,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1926.5,5557.94548767805,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1927.5,5560.72326534987,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1928.5,5563.50104302168,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1929.5,5566.27882069349,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1930.5,5569.05659836531,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1931.5,5571.83437603712,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1932.5,5574.61215370893,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1933.5,5577.38993138075,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1934.5,5580.16770905256,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1935.5,5582.94548672438,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1936.5,5585.72326439619,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1937.5,5588.501042068,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1938.5,5591.27881973982,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1939.5,5594.05659741163,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1940.5,5596.83437508345,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1941.5,5599.61215275526,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1942.5,5602.38993042707,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1943.5,5605.16770809889,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1944.5,5607.9454857707,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1945.5,5610.72326344252,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1946.5,5613.50104111433,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1947.5,5616.27881878614,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1948.5,5619.05659645796,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1949.5,5621.83437412977,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1950.5,5624.61215180159,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1951.5,5627.3899294734,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1952.5,5630.16770714521,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1953.5,5632.94548481703,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1954.5,5635.72326248884,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1955.5,5638.50104016066,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1956.5,5641.27881783247,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1957.5,5644.05659550428,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1958.5,5646.8343731761,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1959.5,5649.61215084791,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1960.5,5652.38992851973,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1961.5,5655.16770619154,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1962.5,5657.94548386335,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1963.5,5660.72326153517,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1964.5,5663.50103920698,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1965.5,5666.2788168788,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1966.5,5669.05659455061,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1967.5,5671.83437222242,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1968.5,5674.61214989424,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1969.5,5677.38992756605,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1970.5,5680.16770523787,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1971.5,5682.94548290968,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1972.5,5685.72326058149,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1973.5,5688.50103825331,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1974.5,5691.27881592512,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1975.5,5694.05659359694,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1976.5,5696.83437126875,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1977.5,5699.61214894056,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1978.5,5702.38992661238,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1979.5,5705.16770428419,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1980.5,5707.94548195601,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1981.5,5710.72325962782,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1982.5,5713.50103729963,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1983.5,5716.27881497145,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1984.5,5719.05659264326,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1985.5,5721.83437031507,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1986.5,5724.61214798689,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1987.5,5727.3899256587,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1988.5,5730.16770333052,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1989.5,5732.94548100233,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1990.5,5735.72325867414,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1991.5,5738.50103634596,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1992.5,5741.27881401777,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1993.5,5744.05659168959,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1994.5,5746.8343693614,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1995.5,5749.61214703321,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1996.5,5752.38992470503,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1997.5,5755.16770237684,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1998.5,5757.94548004866,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+1999.5,5760.72325772047,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+2000.5,5763.50103539228,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+2001.5,5766.2788130641,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+2002.5,5769.05659073591,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+2003.5,5771.83436840773,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+2004.5,5774.61214607954,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+2005.5,5777.38992375135,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+2006.5,5780.16770142317,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+2007.5,5782.94547909498,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+2008.5,5785.7232567668,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+2009.5,5788.50103443861,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+2010.5,5791.27881211042,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+2011.5,5794.05658978224,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+2012.5,5796.83436745405,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+2013.5,5799.61214512587,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+2014.5,5802.38992279768,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+2015.5,5805.16770046949,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+2016.5,5807.94547814131,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+2017.5,5810.72325581312,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+2018.5,5813.50103348494,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+2019.5,5816.27881115675,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+2020.5,5819.05658882856,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+2021.5,5821.83436650038,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+2022.5,5824.61214417219,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+2023.5,5827.38992184401,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+2024.5,5830.16769951582,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+2025.5,5832.94547718763,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+2026.5,5835.72325485945,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+2027.5,5838.50103253126,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+2028.5,5841.27881020308,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+2029.5,5844.05658787489,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+2030.5,5846.8343655467,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+2031.5,5849.61214321852,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+2032.5,5852.38992089033,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+2033.5,5855.16769856215,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+2034.5,5857.94547623396,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+2035.5,5860.72325390577,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+2036.5,5863.50103157759,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+2037.5,5866.2788092494,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+2038.5,5869.05658692122,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+2039.5,5871.83436459303,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+2040.5,5874.61214226484,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+2041.5,5877.38991993666,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+2042.5,5880.16769760847,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+2043.5,5882.94547528028,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+2044.5,5885.7232529521,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+2045.5,5888.50103062391,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+2046.5,5891.27880829573,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+2047.5,5894.05658596754,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+2048.5,5896.83436363935,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+2049.5,5899.61214131117,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+2050.5,5902.38991898298,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+2051.5,5905.1676966548,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+2052.5,5907.94547432661,9.99999961853027,9.99999961853027,0,0.7681953,593.6995,141.6276,141.6276,844.319,-148.1575,8.805281,52.49306,-9.211259,8.805281,0,0,3,0.6487252,0.8222052,0,0,0,3.315589,0.04154791,3.977214,7.334351,0,2778.395,-,-
+2053.5,5910.72325199842,9.99999961853027,9.99999961853027,0,0.6594449,593.6995,132.3875,132.3875,844.319,-148.1575,8.230805,52.49306,-9.211259,8.230805,0,0,3,0.6372355,0.8222052,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2690.66,-,-
+2054.5,5913.50102967024,9.99999961853027,9.99999961853027,0,0.6594449,593.6995,132.3875,132.3875,840.854,-148.1575,8.230805,52.27763,-9.211259,8.230805,0,0,3,0.6372355,0.8222052,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2690.66,-,-
+2055.5,5916.27880734205,9.99999961853027,9.99999961853027,0,0.6594449,593.6995,132.3875,132.3875,840.854,-148.1575,8.230805,52.27763,-9.211259,8.230805,0,0,3,0.6372355,0.8222052,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2690.66,-,-
+2056.5,5919.05658501387,9.99999961853027,9.99999961853027,0,0.6594449,593.6995,132.3875,132.3875,840.854,-148.1575,8.230805,52.27763,-9.211259,8.230805,0,0,3,0.6372355,0.8222052,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2690.66,-,-
+2057.5,5921.83436268568,9.99999961853027,9.99999961853027,0,0.6594449,593.6995,132.3875,132.3875,840.854,-148.1575,8.230805,52.27763,-9.211259,8.230805,0,0,3,0.6372355,0.8222052,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2690.66,-,-
+2058.5,5924.61214035749,9.99999961853027,9.99999961853027,0,0.6594449,593.6995,132.3875,132.3875,840.854,-148.1575,8.230805,52.27763,-9.211259,8.230805,0,0,3,0.6372355,0.8222052,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2690.66,-,-
+2059.5,5927.38991802931,9.99999961853027,9.99999961853027,0,0.6594449,593.6995,132.3875,132.3875,840.854,-148.1575,8.230805,52.27763,-9.211259,8.230805,0,0,3,0.6372355,0.8222052,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2690.66,-,-
+2060.5,5930.16769570112,9.99999961853027,9.99999961853027,0,0.6594449,593.6995,132.3875,132.3875,840.854,-148.1575,8.230805,52.27763,-9.211259,8.230805,0,0,3,0.6372355,0.8222052,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2690.66,-,-
+2061.5,5932.94547337294,9.99999961853027,9.99999961853027,0,0.6594449,593.6995,132.3875,132.3875,840.854,-148.1575,8.230805,52.27763,-9.211259,8.230805,0,0,3,0.6372355,0.8222052,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2690.66,-,-
+2062.5,5935.72325104475,9.99999961853027,9.99999961853027,0,0.6594449,593.6995,132.3875,132.3875,840.854,-148.1575,8.230805,52.27763,-9.211259,8.230805,0,0,3,0.6372355,0.8222052,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2690.66,-,-
+2063.5,5938.50102871656,9.99999961853027,9.99999961853027,0,0.6594449,593.6995,132.3875,132.3875,840.854,-148.1575,8.230805,52.27763,-9.211259,8.230805,0,0,3,0.6372355,0.8222052,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2690.66,-,-
+2064.5,5941.27880638838,9.99999961853027,9.99999961853027,0,0.6594449,593.6995,132.3875,132.3875,840.854,-148.1575,8.230805,52.27763,-9.211259,8.230805,0,0,3,0.6372355,0.8222052,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2690.66,-,-
+2065.5,5944.05658406019,9.99999961853027,9.99999961853027,0,0.6594449,593.6995,132.3875,132.3875,840.854,-148.1575,8.230805,52.27763,-9.211259,8.230805,0,0,3,0.6372355,0.8222052,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2690.66,-,-
+2066.5,5946.83436173201,9.99999961853027,9.99999961853027,0,0.6594449,593.6995,132.3875,132.3875,840.854,-148.1575,8.230805,52.27763,-9.211259,8.230805,0,0,3,0.6372355,0.8222052,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2690.66,-,-
+2067.5,5949.61213940382,9.99999961853027,9.99999961853027,0,0.6594449,593.6995,132.3875,132.3875,840.854,-148.1575,8.230805,52.27763,-9.211259,8.230805,0,0,3,0.6372355,0.8222052,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2690.66,-,-
+2068.5,5952.38991707563,9.99999961853027,9.99999961853027,0,0.6594449,593.6995,132.3875,132.3875,840.854,-148.1575,8.230805,52.27763,-9.211259,8.230805,0,0,3,0.6372355,0.8222052,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2690.66,-,-
+2069.5,5955.16769474745,9.99999961853027,9.99999961853027,0,0.6594449,593.6995,132.3875,132.3875,840.854,-148.1575,8.230805,52.27763,-9.211259,8.230805,0,0,3,0.6372355,0.8222052,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2690.66,-,-
+2070.5,5957.94547241926,9.99999961853027,9.99999961853027,0,0.6594449,593.6995,132.3875,132.3875,840.854,-148.1575,8.230805,52.27763,-9.211259,8.230805,0,0,3,0.6372355,0.8222052,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2690.66,-,-
+2071.5,5960.72325009108,9.99999961853027,9.99999961853027,0,0.6594449,593.6995,132.3875,132.3875,840.854,-148.1575,8.230805,52.27763,-9.211259,8.230805,0,0,3,0.6372355,0.8222052,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2690.66,-,-
+2072.5,5963.50102776289,9.99999961853027,9.99999961853027,0,0.6594449,593.6995,132.3875,132.3875,840.854,-148.1575,8.230805,52.27763,-9.211259,8.230805,0,0,3,0.6372355,0.8222052,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2690.66,-,-
+2073.5,5966.2788054347,9.99999961853027,9.99999961853027,0,0.6594449,593.6995,132.3875,132.3875,840.854,-148.1575,8.230805,52.27763,-9.211259,8.230805,0,0,3,0.6372355,0.8222052,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2690.66,-,-
+2074.5,5969.05658310652,9.99999961853027,9.99999961853027,0,0.6594449,593.6995,132.3875,132.3875,840.854,-148.1575,8.230805,52.27763,-9.211259,8.230805,0,0,3,0.6372355,0.8222052,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2690.66,-,-
+2075.5,5971.83436077833,9.99999961853027,9.99999961853027,0,0.6594449,593.6995,132.3875,132.3875,840.854,-148.1575,8.230805,52.27763,-9.211259,8.230805,0,0,3,0.6372355,0.8222052,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2690.66,-,-
+2076.5,5974.61213845015,9.99999961853027,9.99999961853027,0,0.6594449,593.6995,132.3875,132.3875,840.854,-148.1575,8.230805,52.27763,-9.211259,8.230805,0,0,3,0.6372355,0.8222052,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2690.66,-,-
+2077.5,5977.38991612196,9.99999961853027,9.99999961853027,0,0.6594449,593.6995,132.3875,132.3875,840.854,-148.1575,8.230805,52.27763,-9.211259,8.230805,0,0,3,0.6372355,0.8222052,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2690.66,-,-
+2078.5,5980.16769379377,9.99999961853027,9.99999961853027,0,0.6594449,593.6995,132.3875,132.3875,840.854,-148.1575,8.230805,52.27763,-9.211259,8.230805,0,0,3,0.6372355,0.8222052,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2690.66,-,-
+2079.5,5982.94547146559,9.99999961853027,9.99999961853027,0,0.6594449,593.6995,132.3875,132.3875,840.854,-148.1575,8.230805,52.27763,-9.211259,8.230805,0,0,3,0.6372355,0.8222052,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2690.66,-,-
+2080.5,5985.7232491374,9.99999961853027,9.99999961853027,0,0.6594449,593.6995,132.3875,132.3875,840.854,-148.1575,8.230805,52.27763,-9.211259,8.230805,0,0,3,0.6372355,0.8222052,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2690.66,-,-
+2081.5,5988.50102680922,9.99999961853027,9.99999961853027,0,0.6594449,593.6995,132.3875,132.3875,840.854,-148.1575,8.230805,52.27763,-9.211259,8.230805,0,0,3,0.6372355,0.8222052,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2690.66,-,-
+2082.5,5991.27880448103,9.99999961853027,9.99999961853027,0,0.6594449,593.6995,132.3875,132.3875,840.854,-148.1575,8.230805,52.27763,-9.211259,8.230805,0,0,3,0.6372355,0.8222052,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2690.66,-,-
+2083.5,5994.05658215284,9.99999961853027,9.99999961853027,0,0.6594449,593.6995,132.3875,132.3875,840.854,-148.1575,8.230805,52.27763,-9.211259,8.230805,0,0,3,0.6372355,0.8222052,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2690.66,-,-
+2084.5,5996.83435982466,9.99999961853027,9.99999961853027,0,0.6594449,593.6995,132.3875,132.3875,840.854,-148.1575,8.230805,52.27763,-9.211259,8.230805,0,0,3,0.6372355,0.8222052,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2690.66,-,-
+2085.5,5999.61213749647,9.99999961853027,9.99999961853027,0,0.6594449,593.6995,132.3875,132.3875,840.854,-148.1575,8.230805,52.27763,-9.211259,8.230805,0,0,3,0.6372355,0.8222052,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2690.66,-,-
+2086.5,6002.38991516829,9.99999961853027,9.99999961853027,0,0.6594449,593.6995,132.3875,132.3875,840.854,-148.1575,8.230805,52.27763,-9.211259,8.230805,0,0,3,0.6372355,0.8222052,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2690.66,-,-
+2087.5,6005.1676928401,9.99999961853027,9.99999961853027,0,0.6594449,593.6995,132.3875,132.3875,840.854,-148.1575,8.230805,52.27763,-9.211259,8.230805,0,0,3,0.6372355,0.8222052,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2690.66,-,-
+2088.5,6007.94547051191,9.99999961853027,9.99999961853027,0,0.6594449,593.6995,132.3875,132.3875,840.854,-148.1575,8.230805,52.27763,-9.211259,8.230805,0,0,3,0.6372355,0.8222052,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2690.66,-,-
+2089.5,6010.72324818373,9.99999961853027,9.99999961853027,0,0.6594449,593.6995,132.3875,132.3875,840.854,-148.1575,8.230805,52.27763,-9.211259,8.230805,0,0,3,0.6372355,0.8222052,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2690.66,-,-
+2090.5,6013.50102585554,9.99999961853027,9.99999961853027,0,0.6594449,593.6995,132.3875,132.3875,840.854,-148.1575,8.230805,52.27763,-9.211259,8.230805,0,0,3,0.6372355,0.8222052,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2690.66,-,-
+2091.5,6016.27880352736,9.99999961853027,9.99999961853027,0,0.6594449,593.6995,132.3875,132.3875,840.854,-148.1575,8.230805,52.27763,-9.211259,8.230805,0,0,3,0.6372355,0.8222052,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2690.66,-,-
+2092.5,6019.05658119917,9.99999961853027,9.99999961853027,0,0.6594449,593.6995,132.3875,132.3875,840.854,-148.1575,8.230805,52.27763,-9.211259,8.230805,0,0,3,0.6372355,0.8222052,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2690.66,-,-
+2093.5,6021.83435887098,9.99999961853027,9.99999961853027,0,0.6594449,593.6995,132.3875,132.3875,840.854,-148.1575,8.230805,52.27763,-9.211259,8.230805,0,0,3,0.6372355,0.8222052,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2690.66,-,-
+2094.5,6024.6121365428,9.99999961853027,9.99999961853027,0,0.6594449,593.6995,132.3875,132.3875,840.854,-148.1575,8.230805,52.27763,-9.211259,8.230805,0,0,3,0.6372355,0.8222052,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2690.66,-,-
+2095.5,6027.38991421461,9.99999961853027,9.99999961853027,0,0.6594449,593.6995,132.3875,132.3875,840.854,-148.1575,8.230805,52.27763,-9.211259,8.230805,0,0,3,0.6372355,0.8222052,0,0,0,3.315615,0.04154791,3.414201,6.771364,0,2690.66,-,-
+2096.5,6030.16769188643,9.99999961853027,9.99999961853027,0,0.5532359,593.6995,123.3631,123.3631,840.854,-148.1575,7.669738,52.27763,-9.211259,7.669738,0,0,3,0.6260142,0.8222053,0,0,0,3.315636,0.04154791,2.864335,6.221519,0,2604.973,-,-
+2097.5,6032.94546955824,9.99999961853027,9.99999961853027,0,0.5532359,593.6995,123.3631,123.3631,837.4698,-148.1575,7.669738,52.06723,-9.211259,7.669738,0,0,3,0.6260142,0.8222053,0,0,0,3.315636,0.04154791,2.864335,6.221519,0,2604.973,-,-
+2098.5,6035.72324723005,9.99999961853027,9.99999961853027,0,0.5532359,593.6995,123.3631,123.3631,837.4698,-148.1575,7.669738,52.06723,-9.211259,7.669738,0,0,3,0.6260142,0.8222053,0,0,0,3.315636,0.04154791,2.864335,6.221519,0,2604.973,-,-
+2099.5,6038.50102490187,9.99999961853027,9.99999961853027,0,0.5532359,593.6995,123.3631,123.3631,837.4698,-148.1575,7.669738,52.06723,-9.211259,7.669738,0,0,3,0.6260142,0.8222053,0,0,0,3.315636,0.04154791,2.864335,6.221519,0,2604.973,-,-
+2100.5,6041.27880257368,9.99999961853027,9.99999961853027,0,0.5532359,593.6995,123.3631,123.3631,837.4698,-148.1575,7.669738,52.06723,-9.211259,7.669738,0,0,3,0.6260142,0.8222053,0,0,0,3.315636,0.04154791,2.864335,6.221519,0,2604.973,-,-
+2101.5,6044.05658024549,9.99999961853027,9.99999961853027,0,0.5532359,593.6995,123.3631,123.3631,837.4698,-148.1575,7.669738,52.06723,-9.211259,7.669738,0,0,3,0.6260142,0.8222053,0,0,0,3.315636,0.04154791,2.864335,6.221519,0,2604.973,-,-
+2102.5,6046.83435791731,9.99999961853027,9.99999961853027,0,0.5532359,593.6995,123.3631,123.3631,837.4698,-148.1575,7.669738,52.06723,-9.211259,7.669738,0,0,3,0.6260142,0.8222053,0,0,0,3.315636,0.04154791,2.864335,6.221519,0,2604.973,-,-
+2103.5,6049.61213558912,9.99999961853027,9.99999961853027,0,0.5532359,593.6995,123.3631,123.3631,837.4698,-148.1575,7.669738,52.06723,-9.211259,7.669738,0,0,3,0.6260142,0.8222053,0,0,0,3.315636,0.04154791,2.864335,6.221519,0,2604.973,-,-
+2104.5,6052.38991326094,9.99999961853027,9.99999961853027,0,0.5532359,593.6995,123.3631,123.3631,837.4698,-148.1575,7.669738,52.06723,-9.211259,7.669738,0,0,3,0.6260142,0.8222053,0,0,0,3.315636,0.04154791,2.864335,6.221519,0,2604.973,-,-
+2105.5,6055.16769093275,9.99999961853027,9.99999961853027,0,0.5532359,593.6995,123.3631,123.3631,837.4698,-148.1575,7.669738,52.06723,-9.211259,7.669738,0,0,3,0.6260142,0.8222053,0,0,0,3.315636,0.04154791,2.864335,6.221519,0,2604.973,-,-
+2106.5,6057.94546860456,9.99999961853027,9.99999961853027,0,0.5532359,593.6995,123.3631,123.3631,837.4698,-148.1575,7.669738,52.06723,-9.211259,7.669738,0,0,3,0.6260142,0.8222053,0,0,0,3.315636,0.04154791,2.864335,6.221519,0,2604.973,-,-
+2107.5,6060.72324627638,9.99999961853027,9.99999961853027,0,0.5532359,593.6995,123.3631,123.3631,837.4698,-148.1575,7.669738,52.06723,-9.211259,7.669738,0,0,3,0.6260142,0.8222053,0,0,0,3.315636,0.04154791,2.864335,6.221519,0,2604.973,-,-
+2108.5,6063.50102394819,9.99999961853027,9.99999961853027,0,0.5532359,593.6995,123.3631,123.3631,837.4698,-148.1575,7.669738,52.06723,-9.211259,7.669738,0,0,3,0.6260142,0.8222053,0,0,0,3.315636,0.04154791,2.864335,6.221519,0,2604.973,-,-
+2109.5,6066.27880162001,9.99999961853027,9.99999961853027,0,0.5532359,593.6995,123.3631,123.3631,837.4698,-148.1575,7.669738,52.06723,-9.211259,7.669738,0,0,3,0.6260142,0.8222053,0,0,0,3.315636,0.04154791,2.864335,6.221519,0,2604.973,-,-
+2110.5,6069.05657929182,9.99999961853027,9.99999961853027,0,0.5532359,593.6995,123.3631,123.3631,837.4698,-148.1575,7.669738,52.06723,-9.211259,7.669738,0,0,3,0.6260142,0.8222053,0,0,0,3.315636,0.04154791,2.864335,6.221519,0,2604.973,-,-
+2111.5,6071.83435696363,9.99999961853027,9.99999961853027,0,0.5532359,593.6995,123.3631,123.3631,837.4698,-148.1575,7.669738,52.06723,-9.211259,7.669738,0,0,3,0.6260142,0.8222053,0,0,0,3.315636,0.04154791,2.864335,6.221519,0,2604.973,-,-
+2112.5,6074.61213463545,9.99999961853027,9.99999961853027,0,0.5532359,593.6995,123.3631,123.3631,837.4698,-148.1575,7.669738,52.06723,-9.211259,7.669738,0,0,3,0.6260142,0.8222053,0,0,0,3.315636,0.04154791,2.864335,6.221519,0,2604.973,-,-
+2113.5,6077.38991230726,9.99999961853027,9.99999961853027,0,0.5532359,593.6995,123.3631,123.3631,837.4698,-148.1575,7.669738,52.06723,-9.211259,7.669738,0,0,3,0.6260142,0.8222053,0,0,0,3.315636,0.04154791,2.864335,6.221519,0,2604.973,-,-
+2114.5,6080.16768997908,9.99999961853027,9.99999961853027,0,0.5532359,593.6995,123.3631,123.3631,837.4698,-148.1575,7.669738,52.06723,-9.211259,7.669738,0,0,3,0.6260142,0.8222053,0,0,0,3.315636,0.04154791,2.864335,6.221519,0,2604.973,-,-
+2115.5,6082.94546765089,9.99999961853027,9.99999961853027,0,0.5532359,593.6995,123.3631,123.3631,837.4698,-148.1575,7.669738,52.06723,-9.211259,7.669738,0,0,3,0.6260142,0.8222053,0,0,0,3.315636,0.04154791,2.864335,6.221519,0,2604.973,-,-
+2116.5,6085.7232453227,9.99999961853027,9.99999961853027,0,0.5532359,593.6995,123.3631,123.3631,837.4698,-148.1575,7.669738,52.06723,-9.211259,7.669738,0,0,3,0.6260142,0.8222053,0,0,0,3.315636,0.04154791,2.864335,6.221519,0,2604.973,-,-
+2117.5,6088.50102299452,9.99999961853027,9.99999961853027,0,0.5532359,593.6995,123.3631,123.3631,837.4698,-148.1575,7.669738,52.06723,-9.211259,7.669738,0,0,3,0.6260142,0.8222053,0,0,0,3.315636,0.04154791,2.864335,6.221519,0,2604.973,-,-
+2118.5,6091.27880066633,9.99999961853027,9.99999961853027,0,0.5532359,593.6995,123.3631,123.3631,837.4698,-148.1575,7.669738,52.06723,-9.211259,7.669738,0,0,3,0.6260142,0.8222053,0,0,0,3.315636,0.04154791,2.864335,6.221519,0,2604.973,-,-
+2119.5,6094.05657833815,9.99999961853027,9.99999961853027,0,0.5532359,593.6995,123.3631,123.3631,837.4698,-148.1575,7.669738,52.06723,-9.211259,7.669738,0,0,3,0.6260142,0.8222053,0,0,0,3.315636,0.04154791,2.864335,6.221519,0,2604.973,-,-
+2120.5,6096.83435600996,9.99999961853027,9.99999961853027,0,0.5532359,593.6995,123.3631,123.3631,837.4698,-148.1575,7.669738,52.06723,-9.211259,7.669738,0,0,3,0.6260142,0.8222053,0,0,0,3.315636,0.04154791,2.864335,6.221519,0,2604.973,-,-
+2121.5,6099.61213368177,9.99999961853027,9.99999961853027,0,0.5532359,593.6995,123.3631,123.3631,837.4698,-148.1575,7.669738,52.06723,-9.211259,7.669738,0,0,3,0.6260142,0.8222053,0,0,0,3.315636,0.04154791,2.864335,6.221519,0,2604.973,-,-
+2122.5,6102.38991135359,9.99999961853027,9.99999961853027,0,0.5532359,593.6995,123.3631,123.3631,837.4698,-148.1575,7.669738,52.06723,-9.211259,7.669738,0,0,3,0.6260142,0.8222053,0,0,0,3.315636,0.04154791,2.864335,6.221519,0,2604.973,-,-
+2123.5,6105.1676890254,9.99999961853027,9.99999961853027,0,0.5532359,593.6995,123.3631,123.3631,837.4698,-148.1575,7.669738,52.06723,-9.211259,7.669738,0,0,3,0.6260142,0.8222053,0,0,0,3.315636,0.04154791,2.864335,6.221519,0,2604.973,-,-
+2124.5,6107.94546669722,9.99999961853027,9.99999961853027,0,0.5532359,593.6995,123.3631,123.3631,837.4698,-148.1575,7.669738,52.06723,-9.211259,7.669738,0,0,3,0.6260142,0.8222053,0,0,0,3.315636,0.04154791,2.864335,6.221519,0,2604.973,-,-
+2125.5,6110.72324436903,9.99999961853027,9.99999961853027,0,0.8510249,593.6995,148.6651,148.6651,837.4698,-148.1575,9.242817,52.06723,-9.211259,9.242817,0,0,3,0.6574751,0.8222051,0,0,0,3.315567,0.04154791,4.406022,7.763136,0,2845.216,-,-
+2126.5,6113.50102204084,9.99999961853027,9.99999961853027,0,0.8510249,593.6995,148.6651,148.6651,846.9581,-148.1575,9.242817,52.65714,-9.211259,9.242817,0,0,3,0.6574751,0.8222051,0,0,0,3.315567,0.04154791,4.406022,7.763136,0,2845.216,-,-
+2127.5,6116.27879971266,9.99999961853027,9.99999961853027,0,0.8510249,593.6995,148.6651,148.6651,846.9581,-148.1575,9.242817,52.65714,-9.211259,9.242817,0,0,3,0.6574751,0.8222051,0,0,0,3.315567,0.04154791,4.406022,7.763136,0,2845.216,-,-
+2128.5,6119.05657738447,9.99999961853027,9.99999961853027,0,1.056041,593.6995,166.3311,166.3311,846.9581,-148.1575,10.34115,52.65714,-9.211259,10.34115,0,0,3,0.6794425,0.8373093,0,0,0,3.315502,0.04154791,5.46735,8.8244,0,3012.955,-,-
+2129.5,6121.83435505629,9.99999961853027,9.99999961853027,0,1.056041,593.6995,166.3311,166.3311,853.5828,-148.1575,10.34115,53.06901,-9.211259,10.34115,0,0,3,0.6794425,0.8373093,0,0,0,3.315502,0.04154791,5.46735,8.8244,0,3012.955,-,-
+2130.5,6124.6121327281,9.99999961853027,9.99999961853027,0,1.056041,593.6995,166.3311,166.3311,853.5828,-148.1575,10.34115,53.06901,-9.211259,10.34115,0,0,3,0.6794425,0.8373093,0,0,0,3.315502,0.04154791,5.46735,8.8244,0,3012.955,-,-
+2131.5,6127.38991039991,9.99999961853027,9.99999961853027,0,1.056041,593.6995,166.3311,166.3311,853.5828,-148.1575,10.34115,53.06901,-9.211259,10.34115,0,0,3,0.6794425,0.8373093,0,0,0,3.315502,0.04154791,5.46735,8.8244,0,3012.955,-,-
+2132.5,6130.16768807173,9.99999961853027,9.99999961853027,0,1.261058,593.6995,184.0132,184.0132,853.5828,-148.1575,11.44048,53.06901,-9.211259,11.44048,0,0,3,0.701429,0.8534693,0,0,0,3.315423,0.04154791,6.528609,9.88558,0,3180.845,-,-
+2133.5,6132.94546574354,9.99999961853027,9.99999961853027,0,1.261058,593.6995,184.0132,184.0132,860.2136,-148.1575,11.44048,53.48126,-9.211259,11.44048,0,0,3,0.701429,0.8534693,0,0,0,3.315423,0.04154791,6.528609,9.88558,0,3180.845,-,-
+2134.5,6135.72324341536,9.99999961853027,9.99999961853027,0,1.261058,593.6995,184.0132,184.0132,860.2136,-148.1575,11.44048,53.48126,-9.211259,11.44048,0,0,3,0.701429,0.8534693,0,0,0,3.315423,0.04154791,6.528609,9.88558,0,3180.845,-,-
+2135.5,6138.50102108717,9.99999961853027,9.99999961853027,0,1.363566,593.6995,192.8536,192.8536,860.2136,-148.1575,11.9901,53.48126,-9.211259,11.9901,0,0,3,0.7124215,0.8615491,0,0,0,3.315378,0.04154791,7.059208,10.41613,0,3264.785,-,-
+2136.5,6141.27879875898,9.99999961853027,9.99999961853027,0,1.466075,593.6995,201.6936,201.6936,863.5287,-148.1575,12.53971,53.68737,-9.211259,12.53971,0,0,3,0.7234136,0.8696281,0,0,0,3.315331,0.04154791,7.589786,10.94666,0,3350.406,-,-
+2137.5,6144.0565764308,9.99999961853027,9.99999961853027,0,1.466075,593.6995,201.6936,201.6936,866.8438,-148.1575,12.53971,53.89347,-9.211259,12.53971,0,0,3,0.7234136,0.8696281,0,0,0,3.315331,0.04154791,7.589786,10.94666,0,3350.406,-,-
+2138.5,6146.83435410261,9.99999961853027,9.99999961853027,0,1.466075,593.6995,201.6936,201.6936,866.8438,-148.1575,12.53971,53.89347,-9.211259,12.53971,0,0,3,0.7234136,0.8696281,0,0,0,3.315331,0.04154791,7.589786,10.94666,0,3350.406,-,-
+2139.5,6149.61213177443,9.99999961853027,9.99999961853027,0,1.671091,593.6995,219.3721,219.3721,866.8438,-148.1575,13.63882,53.89347,-9.211259,13.63882,0,0,3,0.7453959,0.8857849,0,0,0,3.315224,0.04154791,8.650867,12.00764,0,3535.854,-,-
+2140.5,6152.38990944624,9.99999961853027,9.99999961853027,0,1.671091,593.6995,219.3721,219.3721,873.4733,-148.1575,13.63882,54.30564,-9.211259,13.63882,0,0,3,0.7453959,0.8857849,0,0,0,3.315224,0.04154791,8.650867,12.00764,0,3535.854,-,-
+2141.5,6155.16768711805,9.99999961853027,9.99999961853027,0,1.671091,593.6995,219.3721,219.3721,873.4733,-148.1575,13.63882,54.30564,-9.211259,13.63882,0,0,3,0.7453959,0.8857849,0,0,0,3.315224,0.04154791,8.650867,12.00764,0,3535.854,-,-
+2142.5,6157.94546478987,9.99999961853027,9.99999961853027,0,1.671091,593.6995,219.3721,219.3721,873.4733,-148.1575,13.63882,54.30564,-9.211259,13.63882,0,0,3,0.7453959,0.8857849,0,0,0,3.315224,0.04154791,8.650867,12.00764,0,3535.854,-,-
+2143.5,6160.72324246168,9.99999961853027,9.99999961853027,0,1.876108,593.6995,237.0487,237.0487,873.4733,-148.1575,14.73781,54.30564,-9.211259,14.73781,0,0,3,0.7673751,0.9019403,0,0,0,3.315103,0.04154791,9.711839,13.06849,0,3722.446,-,-
+2144.5,6163.5010201335,9.99999961853027,9.99999961853027,0,1.876108,593.6995,237.0487,237.0487,880.1019,-148.1575,14.73781,54.71775,-9.211259,14.73781,0,0,3,0.7673751,0.9019403,0,0,0,3.315103,0.04154791,9.711839,13.06849,0,3722.446,-,-
+2145.5,6166.27879780531,9.99999961853027,9.99999961853027,0,1.876108,593.6995,237.0487,237.0487,880.1019,-148.1575,14.73781,54.71775,-9.211259,14.73781,0,0,3,0.7673751,0.9019403,0,0,0,3.315103,0.04154791,9.711839,13.06849,0,3722.446,-,-
+2146.5,6169.05657547712,9.99999961853027,9.99999961853027,0,2.081125,593.6995,254.7229,254.7229,880.1019,-148.1575,15.83665,54.71775,-9.211259,15.83665,0,0,3,0.7893525,0.9180928,0,0,0,3.314969,0.04154791,10.77269,14.12921,0,3911.56,-,-
+2147.5,6171.83435314894,9.99999961853027,9.99999961853027,0,2.081125,593.6995,254.7229,254.7229,886.7297,-148.1575,15.83665,55.12982,-9.211259,15.83665,0,0,3,0.7893525,0.9180928,0,0,0,3.314969,0.04154791,10.77269,14.12921,0,3911.56,-,-
+2148.5,6174.61213082075,9.99999961853027,9.99999961853027,0,2.081125,593.6995,254.7229,254.7229,886.7297,-148.1575,15.83665,55.12982,-9.211259,15.83665,0,0,3,0.7893525,0.9180928,0,0,0,3.314969,0.04154791,10.77269,14.12921,0,3911.56,-,-
+2149.5,6177.38990849257,9.99999961853027,9.99999961853027,0,2.081125,593.6995,254.7229,254.7229,886.7297,-148.1575,15.83665,55.12982,-9.211259,15.83665,0,0,3,0.7893525,0.9180928,0,0,0,3.314969,0.04154791,10.77269,14.12921,0,3911.56,-,-
+2150.5,6180.16768616438,9.99999961853027,9.99999961853027,0,2.286141,593.6995,272.3947,272.3947,886.7297,-148.1575,16.93534,55.12982,-9.211259,16.93534,0,0,3,0.8113268,0.9342439,0,0,0,3.314821,0.04154791,11.8334,15.18977,0,4100.648,-,-
+2151.5,6182.94546383619,9.99999961853027,9.99999961853027,0,2.286141,593.6995,272.3947,272.3947,893.3568,-148.1575,16.93534,55.54184,-9.211259,16.93534,0,0,3,0.8113268,0.9342439,0,0,0,3.314821,0.04154791,11.8334,15.18977,0,4100.648,-,-
+2152.5,6185.72324150801,9.99999961853027,9.99999961853027,0,2.286141,593.6995,272.3947,272.3947,893.3568,-148.1575,16.93534,55.54184,-9.211259,16.93534,0,0,3,0.8113268,0.9342439,0,0,0,3.314821,0.04154791,11.8334,15.18977,0,4100.648,-,-
+2153.5,6188.50101917982,9.99999961853027,9.99999961853027,0,2.388649,593.6995,281.2296,281.2296,893.3568,-148.1575,17.48462,55.54184,-9.211259,17.48462,0,0,3,0.822311,0.9423176,0,0,0,3.314741,0.04154791,12.3637,15.71999,0,4195.181,-,-
+2154.5,6191.27879685164,9.99999961853027,9.99999961853027,0,2.491158,593.6995,290.0637,290.0637,896.6697,-148.1575,18.03386,55.74781,-9.211259,18.03386,0,0,3,0.8332965,0.9503915,0,0,0,3.314658,0.04154791,12.89397,16.25017,0,4289.707,-,-
+2155.5,6194.05657452345,9.99999961853027,9.99999961853027,0,2.491158,593.6995,290.0637,290.0637,899.9826,-148.1575,18.03386,55.95378,-9.211259,18.03386,0,0,3,0.8332965,0.9503915,0,0,0,3.314658,0.04154791,12.89397,16.25017,0,4289.707,-,-
+2156.5,6196.83435219526,9.99999961853027,9.99999961853027,0,2.491158,593.6995,290.0637,290.0637,899.9826,-148.1575,18.03386,55.95378,-9.211259,18.03386,0,0,3,0.8332965,0.9503915,0,0,0,3.314658,0.04154791,12.89397,16.25017,0,4289.707,-,-
+2157.5,6199.61212986708,9.99999961853027,9.99999961853027,0,2.691878,593.6995,307.3597,307.3597,899.9826,-148.1575,19.10919,55.95378,-9.211259,19.10919,0,0,3,0.854803,0.9661994,0,0,0,3.314486,0.04154791,13.93215,17.28819,0,4474.773,-,-
+2158.5,6202.38990753889,9.99999961853027,9.99999961853027,0,2.691878,593.6995,307.3597,307.3597,906.4686,-148.1575,19.10919,56.35703,-9.211259,19.10919,0,0,3,0.854803,0.9661994,0,0,0,3.314486,0.04154791,13.93215,17.28819,0,4474.773,-,-
+2159.5,6205.1676852107,9.99999961853027,9.99999961853027,0,2.691878,593.6995,307.3597,307.3597,906.4686,-148.1575,19.10919,56.35703,-9.211259,19.10919,0,0,3,0.854803,0.9661994,0,0,0,3.314486,0.04154791,13.93215,17.28819,0,4474.773,-,-
+2160.5,6207.94546288252,9.99999961853027,9.99999961853027,0,2.691878,593.6995,307.3597,307.3597,906.4686,-148.1575,19.10919,56.35703,-9.211259,19.10919,0,0,3,0.854803,0.9661994,0,0,0,3.314486,0.04154791,13.93215,17.28819,0,4474.773,-,-
+2161.5,6210.72324055433,9.99999961853027,9.99999961853027,0,2.875415,593.6995,323.1723,323.1723,906.4686,-148.1575,20.09229,56.35703,-9.211259,20.09229,0,0,3,0.8744643,0.98065,0,0,0,3.314317,0.04154791,14.88131,18.23717,0,4643.968,-,-
+2162.5,6213.50101822615,9.99999961853027,9.99999961853027,0,2.875415,593.6995,323.1723,323.1723,912.3983,-148.1575,20.09229,56.72569,-9.211259,20.09229,0,0,3,0.8744643,0.98065,0,0,0,3.314317,0.04154791,14.88131,18.23717,0,4643.968,-,-
+2163.5,6216.27879589796,9.99999961853027,9.99999961853027,0,2.875415,593.6995,323.1723,323.1723,912.3983,-148.1575,20.09229,56.72569,-9.211259,20.09229,0,0,3,0.8744643,0.98065,0,0,0,3.314317,0.04154791,14.88131,18.23717,0,4643.968,-,-
+2164.5,6219.05657356977,9.99999961853027,9.99999961853027,0,3.058952,593.6995,338.9822,338.9822,912.3983,-148.1575,21.07523,56.72569,-9.211259,21.07523,0,0,3,0.8941245,0.9950994,0,0,0,3.314137,0.04154791,15.83032,19.186,0,4813.135,-,-
+2165.5,6221.83435124159,9.99999961853027,9.99999961853027,0,3.058952,593.6995,338.9822,338.9822,918.327,-148.1575,21.07523,57.09429,-9.211259,21.07523,0,0,3,0.8941245,0.9950994,0,0,0,3.314137,0.04154791,15.83032,19.186,0,4813.135,-,-
+2166.5,6224.6121289134,9.99999961853027,9.99999961853027,0,3.058952,593.6995,338.9822,338.9822,918.327,-148.1575,21.07523,57.09429,-9.211259,21.07523,0,0,3,0.8941245,0.9950994,0,0,0,3.314137,0.04154791,15.83032,19.186,0,4813.135,-,-
+2167.5,6227.38990658522,9.99999961853027,9.99999961853027,0,3.058952,593.6995,338.9822,338.9822,918.327,-148.1575,21.07523,57.09429,-9.211259,21.07523,0,0,3,0.8941245,0.9950994,0,0,0,3.314137,0.04154791,15.83032,19.186,0,4813.135,-,-
+2168.5,6230.16768425703,9.99999961853027,9.99999961853027,0,3.242488,593.6995,354.7892,354.7892,918.327,-148.1575,22.05798,57.09429,-9.211259,22.05798,0,0,3,0.9137784,1.009547,0,0,0,3.313945,0.04154791,16.77916,20.13466,0,4982.27,-,-
+2169.5,6232.94546192884,9.99999961853027,9.99999961853027,0,3.242488,593.6995,354.7892,354.7892,924.2546,-148.1575,22.05798,57.46282,-9.211259,22.05798,0,0,3,0.9137784,1.009547,0,0,0,3.313945,0.04154791,16.77916,20.13466,0,4982.27,-,-
+2170.5,6235.72323960066,9.99999961853027,9.99999961853027,0,3.242488,593.6995,354.7892,354.7892,924.2546,-148.1575,22.05798,57.46282,-9.211259,22.05798,0,0,3,0.9137784,1.009547,0,0,0,3.313945,0.04154791,16.77916,20.13466,0,4982.27,-,-
+2171.5,6238.50101727247,9.99999961853027,9.99999961853027,0,3.334257,593.6995,362.6917,362.6917,924.2546,-148.1575,22.54929,57.46282,-9.211259,22.54929,0,0,3,0.9236054,1.016769,0,0,0,3.313845,0.04154791,17.25352,20.60892,0,5066.826,-,-
+2172.5,6241.27879494429,9.99999961853027,9.99999961853027,0,3.426025,593.6995,370.5933,370.5933,927.218,-148.1575,23.04055,57.64706,-9.211259,23.04055,0,0,3,0.9334301,1.023989,0,0,0,3.313742,0.04154791,17.72784,21.08313,0,5151.374,-,-
+2173.5,6244.0565726161,9.99999961853027,9.99999961853027,0,3.426025,593.6995,370.5933,370.5933,930.1812,-148.1575,23.04055,57.83129,-9.211259,23.04055,0,0,3,0.9334301,1.023989,0,0,0,3.313742,0.04154791,17.72784,21.08313,0,5151.374,-,-
+2174.5,6246.83435028791,9.99999961853027,9.99999961853027,0,3.426025,593.6995,370.5933,370.5933,930.1812,-148.1575,23.04055,57.83129,-9.211259,23.04055,0,0,3,0.9334301,1.023989,0,0,0,3.313742,0.04154791,17.72784,21.08313,0,5151.374,-,-
+2175.5,6249.61212795973,9.99999961853027,9.99999961853027,0,3.609561,593.6995,386.3942,386.3942,930.1812,-148.1575,24.02293,57.83129,-9.211259,24.02293,0,0,3,0.9530778,1.038431,0,0,0,3.313529,0.04154791,18.67634,22.03142,0,5320.443,-,-
+2176.5,6252.38990563154,9.99999961853027,9.99999961853027,0,3.609561,593.6995,386.3942,386.3942,936.1065,-148.1575,24.02293,58.19968,-9.211259,24.02293,0,0,3,0.9530778,1.038431,0,0,0,3.313529,0.04154791,18.67634,22.03142,0,5320.443,-,-
+2177.5,6255.16768330336,9.99999961853027,9.99999961853027,0,3.609561,593.6995,386.3942,386.3942,936.1065,-148.1575,24.02293,58.19968,-9.211259,24.02293,0,0,3,0.9530778,1.038431,0,0,0,3.313529,0.04154791,18.67634,22.03142,0,5320.443,-,-
+2178.5,6257.94546097517,9.99999961853027,9.99999961853027,0,3.609561,593.6995,386.3942,386.3942,936.1065,-148.1575,24.02293,58.19968,-9.211259,24.02293,0,0,3,0.9530778,1.038431,0,0,0,3.313529,0.04154791,18.67634,22.03142,0,5320.443,-,-
+2179.5,6260.72323864698,9.99999961853027,9.99999961853027,0,3.793098,593.6995,402.1918,402.1918,936.1065,-148.1575,25.0051,58.19968,-9.211259,25.0051,0,0,3,0.9727218,1.052868,0,0,0,3.313304,0.04154791,19.62465,22.97951,0,5491.45,-,-
+2180.5,6263.5010163188,9.99999961853027,9.99999961853027,0,3.793098,593.6995,402.1918,402.1918,942.0306,-148.1575,25.0051,58.56799,-9.211259,25.0051,0,0,3,0.9727218,1.052868,0,0,0,3.313304,0.04154791,19.62465,22.97951,0,5491.45,-,-
+2181.5,6266.27879399061,9.99999961853027,9.99999961853027,0,3.793098,593.6995,402.1918,402.1918,942.0306,-148.1575,25.0051,58.56799,-9.211259,25.0051,0,0,3,0.9727218,1.052868,0,0,0,3.313304,0.04154791,19.62465,22.97951,0,5491.45,-,-
+2182.5,6269.05657166243,9.99999961853027,9.99999961853027,0,3.976635,593.6995,417.9859,417.9859,942.0306,-148.1575,25.98705,58.56799,-9.211259,25.98705,0,0,3,0.9923607,1.067304,0,0,0,3.313068,0.04154791,20.57277,23.92738,0,5674.662,-,-
+2183.5,6271.83434933424,9.99999961853027,9.99999961853027,0,3.976635,593.6995,417.9859,417.9859,947.9534,-148.1575,25.98705,58.93623,-9.211259,25.98705,0,0,3,0.9923607,1.067304,0,0,0,3.313068,0.04154791,20.57277,23.92738,0,5674.662,-,-
+2184.5,6274.61212700605,9.99999961853027,9.99999961853027,0,3.976635,593.6995,417.9859,417.9859,947.9534,-148.1575,25.98705,58.93623,-9.211259,25.98705,0,0,3,0.9923607,1.067304,0,0,0,3.313068,0.04154791,20.57277,23.92738,0,5674.662,-,-
+2185.5,6277.38990467787,9.99999961853027,9.99999961853027,0,3.976635,593.6995,417.9859,417.9859,947.9534,-148.1575,25.98705,58.93623,-9.211259,25.98705,0,0,3,0.9923607,1.067304,0,0,0,3.313068,0.04154791,20.57277,23.92738,0,5674.662,-,-
+2186.5,6280.16768234968,9.99999961853027,9.99999961853027,0,4.160172,593.6995,433.7763,433.7763,947.9534,-148.1575,26.96877,58.93623,-9.211259,26.96877,0,0,3,1.011995,1.081735,0,0,0,3.312821,0.04154791,21.52067,24.87504,0,5861.048,-,-
+2187.5,6282.9454600215,9.99999961853027,9.99999961853027,0,4.160172,593.6995,433.7763,433.7763,953.8748,-148.1575,26.96877,59.30437,-9.211259,26.96877,0,0,3,1.011995,1.081735,0,0,0,3.312821,0.04154791,21.52067,24.87504,0,5861.048,-,-
+2188.5,6285.72323769331,9.99999961853027,9.99999961853027,0,4.160172,593.6995,433.7763,433.7763,953.8748,-148.1575,26.96877,59.30437,-9.211259,26.96877,0,0,3,1.011995,1.081735,0,0,0,3.312821,0.04154791,21.52067,24.87504,0,5861.048,-,-
+2189.5,6288.50101536512,9.99999961853027,9.99999961853027,0,4.25194,593.6995,441.6702,441.6702,953.8748,-148.1575,27.45955,59.30437,-9.211259,27.45955,0,0,3,1.02181,1.088948,0,0,0,3.312694,0.04154791,21.99454,25.34879,0,5963.787,-,-
+2190.5,6291.27879303694,9.99999961853027,9.99999961853027,0,4.343708,593.6995,449.563,449.563,956.835,-148.1575,27.95026,59.48841,-9.211259,27.95026,0,0,3,1.031624,1.096163,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,6066.511,-,-
+2191.5,6294.05657070875,9.99999961853027,9.99999961853027,0,4.343708,593.6995,449.563,449.563,959.7948,-148.1575,27.95026,59.67243,-9.211259,27.95026,0,0,3,1.031624,1.096163,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,6066.511,-,-
+2192.5,6296.83434838057,9.99999961853027,9.99999961853027,0,4.343708,593.6995,449.563,449.563,959.7948,-148.1575,27.95026,59.67243,-9.211259,27.95026,0,0,3,1.031624,1.096163,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,6066.511,-,-
+2193.5,6299.61212605238,9.99999961853027,9.99999961853027,0,4.343708,593.6995,449.563,449.563,959.7948,-148.1575,27.95026,59.67243,-9.211259,27.95026,0,0,3,1.031624,1.096163,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,6066.511,-,-
+2194.5,6302.38990372419,9.99999961853027,9.99999961853027,0,4.343708,593.6995,449.563,449.563,959.7948,-148.1575,27.95026,59.67243,-9.211259,27.95026,0,0,3,1.031624,1.096163,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,6066.511,-,-
+2195.5,6305.16768139601,9.99999961853027,9.99999961853027,0,4.343708,593.6995,449.563,449.563,959.7948,-148.1575,27.95026,59.67243,-9.211259,27.95026,0,0,3,1.031624,1.096163,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,6066.511,-,-
+2196.5,6307.94545906782,9.99999961853027,9.99999961853027,0,4.343708,593.6995,449.563,449.563,959.7948,-148.1575,27.95026,59.67243,-9.211259,27.95026,0,0,3,1.031624,1.096163,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,6066.511,-,-
+2197.5,6310.72323673964,9.99999961853027,9.99999961853027,0,4.343708,593.6995,449.563,449.563,959.7948,-148.1575,27.95026,59.67243,-9.211259,27.95026,0,0,3,1.031624,1.096163,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,6066.511,-,-
+2198.5,6313.50101441145,9.99999961853027,9.99999961853027,0,4.343708,593.6995,449.563,449.563,959.7948,-148.1575,27.95026,59.67243,-9.211259,27.95026,0,0,3,1.031624,1.096163,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,6066.511,-,-
+2199.5,6316.27879208326,9.99999961853027,9.99999961853027,0,4.343708,593.6995,449.563,449.563,959.7948,-148.1575,27.95026,59.67243,-9.211259,27.95026,0,0,3,1.031624,1.096163,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,6066.511,-,-
+2200.5,6319.05656975508,9.99999961853027,9.99999961853027,0,4.343708,593.6995,449.563,449.563,959.7948,-148.1575,27.95026,59.67243,-9.211259,27.95026,0,0,3,1.031624,1.096163,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,6066.511,-,-
+2201.5,6321.83434742689,9.99999961853027,9.99999961853027,0,4.343708,593.6995,449.563,449.563,959.7948,-148.1575,27.95026,59.67243,-9.211259,27.95026,0,0,3,1.031624,1.096163,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,6066.511,-,-
+2202.5,6324.61212509871,9.99999961853027,9.99999961853027,0,4.343708,593.6995,449.563,449.563,959.7948,-148.1575,27.95026,59.67243,-9.211259,27.95026,0,0,3,1.031624,1.096163,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,6066.511,-,-
+2203.5,6327.38990277052,9.99999961853027,9.99999961853027,0,4.343708,593.6995,449.563,449.563,959.7948,-148.1575,27.95026,59.67243,-9.211259,27.95026,0,0,3,1.031624,1.096163,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,6066.511,-,-
+2204.5,6330.16768044233,9.99999961853027,9.99999961853027,0,4.343708,593.6995,449.563,449.563,959.7948,-148.1575,27.95026,59.67243,-9.211259,27.95026,0,0,3,1.031624,1.096163,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,6066.511,-,-
+2205.5,6332.94545811415,9.99999961853027,9.99999961853027,0,4.343708,593.6995,449.563,449.563,959.7948,-148.1575,27.95026,59.67243,-9.211259,27.95026,0,0,3,1.031624,1.096163,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,6066.511,-,-
+2206.5,6335.72323578596,9.99999961853027,9.99999961853027,0,4.343708,593.6995,449.563,449.563,959.7948,-148.1575,27.95026,59.67243,-9.211259,27.95026,0,0,3,1.031624,1.096163,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,6066.511,-,-
+2207.5,6338.50101345778,9.99999961853027,9.99999961853027,0,4.343708,593.6995,449.563,449.563,959.7948,-148.1575,27.95026,59.67243,-9.211259,27.95026,0,0,3,1.031624,1.096163,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,6066.511,-,-
+2208.5,6341.27879112959,9.99999961853027,9.99999961853027,0,4.343708,593.6995,449.563,449.563,959.7948,-148.1575,27.95026,59.67243,-9.211259,27.95026,0,0,3,1.031624,1.096163,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,6066.511,-,-
+2209.5,6344.0565688014,9.99999961853027,9.99999961853027,0,4.343708,593.6995,449.563,449.563,959.7948,-148.1575,27.95026,59.67243,-9.211259,27.95026,0,0,3,1.031624,1.096163,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,6066.511,-,-
+2210.5,6346.83434647322,9.99999961853027,9.99999961853027,0,4.343708,593.6995,449.563,449.563,959.7948,-148.1575,27.95026,59.67243,-9.211259,27.95026,0,0,3,1.031624,1.096163,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,6066.511,-,-
+2211.5,6349.61212414503,9.99999961853027,9.99999961853027,0,4.343708,593.6995,449.563,449.563,959.7948,-148.1575,27.95026,59.67243,-9.211259,27.95026,0,0,3,1.031624,1.096163,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,6066.511,-,-
+2212.5,6352.38990181684,9.99999961853027,9.99999961853027,0,4.343708,593.6995,449.563,449.563,959.7948,-148.1575,27.95026,59.67243,-9.211259,27.95026,0,0,3,1.031624,1.096163,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,6066.511,-,-
+2213.5,6355.16767948866,9.99999961853027,9.99999961853027,0,4.343708,593.6995,449.563,449.563,959.7948,-148.1575,27.95026,59.67243,-9.211259,27.95026,0,0,3,1.031624,1.096163,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,6066.511,-,-
+2214.5,6357.94545716047,9.99999961853027,9.99999961853027,0,4.343708,593.6995,449.563,449.563,959.7948,-148.1575,27.95026,59.67243,-9.211259,27.95026,0,0,3,1.031624,1.096163,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,6066.511,-,-
+2215.5,6360.72323483229,9.99999961853027,9.99999961853027,0,4.343708,593.6995,449.563,449.563,959.7948,-148.1575,27.95026,59.67243,-9.211259,27.95026,0,0,3,1.031624,1.096163,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,6066.511,-,-
+2216.5,6363.5010125041,9.99999961853027,9.99999961853027,0,4.343708,593.6995,449.563,449.563,959.7948,-148.1575,27.95026,59.67243,-9.211259,27.95026,0,0,3,1.031624,1.096163,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,6066.511,-,-
+2217.5,6366.27879017591,9.99999961853027,9.99999961853027,0,4.343708,593.6995,449.563,449.563,959.7948,-148.1575,27.95026,59.67243,-9.211259,27.95026,0,0,3,1.031624,1.096163,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,6066.511,-,-
+2218.5,6369.05656784773,9.99999961853027,9.99999961853027,0,4.343708,593.6995,449.563,449.563,959.7948,-148.1575,27.95026,59.67243,-9.211259,27.95026,0,0,3,1.031624,1.096163,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,6066.511,-,-
+2219.5,6371.83434551954,9.99999961853027,9.99999961853027,0,4.343708,593.6995,449.563,449.563,959.7948,-148.1575,27.95026,59.67243,-9.211259,27.95026,0,0,3,1.031624,1.096163,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,6066.511,-,-
+2220.5,6374.61212319136,9.99999961853027,9.99999961853027,0,4.343708,593.6995,449.563,449.563,959.7948,-148.1575,27.95026,59.67243,-9.211259,27.95026,0,0,3,1.031624,1.096163,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,6066.511,-,-
+2221.5,6377.38990086317,9.99999961853027,9.99999961853027,0,4.343708,593.6995,449.563,449.563,959.7948,-148.1575,27.95026,59.67243,-9.211259,27.95026,0,0,3,1.031624,1.096163,0,0,0,3.312563,0.04154791,22.46836,25.82247,0,6066.511,-,-
+2222.5,6380.16767853498,9.99999961853027,9.99999961853027,0,4.232448,593.6995,439.9935,439.9935,959.7948,-148.1575,27.35531,59.67243,-9.211259,27.35531,0,0,3,1.019725,1.087418,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5941.965,-,-
+2223.5,6382.9454562068,9.99999961853027,9.99999961853027,0,4.232448,593.6995,439.9935,439.9935,956.2062,-148.1575,27.35531,59.44932,-9.211259,27.35531,0,0,3,1.019725,1.087418,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5941.965,-,-
+2224.5,6385.72323387861,9.99999961853027,9.99999961853027,0,4.232448,593.6995,439.9935,439.9935,956.2062,-148.1575,27.35531,59.44932,-9.211259,27.35531,0,0,3,1.019725,1.087418,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5941.965,-,-
+2225.5,6388.50101155043,9.99999961853027,9.99999961853027,0,4.232448,593.6995,439.9935,439.9935,956.2062,-148.1575,27.35531,59.44932,-9.211259,27.35531,0,0,3,1.019725,1.087418,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5941.965,-,-
+2226.5,6391.27878922224,9.99999961853027,9.99999961853027,0,4.232448,593.6995,439.9935,439.9935,956.2062,-148.1575,27.35531,59.44932,-9.211259,27.35531,0,0,3,1.019725,1.087418,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5941.965,-,-
+2227.5,6394.05656689405,9.99999961853027,9.99999961853027,0,4.232448,593.6995,439.9935,439.9935,956.2062,-148.1575,27.35531,59.44932,-9.211259,27.35531,0,0,3,1.019725,1.087418,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5941.965,-,-
+2228.5,6396.83434456587,9.99999961853027,9.99999961853027,0,4.232448,593.6995,439.9935,439.9935,956.2062,-148.1575,27.35531,59.44932,-9.211259,27.35531,0,0,3,1.019725,1.087418,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5941.965,-,-
+2229.5,6399.61212223768,9.99999961853027,9.99999961853027,0,4.232448,593.6995,439.9935,439.9935,956.2062,-148.1575,27.35531,59.44932,-9.211259,27.35531,0,0,3,1.019725,1.087418,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5941.965,-,-
+2230.5,6402.3898999095,9.99999961853027,9.99999961853027,0,4.232448,593.6995,439.9935,439.9935,956.2062,-148.1575,27.35531,59.44932,-9.211259,27.35531,0,0,3,1.019725,1.087418,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5941.965,-,-
+2231.5,6405.16767758131,9.99999961853027,9.99999961853027,0,4.232448,593.6995,439.9935,439.9935,956.2062,-148.1575,27.35531,59.44932,-9.211259,27.35531,0,0,3,1.019725,1.087418,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5941.965,-,-
+2232.5,6407.94545525312,9.99999961853027,9.99999961853027,0,4.232448,593.6995,439.9935,439.9935,956.2062,-148.1575,27.35531,59.44932,-9.211259,27.35531,0,0,3,1.019725,1.087418,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5941.965,-,-
+2233.5,6410.72323292494,9.99999961853027,9.99999961853027,0,4.232448,593.6995,439.9935,439.9935,956.2062,-148.1575,27.35531,59.44932,-9.211259,27.35531,0,0,3,1.019725,1.087418,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5941.965,-,-
+2234.5,6413.50101059675,9.99999961853027,9.99999961853027,0,4.232448,593.6995,439.9935,439.9935,956.2062,-148.1575,27.35531,59.44932,-9.211259,27.35531,0,0,3,1.019725,1.087418,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5941.965,-,-
+2235.5,6416.27878826857,9.99999961853027,9.99999961853027,0,4.232448,593.6995,439.9935,439.9935,956.2062,-148.1575,27.35531,59.44932,-9.211259,27.35531,0,0,3,1.019725,1.087418,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5941.965,-,-
+2236.5,6419.05656594038,9.99999961853027,9.99999961853027,0,4.232448,593.6995,439.9935,439.9935,956.2062,-148.1575,27.35531,59.44932,-9.211259,27.35531,0,0,3,1.019725,1.087418,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5941.965,-,-
+2237.5,6421.83434361219,9.99999961853027,9.99999961853027,0,4.232448,593.6995,439.9935,439.9935,956.2062,-148.1575,27.35531,59.44932,-9.211259,27.35531,0,0,3,1.019725,1.087418,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5941.965,-,-
+2238.5,6424.61212128401,9.99999961853027,9.99999961853027,0,4.232448,593.6995,439.9935,439.9935,956.2062,-148.1575,27.35531,59.44932,-9.211259,27.35531,0,0,3,1.019725,1.087418,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5941.965,-,-
+2239.5,6427.38989895582,9.99999961853027,9.99999961853027,0,4.232448,593.6995,439.9935,439.9935,956.2062,-148.1575,27.35531,59.44932,-9.211259,27.35531,0,0,3,1.019725,1.087418,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5941.965,-,-
+2240.5,6430.16767662764,9.99999961853027,9.99999961853027,0,4.232448,593.6995,439.9935,439.9935,956.2062,-148.1575,27.35531,59.44932,-9.211259,27.35531,0,0,3,1.019725,1.087418,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5941.965,-,-
+2241.5,6432.94545429945,9.99999961853027,9.99999961853027,0,4.232448,593.6995,439.9935,439.9935,956.2062,-148.1575,27.35531,59.44932,-9.211259,27.35531,0,0,3,1.019725,1.087418,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5941.965,-,-
+2242.5,6435.72323197126,9.99999961853027,9.99999961853027,0,4.232448,593.6995,439.9935,439.9935,956.2062,-148.1575,27.35531,59.44932,-9.211259,27.35531,0,0,3,1.019725,1.087418,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5941.965,-,-
+2243.5,6438.50100964308,9.99999961853027,9.99999961853027,0,4.232448,593.6995,439.9935,439.9935,956.2062,-148.1575,27.35531,59.44932,-9.211259,27.35531,0,0,3,1.019725,1.087418,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5941.965,-,-
+2244.5,6441.27878731489,9.99999961853027,9.99999961853027,0,4.232448,593.6995,439.9935,439.9935,956.2062,-148.1575,27.35531,59.44932,-9.211259,27.35531,0,0,3,1.019725,1.087418,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5941.965,-,-
+2245.5,6444.05656498671,9.99999961853027,9.99999961853027,0,4.232448,593.6995,439.9935,439.9935,956.2062,-148.1575,27.35531,59.44932,-9.211259,27.35531,0,0,3,1.019725,1.087418,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5941.965,-,-
+2246.5,6446.83434265852,9.99999961853027,9.99999961853027,0,4.232448,593.6995,439.9935,439.9935,956.2062,-148.1575,27.35531,59.44932,-9.211259,27.35531,0,0,3,1.019725,1.087418,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5941.965,-,-
+2247.5,6449.61212033033,9.99999961853027,9.99999961853027,0,4.232448,593.6995,439.9935,439.9935,956.2062,-148.1575,27.35531,59.44932,-9.211259,27.35531,0,0,3,1.019725,1.087418,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5941.965,-,-
+2248.5,6452.38989800215,9.99999961853027,9.99999961853027,0,4.232448,593.6995,439.9935,439.9935,956.2062,-148.1575,27.35531,59.44932,-9.211259,27.35531,0,0,3,1.019725,1.087418,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5941.965,-,-
+2249.5,6455.16767567396,9.99999961853027,9.99999961853027,0,4.232448,593.6995,439.9935,439.9935,956.2062,-148.1575,27.35531,59.44932,-9.211259,27.35531,0,0,3,1.019725,1.087418,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5941.965,-,-
+2250.5,6457.94545334578,9.99999961853027,9.99999961853027,0,4.232448,593.6995,439.9935,439.9935,956.2062,-148.1575,27.35531,59.44932,-9.211259,27.35531,0,0,3,1.019725,1.087418,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5941.965,-,-
+2251.5,6460.72323101759,9.99999961853027,9.99999961853027,0,4.232448,593.6995,439.9935,439.9935,956.2062,-148.1575,27.35531,59.44932,-9.211259,27.35531,0,0,3,1.019725,1.087418,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5941.965,-,-
+2252.5,6463.5010086894,9.99999961853027,9.99999961853027,0,4.232448,593.6995,439.9935,439.9935,956.2062,-148.1575,27.35531,59.44932,-9.211259,27.35531,0,0,3,1.019725,1.087418,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5941.965,-,-
+2253.5,6466.27878636122,9.99999961853027,9.99999961853027,0,4.232448,593.6995,439.9935,439.9935,956.2062,-148.1575,27.35531,59.44932,-9.211259,27.35531,0,0,3,1.019725,1.087418,0,0,0,3.312721,0.04154791,21.8939,25.24817,0,5941.965,-,-
+2254.5,6469.57873815298,11.8798264503479,14.9999994277954,1.044348,4.232448,675.5021,1474.018,1443.454,1066.362,-148.3775,104.2697,75.43275,-10.49599,102.1076,2.16203,0,3,2.641878,2.314522,0,0,67.13655,3.935455,0.06965937,26.00957,97.15123,0,20436.1,-,-
+2255.5,6473.16731733084,12.9188850402832,19.9999992370605,-0.4670935,4.232448,675.5021,0,0,1474.102,-148.3775,0,104.2757,-10.49599,0,0,0,0,0,0,0,0,-32.6537,4.279666,0.08958274,28.28447,2.098083E-05,0,1617.554,-,-
+2256.5,6477.17098420858,14.4132007598877,19.9999992370605,1.297269,4.232448,1103.061,1391.248,1254.159,1437.5,-169.7908,160.7062,166.0489,-19.61292,144.8708,15.83542,0,2,4.12664,3.109107,0,0,101.1799,4.774691,0.1244029,31.55611,137.6351,0,29710.51,-,-
+2257.5,6481.58940833807,15.9063268661499,19.9999992370605,-0.4677553,4.232448,1103.061,0,0,1959.218,-169.7908,0,226.3138,-19.61292,0,0,0,0,0,0,0,0,-40.26171,5.269322,0.1672087,34.82515,-3.433228E-05,-3.433228E-05,3092.765,-,-
+2258.5,6486.39019435644,17.2828296661377,19.9999992370605,1.232479,4.232448,982.7237,1572.505,1623.294,1410.02,-159.0498,161.8274,145.106,-16.36791,167.0542,-5.226784,0,3,4.373536,3.636839,0,0,115.2652,5.725319,0.2144835,37.83885,159.0438,0,30129.37,-,-
+2259.5,6491.87648481131,19.7506456375122,19.9999992370605,0.1385298,4.232448,1123.047,647.1051,594.7838,1953.508,-171.6895,76.10292,229.7427,-20.19157,69.94967,6.153251,0,3,2.662379,2.376813,0,0,14.80567,6.542838,0.3201055,43.24186,64.91048,0,14613.98,-,-
+2260.5,6497.43204015493,19.9999992370605,19.9999992370605,0,4.232448,1137.225,470.114,464.5102,1677.139,-173.0364,55.98586,199.7304,-20.6069,55.3185,0.6673566,0,3,2.394253,2.178631,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,11332.09,-,-
+2261.5,6502.98759549856,19.9999992370605,19.9999992370605,0,4.232448,1137.225,464.5102,464.5102,1613.793,-173.0364,55.3185,192.1865,-20.6069,55.3185,0,0,3,2.394253,2.178631,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,11220.19,-,-
+2262.5,6508.54315084219,19.9999992370605,19.9999992370605,0,4.232448,1137.225,464.5102,464.5102,1611.691,-173.0364,55.3185,191.9363,-20.6069,55.3185,0,0,3,2.394253,2.178631,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,11220.19,-,-
+2263.5,6514.09870618582,19.9999992370605,19.9999992370605,0,4.232448,1137.225,464.5102,464.5102,1611.691,-173.0364,55.3185,191.9363,-20.6069,55.3185,0,0,3,2.394253,2.178631,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,11220.19,-,-
+2264.5,6519.65426152945,19.9999992370605,19.9999992370605,0,4.232448,1137.225,464.5102,464.5102,1611.691,-173.0364,55.3185,191.9363,-20.6069,55.3185,0,0,3,2.394253,2.178631,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,11220.19,-,-
+2265.5,6525.20981687307,19.9999992370605,19.9999992370605,0,4.232448,1137.225,464.5102,464.5102,1611.691,-173.0364,55.3185,191.9363,-20.6069,55.3185,0,0,3,2.394253,2.178631,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,11220.19,-,-
+2266.5,6530.7653722167,19.9999992370605,19.9999992370605,0,4.232448,1137.225,464.5102,464.5102,1611.691,-173.0364,55.3185,191.9363,-20.6069,55.3185,0,0,3,2.394253,2.178631,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,11220.19,-,-
+2267.5,6536.32092756033,19.9999992370605,19.9999992370605,0,4.232448,1137.225,464.5102,464.5102,1611.691,-173.0364,55.3185,191.9363,-20.6069,55.3185,0,0,3,2.394253,2.178631,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,11220.19,-,-
+2268.5,6541.87648290396,19.9999992370605,19.9999992370605,0,4.232448,1137.225,464.5102,464.5102,1611.691,-173.0364,55.3185,191.9363,-20.6069,55.3185,0,0,3,2.394253,2.178631,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,11220.19,-,-
+2269.5,6547.43203824759,19.9999992370605,19.9999992370605,0,4.232448,1137.225,464.5102,464.5102,1611.691,-173.0364,55.3185,191.9363,-20.6069,55.3185,0,0,3,2.394253,2.178631,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,11220.19,-,-
+2270.5,6552.98759359121,19.9999992370605,19.9999992370605,0,4.232448,1137.225,464.5102,464.5102,1611.691,-173.0364,55.3185,191.9363,-20.6069,55.3185,0,0,3,2.394253,2.178631,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,11220.19,-,-
+2271.5,6558.54314893484,19.9999992370605,19.9999992370605,0,4.232448,1137.225,464.5102,464.5102,1611.691,-173.0364,55.3185,191.9363,-20.6069,55.3185,0,0,3,2.394253,2.178631,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,11220.19,-,-
+2272.5,6564.09870427847,19.9999992370605,19.9999992370605,0,4.232448,1137.225,464.5102,464.5102,1611.691,-173.0364,55.3185,191.9363,-20.6069,55.3185,0,0,3,2.394253,2.178631,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,11220.19,-,-
+2273.5,6569.6542596221,19.9999992370605,19.9999992370605,0,4.232448,1137.225,464.5102,464.5102,1611.691,-173.0364,55.3185,191.9363,-20.6069,55.3185,0,0,3,2.394253,2.178631,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,11220.19,-,-
+2274.5,6575.20981496572,19.9999992370605,19.9999992370605,0,4.232448,1137.225,464.5102,464.5102,1611.691,-173.0364,55.3185,191.9363,-20.6069,55.3185,0,0,3,2.394253,2.178631,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,11220.19,-,-
+2275.5,6580.76537030935,19.9999992370605,19.9999992370605,0,4.232448,1137.225,464.5102,464.5102,1611.691,-173.0364,55.3185,191.9363,-20.6069,55.3185,0,0,3,2.394253,2.178631,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,11220.19,-,-
+2276.5,6586.32092565298,19.9999992370605,19.9999992370605,0,4.232448,1137.225,464.5102,464.5102,1611.691,-173.0364,55.3185,191.9363,-20.6069,55.3185,0,0,3,2.394253,2.178631,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,11220.19,-,-
+2277.5,6591.87648099661,19.9999992370605,19.9999992370605,0,4.232448,1137.225,464.5102,464.5102,1611.691,-173.0364,55.3185,191.9363,-20.6069,55.3185,0,0,3,2.394253,2.178631,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,11220.19,-,-
+2278.5,6597.43203634024,19.9999992370605,19.9999992370605,0,4.232448,1137.225,464.5102,464.5102,1611.691,-173.0364,55.3185,191.9363,-20.6069,55.3185,0,0,3,2.394253,2.178631,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,11220.19,-,-
+2279.5,6602.98759168386,19.9999992370605,19.9999992370605,0,4.232448,1137.225,464.5102,464.5102,1611.691,-173.0364,55.3185,191.9363,-20.6069,55.3185,0,0,3,2.394253,2.178631,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,11220.19,-,-
+2280.5,6608.54314702749,19.9999992370605,19.9999992370605,0,4.232448,1137.225,464.5102,464.5102,1611.691,-173.0364,55.3185,191.9363,-20.6069,55.3185,0,0,3,2.394253,2.178631,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,11220.19,-,-
+2281.5,6614.09870237112,19.9999992370605,19.9999992370605,0,4.232448,1137.225,464.5102,464.5102,1611.691,-173.0364,55.3185,191.9363,-20.6069,55.3185,0,0,3,2.394253,2.178631,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,11220.19,-,-
+2282.5,6619.65425771475,19.9999992370605,19.9999992370605,0,4.232448,1137.225,464.5102,464.5102,1611.691,-173.0364,55.3185,191.9363,-20.6069,55.3185,0,0,3,2.394253,2.178631,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,11220.19,-,-
+2283.5,6625.20981305838,19.9999992370605,19.9999992370605,0,4.232448,1137.225,464.5102,464.5102,1611.691,-173.0364,55.3185,191.9363,-20.6069,55.3185,0,0,3,2.394253,2.178631,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,11220.19,-,-
+2284.5,6630.765368402,19.9999992370605,19.9999992370605,0,4.232448,1137.225,464.5102,464.5102,1611.691,-173.0364,55.3185,191.9363,-20.6069,55.3185,0,0,3,2.394253,2.178631,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,11220.19,-,-
+2285.5,6636.32092374563,19.9999992370605,19.9999992370605,0,4.232448,1137.225,464.5102,464.5102,1611.691,-173.0364,55.3185,191.9363,-20.6069,55.3185,0,0,3,2.394253,2.178631,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,11220.19,-,-
+2286.5,6641.87647908926,19.9999992370605,19.9999992370605,0,4.232448,1137.225,464.5102,464.5102,1611.691,-173.0364,55.3185,191.9363,-20.6069,55.3185,0,0,3,2.394253,2.178631,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,11220.19,-,-
+2287.5,6647.43203443289,19.9999992370605,19.9999992370605,0,4.232448,1137.225,464.5102,464.5102,1611.691,-173.0364,55.3185,191.9363,-20.6069,55.3185,0,0,3,2.394253,2.178631,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,11220.19,-,-
+2288.5,6652.98758977652,19.9999992370605,19.9999992370605,0,4.232448,1137.225,464.5102,464.5102,1611.691,-173.0364,55.3185,191.9363,-20.6069,55.3185,0,0,3,2.394253,2.178631,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,11220.19,-,-
+2289.5,6658.54314512014,19.9999992370605,19.9999992370605,0,4.232448,1137.225,464.5102,464.5102,1611.691,-173.0364,55.3185,191.9363,-20.6069,55.3185,0,0,3,2.394253,2.178631,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,11220.19,-,-
+2290.5,6664.09870046377,19.9999992370605,19.9999992370605,0,4.232448,1137.225,464.5102,464.5102,1611.691,-173.0364,55.3185,191.9363,-20.6069,55.3185,0,0,3,2.394253,2.178631,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,11220.19,-,-
+2291.5,6669.6542558074,19.9999992370605,19.9999992370605,0,4.232448,1137.225,464.5102,464.5102,1611.691,-173.0364,55.3185,191.9363,-20.6069,55.3185,0,0,3,2.394253,2.178631,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,11220.19,-,-
+2292.5,6675.20981115103,19.9999992370605,19.9999992370605,0,4.232448,1137.225,464.5102,464.5102,1611.691,-173.0364,55.3185,191.9363,-20.6069,55.3185,0,0,3,2.394253,2.178631,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,11220.19,-,-
+2293.5,6680.76536649466,19.9999992370605,19.9999992370605,0,4.232448,1137.225,464.5102,464.5102,1611.691,-173.0364,55.3185,191.9363,-20.6069,55.3185,0,0,3,2.394253,2.178631,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,11220.19,-,-
+2294.5,6686.32092183828,19.9999992370605,19.9999992370605,0,4.232448,1137.225,464.5102,464.5102,1611.691,-173.0364,55.3185,191.9363,-20.6069,55.3185,0,0,3,2.394253,2.178631,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,11220.19,-,-
+2295.5,6691.87647718191,19.9999992370605,19.9999992370605,0,4.232448,1137.225,464.5102,464.5102,1611.691,-173.0364,55.3185,191.9363,-20.6069,55.3185,0,0,3,2.394253,2.178631,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,11220.19,-,-
+2296.5,6697.43203252554,19.9999992370605,19.9999992370605,0,4.232448,1137.225,464.5102,464.5102,1611.691,-173.0364,55.3185,191.9363,-20.6069,55.3185,0,0,3,2.394253,2.178631,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,11220.19,-,-
+2297.5,6702.98758786917,19.9999992370605,19.9999992370605,0,4.232448,1137.225,464.5102,464.5102,1611.691,-173.0364,55.3185,191.9363,-20.6069,55.3185,0,0,3,2.394253,2.178631,0,0,0,6.625442,0.3323833,43.78779,50.74562,0,11220.19,-,-
+2298.5,6708.5431432128,19.9999992370605,19.9999992370605,0,4.176641,1137.225,459.498,459.498,1611.691,-173.0364,54.7216,191.9363,-20.6069,54.7216,0,0,3,2.382315,2.169858,0,0,0,6.625597,0.3323833,43.21145,50.16943,0,11133.82,-,-
+2299.5,6714.09869855642,19.9999992370605,19.9999992370605,0,4.120835,1137.225,454.4854,454.4854,1609.812,-173.0364,54.12465,191.7124,-20.6069,54.12465,0,0,3,2.370375,2.161082,0,0,0,6.62575,0.3323833,42.63506,49.59319,0,11054.72,-,-
+2300.5,6719.65425390005,19.9999992370605,19.9999992370605,0,4.120835,1137.225,454.4854,454.4854,1607.932,-173.0364,54.12465,191.4886,-20.6069,54.12465,0,0,3,2.370375,2.161082,0,0,0,6.62575,0.3323833,42.63506,49.59319,0,11054.72,-,-
+2301.5,6725.20980924368,19.9999992370605,19.9999992370605,0,4.120835,1137.225,454.4854,454.4854,1607.932,-173.0364,54.12465,191.4886,-20.6069,54.12465,0,0,3,2.370375,2.161082,0,0,0,6.62575,0.3323833,42.63506,49.59319,0,11054.72,-,-
+2302.5,6730.76536458731,19.9999992370605,19.9999992370605,0,4.120835,1137.225,454.4854,454.4854,1607.932,-173.0364,54.12465,191.4886,-20.6069,54.12465,0,0,3,2.370375,2.161082,0,0,0,6.62575,0.3323833,42.63506,49.59319,0,11054.72,-,-
+2303.5,6736.32091993093,19.9999992370605,19.9999992370605,0,4.120835,1137.225,454.4854,454.4854,1607.932,-173.0364,54.12465,191.4886,-20.6069,54.12465,0,0,3,2.370375,2.161082,0,0,0,6.62575,0.3323833,42.63506,49.59319,0,11054.72,-,-
+2304.5,6741.87647527456,19.9999992370605,19.9999992370605,0,4.120835,1137.225,454.4854,454.4854,1607.932,-173.0364,54.12465,191.4886,-20.6069,54.12465,0,0,3,2.370375,2.161082,0,0,0,6.62575,0.3323833,42.63506,49.59319,0,11054.72,-,-
+2305.5,6747.43203061819,19.9999992370605,19.9999992370605,0,4.120835,1137.225,454.4854,454.4854,1607.932,-173.0364,54.12465,191.4886,-20.6069,54.12465,0,0,3,2.370375,2.161082,0,0,0,6.62575,0.3323833,42.63506,49.59319,0,11054.72,-,-
+2306.5,6752.98758596182,19.9999992370605,19.9999992370605,0,4.120835,1137.225,454.4854,454.4854,1607.932,-173.0364,54.12465,191.4886,-20.6069,54.12465,0,0,3,2.370375,2.161082,0,0,0,6.62575,0.3323833,42.63506,49.59319,0,11054.72,-,-
+2307.5,6758.54314130545,19.9999992370605,19.9999992370605,0,4.059066,1137.225,448.9368,448.9368,1607.932,-173.0364,53.46387,191.4886,-20.6069,53.46387,0,0,3,2.357161,2.151365,0,0,0,6.625917,0.3323833,41.99704,48.95535,0,10967.17,-,-
+2308.5,6764.09869664907,19.9999992370605,19.9999992370605,0,3.997297,1137.225,443.3878,443.3878,1605.851,-173.0364,52.80305,191.2408,-20.6069,52.80305,0,0,3,2.343944,2.141655,0,0,0,6.626082,0.3323833,41.35898,48.31745,0,10879.6,-,-
+2309.5,6769.6542519927,19.9999992370605,19.9999992370605,0,3.997297,1137.225,443.3878,443.3878,1603.77,-173.0364,52.80305,190.993,-20.6069,52.80305,0,0,3,2.343944,2.141655,0,0,0,6.626082,0.3323833,41.35898,48.31745,0,10879.6,-,-
+2310.5,6775.20980733633,19.9999992370605,19.9999992370605,0,3.997297,1137.225,443.3878,443.3878,1603.77,-173.0364,52.80305,190.993,-20.6069,52.80305,0,0,3,2.343944,2.141655,0,0,0,6.626082,0.3323833,41.35898,48.31745,0,10879.6,-,-
+2311.5,6780.76536267996,19.9999992370605,19.9999992370605,0,3.997297,1137.225,443.3878,443.3878,1603.77,-173.0364,52.80305,190.993,-20.6069,52.80305,0,0,3,2.343944,2.141655,0,0,0,6.626082,0.3323833,41.35898,48.31745,0,10879.6,-,-
+2312.5,6786.32091802359,19.9999992370605,19.9999992370605,0,3.997297,1137.225,443.3878,443.3878,1603.77,-173.0364,52.80305,190.993,-20.6069,52.80305,0,0,3,2.343944,2.141655,0,0,0,6.626082,0.3323833,41.35898,48.31745,0,10879.6,-,-
+2313.5,6791.87647336721,19.9999992370605,19.9999992370605,0,3.997297,1137.225,443.3878,443.3878,1603.77,-173.0364,52.80305,190.993,-20.6069,52.80305,0,0,3,2.343944,2.141655,0,0,0,6.626082,0.3323833,41.35898,48.31745,0,10879.6,-,-
+2314.5,6797.43202871084,19.9999992370605,19.9999992370605,0,3.997297,1137.225,443.3878,443.3878,1603.77,-173.0364,52.80305,190.993,-20.6069,52.80305,0,0,3,2.343944,2.141655,0,0,0,6.626082,0.3323833,41.35898,48.31745,0,10879.6,-,-
+2315.5,6802.98758405447,19.9999992370605,19.9999992370605,0,3.997297,1137.225,443.3878,443.3878,1603.77,-173.0364,52.80305,190.993,-20.6069,52.80305,0,0,3,2.343944,2.141655,0,0,0,6.626082,0.3323833,41.35898,48.31745,0,10879.6,-,-
+2316.5,6808.5431393981,19.9999992370605,19.9999992370605,0,3.935963,1137.225,437.8774,437.8774,1603.77,-173.0364,52.14681,190.993,-20.6069,52.14681,0,0,3,2.330817,2.132009,0,0,0,6.626243,0.3323833,40.72536,47.68399,0,10792.65,-,-
+2317.5,6814.09869474173,19.9999992370605,19.9999992370605,0,3.874629,1137.225,432.3666,432.3666,1601.704,-173.0364,51.49053,190.7469,-20.6069,51.49053,0,0,3,2.317692,2.122361,0,0,0,6.626401,0.3323833,40.09169,47.05048,0,10705.69,-,-
+2318.5,6819.65425008535,19.9999992370605,19.9999992370605,0,3.874629,1137.225,432.3666,432.3666,1599.637,-173.0364,51.49053,190.5008,-20.6069,51.49053,0,0,3,2.317692,2.122361,0,0,0,6.626401,0.3323833,40.09169,47.05048,0,10705.69,-,-
+2319.5,6825.20980542898,19.9999992370605,19.9999992370605,0,3.874629,1137.225,432.3666,432.3666,1599.637,-173.0364,51.49053,190.5008,-20.6069,51.49053,0,0,3,2.317692,2.122361,0,0,0,6.626401,0.3323833,40.09169,47.05048,0,10705.69,-,-
+2320.5,6830.76536077261,19.9999992370605,19.9999992370605,0,3.874629,1137.225,432.3666,432.3666,1599.637,-173.0364,51.49053,190.5008,-20.6069,51.49053,0,0,3,2.317692,2.122361,0,0,0,6.626401,0.3323833,40.09169,47.05048,0,10705.69,-,-
+2321.5,6836.32091611624,19.9999992370605,19.9999992370605,0,3.874629,1137.225,432.3666,432.3666,1599.637,-173.0364,51.49053,190.5008,-20.6069,51.49053,0,0,3,2.317692,2.122361,0,0,0,6.626401,0.3323833,40.09169,47.05048,0,10705.69,-,-
+2322.5,6841.87647145987,19.9999992370605,19.9999992370605,0,3.874629,1137.225,432.3666,432.3666,1599.637,-173.0364,51.49053,190.5008,-20.6069,51.49053,0,0,3,2.317692,2.122361,0,0,0,6.626401,0.3323833,40.09169,47.05048,0,10705.69,-,-
+2323.5,6847.43202680349,19.9999992370605,19.9999992370605,0,3.874629,1137.225,432.3666,432.3666,1599.637,-173.0364,51.49053,190.5008,-20.6069,51.49053,0,0,3,2.317692,2.122361,0,0,0,6.626401,0.3323833,40.09169,47.05048,0,10705.69,-,-
+2324.5,6852.98758214712,19.9999992370605,19.9999992370605,0,3.874629,1137.225,432.3666,432.3666,1599.637,-173.0364,51.49053,190.5008,-20.6069,51.49053,0,0,3,2.317692,2.122361,0,0,0,6.626401,0.3323833,40.09169,47.05048,0,10705.69,-,-
+2325.5,6858.54313749075,19.9999992370605,19.9999992370605,0,3.81317,1137.225,426.8443,426.8443,1599.637,-173.0364,50.83288,190.5008,-20.6069,50.83288,0,0,3,2.304541,2.112693,0,0,0,6.626558,0.3323833,39.4567,46.41564,0,10618.55,-,-
+2326.5,6864.09869283438,19.9999992370605,19.9999992370605,0,3.751712,1137.225,421.3215,421.3215,1597.567,-173.0364,50.17517,190.2542,-20.6069,50.17517,0,0,3,2.291384,2.103024,0,0,0,6.626711,0.3323833,38.82166,45.78076,0,10531.4,-,-
+2327.5,6869.65424817801,19.9999992370605,19.9999992370605,0,3.751712,1137.225,421.3215,421.3215,1595.495,-173.0364,50.17517,190.0075,-20.6069,50.17517,0,0,3,2.291384,2.103024,0,0,0,6.626711,0.3323833,38.82166,45.78076,0,10531.4,-,-
+2328.5,6875.20980352163,19.9999992370605,19.9999992370605,0,3.751712,1137.225,421.3215,421.3215,1595.495,-173.0364,50.17517,190.0075,-20.6069,50.17517,0,0,3,2.291384,2.103024,0,0,0,6.626711,0.3323833,38.82166,45.78076,0,10531.4,-,-
+2329.5,6880.76535886526,19.9999992370605,19.9999992370605,0,3.751712,1137.225,421.3215,421.3215,1595.495,-173.0364,50.17517,190.0075,-20.6069,50.17517,0,0,3,2.291384,2.103024,0,0,0,6.626711,0.3323833,38.82166,45.78076,0,10531.4,-,-
+2330.5,6886.32091420889,19.9999992370605,19.9999992370605,0,3.751712,1137.225,421.3215,421.3215,1595.495,-173.0364,50.17517,190.0075,-20.6069,50.17517,0,0,3,2.291384,2.103024,0,0,0,6.626711,0.3323833,38.82166,45.78076,0,10531.4,-,-
+2331.5,6891.87646955252,19.9999992370605,19.9999992370605,0,3.751712,1137.225,421.3215,421.3215,1595.495,-173.0364,50.17517,190.0075,-20.6069,50.17517,0,0,3,2.291384,2.103024,0,0,0,6.626711,0.3323833,38.82166,45.78076,0,10531.4,-,-
+2332.5,6897.43202489614,19.9999992370605,19.9999992370605,0,3.751712,1137.225,421.3215,421.3215,1595.495,-173.0364,50.17517,190.0075,-20.6069,50.17517,0,0,3,2.291384,2.103024,0,0,0,6.626711,0.3323833,38.82166,45.78076,0,10531.4,-,-
+2333.5,6902.98758023977,19.9999992370605,19.9999992370605,0,3.751712,1137.225,421.3215,421.3215,1595.495,-173.0364,50.17517,190.0075,-20.6069,50.17517,0,0,3,2.291384,2.103024,0,0,0,6.626711,0.3323833,38.82166,45.78076,0,10531.4,-,-
+2334.5,6908.5431355834,19.9999992370605,19.9999992370605,0,3.751712,1137.225,421.3215,421.3215,1595.495,-173.0364,50.17517,190.0075,-20.6069,50.17517,0,0,3,2.291384,2.103024,0,0,0,6.626711,0.3323833,38.82166,45.78076,0,10531.4,-,-
+2335.5,6914.09869092703,19.9999992370605,19.9999992370605,0,3.751712,1137.225,421.3215,421.3215,1595.495,-173.0364,50.17517,190.0075,-20.6069,50.17517,0,0,3,2.291384,2.103024,0,0,0,6.626711,0.3323833,38.82166,45.78076,0,10531.4,-,-
+2336.5,6919.65424627066,19.9999992370605,19.9999992370605,0,3.751712,1137.225,421.3215,421.3215,1595.495,-173.0364,50.17517,190.0075,-20.6069,50.17517,0,0,3,2.291384,2.103024,0,0,0,6.626711,0.3323833,38.82166,45.78076,0,10531.4,-,-
+2337.5,6925.20980161428,19.9999992370605,19.9999992370605,0,3.751712,1137.225,421.3215,421.3215,1595.495,-173.0364,50.17517,190.0075,-20.6069,50.17517,0,0,3,2.291384,2.103024,0,0,0,6.626711,0.3323833,38.82166,45.78076,0,10531.4,-,-
+2338.5,6930.76535695791,19.9999992370605,19.9999992370605,0,3.751712,1137.225,421.3215,421.3215,1595.495,-173.0364,50.17517,190.0075,-20.6069,50.17517,0,0,3,2.291384,2.103024,0,0,0,6.626711,0.3323833,38.82166,45.78076,0,10531.4,-,-
+2339.5,6936.32091230154,19.9999992370605,19.9999992370605,0,3.751712,1137.225,421.3215,421.3215,1595.495,-173.0364,50.17517,190.0075,-20.6069,50.17517,0,0,3,2.291384,2.103024,0,0,0,6.626711,0.3323833,38.82166,45.78076,0,10531.4,-,-
+2340.5,6941.87646764517,19.9999992370605,19.9999992370605,0,3.751712,1137.225,421.3215,421.3215,1595.495,-173.0364,50.17517,190.0075,-20.6069,50.17517,0,0,3,2.291384,2.103024,0,0,0,6.626711,0.3323833,38.82166,45.78076,0,10531.4,-,-
+2341.5,6947.4320229888,19.9999992370605,19.9999992370605,0,3.751712,1137.225,421.3215,421.3215,1595.495,-173.0364,50.17517,190.0075,-20.6069,50.17517,0,0,3,2.291384,2.103024,0,0,0,6.626711,0.3323833,38.82166,45.78076,0,10531.4,-,-
+2342.5,6952.98757833242,19.9999992370605,19.9999992370605,0,3.751712,1137.225,421.3215,421.3215,1595.495,-173.0364,50.17517,190.0075,-20.6069,50.17517,0,0,3,2.291384,2.103024,0,0,0,6.626711,0.3323833,38.82166,45.78076,0,10531.4,-,-
+2343.5,6958.54313367605,19.9999992370605,19.9999992370605,0,3.751712,1137.225,421.3215,421.3215,1595.495,-173.0364,50.17517,190.0075,-20.6069,50.17517,0,0,3,2.291384,2.103024,0,0,0,6.626711,0.3323833,38.82166,45.78076,0,10531.4,-,-
+2344.5,6964.09868901968,19.9999992370605,19.9999992370605,0,3.751712,1137.225,421.3215,421.3215,1595.495,-173.0364,50.17517,190.0075,-20.6069,50.17517,0,0,3,2.291384,2.103024,0,0,0,6.626711,0.3323833,38.82166,45.78076,0,10531.4,-,-
+2345.5,6969.65424436331,19.9999992370605,19.9999992370605,0,3.751712,1137.225,421.3215,421.3215,1595.495,-173.0364,50.17517,190.0075,-20.6069,50.17517,0,0,3,2.291384,2.103024,0,0,0,6.626711,0.3323833,38.82166,45.78076,0,10531.4,-,-
+2346.5,6975.20979970694,19.9999992370605,19.9999992370605,0,3.751712,1137.225,421.3215,421.3215,1595.495,-173.0364,50.17517,190.0075,-20.6069,50.17517,0,0,3,2.291384,2.103024,0,0,0,6.626711,0.3323833,38.82166,45.78076,0,10531.4,-,-
+2347.5,6980.76535505056,19.9999992370605,19.9999992370605,0,3.751712,1137.225,421.3215,421.3215,1595.495,-173.0364,50.17517,190.0075,-20.6069,50.17517,0,0,3,2.291384,2.103024,0,0,0,6.626711,0.3323833,38.82166,45.78076,0,10531.4,-,-
+2348.5,6986.32091039419,19.9999992370605,19.9999992370605,0,3.751712,1137.225,421.3215,421.3215,1595.495,-173.0364,50.17517,190.0075,-20.6069,50.17517,0,0,3,2.291384,2.103024,0,0,0,6.626711,0.3323833,38.82166,45.78076,0,10531.4,-,-
+2349.5,6991.87646573782,19.9999992370605,19.9999992370605,0,3.751712,1137.225,421.3215,421.3215,1595.495,-173.0364,50.17517,190.0075,-20.6069,50.17517,0,0,3,2.291384,2.103024,0,0,0,6.626711,0.3323833,38.82166,45.78076,0,10531.4,-,-
+2350.5,6997.43202108145,19.9999992370605,19.9999992370605,0,3.751712,1137.225,421.3215,421.3215,1595.495,-173.0364,50.17517,190.0075,-20.6069,50.17517,0,0,3,2.291384,2.103024,0,0,0,6.626711,0.3323833,38.82166,45.78076,0,10531.4,-,-
+2351.5,7002.98757642508,19.9999992370605,19.9999992370605,0,3.751712,1137.225,421.3215,421.3215,1595.495,-173.0364,50.17517,190.0075,-20.6069,50.17517,0,0,3,2.291384,2.103024,0,0,0,6.626711,0.3323833,38.82166,45.78076,0,10531.4,-,-
+2352.5,7008.5431317687,19.9999992370605,19.9999992370605,0,3.615721,1137.225,409.0997,409.0997,1595.495,-173.0364,48.71967,190.0075,-20.6069,48.71967,0,0,3,2.262275,2.081626,0,0,0,6.627043,0.3323833,37.41634,44.37577,0,10338.54,-,-
+2353.5,7014.09868711233,19.9999992370605,19.9999992370605,0,3.47973,1137.225,396.8759,396.8759,1590.912,-173.0364,47.26394,189.4617,-20.6069,47.26394,0,0,3,2.233162,2.060227,0,0,0,6.627362,0.3323833,36.01081,42.97055,0,10136.3,-,-
+2354.5,7019.65424245596,19.9999992370605,19.9999992370605,0,3.305613,1137.225,381.2225,381.2225,1586.328,-173.0364,45.39978,188.9158,-20.6069,45.39978,0,0,3,2.195877,2.032826,0,0,0,6.627753,0.3323833,34.21094,41.17107,0,9842.489,-,-
+2355.5,7025.20979779959,19.9999992370605,19.9999992370605,0,3.305613,1137.225,381.2225,381.2225,1580.458,-173.0364,45.39978,188.2167,-20.6069,45.39978,0,0,3,2.195877,2.032826,0,0,0,6.627753,0.3323833,34.21094,41.17107,0,9842.489,-,-
+2356.5,7030.76535314322,19.9999992370605,19.9999992370605,0,3.131496,1137.225,365.5662,365.5662,1580.458,-173.0364,43.53526,188.2167,-20.6069,43.53526,0,0,3,2.158586,2.005417,0,0,0,6.628124,0.3323833,32.41076,39.37126,0,9548.62,-,-
+2357.5,7036.32090848684,19.9999992370605,19.9999992370605,0,3.131496,1137.225,365.5662,365.5662,1574.587,-173.0364,43.53526,187.5175,-20.6069,43.53526,0,0,3,2.158586,2.005417,0,0,0,6.628124,0.3323833,32.41076,39.37126,0,9548.62,-,-
+2358.5,7041.87646383047,19.9999992370605,19.9999992370605,0,2.95738,1137.225,349.9072,349.9072,1574.587,-173.0364,41.67044,187.5175,-20.6069,41.67044,0,0,3,2.121289,1.978005,0,0,0,6.628475,0.3323833,30.61029,37.57114,0,9254.701,-,-
+2359.5,7047.4320191741,19.9999992370605,19.9999992370605,0,2.95738,1137.225,349.9072,349.9072,1568.715,-173.0364,41.67044,186.8182,-20.6069,41.67044,0,0,3,2.121289,1.978005,0,0,0,6.628475,0.3323833,30.61029,37.57114,0,9254.701,-,-
+2360.5,7052.98757451773,19.9999992370605,19.9999992370605,0,2.783263,1137.225,334.2456,334.2456,1568.715,-173.0364,39.8053,186.8182,-20.6069,39.8053,0,0,3,2.083987,1.950585,0,0,0,6.628807,0.3323833,28.80954,35.77073,0,8960.732,-,-
+2361.5,7058.54312986135,19.9999992370605,19.9999992370605,0,2.696205,1137.225,326.4138,326.4138,1562.842,-173.0364,38.87262,186.1188,-20.6069,38.87262,0,0,3,2.065332,1.936877,0,0,0,6.628964,0.3323833,27.90906,34.87041,0,8813.73,-,-
+2362.5,7064.09868520498,19.9999992370605,19.9999992370605,0,2.609147,1137.225,318.5816,318.5816,1559.905,-173.0364,37.93987,185.7691,-20.6069,37.93987,0,0,3,2.04668,1.923164,0,0,0,6.629117,0.3323833,27.00852,33.97002,0,8666.719,-,-
+2363.5,7069.65424054861,19.9999992370605,19.9999992370605,0,2.43503,1137.225,302.9152,302.9152,1556.968,-173.0364,36.07417,185.4193,-20.6069,36.07417,0,0,3,2.009367,1.895739,0,0,0,6.629408,0.3323833,25.20727,32.16906,0,8372.662,-,-
+2364.5,7075.20979589224,19.9999992370605,19.9999992370605,0,2.43503,1137.225,302.9152,302.9152,1551.093,-173.0364,36.07417,184.7196,-20.6069,36.07417,0,0,3,2.009367,1.895739,0,0,0,6.629408,0.3323833,25.20727,32.16906,0,8372.662,-,-
+2365.5,7080.76535123587,19.9999992370605,19.9999992370605,0,2.260914,1137.225,287.2466,287.2466,1551.093,-173.0364,34.20819,184.7196,-20.6069,34.20819,0,0,3,1.972046,1.868309,0,0,0,6.629679,0.3323833,23.40578,30.36784,0,8078.563,-,-
+2366.5,7086.32090657949,19.9999992370605,19.9999992370605,0,2.260914,1137.225,287.2466,287.2466,1545.217,-173.0364,34.20819,184.0199,-20.6069,34.20819,0,0,3,1.972046,1.868309,0,0,0,6.629679,0.3323833,23.40578,30.36784,0,8078.563,-,-
+2367.5,7091.87646192312,19.9999992370605,19.9999992370605,0,2.086797,1137.225,271.5761,271.5761,1545.217,-173.0364,32.34199,184.0199,-20.6069,32.34199,0,0,3,1.934722,1.840877,0,0,0,6.62993,0.3323833,21.60408,28.56639,0,7784.427,-,-
+2368.5,7097.43201726675,19.9999992370605,19.9999992370605,0,2.086797,1137.225,271.5761,271.5761,1539.341,-173.0364,32.34199,183.3201,-20.6069,32.34199,0,0,3,1.934722,1.840877,0,0,0,6.62993,0.3323833,21.60408,28.56639,0,7784.427,-,-
+2369.5,7102.98757261038,19.9999992370605,19.9999992370605,0,1.912681,1137.225,255.9037,255.9037,1539.341,-173.0364,30.47556,183.3201,-20.6069,30.47556,0,0,3,1.897393,1.813439,0,0,0,6.630161,0.3323833,19.80219,26.76473,0,7508.084,-,-
+2370.5,7108.54312795401,19.9999992370605,19.9999992370605,0,1.825622,1137.225,248.0668,248.0668,1533.464,-173.0364,29.54227,182.6202,-20.6069,29.54227,0,0,3,1.878728,1.799719,0,0,0,6.630269,0.3323833,18.90117,25.86382,0,7381.323,-,-
+2371.5,7114.09868329763,19.9999992370605,19.9999992370605,0,1.738564,1137.225,240.2295,240.2295,1530.525,-173.0364,28.60892,182.2702,-20.6069,28.60892,0,0,3,1.86006,1.786,0,0,0,6.630372,0.3323833,18.00011,24.96286,0,7254.555,-,-
+2372.5,7119.65423864126,19.9999992370605,19.9999992370605,0,1.564447,1137.225,224.5537,224.5537,1527.586,-173.0364,26.7421,181.9202,-20.6069,26.7421,0,0,3,1.822723,1.758557,0,0,0,6.630562,0.3323833,16.19787,23.16082,0,7000.999,-,-
+2373.5,7125.20979398489,19.9999992370605,19.9999992370605,0,1.564447,1137.225,224.5537,224.5537,1521.708,-173.0364,26.7421,181.2201,-20.6069,26.7421,0,0,3,1.822723,1.758557,0,0,0,6.630562,0.3323833,16.19787,23.16082,0,7000.999,-,-
+2374.5,7130.76534932852,19.9999992370605,19.9999992370605,0,1.390331,1137.225,208.8765,208.8765,1521.708,-173.0364,24.8751,181.2201,-20.6069,24.8751,0,0,3,1.785384,1.731113,0,0,0,6.630733,0.3323833,14.39548,21.3586,0,6747.42,-,-
+2375.5,7136.32090467215,19.9999992370605,19.9999992370605,0,1.390331,1137.225,208.8765,208.8765,1515.829,-173.0364,24.8751,180.52,-20.6069,24.8751,0,0,3,1.785384,1.731113,0,0,0,6.630733,0.3323833,14.39548,21.3586,0,6747.42,-,-
+2376.5,7141.87646001577,19.9999992370605,19.9999992370605,0,1.216214,1137.225,193.1979,193.1979,1515.829,-173.0364,23.00794,180.52,-20.6069,23.00794,0,0,3,1.74804,1.703664,0,0,0,6.630883,0.3323833,12.59297,19.55623,0,6481.746,-,-
+2377.5,7147.4320153594,19.9999992370605,19.9999992370605,0,1.216214,1137.225,193.1979,193.1979,1509.949,-173.0364,23.00794,179.8198,-20.6069,23.00794,0,0,3,1.74804,1.703664,0,0,0,6.630883,0.3323833,12.59297,19.55623,0,6481.746,-,-
+2378.5,7152.98757070303,19.9999992370605,19.9999992370605,0,1.042098,1137.225,177.5182,177.5182,1509.949,-173.0364,21.14064,179.8198,-20.6069,21.14064,0,0,3,1.710695,1.676217,0,0,0,6.631013,0.3323833,10.79033,17.75373,0,6200.295,-,-
+2379.5,7158.54312604666,19.9999992370605,19.9999992370605,0,0.9552257,1137.225,169.6948,169.6948,1504.069,-173.0364,20.20895,179.1196,-20.6069,20.20895,0,0,3,1.692061,1.662521,0,0,0,6.631071,0.3323833,9.89091,16.85436,0,6059.864,-,-
+2380.5,7164.09868139029,19.9999992370605,19.9999992370605,0,0.8683537,1137.225,161.871,161.871,1501.135,-173.0364,19.27722,178.7702,-20.6069,19.27722,0,0,3,1.673425,1.648823,0,0,0,6.631124,0.3323833,8.991464,15.95497,0,5919.428,-,-
+2381.5,7169.65423673391,19.9999992370605,19.9999992370605,0,0.6948583,1137.225,146.442,146.442,1498.202,-173.0364,17.43977,178.4208,-20.6069,17.43977,0,0,3,1.636677,1.64441,0,0,0,6.631213,0.3323833,7.195084,14.15868,0,5642.476,-,-
+2382.5,7175.20979207754,19.9999992370605,19.9999992370605,0,0.6948583,1137.225,146.442,146.442,1492.416,-173.0364,17.43977,177.7318,-20.6069,17.43977,0,0,3,1.636677,1.64441,0,0,0,6.631213,0.3323833,7.195084,14.15868,0,5642.476,-,-
+2383.5,7180.76534742117,19.9999992370605,19.9999992370605,0,0.5213628,1137.225,131.0499,131.0499,1492.416,-173.0364,15.60673,177.7318,-20.6069,15.60673,0,0,3,1.600016,1.644411,0,0,0,6.631283,0.3323833,5.398638,12.3623,0,5366.189,-,-
+2384.5,7186.3209027648,19.9999992370605,19.9999992370605,0,0.5213628,1137.225,131.0499,131.0499,1486.644,-173.0364,15.60673,177.0444,-20.6069,15.60673,0,0,3,1.600016,1.644411,0,0,0,6.631283,0.3323833,5.398638,12.3623,0,5366.189,-,-
+2385.5,7191.82767146826,19.8243673324585,19.9999992370605,-0.09757328,0.3478673,941.236,-86.06207,0,1403.405,-156.768,-8.482794,138.328,-15.45199,0,-8.482794,0,0,0,0,0,0,-10.46728,6.5731,0.3237034,3.570512,3.409386E-05,0,1266.078,-,-
+2386.5,7197.33444017172,19.8243673324585,19.9999992370605,0.09757328,0.3478673,609.4954,202.531,370.3729,766.5143,-148.0475,12.92679,48.9237,-9.449308,23.6395,-10.71271,0,5,0.9925936,1.712309,0,0,10.46728,6.5731,0.3237034,3.570512,20.93459,0,3429.14,-,-
+2387.5,7202.88999551535,19.9999992370605,19.9999992370605,0,0.24377,614.8951,186.8899,184.7518,900.2247,-148.0745,12.03415,57.96697,-9.534762,11.89648,0.1376766,0,5,0.7640979,1.644411,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,3269.334,-,-
+2388.5,7208.44555085897,19.9999992370605,19.9999992370605,0,0.24377,614.8951,184.7518,184.7518,895.0262,-148.0745,11.89648,57.63223,-9.534762,11.89648,0,0,5,0.7640979,1.644411,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,3244.498,-,-
+2389.5,7214.0011062026,19.9999992370605,19.9999992370605,0,0.24377,614.8951,184.7518,184.7518,894.2244,-148.0745,11.89648,57.5806,-9.534762,11.89648,0,0,5,0.7640979,1.644411,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,3244.498,-,-
+2390.5,7219.55666154623,19.9999992370605,19.9999992370605,0,0.24377,614.8951,184.7518,184.7518,894.2244,-148.0745,11.89648,57.5806,-9.534762,11.89648,0,0,5,0.7640979,1.644411,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,3244.498,-,-
+2391.5,7225.11221688986,19.9999992370605,19.9999992370605,0,0.24377,614.8951,184.7518,184.7518,894.2244,-148.0745,11.89648,57.5806,-9.534762,11.89648,0,0,5,0.7640979,1.644411,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,3244.498,-,-
+2392.5,7230.66777223349,19.9999992370605,19.9999992370605,0,0.24377,614.8951,184.7518,184.7518,894.2244,-148.0745,11.89648,57.5806,-9.534762,11.89648,0,0,5,0.7640979,1.644411,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,3244.498,-,-
+2393.5,7236.22332757711,19.9999992370605,19.9999992370605,0,0.24377,614.8951,184.7518,184.7518,894.2244,-148.0745,11.89648,57.5806,-9.534762,11.89648,0,0,5,0.7640979,1.644411,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,3244.498,-,-
+2394.5,7241.77888292074,19.9999992370605,19.9999992370605,0,0.24377,614.8951,184.7518,184.7518,894.2244,-148.0745,11.89648,57.5806,-9.534762,11.89648,0,0,5,0.7640979,1.644411,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,3244.498,-,-
+2395.5,7247.33443826437,19.9999992370605,19.9999992370605,0,0.24377,614.8951,184.7518,184.7518,894.2244,-148.0745,11.89648,57.5806,-9.534762,11.89648,0,0,5,0.7640979,1.644411,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,3244.498,-,-
+2396.5,7252.889993608,19.9999992370605,19.9999992370605,0,0.24377,614.8951,184.7518,184.7518,894.2244,-148.0745,11.89648,57.5806,-9.534762,11.89648,0,0,5,0.7640979,1.644411,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,3244.498,-,-
+2397.5,7258.44554895163,19.9999992370605,19.9999992370605,0,0.24377,614.8951,184.7518,184.7518,894.2244,-148.0745,11.89648,57.5806,-9.534762,11.89648,0,0,5,0.7640979,1.644411,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,3244.498,-,-
+2398.5,7264.00110429525,19.9999992370605,19.9999992370605,0,0.24377,614.8951,184.7518,184.7518,894.2244,-148.0745,11.89648,57.5806,-9.534762,11.89648,0,0,5,0.7640979,1.644411,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,3244.498,-,-
+2399.5,7269.55665963888,19.9999992370605,19.9999992370605,0,0.24377,614.8951,184.7518,184.7518,894.2244,-148.0745,11.89648,57.5806,-9.534762,11.89648,0,0,5,0.7640979,1.644411,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,3244.498,-,-
+2400.5,7275.11221498251,19.9999992370605,19.9999992370605,0,0.24377,614.8951,184.7518,184.7518,894.2244,-148.0745,11.89648,57.5806,-9.534762,11.89648,0,0,5,0.7640979,1.644411,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,3244.498,-,-
+2401.5,7280.66777032614,19.9999992370605,19.9999992370605,0,0.24377,614.8951,184.7518,184.7518,894.2244,-148.0745,11.89648,57.5806,-9.534762,11.89648,0,0,5,0.7640979,1.644411,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,3244.498,-,-
+2402.5,7286.22332566977,19.9999992370605,19.9999992370605,0,0.24377,614.8951,184.7518,184.7518,894.2244,-148.0745,11.89648,57.5806,-9.534762,11.89648,0,0,5,0.7640979,1.644411,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,3244.498,-,-
+2403.5,7291.77888101339,19.9999992370605,19.9999992370605,0,0.24377,614.8951,184.7518,184.7518,894.2244,-148.0745,11.89648,57.5806,-9.534762,11.89648,0,0,5,0.7640979,1.644411,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,3244.498,-,-
+2404.5,7297.33443635702,19.9999992370605,19.9999992370605,0,0.24377,614.8951,184.7518,184.7518,894.2244,-148.0745,11.89648,57.5806,-9.534762,11.89648,0,0,5,0.7640979,1.644411,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,3244.498,-,-
+2405.5,7302.88999170065,19.9999992370605,19.9999992370605,0,0.24377,614.8951,184.7518,184.7518,894.2244,-148.0745,11.89648,57.5806,-9.534762,11.89648,0,0,5,0.7640979,1.644411,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,3244.498,-,-
+2406.5,7308.44554704428,19.9999992370605,19.9999992370605,0,0.24377,614.8951,184.7518,184.7518,894.2244,-148.0745,11.89648,57.5806,-9.534762,11.89648,0,0,5,0.7640979,1.644411,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,3244.498,-,-
+2407.5,7314.00110238791,19.9999992370605,19.9999992370605,0,0.24377,614.8951,184.7518,184.7518,894.2244,-148.0745,11.89648,57.5806,-9.534762,11.89648,0,0,5,0.7640979,1.644411,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,3244.498,-,-
+2408.5,7319.55665773153,19.9999992370605,19.9999992370605,0,0.24377,614.8951,184.7518,184.7518,894.2244,-148.0745,11.89648,57.5806,-9.534762,11.89648,0,0,5,0.7640979,1.644411,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,3244.498,-,-
+2409.5,7325.11221307516,19.9999992370605,19.9999992370605,0,0.24377,614.8951,184.7518,184.7518,894.2244,-148.0745,11.89648,57.5806,-9.534762,11.89648,0,0,5,0.7640979,1.644411,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,3244.498,-,-
+2410.5,7330.66776841879,19.9999992370605,19.9999992370605,0,0.24377,614.8951,184.7518,184.7518,894.2244,-148.0745,11.89648,57.5806,-9.534762,11.89648,0,0,5,0.7640979,1.644411,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,3244.498,-,-
+2411.5,7336.22332376242,19.9999992370605,19.9999992370605,0,0.24377,614.8951,184.7518,184.7518,894.2244,-148.0745,11.89648,57.5806,-9.534762,11.89648,0,0,5,0.7640979,1.644411,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,3244.498,-,-
+2412.5,7341.77887910604,19.9999992370605,19.9999992370605,0,0.24377,614.8951,184.7518,184.7518,894.2244,-148.0745,11.89648,57.5806,-9.534762,11.89648,0,0,5,0.7640979,1.644411,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,3244.498,-,-
+2413.5,7347.33443444967,19.9999992370605,19.9999992370605,0,0.24377,614.8951,184.7518,184.7518,894.2244,-148.0745,11.89648,57.5806,-9.534762,11.89648,0,0,5,0.7640979,1.644411,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,3244.498,-,-
+2414.5,7352.8899897933,19.9999992370605,19.9999992370605,0,0.24377,614.8951,184.7518,184.7518,894.2244,-148.0745,11.89648,57.5806,-9.534762,11.89648,0,0,5,0.7640979,1.644411,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,3244.498,-,-
+2415.5,7358.44554513693,19.9999992370605,19.9999992370605,0,0.24377,614.8951,184.7518,184.7518,894.2244,-148.0745,11.89648,57.5806,-9.534762,11.89648,0,0,5,0.7640979,1.644411,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,3244.498,-,-
+2416.5,7364.00110048056,19.9999992370605,19.9999992370605,0,0.24377,614.8951,184.7518,184.7518,894.2244,-148.0745,11.89648,57.5806,-9.534762,11.89648,0,0,5,0.7640979,1.644411,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,3244.498,-,-
+2417.5,7369.55665582418,19.9999992370605,19.9999992370605,0,0.24377,614.8951,184.7518,184.7518,894.2244,-148.0745,11.89648,57.5806,-9.534762,11.89648,0,0,5,0.7640979,1.644411,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,3244.498,-,-
+2418.5,7375.11221116781,19.9999992370605,19.9999992370605,0,0.24377,614.8951,184.7518,184.7518,894.2244,-148.0745,11.89648,57.5806,-9.534762,11.89648,0,0,5,0.7640979,1.644411,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,3244.498,-,-
+2419.5,7380.66776651144,19.9999992370605,19.9999992370605,0,0.24377,614.8951,184.7518,184.7518,894.2244,-148.0745,11.89648,57.5806,-9.534762,11.89648,0,0,5,0.7640979,1.644411,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,3244.498,-,-
+2420.5,7386.22332185507,19.9999992370605,19.9999992370605,0,0.24377,614.8951,184.7518,184.7518,894.2244,-148.0745,11.89648,57.5806,-9.534762,11.89648,0,0,5,0.7640979,1.644411,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,3244.498,-,-
+2421.5,7391.7788771987,19.9999992370605,19.9999992370605,0,0.24377,614.8951,184.7518,184.7518,894.2244,-148.0745,11.89648,57.5806,-9.534762,11.89648,0,0,5,0.7640979,1.644411,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,3244.498,-,-
+2422.5,7397.33443254232,19.9999992370605,19.9999992370605,0,0.24377,614.8951,184.7518,184.7518,894.2244,-148.0745,11.89648,57.5806,-9.534762,11.89648,0,0,5,0.7640979,1.644411,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,3244.498,-,-
+2423.5,7402.88998788595,19.9999992370605,19.9999992370605,0,0.24377,614.8951,184.7518,184.7518,894.2244,-148.0745,11.89648,57.5806,-9.534762,11.89648,0,0,5,0.7640979,1.644411,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,3244.498,-,-
+2424.5,7408.44554322958,19.9999992370605,19.9999992370605,0,0.24377,614.8951,184.7518,184.7518,894.2244,-148.0745,11.89648,57.5806,-9.534762,11.89648,0,0,5,0.7640979,1.644411,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,3244.498,-,-
+2425.5,7414.00109857321,19.9999992370605,19.9999992370605,0,0.24377,614.8951,184.7518,184.7518,894.2244,-148.0745,11.89648,57.5806,-9.534762,11.89648,0,0,5,0.7640979,1.644411,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,3244.498,-,-
+2426.5,7419.55665391684,19.9999992370605,19.9999992370605,0,0.24377,614.8951,184.7518,184.7518,894.2244,-148.0745,11.89648,57.5806,-9.534762,11.89648,0,0,5,0.7640979,1.644411,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,3244.498,-,-
+2427.5,7425.11220926046,19.9999992370605,19.9999992370605,0,0.24377,614.8951,184.7518,184.7518,894.2244,-148.0745,11.89648,57.5806,-9.534762,11.89648,0,0,5,0.7640979,1.644411,0,0,0,6.631354,0.3323833,2.524231,9.487968,0,3244.498,-,-
+2428.5,7430.66776460409,19.9999992370605,19.9999992370605,0,0.123555,614.8951,165.0255,165.0255,894.2244,-148.0745,10.62627,57.5806,-9.534762,10.62627,0,0,5,0.738693,1.644411,0,0,0,6.631368,0.3323833,1.279412,8.243163,0,3057.197,-,-
+2429.5,7436.22331994772,19.9999992370605,19.9999992370605,0,0.123555,614.8951,165.0255,165.0255,886.8271,-148.0745,10.62627,57.10428,-9.534762,10.62627,0,0,5,0.738693,1.644411,0,0,0,6.631368,0.3323833,1.279412,8.243163,0,3057.197,-,-
+2430.5,7441.77887529135,19.9999992370605,19.9999992370605,0,0.123555,614.8951,165.0255,165.0255,886.8271,-148.0745,10.62627,57.10428,-9.534762,10.62627,0,0,5,0.738693,1.644411,0,0,0,6.631368,0.3323833,1.279412,8.243163,0,3057.197,-,-
+2431.5,7447.33443063498,19.9999992370605,19.9999992370605,0,0.123555,614.8951,165.0255,165.0255,886.8271,-148.0745,10.62627,57.10428,-9.534762,10.62627,0,0,5,0.738693,1.644411,0,0,0,6.631368,0.3323833,1.279412,8.243163,0,3057.197,-,-
+2432.5,7452.8899859786,19.9999992370605,19.9999992370605,0,0.00906,614.8951,146.2376,146.2376,886.8271,-148.0745,9.416481,57.10428,-9.534762,9.416481,0,0,5,0.7144977,1.644411,0,0,0,6.631373,0.3323833,0.0938163,7.057573,0,2878.805,-,-
+2433.5,7458.44554132223,19.9999992370605,19.9999992370605,0,0.00906,614.8951,146.2376,146.2376,879.7816,-148.0745,9.416481,56.6506,-9.534762,9.416481,0,0,5,0.7144977,1.644411,0,0,0,6.631373,0.3323833,0.0938163,7.057573,0,2878.805,-,-
+2434.5,7464.00109666586,19.9999992370605,19.9999992370605,0,0.00906,614.8951,146.2376,146.2376,879.7816,-148.0745,9.416481,56.6506,-9.534762,9.416481,0,0,5,0.7144977,1.644411,0,0,0,6.631373,0.3323833,0.0938163,7.057573,0,2878.805,-,-
+2435.5,7469.55665200949,19.9999992370605,19.9999992370605,0,-0.1054259,614.8951,127.451,127.451,879.7816,-148.0745,8.206783,56.6506,-9.534762,8.206783,0,0,5,0.6903038,1.644411,0,0,0,6.63137,0.3323833,-1.091684,5.872068,0,2700.427,-,-
+2436.5,7475.11220735312,19.9999992370605,19.9999992370605,0,-0.1054259,614.8951,127.451,127.451,872.7367,-148.0745,8.206783,56.19697,-9.534762,8.206783,0,0,5,0.6903038,1.644411,0,0,0,6.63137,0.3323833,-1.091684,5.872068,0,2700.427,-,-
+2437.5,7480.66776269674,19.9999992370605,19.9999992370605,0,-0.1054259,614.8951,127.451,127.451,872.7367,-148.0745,8.206783,56.19697,-9.534762,8.206783,0,0,5,0.6903038,1.644411,0,0,0,6.63137,0.3323833,-1.091684,5.872068,0,2700.427,-,-
+2438.5,7486.22331804037,19.9999992370605,19.9999992370605,0,-0.1054259,614.8951,127.451,127.451,872.7367,-148.0745,8.206783,56.19697,-9.534762,8.206783,0,0,5,0.6903038,1.644411,0,0,0,6.63137,0.3323833,-1.091684,5.872068,0,2700.427,-,-
+2439.5,7491.778873384,19.9999992370605,19.9999992370605,0,-0.2199163,614.8951,108.6636,108.6636,872.7367,-148.0745,6.997032,56.19697,-9.534762,6.997032,0,0,5,0.6661087,1.644411,0,0,0,6.631357,0.3323833,-2.277228,4.686513,0,2522.041,-,-
+2440.5,7497.33442872763,19.9999992370605,19.9999992370605,0,-0.2199163,614.8951,108.6636,108.6636,865.6914,-148.0745,6.997032,55.74331,-9.534762,6.997032,0,0,5,0.6661087,1.644411,0,0,0,6.631357,0.3323833,-2.277228,4.686513,0,2522.041,-,-
+2441.5,7502.88998407125,19.9999992370605,19.9999992370605,0,-0.2199163,614.8951,108.6636,108.6636,865.6914,-148.0745,6.997032,55.74331,-9.534762,6.997032,0,0,5,0.6661087,1.644411,0,0,0,6.631357,0.3323833,-2.277228,4.686513,0,2522.041,-,-
+2442.5,7508.44553941488,19.9999992370605,19.9999992370605,0,-0.2771615,614.8951,99.26994,99.26994,865.6914,-148.0745,6.392157,55.74331,-9.534762,6.392157,0,0,5,0.6540114,1.644411,0,0,0,6.631348,0.3323833,-2.869997,4.093735,0,2432.848,-,-
+2443.5,7514.00109475851,19.9999992370605,19.9999992370605,0,-0.3344068,614.8951,89.87624,89.87624,862.1688,-148.0745,5.787281,55.51649,-9.534762,5.787281,0,0,5,0.6419137,1.644411,0,0,0,6.631336,0.3323833,-3.462763,3.500957,0,2343.655,-,-
+2444.5,7519.55665010214,19.9999992370605,19.9999992370605,0,-0.3344068,614.8951,89.87624,89.87624,858.6461,-148.0745,5.787281,55.28965,-9.534762,5.787281,0,0,5,0.6419137,1.644411,0,0,0,6.631336,0.3323833,-3.462763,3.500957,0,2343.655,-,-
+2445.5,7525.11220544577,19.9999992370605,19.9999992370605,0,-0.3344068,614.8951,89.87624,89.87624,858.6461,-148.0745,5.787281,55.28965,-9.534762,5.787281,0,0,5,0.6419137,1.644411,0,0,0,6.631336,0.3323833,-3.462763,3.500957,0,2343.655,-,-
+2446.5,7530.66776078939,19.9999992370605,19.9999992370605,0,-0.4488972,614.8951,71.08895,71.08895,858.6461,-148.0745,4.577536,55.28965,-9.534762,4.577536,0,0,5,0.6177189,1.644411,0,0,0,6.631307,0.3323833,-4.648283,2.315406,0,2165.269,-,-
+2447.5,7536.22331613302,19.9999992370605,19.9999992370605,0,-0.4488972,614.8951,71.08895,71.08895,851.6009,-148.0745,4.577536,54.836,-9.534762,4.577536,0,0,5,0.6177189,1.644411,0,0,0,6.631307,0.3323833,-4.648283,2.315406,0,2165.269,-,-
+2448.5,7541.77887147665,19.9999992370605,19.9999992370605,0,-0.4488972,614.8951,71.08895,71.08895,851.6009,-148.0745,4.577536,54.836,-9.534762,4.577536,0,0,5,0.6177189,1.644411,0,0,0,6.631307,0.3323833,-4.648283,2.315406,0,2165.269,-,-
+2449.5,7547.33442682028,19.9999992370605,19.9999992370605,0,-0.4488972,614.8951,71.08895,71.08895,851.6009,-148.0745,4.577536,54.836,-9.534762,4.577536,0,0,5,0.6177189,1.644411,0,0,0,6.631307,0.3323833,-4.648283,2.315406,0,2165.269,-,-
+2450.5,7552.88998216391,19.9999992370605,19.9999992370605,0,-0.5633877,614.8951,52.30178,52.30178,851.6009,-148.0745,3.367799,54.836,-9.534762,3.367799,0,0,5,0.593524,1.644411,0,0,0,6.631268,0.3323833,-5.833787,1.129864,0,1986.885,-,-
+2451.5,7558.44553750753,19.9999992370605,19.9999992370605,0,-0.5633877,614.8951,52.30178,52.30178,844.5558,-148.0745,3.367799,54.38235,-9.534762,3.367799,0,0,5,0.593524,1.644411,0,0,0,6.631268,0.3323833,-5.833787,1.129864,0,1986.885,-,-
+2452.5,7564.00109285116,19.9999992370605,19.9999992370605,0,-0.5633877,614.8951,52.30178,52.30178,844.5558,-148.0745,3.367799,54.38235,-9.534762,3.367799,0,0,5,0.593524,1.644411,0,0,0,6.631268,0.3323833,-5.833787,1.129864,0,1986.885,-,-
+2453.5,7569.55664819479,19.9999992370605,19.9999992370605,0,-0.6778781,614.8951,34.00452,34.00452,844.5558,-148.0745,2.189608,54.38235,-9.534762,2.189608,0,0,5,0.6008595,1.644411,0,0,0,6.631221,0.3323833,-7.019267,-0.05566216,0,1813.153,-,-
+2454.5,7575.11220353842,19.9999992370605,19.9999992370605,0,-0.6778781,614.8951,34.00452,34.00452,837.6942,-148.0745,2.189608,53.94053,-9.534762,2.189608,0,0,5,0.6008595,1.644411,0,0,0,6.631221,0.3323833,-7.019267,-0.05566216,0,1813.153,-,-
+2455.5,7580.66775888205,19.9999992370605,19.9999992370605,0,-0.6778781,614.8951,34.00452,34.00452,837.6942,-148.0745,2.189608,53.94053,-9.534762,2.189608,0,0,5,0.6008595,1.644411,0,0,0,6.631221,0.3323833,-7.019267,-0.05566216,0,1813.153,-,-
+2456.5,7586.22331422567,19.9999992370605,19.9999992370605,0,-0.6778781,614.8951,34.00452,34.00452,837.6942,-148.0745,2.189608,53.94053,-9.534762,2.189608,0,0,5,0.6008595,1.644411,0,0,0,6.631221,0.3323833,-7.019267,-0.05566216,0,1813.153,-,-
+2457.5,7591.7788695693,19.9999992370605,19.9999992370605,0,-0.7923686,614.8951,15.77593,15.77593,837.6942,-148.0745,1.015838,53.94053,-9.534762,1.015838,0,0,5,0.6125972,1.644411,0,0,0,6.631166,0.3323833,-8.204719,-1.24117,0,1640.072,-,-
+2458.5,7597.33442491293,19.9999992370605,19.9999992370605,0,-0.7923686,614.8951,15.77593,15.77593,830.8585,-148.0745,1.015838,53.50037,-9.534762,1.015838,0,0,5,0.6125972,1.644411,0,0,0,6.631166,0.3323833,-8.204719,-1.24117,0,1640.072,-,-
+2459.5,7602.88998025656,19.9999992370605,19.9999992370605,0,-0.7923686,614.8951,15.77593,15.77593,830.8585,-148.0745,1.015838,53.50037,-9.534762,1.015838,0,0,5,0.6125972,1.644411,0,0,0,6.631166,0.3323833,-8.204719,-1.24117,0,1640.072,-,-
+2460.5,7608.44553560019,19.9999992370605,19.9999992370605,0,-0.8438892,614.8951,7.573161,7.573161,830.8585,-148.0745,0.4876485,53.50037,-9.534762,0.4876485,0,0,5,0.6178792,1.644411,0,0,0,6.631137,0.3323833,-8.738162,-1.774642,0,1562.187,-,-
+2461.5,7614.00109094381,19.9999992370605,19.9999992370605,0,-0.8954099,614.8951,-0.6295083,-0.6295083,827.7824,-148.0745,-0.04053509,53.30229,-9.534762,-0.04053509,0,0,5,0.623161,1.644411,0,0,0,6.631108,0.3323833,-9.271598,-2.308107,0,1484.074,-,-
+2462.5,7619.55664628744,19.9999992370605,19.9999992370605,0,-0.8954099,614.8951,-0.6295083,-0.6295083,824.7065,-148.0745,-0.04053509,53.10423,-9.534762,-0.04053509,0,0,5,0.623161,1.644411,0,0,0,6.631108,0.3323833,-9.271598,-2.308107,0,1484.074,-,-
+2463.5,7625.11220163107,19.9999992370605,19.9999992370605,0,-0.8954099,614.8951,-0.6295083,-0.6295083,824.7065,-148.0745,-0.04053509,53.10423,-9.534762,-0.04053509,0,0,5,0.623161,1.644411,0,0,0,6.631108,0.3323833,-9.271598,-2.308107,0,1484.074,-,-
+2464.5,7630.6677569747,19.9999992370605,19.9999992370605,0,-0.8954099,614.8951,-0.6295083,-0.6295083,824.7065,-148.0745,-0.04053509,53.10423,-9.534762,-0.04053509,0,0,5,0.623161,1.644411,0,0,0,6.631108,0.3323833,-9.271598,-2.308107,0,1484.074,-,-
+2465.5,7636.22331231833,19.9999992370605,19.9999992370605,0,-0.8954099,614.8951,-0.6295083,-0.6295083,824.7065,-148.0745,-0.04053509,53.10423,-9.534762,-0.04053509,0,0,5,0.623161,1.644411,0,0,0,6.631108,0.3323833,-9.271598,-2.308107,0,1484.074,-,-
+2466.5,7641.77886766195,19.9999992370605,19.9999992370605,0,-0.8954099,614.8951,-0.6295083,-0.6295083,824.7065,-148.0745,-0.04053509,53.10423,-9.534762,-0.04053509,0,0,5,0.623161,1.644411,0,0,0,6.631108,0.3323833,-9.271598,-2.308107,0,1484.074,-,-
+2467.5,7647.33442300558,19.9999992370605,19.9999992370605,0,-0.8954099,614.8951,-0.6295083,-0.6295083,824.7065,-148.0745,-0.04053509,53.10423,-9.534762,-0.04053509,0,0,5,0.623161,1.644411,0,0,0,6.631108,0.3323833,-9.271598,-2.308107,0,1484.074,-,-
+2468.5,7652.88997834921,19.9999992370605,19.9999992370605,0,-0.8954099,614.8951,-0.6295083,-0.6295083,824.7065,-148.0745,-0.04053509,53.10423,-9.534762,-0.04053509,0,0,5,0.623161,1.644411,0,0,0,6.631108,0.3323833,-9.271598,-2.308107,0,1484.074,-,-
+2469.5,7658.44553369284,19.9999992370605,19.9999992370605,0,-0.8954099,614.8951,-0.6295083,-0.6295083,824.7065,-148.0745,-0.04053509,53.10423,-9.534762,-0.04053509,0,0,5,0.623161,1.644411,0,0,0,6.631108,0.3323833,-9.271598,-2.308107,0,1484.074,-,-
+2470.5,7664.00108903646,19.9999992370605,19.9999992370605,0,-0.8954099,614.8951,-0.6295083,-0.6295083,824.7065,-148.0745,-0.04053509,53.10423,-9.534762,-0.04053509,0,0,5,0.623161,1.644411,0,0,0,6.631108,0.3323833,-9.271598,-2.308107,0,1484.074,-,-
+2471.5,7669.55664438009,19.9999992370605,19.9999992370605,0,-0.8954099,614.8951,-0.6295083,-0.6295083,824.7065,-148.0745,-0.04053509,53.10423,-9.534762,-0.04053509,0,0,5,0.623161,1.644411,0,0,0,6.631108,0.3323833,-9.271598,-2.308107,0,1484.074,-,-
+2472.5,7675.11219972372,19.9999992370605,19.9999992370605,0,-0.8954099,614.8951,-0.6295083,-0.6295083,824.7065,-148.0745,-0.04053509,53.10423,-9.534762,-0.04053509,0,0,5,0.623161,1.644411,0,0,0,6.631108,0.3323833,-9.271598,-2.308107,0,1484.074,-,-
+2473.5,7680.66775506735,19.9999992370605,19.9999992370605,0,-0.8954099,614.8951,-0.6295083,-0.6295083,824.7065,-148.0745,-0.04053509,53.10423,-9.534762,-0.04053509,0,0,5,0.623161,1.644411,0,0,0,6.631108,0.3323833,-9.271598,-2.308107,0,1484.074,-,-
+2474.5,7686.22331041098,19.9999992370605,19.9999992370605,0,-0.8954099,614.8951,-0.6295083,-0.6295083,824.7065,-148.0745,-0.04053509,53.10423,-9.534762,-0.04053509,0,0,5,0.623161,1.644411,0,0,0,6.631108,0.3323833,-9.271598,-2.308107,0,1484.074,-,-
+2475.5,7691.7788657546,19.9999992370605,19.9999992370605,0,-0.8954099,614.8951,-0.6295083,-0.6295083,824.7065,-148.0745,-0.04053509,53.10423,-9.534762,-0.04053509,0,0,5,0.623161,1.644411,0,0,0,6.631108,0.3323833,-9.271598,-2.308107,0,1484.074,-,-
+2476.5,7697.33442109823,19.9999992370605,19.9999992370605,0,-0.8954099,614.8951,-0.6295083,-0.6295083,824.7065,-148.0745,-0.04053509,53.10423,-9.534762,-0.04053509,0,0,5,0.623161,1.644411,0,0,0,6.631108,0.3323833,-9.271598,-2.308107,0,1484.074,-,-
+2477.5,7702.88997644186,19.9999992370605,19.9999992370605,0,-0.8954099,614.8951,-0.6295083,-0.6295083,824.7065,-148.0745,-0.04053509,53.10423,-9.534762,-0.04053509,0,0,5,0.623161,1.644411,0,0,0,6.631108,0.3323833,-9.271598,-2.308107,0,1484.074,-,-
+2478.5,7708.44553178549,19.9999992370605,19.9999992370605,0,-0.8954099,614.8951,-0.6295083,-0.6295083,824.7065,-148.0745,-0.04053509,53.10423,-9.534762,-0.04053509,0,0,5,0.623161,1.644411,0,0,0,6.631108,0.3323833,-9.271598,-2.308107,0,1484.074,-,-
+2479.5,7714.00108712912,19.9999992370605,19.9999992370605,0,-0.8954099,614.8951,-0.6295083,-0.6295083,824.7065,-148.0745,-0.04053509,53.10423,-9.534762,-0.04053509,0,0,5,0.623161,1.644411,0,0,0,6.631108,0.3323833,-9.271598,-2.308107,0,1484.074,-,-
+2480.5,7719.55664247274,19.9999992370605,19.9999992370605,0,-0.8954099,614.8951,-0.6295083,-0.6295083,824.7065,-148.0745,-0.04053509,53.10423,-9.534762,-0.04053509,0,0,5,0.623161,1.644411,0,0,0,6.631108,0.3323833,-9.271598,-2.308107,0,1484.074,-,-
+2481.5,7725.11219781637,19.9999992370605,19.9999992370605,0,-0.8954099,614.8951,-0.6295083,-0.6295083,824.7065,-148.0745,-0.04053509,53.10423,-9.534762,-0.04053509,0,0,5,0.623161,1.644411,0,0,0,6.631108,0.3323833,-9.271598,-2.308107,0,1484.074,-,-
+2482.5,7730.66775316,19.9999992370605,19.9999992370605,0,-0.8954099,614.8951,-0.6295083,-0.6295083,824.7065,-148.0745,-0.04053509,53.10423,-9.534762,-0.04053509,0,0,5,0.623161,1.644411,0,0,0,6.631108,0.3323833,-9.271598,-2.308107,0,1484.074,-,-
+2483.5,7736.22330850363,19.9999992370605,19.9999992370605,0,-0.8954099,614.8951,-0.6295083,-0.6295083,824.7065,-148.0745,-0.04053509,53.10423,-9.534762,-0.04053509,0,0,5,0.623161,1.644411,0,0,0,6.631108,0.3323833,-9.271598,-2.308107,0,1484.074,-,-
+2484.5,7741.77886384726,19.9999992370605,19.9999992370605,0,-0.8954099,614.8951,-0.6295083,-0.6295083,824.7065,-148.0745,-0.04053509,53.10423,-9.534762,-0.04053509,0,0,5,0.623161,1.644411,0,0,0,6.631108,0.3323833,-9.271598,-2.308107,0,1484.074,-,-
+2485.5,7747.33441919088,19.9999992370605,19.9999992370605,0,-0.8954099,614.8951,-0.6295083,-0.6295083,824.7065,-148.0745,-0.04053509,53.10423,-9.534762,-0.04053509,0,0,5,0.623161,1.644411,0,0,0,6.631108,0.3323833,-9.271598,-2.308107,0,1484.074,-,-
+2486.5,7752.88997453451,19.9999992370605,19.9999992370605,0,-0.8954099,614.8951,-0.6295083,-0.6295083,824.7065,-148.0745,-0.04053509,53.10423,-9.534762,-0.04053509,0,0,5,0.623161,1.644411,0,0,0,6.631108,0.3323833,-9.271598,-2.308107,0,1484.074,-,-
+2487.5,7758.44552987814,19.9999992370605,19.9999992370605,0,-0.839777,614.8951,8.227896,8.227896,824.7065,-148.0745,0.5298079,53.10423,-9.534762,0.5298079,0,0,5,0.6174575,1.644411,0,0,0,6.63114,0.3323833,-8.695583,-1.73206,0,1568.404,-,-
+2488.5,7764.00108522177,19.9999992370605,19.9999992370605,0,-0.7841441,614.8951,17.08537,17.08537,828.028,-148.0745,1.100156,53.3181,-9.534762,1.100156,0,0,5,0.6117541,1.644411,0,0,0,6.63117,0.3323833,-8.119562,-1.156009,0,1652.505,-,-
+2489.5,7769.5566405654,19.9999992370605,19.9999992370605,0,-0.7841441,614.8951,17.08537,17.08537,831.3495,-148.0745,1.100156,53.53199,-9.534762,1.100156,0,0,5,0.6117541,1.644411,0,0,0,6.63117,0.3323833,-8.119562,-1.156009,0,1652.505,-,-
+2490.5,7775.11219590902,19.9999992370605,19.9999992370605,0,-0.7841441,614.8951,17.08537,17.08537,831.3495,-148.0745,1.100156,53.53199,-9.534762,1.100156,0,0,5,0.6117541,1.644411,0,0,0,6.63117,0.3323833,-8.119562,-1.156009,0,1652.505,-,-
+2491.5,7780.66775125265,19.9999992370605,19.9999992370605,0,-0.7841441,614.8951,17.08537,17.08537,831.3495,-148.0745,1.100156,53.53199,-9.534762,1.100156,0,0,5,0.6117541,1.644411,0,0,0,6.63117,0.3323833,-8.119562,-1.156009,0,1652.505,-,-
+2492.5,7786.22330659628,19.9999992370605,19.9999992370605,0,-0.7841441,614.8951,17.08537,17.08537,831.3495,-148.0745,1.100156,53.53199,-9.534762,1.100156,0,0,5,0.6117541,1.644411,0,0,0,6.63117,0.3323833,-8.119562,-1.156009,0,1652.505,-,-
+2493.5,7791.77886193991,19.9999992370605,19.9999992370605,0,-0.7841441,614.8951,17.08537,17.08537,831.3495,-148.0745,1.100156,53.53199,-9.534762,1.100156,0,0,5,0.6117541,1.644411,0,0,0,6.63117,0.3323833,-8.119562,-1.156009,0,1652.505,-,-
+2494.5,7797.33441728354,19.9999992370605,19.9999992370605,0,-0.7841441,614.8951,17.08537,17.08537,831.3495,-148.0745,1.100156,53.53199,-9.534762,1.100156,0,0,5,0.6117541,1.644411,0,0,0,6.63117,0.3323833,-8.119562,-1.156009,0,1652.505,-,-
+2495.5,7802.88997262716,19.9999992370605,19.9999992370605,0,-0.6638566,614.8951,36.23698,36.23698,831.3495,-148.0745,2.33336,53.53199,-9.534762,2.33336,0,0,5,0.599422,1.644411,0,0,0,6.631227,0.3323833,-6.874084,0.08952713,0,1834.35,-,-
+2496.5,7808.44552797079,19.9999992370605,19.9999992370605,0,-0.6638566,614.8951,36.23698,36.23698,838.5314,-148.0745,2.33336,53.99444,-9.534762,2.33336,0,0,5,0.599422,1.644411,0,0,0,6.631227,0.3323833,-6.874084,0.08952713,0,1834.35,-,-
+2497.5,7814.00108331442,19.9999992370605,19.9999992370605,0,-0.6638566,614.8951,36.23698,36.23698,838.5314,-148.0745,2.33336,53.99444,-9.534762,2.33336,0,0,5,0.599422,1.644411,0,0,0,6.631227,0.3323833,-6.874084,0.08952713,0,1834.35,-,-
+2498.5,7819.55663865805,19.9999992370605,19.9999992370605,0,-0.6638566,614.8951,36.23698,36.23698,838.5314,-148.0745,2.33336,53.99444,-9.534762,2.33336,0,0,5,0.599422,1.644411,0,0,0,6.631227,0.3323833,-6.874084,0.08952713,0,1834.35,-,-
+2499.5,7825.11219400167,19.9999992370605,19.9999992370605,0,-0.6638566,614.8951,36.23698,36.23698,838.5314,-148.0745,2.33336,53.99444,-9.534762,2.33336,0,0,5,0.599422,1.644411,0,0,0,6.631227,0.3323833,-6.874084,0.08952713,0,1834.35,-,-
+2500.5,7830.6677493453,19.9999992370605,19.9999992370605,0,-0.6638566,614.8951,36.23698,36.23698,838.5314,-148.0745,2.33336,53.99444,-9.534762,2.33336,0,0,5,0.599422,1.644411,0,0,0,6.631227,0.3323833,-6.874084,0.08952713,0,1834.35,-,-
+2501.5,7836.22330468893,19.9999992370605,19.9999992370605,0,-0.6638566,614.8951,36.23698,36.23698,838.5314,-148.0745,2.33336,53.99444,-9.534762,2.33336,0,0,5,0.599422,1.644411,0,0,0,6.631227,0.3323833,-6.874084,0.08952713,0,1834.35,-,-
+2502.5,7841.77886003256,19.9999992370605,19.9999992370605,0,-0.5435692,614.8951,55.55387,55.55387,838.5314,-148.0745,3.577206,53.99444,-9.534762,3.577206,0,0,5,0.5977123,1.644411,0,0,0,6.631276,0.3323833,-5.628576,1.335083,0,2017.764,-,-
+2503.5,7847.33441537619,19.9999992370605,19.9999992370605,0,-0.5435692,614.8951,55.55387,55.55387,845.7752,-148.0745,3.577206,54.46088,-9.534762,3.577206,0,0,5,0.5977123,1.644411,0,0,0,6.631276,0.3323833,-5.628576,1.335083,0,2017.764,-,-
+2504.5,7852.88997071981,19.9999992370605,19.9999992370605,0,-0.5435692,614.8951,55.55387,55.55387,845.7752,-148.0745,3.577206,54.46088,-9.534762,3.577206,0,0,5,0.5977123,1.644411,0,0,0,6.631276,0.3323833,-5.628576,1.335083,0,2017.764,-,-
+2505.5,7858.44552606344,19.9999992370605,19.9999992370605,0,-0.5435692,614.8951,55.55387,55.55387,845.7752,-148.0745,3.577206,54.46088,-9.534762,3.577206,0,0,5,0.5977123,1.644411,0,0,0,6.631276,0.3323833,-5.628576,1.335083,0,2017.764,-,-
+2506.5,7864.00108140707,19.9999992370605,19.9999992370605,0,-0.5435692,614.8951,55.55387,55.55387,845.7752,-148.0745,3.577206,54.46088,-9.534762,3.577206,0,0,5,0.5977123,1.644411,0,0,0,6.631276,0.3323833,-5.628576,1.335083,0,2017.764,-,-
+2507.5,7869.5566367507,19.9999992370605,19.9999992370605,0,-0.5435692,614.8951,55.55387,55.55387,845.7752,-148.0745,3.577206,54.46088,-9.534762,3.577206,0,0,5,0.5977123,1.644411,0,0,0,6.631276,0.3323833,-5.628576,1.335083,0,2017.764,-,-
+2508.5,7875.11219209433,19.9999992370605,19.9999992370605,0,-0.5435692,614.8951,55.55387,55.55387,845.7752,-148.0745,3.577206,54.46088,-9.534762,3.577206,0,0,5,0.5977123,1.644411,0,0,0,6.631276,0.3323833,-5.628576,1.335083,0,2017.764,-,-
+2509.5,7880.66774743795,19.9999992370605,19.9999992370605,0,-0.4232818,614.8951,75.29229,75.29229,845.7752,-148.0745,4.848196,54.46088,-9.534762,4.848196,0,0,5,0.6231319,1.644411,0,0,0,6.631314,0.3323833,-4.383043,2.580654,0,2205.18,-,-
+2510.5,7886.22330278158,19.9999992370605,19.9999992370605,0,-0.4232818,614.8951,75.29229,75.29229,853.1771,-148.0745,4.848196,54.9375,-9.534762,4.848196,0,0,5,0.6231319,1.644411,0,0,0,6.631314,0.3323833,-4.383043,2.580654,0,2205.18,-,-
+2511.5,7891.77885812521,19.9999992370605,19.9999992370605,0,-0.4232818,614.8951,75.29229,75.29229,853.1771,-148.0745,4.848196,54.9375,-9.534762,4.848196,0,0,5,0.6231319,1.644411,0,0,0,6.631314,0.3323833,-4.383043,2.580654,0,2205.18,-,-
+2512.5,7897.33441346884,19.9999992370605,19.9999992370605,0,-0.4232818,614.8951,75.29229,75.29229,853.1771,-148.0745,4.848196,54.9375,-9.534762,4.848196,0,0,5,0.6231319,1.644411,0,0,0,6.631314,0.3323833,-4.383043,2.580654,0,2205.18,-,-
+2513.5,7902.88996881247,19.9999992370605,19.9999992370605,0,-0.4232818,614.8951,75.29229,75.29229,853.1771,-148.0745,4.848196,54.9375,-9.534762,4.848196,0,0,5,0.6231319,1.644411,0,0,0,6.631314,0.3323833,-4.383043,2.580654,0,2205.18,-,-
+2514.5,7908.44552415609,19.9999992370605,19.9999992370605,0,-0.4232818,614.8951,75.29229,75.29229,853.1771,-148.0745,4.848196,54.9375,-9.534762,4.848196,0,0,5,0.6231319,1.644411,0,0,0,6.631314,0.3323833,-4.383043,2.580654,0,2205.18,-,-
+2515.5,7914.00107949972,19.9999992370605,19.9999992370605,0,-0.4232818,614.8951,75.29229,75.29229,853.1771,-148.0745,4.848196,54.9375,-9.534762,4.848196,0,0,5,0.6231319,1.644411,0,0,0,6.631314,0.3323833,-4.383043,2.580654,0,2205.18,-,-
+2516.5,7919.55663484335,19.9999992370605,19.9999992370605,0,-0.3029943,614.8951,95.03088,95.03088,853.1771,-148.0745,6.119197,54.9375,-9.534762,6.119197,0,0,5,0.648552,1.644411,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,2392.598,-,-
+2517.5,7925.11219018698,19.9999992370605,19.9999992370605,0,-0.3029943,614.8951,95.03088,95.03088,860.5791,-148.0745,6.119197,55.41412,-9.534762,6.119197,0,0,5,0.648552,1.644411,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,2392.598,-,-
+2518.5,7930.66774553061,19.9999992370605,19.9999992370605,0,-0.3029943,614.8951,95.03088,95.03088,860.5791,-148.0745,6.119197,55.41412,-9.534762,6.119197,0,0,5,0.648552,1.644411,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,2392.598,-,-
+2519.5,7936.22330087423,19.9999992370605,19.9999992370605,0,-0.3029943,614.8951,95.03088,95.03088,860.5791,-148.0745,6.119197,55.41412,-9.534762,6.119197,0,0,5,0.648552,1.644411,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,2392.598,-,-
+2520.5,7941.77885621786,19.9999992370605,19.9999992370605,0,-0.3029943,614.8951,95.03088,95.03088,860.5791,-148.0745,6.119197,55.41412,-9.534762,6.119197,0,0,5,0.648552,1.644411,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,2392.598,-,-
+2521.5,7947.33441156149,19.9999992370605,19.9999992370605,0,-0.3029943,614.8951,95.03088,95.03088,860.5791,-148.0745,6.119197,55.41412,-9.534762,6.119197,0,0,5,0.648552,1.644411,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,2392.598,-,-
+2522.5,7952.88996690512,19.9999992370605,19.9999992370605,0,-0.3029943,614.8951,95.03088,95.03088,860.5791,-148.0745,6.119197,55.41412,-9.534762,6.119197,0,0,5,0.648552,1.644411,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,2392.598,-,-
+2523.5,7958.44552224875,19.9999992370605,19.9999992370605,0,-0.3029943,614.8951,95.03088,95.03088,860.5791,-148.0745,6.119197,55.41412,-9.534762,6.119197,0,0,5,0.648552,1.644411,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,2392.598,-,-
+2524.5,7964.00107759237,19.9999992370605,19.9999992370605,0,-0.3029943,614.8951,95.03088,95.03088,860.5791,-148.0745,6.119197,55.41412,-9.534762,6.119197,0,0,5,0.648552,1.644411,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,2392.598,-,-
+2525.5,7969.556632936,19.9999992370605,19.9999992370605,0,-0.3029943,614.8951,95.03088,95.03088,860.5791,-148.0745,6.119197,55.41412,-9.534762,6.119197,0,0,5,0.648552,1.644411,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,2392.598,-,-
+2526.5,7975.11218827963,19.9999992370605,19.9999992370605,0,-0.3029943,614.8951,95.03088,95.03088,860.5791,-148.0745,6.119197,55.41412,-9.534762,6.119197,0,0,5,0.648552,1.644411,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,2392.598,-,-
+2527.5,7980.66774362326,19.9999992370605,19.9999992370605,0,-0.3029943,614.8951,95.03088,95.03088,860.5791,-148.0745,6.119197,55.41412,-9.534762,6.119197,0,0,5,0.648552,1.644411,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,2392.598,-,-
+2528.5,7986.22329896688,19.9999992370605,19.9999992370605,0,-0.3029943,614.8951,95.03088,95.03088,860.5791,-148.0745,6.119197,55.41412,-9.534762,6.119197,0,0,5,0.648552,1.644411,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,2392.598,-,-
+2529.5,7991.77885431051,19.9999992370605,19.9999992370605,0,-0.3029943,614.8951,95.03088,95.03088,860.5791,-148.0745,6.119197,55.41412,-9.534762,6.119197,0,0,5,0.648552,1.644411,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,2392.598,-,-
+2530.5,7997.33440965414,19.9999992370605,19.9999992370605,0,-0.3029943,614.8951,95.03088,95.03088,860.5791,-148.0745,6.119197,55.41412,-9.534762,6.119197,0,0,5,0.648552,1.644411,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,2392.598,-,-
+2531.5,8002.88996499777,19.9999992370605,19.9999992370605,0,-0.3029943,614.8951,95.03088,95.03088,860.5791,-148.0745,6.119197,55.41412,-9.534762,6.119197,0,0,5,0.648552,1.644411,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,2392.598,-,-
+2532.5,8008.4455203414,19.9999992370605,19.9999992370605,0,-0.3029943,614.8951,95.03088,95.03088,860.5791,-148.0745,6.119197,55.41412,-9.534762,6.119197,0,0,5,0.648552,1.644411,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,2392.598,-,-
+2533.5,8014.00107568502,19.9999992370605,19.9999992370605,0,-0.3029943,614.8951,95.03088,95.03088,860.5791,-148.0745,6.119197,55.41412,-9.534762,6.119197,0,0,5,0.648552,1.644411,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,2392.598,-,-
+2534.5,8019.55663102865,19.9999992370605,19.9999992370605,0,-0.3029943,614.8951,95.03088,95.03088,860.5791,-148.0745,6.119197,55.41412,-9.534762,6.119197,0,0,5,0.648552,1.644411,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,2392.598,-,-
+2535.5,8025.11218637228,19.9999992370605,19.9999992370605,0,-0.3029943,614.8951,95.03088,95.03088,860.5791,-148.0745,6.119197,55.41412,-9.534762,6.119197,0,0,5,0.648552,1.644411,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,2392.598,-,-
+2536.5,8030.66774171591,19.9999992370605,19.9999992370605,0,-0.3029943,614.8951,95.03088,95.03088,860.5791,-148.0745,6.119197,55.41412,-9.534762,6.119197,0,0,5,0.648552,1.644411,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,2392.598,-,-
+2537.5,8036.22329705954,19.9999992370605,19.9999992370605,0,-0.3029943,614.8951,95.03088,95.03088,860.5791,-148.0745,6.119197,55.41412,-9.534762,6.119197,0,0,5,0.648552,1.644411,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,2392.598,-,-
+2538.5,8041.77885240316,19.9999992370605,19.9999992370605,0,-0.3029943,614.8951,95.03088,95.03088,860.5791,-148.0745,6.119197,55.41412,-9.534762,6.119197,0,0,5,0.648552,1.644411,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,2392.598,-,-
+2539.5,8047.33440774679,19.9999992370605,19.9999992370605,0,-0.3029943,614.8951,95.03088,95.03088,860.5791,-148.0745,6.119197,55.41412,-9.534762,6.119197,0,0,5,0.648552,1.644411,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,2392.598,-,-
+2540.5,8052.88996309042,19.9999992370605,19.9999992370605,0,-0.3029943,614.8951,95.03088,95.03088,860.5791,-148.0745,6.119197,55.41412,-9.534762,6.119197,0,0,5,0.648552,1.644411,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,2392.598,-,-
+2541.5,8058.44551843405,19.9999992370605,19.9999992370605,0,-0.3029943,614.8951,95.03088,95.03088,860.5791,-148.0745,6.119197,55.41412,-9.534762,6.119197,0,0,5,0.648552,1.644411,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,2392.598,-,-
+2542.5,8064.00107377768,19.9999992370605,19.9999992370605,0,-0.3029943,614.8951,95.03088,95.03088,860.5791,-148.0745,6.119197,55.41412,-9.534762,6.119197,0,0,5,0.648552,1.644411,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,2392.598,-,-
+2543.5,8069.5566291213,19.9999992370605,19.9999992370605,0,-0.3029943,614.8951,95.03088,95.03088,860.5791,-148.0745,6.119197,55.41412,-9.534762,6.119197,0,0,5,0.648552,1.644411,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,2392.598,-,-
+2544.5,8075.11218446493,19.9999992370605,19.9999992370605,0,-0.3029943,614.8951,95.03088,95.03088,860.5791,-148.0745,6.119197,55.41412,-9.534762,6.119197,0,0,5,0.648552,1.644411,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,2392.598,-,-
+2545.5,8080.66773980856,19.9999992370605,19.9999992370605,0,-0.3029943,614.8951,95.03088,95.03088,860.5791,-148.0745,6.119197,55.41412,-9.534762,6.119197,0,0,5,0.648552,1.644411,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,2392.598,-,-
+2546.5,8086.22329515219,19.9999992370605,19.9999992370605,0,-0.3029943,614.8951,95.03088,95.03088,860.5791,-148.0745,6.119197,55.41412,-9.534762,6.119197,0,0,5,0.648552,1.644411,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,2392.598,-,-
+2547.5,8091.77885049582,19.9999992370605,19.9999992370605,0,-0.3029943,614.8951,95.03088,95.03088,860.5791,-148.0745,6.119197,55.41412,-9.534762,6.119197,0,0,5,0.648552,1.644411,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,2392.598,-,-
+2548.5,8097.33440583944,19.9999992370605,19.9999992370605,0,-0.3029943,614.8951,95.03088,95.03088,860.5791,-148.0745,6.119197,55.41412,-9.534762,6.119197,0,0,5,0.648552,1.644411,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,2392.598,-,-
+2549.5,8102.88996118307,19.9999992370605,19.9999992370605,0,-0.3029943,614.8951,95.03088,95.03088,860.5791,-148.0745,6.119197,55.41412,-9.534762,6.119197,0,0,5,0.648552,1.644411,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,2392.598,-,-
+2550.5,8108.4455165267,19.9999992370605,19.9999992370605,0,-0.3029943,614.8951,95.03088,95.03088,860.5791,-148.0745,6.119197,55.41412,-9.534762,6.119197,0,0,5,0.648552,1.644411,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,2392.598,-,-
+2551.5,8114.00107187033,19.9999992370605,19.9999992370605,0,-0.3029943,614.8951,95.03088,95.03088,860.5791,-148.0745,6.119197,55.41412,-9.534762,6.119197,0,0,5,0.648552,1.644411,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,2392.598,-,-
+2552.5,8119.55662721395,19.9999992370605,19.9999992370605,0,-0.3029943,614.8951,95.03088,95.03088,860.5791,-148.0745,6.119197,55.41412,-9.534762,6.119197,0,0,5,0.648552,1.644411,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,2392.598,-,-
+2553.5,8125.11218255758,19.9999992370605,19.9999992370605,0,-0.3029943,614.8951,95.03088,95.03088,860.5791,-148.0745,6.119197,55.41412,-9.534762,6.119197,0,0,5,0.648552,1.644411,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,2392.598,-,-
+2554.5,8130.66773790121,19.9999992370605,19.9999992370605,0,-0.3029943,614.8951,95.03088,95.03088,860.5791,-148.0745,6.119197,55.41412,-9.534762,6.119197,0,0,5,0.648552,1.644411,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,2392.598,-,-
+2555.5,8136.22329324484,19.9999992370605,19.9999992370605,0,-0.3029943,614.8951,95.03088,95.03088,860.5791,-148.0745,6.119197,55.41412,-9.534762,6.119197,0,0,5,0.648552,1.644411,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,2392.598,-,-
+2556.5,8141.77884858847,19.9999992370605,19.9999992370605,0,-0.3029943,614.8951,95.03088,95.03088,860.5791,-148.0745,6.119197,55.41412,-9.534762,6.119197,0,0,5,0.648552,1.644411,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,2392.598,-,-
+2557.5,8147.33440393209,19.9999992370605,19.9999992370605,0,-0.3029943,614.8951,95.03088,95.03088,860.5791,-148.0745,6.119197,55.41412,-9.534762,6.119197,0,0,5,0.648552,1.644411,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,2392.598,-,-
+2558.5,8152.88995927572,19.9999992370605,19.9999992370605,0,-0.3029943,614.8951,95.03088,95.03088,860.5791,-148.0745,6.119197,55.41412,-9.534762,6.119197,0,0,5,0.648552,1.644411,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,2392.598,-,-
+2559.5,8158.44551461935,19.9999992370605,19.9999992370605,0,-0.3029943,614.8951,95.03088,95.03088,860.5791,-148.0745,6.119197,55.41412,-9.534762,6.119197,0,0,5,0.648552,1.644411,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,2392.598,-,-
+2560.5,8164.00106996298,19.9999992370605,19.9999992370605,0,-0.3029943,614.8951,95.03088,95.03088,860.5791,-148.0745,6.119197,55.41412,-9.534762,6.119197,0,0,5,0.648552,1.644411,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,2392.598,-,-
+2561.5,8169.55662530661,19.9999992370605,19.9999992370605,0,-0.3029943,614.8951,95.03088,95.03088,860.5791,-148.0745,6.119197,55.41412,-9.534762,6.119197,0,0,5,0.648552,1.644411,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,2392.598,-,-
+2562.5,8175.11218065023,19.9999992370605,19.9999992370605,0,-0.3029943,614.8951,95.03088,95.03088,860.5791,-148.0745,6.119197,55.41412,-9.534762,6.119197,0,0,5,0.648552,1.644411,0,0,0,6.631343,0.3323833,-3.137492,3.826234,0,2392.598,-,-
+2563.5,8180.66773599386,19.9999992370605,19.9999992370605,0,-0.1941715,614.8951,112.8882,112.8882,860.5791,-148.0745,7.269062,55.41412,-9.534762,7.269062,0,0,5,0.6715494,1.644411,0,0,0,6.631361,0.3323833,-2.010642,4.953102,0,2562.154,-,-
+2564.5,8186.22329133749,19.9999992370605,19.9999992370605,0,-0.1941715,614.8951,112.8882,112.8882,867.2756,-148.0745,7.269062,55.84532,-9.534762,7.269062,0,0,5,0.6715494,1.644411,0,0,0,6.631361,0.3323833,-2.010642,4.953102,0,2562.154,-,-
+2565.5,8191.77884668112,19.9999992370605,19.9999992370605,0,-0.0799,614.8951,131.6397,131.6397,867.2756,-148.0745,8.4765,55.84532,-9.534762,8.4765,0,0,5,0.6956979,1.644411,0,0,0,6.631371,0.3323833,-0.8273641,6.136391,0,2740.199,-,-
+2566.5,8197.33440202475,19.9999992370605,19.9999992370605,0,-0.0799,614.8951,131.6397,131.6397,874.3074,-148.0745,8.4765,56.29811,-9.534762,8.4765,0,0,5,0.6956979,1.644411,0,0,0,6.631371,0.3323833,-0.8273641,6.136391,0,2740.199,-,-
+2567.5,8202.88995736837,19.9999992370605,19.9999992370605,0,0.0343,614.8951,150.3793,150.3793,874.3074,-148.0745,9.683175,56.29811,-9.534762,9.683175,0,0,5,0.7198316,1.644411,0,0,0,6.631373,0.3323833,0.3551764,7.318933,0,2918.131,-,-
+2568.5,8208.445512712,19.9999992370605,19.9999992370605,0,0.09141175,614.8951,159.751,159.751,881.3348,-148.0745,10.28663,56.75062,-9.534762,10.28663,0,0,5,0.7319003,1.644411,0,0,0,6.631371,0.3323833,0.9465682,7.910322,0,3007.115,-,-
+2569.5,8214.00106805563,19.9999992370605,19.9999992370605,0,0.1485235,614.8951,169.1226,169.1226,884.8492,-148.0745,10.89009,56.97691,-9.534762,10.89009,0,0,5,0.7439699,1.644411,0,0,0,6.631366,0.3323833,1.537959,8.501708,0,3096.099,-,-
+2570.5,8219.55662339926,19.9999992370605,19.9999992370605,0,0.2627552,614.8951,187.8671,187.8671,888.3635,-148.0745,12.09707,57.20321,-9.534762,12.09707,0,0,5,0.7681096,1.64441,0,0,0,6.631351,0.3323833,2.72082,9.684554,0,3281.094,-,-
+2571.5,8225.11217874289,19.9999992370605,19.9999992370605,0,0.2627552,614.8951,187.8671,187.8671,895.3927,-148.0745,12.09707,57.65583,-9.534762,12.09707,0,0,5,0.7681096,1.64441,0,0,0,6.631351,0.3323833,2.72082,9.684554,0,3281.094,-,-
+2572.5,8230.66773408651,19.9999992370605,19.9999992370605,0,0.3769868,614.8951,206.6112,206.6112,895.3927,-148.0745,13.30404,57.65583,-9.534762,13.30404,0,0,5,0.7922494,1.644411,0,0,0,6.631326,0.3323833,3.903671,10.86738,0,3497.854,-,-
+2573.5,8236.22328943014,19.9999992370605,19.9999992370605,0,0.3769868,614.8951,206.6112,206.6112,902.4217,-148.0745,13.30404,58.10844,-9.534762,13.30404,0,0,5,0.7922494,1.644411,0,0,0,6.631326,0.3323833,3.903671,10.86738,0,3497.854,-,-
+2574.5,8241.77884477377,19.9999992370605,19.9999992370605,0,0.4912184,614.8951,225.3549,225.3549,902.4217,-148.0745,14.51098,58.10844,-9.534762,14.51098,0,0,5,0.8163879,1.64441,0,0,0,6.631293,0.3323833,5.086505,12.05018,0,3698.411,-,-
+2575.5,8247.3344001174,19.9999992370605,19.9999992370605,0,0.4912184,614.8951,225.3549,225.3549,909.4506,-148.0745,14.51098,58.56104,-9.534762,14.51098,0,0,5,0.8163879,1.64441,0,0,0,6.631293,0.3323833,5.086505,12.05018,0,3698.411,-,-
+2576.5,8252.88995546103,19.9999992370605,19.9999992370605,0,0.6054501,614.8951,244.0982,244.0982,909.4506,-148.0745,15.71789,58.56104,-9.534762,15.71789,0,0,5,0.840526,1.644411,0,0,0,6.631252,0.3323833,6.26932,13.23296,0,3898.965,-,-
+2577.5,8258.44551080465,19.9999992370605,19.9999992370605,0,0.6625659,614.8951,253.4697,253.4697,916.4793,-148.0745,16.32134,59.01363,-9.534762,16.32134,0,0,5,0.852595,1.644411,0,0,0,6.631228,0.3323833,6.86072,13.82433,0,3999.239,-,-
+2578.5,8264.00106614828,19.9999992370605,19.9999992370605,0,0.7196818,614.8951,262.841,262.841,919.9937,-148.0745,16.92477,59.23993,-9.534762,16.92477,0,0,5,0.8646634,1.644411,0,0,0,6.631202,0.3323833,7.452112,14.4157,0,4099.512,-,-
+2579.5,8269.55662149191,19.9999992370605,19.9999992370605,0,0.8339134,614.8951,281.5832,281.5832,923.5079,-148.0745,18.13161,59.46621,-9.534762,18.13161,0,0,5,0.8887998,1.644411,0,0,0,6.631143,0.3323833,8.634872,15.5984,0,4300.053,-,-
+2580.5,8275.11217683554,19.9999992370605,19.9999992370605,0,0.8339134,614.8951,281.5832,281.5832,930.5363,-148.0745,18.13161,59.91878,-9.534762,18.13161,0,0,5,0.8887998,1.644411,0,0,0,6.631143,0.3323833,8.634872,15.5984,0,4300.053,-,-
+2581.5,8280.66773217916,19.9999992370605,19.9999992370605,0,0.9481452,614.8951,300.594,300.594,930.5363,-148.0745,19.35575,59.91878,-9.534762,19.35575,0,0,5,0.9132833,1.661404,0,0,0,6.631075,0.3323833,9.817601,16.78106,0,4503.469,-,-
+2582.5,8286.22328752279,19.9999992370605,19.9999992370605,0,0.9481452,614.8951,300.594,300.594,937.6653,-148.0745,19.35575,60.37783,-9.534762,19.35575,0,0,5,0.9132833,1.661404,0,0,0,6.631075,0.3323833,9.817601,16.78106,0,4503.469,-,-
+2583.5,8291.77884286642,19.9999992370605,19.9999992370605,0,1.062377,614.8951,319.6201,319.6201,937.6653,-148.0745,20.58087,60.37783,-9.534762,20.58087,0,0,5,0.9377846,1.679414,0,0,0,6.630999,0.3323833,11.00029,17.96367,0,4707.048,-,-
+2584.5,8297.33439821005,19.9999992370605,19.9999992370605,0,1.062377,614.8951,319.6201,319.6201,944.8,-148.0745,20.58087,60.83725,-9.534762,20.58087,0,0,5,0.9377846,1.679414,0,0,0,6.630999,0.3323833,11.00029,17.96367,0,4707.048,-,-
+2585.5,8302.88995355368,19.9999992370605,19.9999992370605,0,1.176608,614.8951,338.6454,338.6454,944.8,-148.0745,21.80594,60.83725,-9.534762,21.80594,0,0,5,0.9622871,1.697421,0,0,0,6.630915,0.3323833,12.18294,19.14623,0,4910.62,-,-
+2586.5,8308.4455088973,19.9999992370605,19.9999992370605,0,1.233724,614.8951,348.1577,348.1577,951.9346,-148.0745,22.41846,61.29665,-9.534762,22.41846,0,0,5,0.9745382,1.706426,0,0,0,6.630869,0.3323833,12.77424,19.73749,0,5012.401,-,-
+2587.5,8314.00106424093,19.9999992370605,19.9999992370605,0,1.29084,614.8951,357.6698,357.6698,955.5016,-148.0745,23.03095,61.52634,-9.534762,23.03095,0,0,5,0.9867866,1.71543,0,0,0,6.630821,0.3323833,13.36554,20.32874,0,5114.18,-,-
+2588.5,8319.55661958456,19.9999992370605,19.9999992370605,0,1.405072,614.8951,376.6932,376.6932,959.0687,-148.0745,24.25591,61.75603,-9.534762,24.25591,0,0,5,1.011287,1.733435,0,0,0,6.630719,0.3323833,14.54808,21.51118,0,5317.731,-,-
+2589.5,8325.11217492819,19.9999992370605,19.9999992370605,0,1.405072,614.8951,376.6932,376.6932,966.2025,-148.0745,24.25591,62.21539,-9.534762,24.25591,0,0,5,1.011287,1.733435,0,0,0,6.630719,0.3323833,14.54808,21.51118,0,5317.731,-,-
+2590.5,8330.66773027182,19.9999992370605,19.9999992370605,0,1.519303,614.8951,395.7156,395.7156,966.2025,-148.0745,25.48079,62.21539,-9.534762,25.48079,0,0,5,1.035784,1.751441,0,0,0,6.630608,0.3323833,15.73057,22.69356,0,5552.837,-,-
+2591.5,8336.22328561544,19.9999992370605,19.9999992370605,0,1.519303,614.8951,395.7156,395.7156,973.3359,-148.0745,25.48079,62.67472,-9.534762,25.48079,0,0,5,1.035784,1.751441,0,0,0,6.630608,0.3323833,15.73057,22.69356,0,5552.837,-,-
+2592.5,8341.77884095907,19.9999992370605,19.9999992370605,0,1.633535,614.8951,414.7369,414.7369,973.3359,-148.0745,26.7056,62.67472,-9.534762,26.7056,0,0,5,1.060279,1.769447,0,0,0,6.630489,0.3323833,16.913,23.87587,0,5803.227,-,-
+2593.5,8347.3343963027,19.9999992370605,19.9999992370605,0,1.633535,614.8951,414.7369,414.7369,980.4689,-148.0745,26.7056,63.13403,-9.534762,26.7056,0,0,5,1.060279,1.769447,0,0,0,6.630489,0.3323833,16.913,23.87587,0,5803.227,-,-
+2594.5,8352.88995164633,19.9999992370605,19.9999992370605,0,1.747767,614.8951,433.7568,433.7568,980.4689,-148.0745,27.93033,63.13403,-9.534762,27.93033,0,0,5,1.084775,1.787449,0,0,0,6.630361,0.3323833,18.09536,25.0581,0,6050.771,-,-
+2595.5,8358.44550698996,19.9999992370605,19.9999992370605,0,1.804883,614.8951,443.2664,443.2664,987.6013,-148.0745,28.54266,63.5933,-9.534762,28.54266,0,0,5,1.097021,1.796452,0,0,0,6.630293,0.3323833,18.68651,25.64919,0,6174.539,-,-
+2596.5,8364.00106233358,19.9999992370605,19.9999992370605,0,1.861998,614.8951,452.7756,452.7756,991.1675,-148.0745,29.15498,63.82293,-9.534762,29.15498,0,0,5,1.109268,1.805453,0,0,0,6.630224,0.3323833,19.27765,26.24026,0,6298.301,-,-
+2597.5,8369.55661767721,19.9999992370605,19.9999992370605,0,1.97623,614.8951,471.793,471.793,994.7334,-148.0745,30.37954,64.05254,-9.534762,30.37954,0,0,5,1.133759,1.823454,0,0,0,6.630079,0.3323833,20.45987,27.42233,0,6545.813,-,-
+2598.5,8375.11217302084,19.9999992370605,19.9999992370605,0,1.97623,614.8951,471.793,471.793,1001.865,-148.0745,30.37954,64.51175,-9.534762,30.37954,0,0,5,1.133759,1.823454,0,0,0,6.630079,0.3323833,20.45987,27.42233,0,6545.813,-,-
+2599.5,8380.66772836447,19.9999992370605,19.9999992370605,0,1.97623,614.8951,471.793,471.793,1001.865,-148.0745,30.37954,64.51175,-9.534762,30.37954,0,0,5,1.133759,1.823454,0,0,0,6.630079,0.3323833,20.45987,27.42233,0,6545.813,-,-
+2600.5,8386.2232837081,19.9999992370605,19.9999992370605,0,1.97623,614.8951,471.793,471.793,1001.865,-148.0745,30.37954,64.51175,-9.534762,30.37954,0,0,5,1.133759,1.823454,0,0,0,6.630079,0.3323833,20.45987,27.42233,0,6545.813,-,-
+2601.5,8391.77883905172,19.9999992370605,19.9999992370605,0,1.97623,614.8951,471.793,471.793,1001.865,-148.0745,30.37954,64.51175,-9.534762,30.37954,0,0,5,1.133759,1.823454,0,0,0,6.630079,0.3323833,20.45987,27.42233,0,6545.813,-,-
+2602.5,8397.33439439535,19.9999992370605,19.9999992370605,0,1.97623,614.8951,471.793,471.793,1001.865,-148.0745,30.37954,64.51175,-9.534762,30.37954,0,0,5,1.133759,1.823454,0,0,0,6.630079,0.3323833,20.45987,27.42233,0,6545.813,-,-
+2603.5,8402.88994973898,19.9999992370605,19.9999992370605,0,1.97623,614.8951,471.793,471.793,1001.865,-148.0745,30.37954,64.51175,-9.534762,30.37954,0,0,5,1.133759,1.823454,0,0,0,6.630079,0.3323833,20.45987,27.42233,0,6545.813,-,-
+2604.5,8408.44550508261,19.9999992370605,19.9999992370605,0,1.97623,614.8951,471.793,471.793,1001.865,-148.0745,30.37954,64.51175,-9.534762,30.37954,0,0,5,1.133759,1.823454,0,0,0,6.630079,0.3323833,20.45987,27.42233,0,6545.813,-,-
+2605.5,8414.00106042624,19.9999992370605,19.9999992370605,0,1.97623,614.8951,471.793,471.793,1001.865,-148.0745,30.37954,64.51175,-9.534762,30.37954,0,0,5,1.133759,1.823454,0,0,0,6.630079,0.3323833,20.45987,27.42233,0,6545.813,-,-
+2606.5,8419.55661576986,19.9999992370605,19.9999992370605,0,1.856098,614.8951,451.7933,451.7933,1001.865,-148.0745,29.09172,64.51175,-9.534762,29.09172,0,0,5,1.108003,1.804522,0,0,0,6.630231,0.3323833,19.21658,26.1792,0,6285.516,-,-
+2607.5,8425.11217111349,19.9999992370605,19.9999992370605,0,1.856098,614.8951,451.7933,451.7933,994.3651,-148.0745,29.09172,64.02882,-9.534762,29.09172,0,0,5,1.108003,1.804522,0,0,0,6.630231,0.3323833,19.21658,26.1792,0,6285.516,-,-
+2608.5,8430.66772645712,19.9999992370605,19.9999992370605,0,1.856098,614.8951,451.7933,451.7933,994.3651,-148.0745,29.09172,64.02882,-9.534762,29.09172,0,0,5,1.108003,1.804522,0,0,0,6.630231,0.3323833,19.21658,26.1792,0,6285.516,-,-
+2609.5,8436.22328180075,19.9999992370605,19.9999992370605,0,1.856098,614.8951,451.7933,451.7933,994.3651,-148.0745,29.09172,64.02882,-9.534762,29.09172,0,0,5,1.108003,1.804522,0,0,0,6.630231,0.3323833,19.21658,26.1792,0,6285.516,-,-
+2610.5,8441.77883714437,19.9999992370605,19.9999992370605,0,1.746887,614.8951,433.6104,433.6104,994.3651,-148.0745,27.92089,64.02882,-9.534762,27.92089,0,0,5,1.084585,1.787311,0,0,0,6.630362,0.3323833,18.08625,25.049,0,6048.865,-,-
+2611.5,8447.334392488,19.9999992370605,19.9999992370605,0,1.746887,614.8951,433.6104,433.6104,987.5464,-148.0745,27.92089,63.58976,-9.534762,27.92089,0,0,5,1.084585,1.787311,0,0,0,6.630362,0.3323833,18.08625,25.049,0,6048.865,-,-
+2612.5,8452.88994783163,19.9999992370605,19.9999992370605,0,1.746887,614.8951,433.6104,433.6104,987.5464,-148.0745,27.92089,63.58976,-9.534762,27.92089,0,0,5,1.084585,1.787311,0,0,0,6.630362,0.3323833,18.08625,25.049,0,6048.865,-,-
+2613.5,8458.44550317526,19.9999992370605,19.9999992370605,0,1.692281,614.8951,424.5184,424.5184,987.5464,-148.0745,27.33545,63.58976,-9.534762,27.33545,0,0,5,1.072877,1.778705,0,0,0,6.630424,0.3323833,17.52106,24.48387,0,5930.534,-,-
+2614.5,8464.00105851889,19.9999992370605,19.9999992370605,0,1.637676,614.8951,415.4263,415.4263,984.1369,-148.0745,26.74999,63.37022,-9.534762,26.74999,0,0,5,1.061167,1.770098,0,0,0,6.630485,0.3323833,16.95586,23.91873,0,5812.199,-,-
+2615.5,8469.55661386251,19.9999992370605,19.9999992370605,0,1.637676,614.8951,415.4263,415.4263,980.7274,-148.0745,26.74999,63.15067,-9.534762,26.74999,0,0,5,1.061167,1.770098,0,0,0,6.630485,0.3323833,16.95586,23.91873,0,5812.199,-,-
+2616.5,8475.11216920614,19.9999992370605,19.9999992370605,0,1.637676,614.8951,415.4263,415.4263,980.7274,-148.0745,26.74999,63.15067,-9.534762,26.74999,0,0,5,1.061167,1.770098,0,0,0,6.630485,0.3323833,16.95586,23.91873,0,5812.199,-,-
+2617.5,8480.66772454977,19.9999992370605,19.9999992370605,0,1.528465,614.8951,397.2411,397.2411,980.7274,-148.0745,25.57902,63.15067,-9.534762,25.57902,0,0,5,1.037748,1.752885,0,0,0,6.630599,0.3323833,15.8254,22.78838,0,5573.699,-,-
+2618.5,8486.2232798934,19.9999992370605,19.9999992370605,0,1.528465,614.8951,397.2411,397.2411,973.908,-148.0745,25.57902,62.71156,-9.534762,25.57902,0,0,5,1.037748,1.752885,0,0,0,6.630599,0.3323833,15.8254,22.78838,0,5573.699,-,-
+2619.5,8491.77883523703,19.9999992370605,19.9999992370605,0,1.528465,614.8951,397.2411,397.2411,973.908,-148.0745,25.57902,62.71156,-9.534762,25.57902,0,0,5,1.037748,1.752885,0,0,0,6.630599,0.3323833,15.8254,22.78838,0,5573.699,-,-
+2620.5,8497.33439058065,19.9999992370605,19.9999992370605,0,1.528465,614.8951,397.2411,397.2411,973.908,-148.0745,25.57902,62.71156,-9.534762,25.57902,0,0,5,1.037748,1.752885,0,0,0,6.630599,0.3323833,15.8254,22.78838,0,5573.699,-,-
+2621.5,8502.88994592428,19.9999992370605,19.9999992370605,0,1.419254,614.8951,379.0549,379.0549,973.908,-148.0745,24.40798,62.71156,-9.534762,24.40798,0,0,5,1.014327,1.735671,0,0,0,6.630706,0.3323833,14.69489,21.65798,0,5343,-,-
+2622.5,8508.44550126791,19.9999992370605,19.9999992370605,0,1.419254,614.8951,379.0549,379.0549,967.0881,-148.0745,24.40798,62.27242,-9.534762,24.40798,0,0,5,1.014327,1.735671,0,0,0,6.630706,0.3323833,14.69489,21.65798,0,5343,-,-
+2623.5,8514.00105661154,19.9999992370605,19.9999992370605,0,1.419254,614.8951,379.0549,379.0549,967.0881,-148.0745,24.40798,62.27242,-9.534762,24.40798,0,0,5,1.014327,1.735671,0,0,0,6.630706,0.3323833,14.69489,21.65798,0,5343,-,-
+2624.5,8519.55661195517,19.9999992370605,19.9999992370605,0,1.310043,614.8951,360.8678,360.8678,967.0881,-148.0745,23.23688,62.27242,-9.534762,23.23688,0,0,5,0.9909055,1.718456,0,0,0,6.630805,0.3323833,13.56433,20.52752,0,5148.398,-,-
+2625.5,8525.11216729879,19.9999992370605,19.9999992370605,0,1.310043,614.8951,360.8678,360.8678,960.268,-148.0745,23.23688,61.83326,-9.534762,23.23688,0,0,5,0.9909055,1.718456,0,0,0,6.630805,0.3323833,13.56433,20.52752,0,5148.398,-,-
+2626.5,8530.66772264242,19.9999992370605,19.9999992370605,0,1.310043,614.8951,360.8678,360.8678,960.268,-148.0745,23.23688,61.83326,-9.534762,23.23688,0,0,5,0.9909055,1.718456,0,0,0,6.630805,0.3323833,13.56433,20.52752,0,5148.398,-,-
+2627.5,8536.22327798605,19.9999992370605,19.9999992370605,0,1.310043,614.8951,360.8678,360.8678,960.268,-148.0745,23.23688,61.83326,-9.534762,23.23688,0,0,5,0.9909055,1.718456,0,0,0,6.630805,0.3323833,13.56433,20.52752,0,5148.398,-,-
+2628.5,8541.77883332968,19.9999992370605,19.9999992370605,0,1.200832,614.8951,342.6797,342.6797,960.268,-148.0745,22.06572,61.83326,-9.534762,22.06572,0,0,5,0.9674826,1.701241,0,0,0,6.630895,0.3323833,12.43371,19.39699,0,4953.786,-,-
+2629.5,8547.33438867331,19.9999992370605,19.9999992370605,0,1.200832,614.8951,342.6797,342.6797,953.4474,-148.0745,22.06572,61.39407,-9.534762,22.06572,0,0,5,0.9674826,1.701241,0,0,0,6.630895,0.3323833,12.43371,19.39699,0,4953.786,-,-
+2630.5,8552.88994401693,19.9999992370605,19.9999992370605,0,1.200832,614.8951,342.6797,342.6797,953.4474,-148.0745,22.06572,61.39407,-9.534762,22.06572,0,0,5,0.9674826,1.701241,0,0,0,6.630895,0.3323833,12.43371,19.39699,0,4953.786,-,-
+2631.5,8558.44549936056,19.9999992370605,19.9999992370605,0,1.146226,614.8951,333.5853,333.5853,953.4474,-148.0745,21.48012,61.39407,-9.534762,21.48012,0,0,5,0.9557703,1.692633,0,0,0,6.630938,0.3323833,11.86839,18.83171,0,4856.477,-,-
+2632.5,8564.00105470419,19.9999992370605,19.9999992370605,0,1.091621,614.8951,324.4908,324.4908,950.037,-148.0745,20.8945,61.17447,-9.534762,20.8945,0,0,5,0.9440591,1.684023,0,0,0,6.630979,0.3323833,11.30306,18.26642,0,4759.165,-,-
+2633.5,8569.55661004782,19.9999992370605,19.9999992370605,0,1.091621,614.8951,324.4908,324.4908,946.6266,-148.0745,20.8945,60.95486,-9.534762,20.8945,0,0,5,0.9440591,1.684023,0,0,0,6.630979,0.3323833,11.30306,18.26642,0,4759.165,-,-
+2634.5,8575.11216539145,19.9999992370605,19.9999992370605,0,1.091621,614.8951,324.4908,324.4908,946.6266,-148.0745,20.8945,60.95486,-9.534762,20.8945,0,0,5,0.9440591,1.684023,0,0,0,6.630979,0.3323833,11.30306,18.26642,0,4759.165,-,-
+2635.5,8580.66772073507,19.9999992370605,19.9999992370605,0,0.9824094,614.8951,306.301,306.301,946.6266,-148.0745,19.72323,60.95486,-9.534762,19.72323,0,0,5,0.920633,1.666806,0,0,0,6.631053,0.3323833,10.17236,17.1358,0,4564.535,-,-
+2636.5,8586.2232760787,19.9999992370605,19.9999992370605,0,0.9824094,614.8951,306.301,306.301,939.8054,-148.0745,19.72323,60.51564,-9.534762,19.72323,0,0,5,0.920633,1.666806,0,0,0,6.631053,0.3323833,10.17236,17.1358,0,4564.535,-,-
+2637.5,8591.77883142233,19.9999992370605,19.9999992370605,0,0.9824094,614.8951,306.301,306.301,939.8054,-148.0745,19.72323,60.51564,-9.534762,19.72323,0,0,5,0.920633,1.666806,0,0,0,6.631053,0.3323833,10.17236,17.1358,0,4564.535,-,-
+2638.5,8597.33438676596,19.9999992370605,19.9999992370605,0,0.9824094,614.8951,306.301,306.301,939.8054,-148.0745,19.72323,60.51564,-9.534762,19.72323,0,0,5,0.920633,1.666806,0,0,0,6.631053,0.3323833,10.17236,17.1358,0,4564.535,-,-
+2639.5,8602.88994210958,19.9999992370605,19.9999992370605,0,0.9824094,614.8951,306.301,306.301,939.8054,-148.0745,19.72323,60.51564,-9.534762,19.72323,0,0,5,0.920633,1.666806,0,0,0,6.631053,0.3323833,10.17236,17.1358,0,4564.535,-,-
+2640.5,8608.44549745321,19.9999992370605,19.9999992370605,0,0.9824094,614.8951,306.301,306.301,939.8054,-148.0745,19.72323,60.51564,-9.534762,19.72323,0,0,5,0.920633,1.666806,0,0,0,6.631053,0.3323833,10.17236,17.1358,0,4564.535,-,-
+2641.5,8614.00105279684,19.9999992370605,19.9999992370605,0,0.9824094,614.8951,306.301,306.301,939.8054,-148.0745,19.72323,60.51564,-9.534762,19.72323,0,0,5,0.920633,1.666806,0,0,0,6.631053,0.3323833,10.17236,17.1358,0,4564.535,-,-
+2642.5,8619.55660814047,19.9999992370605,19.9999992370605,0,0.9824094,614.8951,306.301,306.301,939.8054,-148.0745,19.72323,60.51564,-9.534762,19.72323,0,0,5,0.920633,1.666806,0,0,0,6.631053,0.3323833,10.17236,17.1358,0,4564.535,-,-
+2643.5,8625.1121634841,19.9999992370605,19.9999992370605,0,0.9824094,614.8951,306.301,306.301,939.8054,-148.0745,19.72323,60.51564,-9.534762,19.72323,0,0,5,0.920633,1.666806,0,0,0,6.631053,0.3323833,10.17236,17.1358,0,4564.535,-,-
+2644.5,8630.66771882772,19.9999992370605,19.9999992370605,0,0.9824094,614.8951,306.301,306.301,939.8054,-148.0745,19.72323,60.51564,-9.534762,19.72323,0,0,5,0.920633,1.666806,0,0,0,6.631053,0.3323833,10.17236,17.1358,0,4564.535,-,-
+2645.5,8636.22327417135,19.9999992370605,19.9999992370605,0,0.9824094,614.8951,306.301,306.301,939.8054,-148.0745,19.72323,60.51564,-9.534762,19.72323,0,0,5,0.920633,1.666806,0,0,0,6.631053,0.3323833,10.17236,17.1358,0,4564.535,-,-
+2646.5,8641.77882951498,19.9999992370605,19.9999992370605,0,0.9824094,614.8951,306.301,306.301,939.8054,-148.0745,19.72323,60.51564,-9.534762,19.72323,0,0,5,0.920633,1.666806,0,0,0,6.631053,0.3323833,10.17236,17.1358,0,4564.535,-,-
+2647.5,8647.33438485861,19.9999992370605,19.9999992370605,0,0.9824094,614.8951,306.301,306.301,939.8054,-148.0745,19.72323,60.51564,-9.534762,19.72323,0,0,5,0.920633,1.666806,0,0,0,6.631053,0.3323833,10.17236,17.1358,0,4564.535,-,-
+2648.5,8652.88994020224,19.9999992370605,19.9999992370605,0,0.9824094,614.8951,306.301,306.301,939.8054,-148.0745,19.72323,60.51564,-9.534762,19.72323,0,0,5,0.920633,1.666806,0,0,0,6.631053,0.3323833,10.17236,17.1358,0,4564.535,-,-
+2649.5,8658.44549554586,19.9999992370605,19.9999992370605,0,0.9824094,614.8951,306.301,306.301,939.8054,-148.0745,19.72323,60.51564,-9.534762,19.72323,0,0,5,0.920633,1.666806,0,0,0,6.631053,0.3323833,10.17236,17.1358,0,4564.535,-,-
+2650.5,8664.00105088949,19.9999992370605,19.9999992370605,0,0.9824094,614.8951,306.301,306.301,939.8054,-148.0745,19.72323,60.51564,-9.534762,19.72323,0,0,5,0.920633,1.666806,0,0,0,6.631053,0.3323833,10.17236,17.1358,0,4564.535,-,-
+2651.5,8669.55660623312,19.9999992370605,19.9999992370605,0,0.9824094,614.8951,306.301,306.301,939.8054,-148.0745,19.72323,60.51564,-9.534762,19.72323,0,0,5,0.920633,1.666806,0,0,0,6.631053,0.3323833,10.17236,17.1358,0,4564.535,-,-
+2652.5,8675.11216157675,19.9999992370605,19.9999992370605,0,0.9824094,614.8951,306.301,306.301,939.8054,-148.0745,19.72323,60.51564,-9.534762,19.72323,0,0,5,0.920633,1.666806,0,0,0,6.631053,0.3323833,10.17236,17.1358,0,4564.535,-,-
+2653.5,8680.66771692038,19.9999992370605,19.9999992370605,0,0.8810398,614.8951,289.4167,289.4167,939.8054,-148.0745,18.63602,60.51564,-9.534762,18.63602,0,0,5,0.8988876,1.650824,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,4383.872,-,-
+2654.5,8686.223272264,19.9999992370605,19.9999992370605,0,0.8810398,614.8951,289.4167,289.4167,933.4738,-148.0745,18.63602,60.10794,-9.534762,18.63602,0,0,5,0.8988876,1.650824,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,4383.872,-,-
+2655.5,8691.77882760763,19.9999992370605,19.9999992370605,0,0.8810398,614.8951,289.4167,289.4167,933.4738,-148.0745,18.63602,60.10794,-9.534762,18.63602,0,0,5,0.8988876,1.650824,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,4383.872,-,-
+2656.5,8697.33438295126,19.9999992370605,19.9999992370605,0,0.8810398,614.8951,289.4167,289.4167,933.4738,-148.0745,18.63602,60.10794,-9.534762,18.63602,0,0,5,0.8988876,1.650824,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,4383.872,-,-
+2657.5,8702.88993829489,19.9999992370605,19.9999992370605,0,0.8810398,614.8951,289.4167,289.4167,933.4738,-148.0745,18.63602,60.10794,-9.534762,18.63602,0,0,5,0.8988876,1.650824,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,4383.872,-,-
+2658.5,8708.44549363852,19.9999992370605,19.9999992370605,0,0.8810398,614.8951,289.4167,289.4167,933.4738,-148.0745,18.63602,60.10794,-9.534762,18.63602,0,0,5,0.8988876,1.650824,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,4383.872,-,-
+2659.5,8714.00104898214,19.9999992370605,19.9999992370605,0,0.8810398,614.8951,289.4167,289.4167,933.4738,-148.0745,18.63602,60.10794,-9.534762,18.63602,0,0,5,0.8988876,1.650824,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,4383.872,-,-
+2660.5,8719.55660432577,19.9999992370605,19.9999992370605,0,0.8810398,614.8951,289.4167,289.4167,933.4738,-148.0745,18.63602,60.10794,-9.534762,18.63602,0,0,5,0.8988876,1.650824,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,4383.872,-,-
+2661.5,8725.1121596694,19.9999992370605,19.9999992370605,0,0.8810398,614.8951,289.4167,289.4167,933.4738,-148.0745,18.63602,60.10794,-9.534762,18.63602,0,0,5,0.8988876,1.650824,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,4383.872,-,-
+2662.5,8730.66771501303,19.9999992370605,19.9999992370605,0,0.8810398,614.8951,289.4167,289.4167,933.4738,-148.0745,18.63602,60.10794,-9.534762,18.63602,0,0,5,0.8988876,1.650824,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,4383.872,-,-
+2663.5,8736.22327035666,19.9999992370605,19.9999992370605,0,0.8810398,614.8951,289.4167,289.4167,933.4738,-148.0745,18.63602,60.10794,-9.534762,18.63602,0,0,5,0.8988876,1.650824,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,4383.872,-,-
+2664.5,8741.77882570028,19.9999992370605,19.9999992370605,0,0.8810398,614.8951,289.4167,289.4167,933.4738,-148.0745,18.63602,60.10794,-9.534762,18.63602,0,0,5,0.8988876,1.650824,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,4383.872,-,-
+2665.5,8747.33438104391,19.9999992370605,19.9999992370605,0,0.8810398,614.8951,289.4167,289.4167,933.4738,-148.0745,18.63602,60.10794,-9.534762,18.63602,0,0,5,0.8988876,1.650824,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,4383.872,-,-
+2666.5,8752.88993638754,19.9999992370605,19.9999992370605,0,0.8810398,614.8951,289.4167,289.4167,933.4738,-148.0745,18.63602,60.10794,-9.534762,18.63602,0,0,5,0.8988876,1.650824,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,4383.872,-,-
+2667.5,8758.44549173117,19.9999992370605,19.9999992370605,0,0.8810398,614.8951,289.4167,289.4167,933.4738,-148.0745,18.63602,60.10794,-9.534762,18.63602,0,0,5,0.8988876,1.650824,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,4383.872,-,-
+2668.5,8764.00104707479,19.9999992370605,19.9999992370605,0,0.8810398,614.8951,289.4167,289.4167,933.4738,-148.0745,18.63602,60.10794,-9.534762,18.63602,0,0,5,0.8988876,1.650824,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,4383.872,-,-
+2669.5,8769.55660241842,19.9999992370605,19.9999992370605,0,0.8810398,614.8951,289.4167,289.4167,933.4738,-148.0745,18.63602,60.10794,-9.534762,18.63602,0,0,5,0.8988876,1.650824,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,4383.872,-,-
+2670.5,8775.11215776205,19.9999992370605,19.9999992370605,0,0.8810398,614.8951,289.4167,289.4167,933.4738,-148.0745,18.63602,60.10794,-9.534762,18.63602,0,0,5,0.8988876,1.650824,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,4383.872,-,-
+2671.5,8780.66771310568,19.9999992370605,19.9999992370605,0,0.8810398,614.8951,289.4167,289.4167,933.4738,-148.0745,18.63602,60.10794,-9.534762,18.63602,0,0,5,0.8988876,1.650824,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,4383.872,-,-
+2672.5,8786.22326844931,19.9999992370605,19.9999992370605,0,0.8810398,614.8951,289.4167,289.4167,933.4738,-148.0745,18.63602,60.10794,-9.534762,18.63602,0,0,5,0.8988876,1.650824,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,4383.872,-,-
+2673.5,8791.77882379293,19.9999992370605,19.9999992370605,0,0.8810398,614.8951,289.4167,289.4167,933.4738,-148.0745,18.63602,60.10794,-9.534762,18.63602,0,0,5,0.8988876,1.650824,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,4383.872,-,-
+2674.5,8797.33437913656,19.9999992370605,19.9999992370605,0,0.8810398,614.8951,289.4167,289.4167,933.4738,-148.0745,18.63602,60.10794,-9.534762,18.63602,0,0,5,0.8988876,1.650824,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,4383.872,-,-
+2675.5,8802.88993448019,19.9999992370605,19.9999992370605,0,0.8810398,614.8951,289.4167,289.4167,933.4738,-148.0745,18.63602,60.10794,-9.534762,18.63602,0,0,5,0.8988876,1.650824,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,4383.872,-,-
+2676.5,8808.44548982382,19.9999992370605,19.9999992370605,0,0.8810398,614.8951,289.4167,289.4167,933.4738,-148.0745,18.63602,60.10794,-9.534762,18.63602,0,0,5,0.8988876,1.650824,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,4383.872,-,-
+2677.5,8814.00104516745,19.9999992370605,19.9999992370605,0,0.8810398,614.8951,289.4167,289.4167,933.4738,-148.0745,18.63602,60.10794,-9.534762,18.63602,0,0,5,0.8988876,1.650824,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,4383.872,-,-
+2678.5,8819.55660051107,19.9999992370605,19.9999992370605,0,0.8810398,614.8951,289.4167,289.4167,933.4738,-148.0745,18.63602,60.10794,-9.534762,18.63602,0,0,5,0.8988876,1.650824,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,4383.872,-,-
+2679.5,8825.1121558547,19.9999992370605,19.9999992370605,0,0.8810398,614.8951,289.4167,289.4167,933.4738,-148.0745,18.63602,60.10794,-9.534762,18.63602,0,0,5,0.8988876,1.650824,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,4383.872,-,-
+2680.5,8830.66771119833,19.9999992370605,19.9999992370605,0,0.8810398,614.8951,289.4167,289.4167,933.4738,-148.0745,18.63602,60.10794,-9.534762,18.63602,0,0,5,0.8988876,1.650824,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,4383.872,-,-
+2681.5,8836.22326654196,19.9999992370605,19.9999992370605,0,0.8810398,614.8951,289.4167,289.4167,933.4738,-148.0745,18.63602,60.10794,-9.534762,18.63602,0,0,5,0.8988876,1.650824,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,4383.872,-,-
+2682.5,8841.77882188559,19.9999992370605,19.9999992370605,0,0.8810398,614.8951,289.4167,289.4167,933.4738,-148.0745,18.63602,60.10794,-9.534762,18.63602,0,0,5,0.8988876,1.650824,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,4383.872,-,-
+2683.5,8847.33437722921,19.9999992370605,19.9999992370605,0,0.8810398,614.8951,289.4167,289.4167,933.4738,-148.0745,18.63602,60.10794,-9.534762,18.63602,0,0,5,0.8988876,1.650824,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,4383.872,-,-
+2684.5,8852.88993257284,19.9999992370605,19.9999992370605,0,0.8810398,614.8951,289.4167,289.4167,933.4738,-148.0745,18.63602,60.10794,-9.534762,18.63602,0,0,5,0.8988876,1.650824,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,4383.872,-,-
+2685.5,8858.44548791647,19.9999992370605,19.9999992370605,0,0.8810398,614.8951,289.4167,289.4167,933.4738,-148.0745,18.63602,60.10794,-9.534762,18.63602,0,0,5,0.8988876,1.650824,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,4383.872,-,-
+2686.5,8864.0010432601,19.9999992370605,19.9999992370605,0,0.8810398,614.8951,289.4167,289.4167,933.4738,-148.0745,18.63602,60.10794,-9.534762,18.63602,0,0,5,0.8988876,1.650824,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,4383.872,-,-
+2687.5,8869.55659860373,19.9999992370605,19.9999992370605,0,0.8810398,614.8951,289.4167,289.4167,933.4738,-148.0745,18.63602,60.10794,-9.534762,18.63602,0,0,5,0.8988876,1.650824,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,4383.872,-,-
+2688.5,8875.11215394735,19.9999992370605,19.9999992370605,0,0.8810398,614.8951,289.4167,289.4167,933.4738,-148.0745,18.63602,60.10794,-9.534762,18.63602,0,0,5,0.8988876,1.650824,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,4383.872,-,-
+2689.5,8880.66770929098,19.9999992370605,19.9999992370605,0,0.8810398,614.8951,289.4167,289.4167,933.4738,-148.0745,18.63602,60.10794,-9.534762,18.63602,0,0,5,0.8988876,1.650824,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,4383.872,-,-
+2690.5,8886.22326463461,19.9999992370605,19.9999992370605,0,0.8810398,614.8951,289.4167,289.4167,933.4738,-148.0745,18.63602,60.10794,-9.534762,18.63602,0,0,5,0.8988876,1.650824,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,4383.872,-,-
+2691.5,8891.77881997824,19.9999992370605,19.9999992370605,0,0.8810398,614.8951,289.4167,289.4167,933.4738,-148.0745,18.63602,60.10794,-9.534762,18.63602,0,0,5,0.8988876,1.650824,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,4383.872,-,-
+2692.5,8897.33437532187,19.9999992370605,19.9999992370605,0,0.8810398,614.8951,289.4167,289.4167,933.4738,-148.0745,18.63602,60.10794,-9.534762,18.63602,0,0,5,0.8988876,1.650824,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,4383.872,-,-
+2693.5,8902.88993066549,19.9999992370605,19.9999992370605,0,0.8810398,614.8951,289.4167,289.4167,933.4738,-148.0745,18.63602,60.10794,-9.534762,18.63602,0,0,5,0.8988876,1.650824,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,4383.872,-,-
+2694.5,8908.44548600912,19.9999992370605,19.9999992370605,0,0.8810398,614.8951,289.4167,289.4167,933.4738,-148.0745,18.63602,60.10794,-9.534762,18.63602,0,0,5,0.8988876,1.650824,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,4383.872,-,-
+2695.5,8914.00104135275,19.9999992370605,19.9999992370605,0,0.8810398,614.8951,289.4167,289.4167,933.4738,-148.0745,18.63602,60.10794,-9.534762,18.63602,0,0,5,0.8988876,1.650824,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,4383.872,-,-
+2696.5,8919.55659669638,19.9999992370605,19.9999992370605,0,0.8810398,614.8951,289.4167,289.4167,933.4738,-148.0745,18.63602,60.10794,-9.534762,18.63602,0,0,5,0.8988876,1.650824,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,4383.872,-,-
+2697.5,8925.11215204,19.9999992370605,19.9999992370605,0,0.8810398,614.8951,289.4167,289.4167,933.4738,-148.0745,18.63602,60.10794,-9.534762,18.63602,0,0,5,0.8988876,1.650824,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,4383.872,-,-
+2698.5,8930.66770738363,19.9999992370605,19.9999992370605,0,0.8810398,614.8951,289.4167,289.4167,933.4738,-148.0745,18.63602,60.10794,-9.534762,18.63602,0,0,5,0.8988876,1.650824,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,4383.872,-,-
+2699.5,8936.22326272726,19.9999992370605,19.9999992370605,0,0.8810398,614.8951,289.4167,289.4167,933.4738,-148.0745,18.63602,60.10794,-9.534762,18.63602,0,0,5,0.8988876,1.650824,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,4383.872,-,-
+2700.5,8941.77881807089,19.9999992370605,19.9999992370605,0,0.8810398,614.8951,289.4167,289.4167,933.4738,-148.0745,18.63602,60.10794,-9.534762,18.63602,0,0,5,0.8988876,1.650824,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,4383.872,-,-
+2701.5,8947.33437341452,19.9999992370605,19.9999992370605,0,0.8810398,614.8951,289.4167,289.4167,933.4738,-148.0745,18.63602,60.10794,-9.534762,18.63602,0,0,5,0.8988876,1.650824,0,0,0,6.631116,0.3323833,9.122812,16.08631,0,4383.872,-,-
+2702.5,8952.88992875814,19.9999992370605,19.9999992370605,0,0.7799084,614.8951,272.7225,272.7225,933.4738,-148.0745,17.56106,60.10794,-9.534762,17.56106,0,0,5,0.8773888,1.64441,0,0,0,6.631172,0.3323833,8.075706,15.03926,0,4205.245,-,-
+2703.5,8958.44548410177,19.9999992370605,19.9999992370605,0,0.7799084,614.8951,272.7225,272.7225,927.2134,-148.0745,17.56106,59.70482,-9.534762,17.56106,0,0,5,0.8773888,1.64441,0,0,0,6.631172,0.3323833,8.075706,15.03926,0,4205.245,-,-
+2704.5,8964.0010394454,19.9999992370605,19.9999992370605,0,0.7799084,614.8951,272.7225,272.7225,927.2134,-148.0745,17.56106,59.70482,-9.534762,17.56106,0,0,5,0.8773888,1.64441,0,0,0,6.631172,0.3323833,8.075706,15.03926,0,4205.245,-,-
+2705.5,8969.55659478903,19.9999992370605,19.9999992370605,0,0.7799084,614.8951,272.7225,272.7225,927.2134,-148.0745,17.56106,59.70482,-9.534762,17.56106,0,0,5,0.8773888,1.64441,0,0,0,6.631172,0.3323833,8.075706,15.03926,0,4205.245,-,-
+2706.5,8975.11215013266,19.9999992370605,19.9999992370605,0,0.7799084,614.8951,272.7225,272.7225,927.2134,-148.0745,17.56106,59.70482,-9.534762,17.56106,0,0,5,0.8773888,1.64441,0,0,0,6.631172,0.3323833,8.075706,15.03926,0,4205.245,-,-
+2707.5,8980.66770547628,19.9999992370605,19.9999992370605,0,0.7799084,614.8951,272.7225,272.7225,927.2134,-148.0745,17.56106,59.70482,-9.534762,17.56106,0,0,5,0.8773888,1.64441,0,0,0,6.631172,0.3323833,8.075706,15.03926,0,4205.245,-,-
+2708.5,8986.22326081991,19.9999992370605,19.9999992370605,0,0.7799084,614.8951,272.7225,272.7225,927.2134,-148.0745,17.56106,59.70482,-9.534762,17.56106,0,0,5,0.8773888,1.64441,0,0,0,6.631172,0.3323833,8.075706,15.03926,0,4205.245,-,-
+2709.5,8991.77881616354,19.9999992370605,19.9999992370605,0,0.7799084,614.8951,272.7225,272.7225,927.2134,-148.0745,17.56106,59.70482,-9.534762,17.56106,0,0,5,0.8773888,1.64441,0,0,0,6.631172,0.3323833,8.075706,15.03926,0,4205.245,-,-
+2710.5,8997.33437150717,19.9999992370605,19.9999992370605,0,0.7799084,614.8951,272.7225,272.7225,927.2134,-148.0745,17.56106,59.70482,-9.534762,17.56106,0,0,5,0.8773888,1.64441,0,0,0,6.631172,0.3323833,8.075706,15.03926,0,4205.245,-,-
+2711.5,9002.8899268508,19.9999992370605,19.9999992370605,0,0.7799084,614.8951,272.7225,272.7225,927.2134,-148.0745,17.56106,59.70482,-9.534762,17.56106,0,0,5,0.8773888,1.64441,0,0,0,6.631172,0.3323833,8.075706,15.03926,0,4205.245,-,-
+2712.5,9008.44548219442,19.9999992370605,19.9999992370605,0,0.7258721,614.8951,263.8567,263.8567,927.2134,-148.0745,16.99017,59.70482,-9.534762,16.99017,0,0,5,0.8659718,1.64441,0,0,0,6.631199,0.3323833,7.516207,14.47979,0,4110.38,-,-
+2713.5,9014.00103753805,19.9999992370605,19.9999992370605,0,0.671836,614.8951,254.9907,254.9907,923.8887,-148.0745,16.41928,59.49074,-9.534762,16.41928,0,0,5,0.8545533,1.64441,0,0,0,6.631224,0.3323833,6.956704,13.92031,0,4015.514,-,-
+2714.5,9019.55659288168,19.9999992370605,19.9999992370605,0,0.671836,614.8951,254.9907,254.9907,920.564,-148.0745,16.41928,59.27665,-9.534762,16.41928,0,0,5,0.8545533,1.64441,0,0,0,6.631224,0.3323833,6.956704,13.92031,0,4015.514,-,-
+2715.5,9025.11214822531,19.9999992370605,19.9999992370605,0,0.671836,614.8951,254.9907,254.9907,920.564,-148.0745,16.41928,59.27665,-9.534762,16.41928,0,0,5,0.8545533,1.64441,0,0,0,6.631224,0.3323833,6.956704,13.92031,0,4015.514,-,-
+2716.5,9030.66770356894,19.9999992370605,19.9999992370605,0,0.671836,614.8951,254.9907,254.9907,920.564,-148.0745,16.41928,59.27665,-9.534762,16.41928,0,0,5,0.8545533,1.64441,0,0,0,6.631224,0.3323833,6.956704,13.92031,0,4015.514,-,-
+2717.5,9036.22325891256,19.9999992370605,19.9999992370605,0,0.671836,614.8951,254.9907,254.9907,920.564,-148.0745,16.41928,59.27665,-9.534762,16.41928,0,0,5,0.8545533,1.64441,0,0,0,6.631224,0.3323833,6.956704,13.92031,0,4015.514,-,-
+2718.5,9041.77881425619,19.9999992370605,19.9999992370605,0,0.671836,614.8951,254.9907,254.9907,920.564,-148.0745,16.41928,59.27665,-9.534762,16.41928,0,0,5,0.8545533,1.64441,0,0,0,6.631224,0.3323833,6.956704,13.92031,0,4015.514,-,-
+2719.5,9047.33436959982,19.9999992370605,19.9999992370605,0,0.671836,614.8951,254.9907,254.9907,920.564,-148.0745,16.41928,59.27665,-9.534762,16.41928,0,0,5,0.8545533,1.64441,0,0,0,6.631224,0.3323833,6.956704,13.92031,0,4015.514,-,-
+2720.5,9052.88992494345,19.9999992370605,19.9999992370605,0,0.671836,614.8951,254.9907,254.9907,920.564,-148.0745,16.41928,59.27665,-9.534762,16.41928,0,0,5,0.8545533,1.64441,0,0,0,6.631224,0.3323833,6.956704,13.92031,0,4015.514,-,-
+2721.5,9058.44548028708,19.9999992370605,19.9999992370605,0,0.671836,614.8951,254.9907,254.9907,920.564,-148.0745,16.41928,59.27665,-9.534762,16.41928,0,0,5,0.8545533,1.64441,0,0,0,6.631224,0.3323833,6.956704,13.92031,0,4015.514,-,-
+2722.5,9064.0010356307,19.9999992370605,19.9999992370605,0,0.671836,614.8951,254.9907,254.9907,920.564,-148.0745,16.41928,59.27665,-9.534762,16.41928,0,0,5,0.8545533,1.64441,0,0,0,6.631224,0.3323833,6.956704,13.92031,0,4015.514,-,-
+2723.5,9069.55659097433,19.9999992370605,19.9999992370605,0,0.5637636,614.8951,237.2583,237.2583,920.564,-148.0745,15.27746,59.27665,-9.534762,15.27746,0,0,5,0.8317173,1.644411,0,0,0,6.631268,0.3323833,5.837679,12.80133,0,3825.777,-,-
+2724.5,9075.11214631796,19.9999992370605,19.9999992370605,0,0.5637636,614.8951,237.2583,237.2583,913.9144,-148.0745,15.27746,58.84847,-9.534762,15.27746,0,0,5,0.8317173,1.644411,0,0,0,6.631268,0.3323833,5.837679,12.80133,0,3825.777,-,-
+2725.5,9080.66770166159,19.9999992370605,19.9999992370605,0,0.5637636,614.8951,237.2583,237.2583,913.9144,-148.0745,15.27746,58.84847,-9.534762,15.27746,0,0,5,0.8317173,1.644411,0,0,0,6.631268,0.3323833,5.837679,12.80133,0,3825.777,-,-
+2726.5,9086.22325700521,19.9999992370605,19.9999992370605,0,0.5637636,614.8951,237.2583,237.2583,913.9144,-148.0745,15.27746,58.84847,-9.534762,15.27746,0,0,5,0.8317173,1.644411,0,0,0,6.631268,0.3323833,5.837679,12.80133,0,3825.777,-,-
+2727.5,9091.77881234884,19.9999992370605,19.9999992370605,0,0.5637636,614.8951,237.2583,237.2583,913.9144,-148.0745,15.27746,58.84847,-9.534762,15.27746,0,0,5,0.8317173,1.644411,0,0,0,6.631268,0.3323833,5.837679,12.80133,0,3825.777,-,-
+2728.5,9097.33436769247,19.9999992370605,19.9999992370605,0,0.5637636,614.8951,237.2583,237.2583,913.9144,-148.0745,15.27746,58.84847,-9.534762,15.27746,0,0,5,0.8317173,1.644411,0,0,0,6.631268,0.3323833,5.837679,12.80133,0,3825.777,-,-
+2729.5,9102.8899230361,19.9999992370605,19.9999992370605,0,0.5637636,614.8951,237.2583,237.2583,913.9144,-148.0745,15.27746,58.84847,-9.534762,15.27746,0,0,5,0.8317173,1.644411,0,0,0,6.631268,0.3323833,5.837679,12.80133,0,3825.777,-,-
+2730.5,9108.44547837973,19.9999992370605,19.9999992370605,0,0.5637636,614.8951,237.2583,237.2583,913.9144,-148.0745,15.27746,58.84847,-9.534762,15.27746,0,0,5,0.8317173,1.644411,0,0,0,6.631268,0.3323833,5.837679,12.80133,0,3825.777,-,-
+2731.5,9114.00103372335,19.9999992370605,19.9999992370605,0,0.5637636,614.8951,237.2583,237.2583,913.9144,-148.0745,15.27746,58.84847,-9.534762,15.27746,0,0,5,0.8317173,1.644411,0,0,0,6.631268,0.3323833,5.837679,12.80133,0,3825.777,-,-
+2732.5,9119.55658906698,19.9999992370605,19.9999992370605,0,0.5637636,614.8951,237.2583,237.2583,913.9144,-148.0745,15.27746,58.84847,-9.534762,15.27746,0,0,5,0.8317173,1.644411,0,0,0,6.631268,0.3323833,5.837679,12.80133,0,3825.777,-,-
+2733.5,9125.11214441061,19.9999992370605,19.9999992370605,0,0.5637636,614.8951,237.2583,237.2583,913.9144,-148.0745,15.27746,58.84847,-9.534762,15.27746,0,0,5,0.8317173,1.644411,0,0,0,6.631268,0.3323833,5.837679,12.80133,0,3825.777,-,-
+2734.5,9130.66769975424,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,913.9144,-148.0745,14.13561,58.84847,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2735.5,9136.22325509787,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2736.5,9141.77881044149,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2737.5,9147.33436578512,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2738.5,9152.88992112875,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2739.5,9158.44547647238,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2740.5,9164.00103181601,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2741.5,9169.55658715963,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2742.5,9175.11214250326,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2743.5,9180.66769784689,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2744.5,9186.22325319052,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2745.5,9191.77880853415,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2746.5,9197.33436387777,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2747.5,9202.8899192214,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2748.5,9208.44547456503,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2749.5,9214.00102990866,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2750.5,9219.55658525229,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2751.5,9225.11214059591,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2752.5,9230.66769593954,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2753.5,9236.22325128317,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2754.5,9241.7788066268,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2755.5,9247.33436197042,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2756.5,9252.88991731405,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2757.5,9258.44547265768,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2758.5,9264.00102800131,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2759.5,9269.55658334494,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2760.5,9275.11213868856,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2761.5,9280.66769403219,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2762.5,9286.22324937582,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2763.5,9291.77880471945,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2764.5,9297.33436006308,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2765.5,9302.8899154067,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2766.5,9308.44547075033,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2767.5,9314.00102609396,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2768.5,9319.55658143759,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2769.5,9325.11213678122,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2770.5,9330.66769212484,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2771.5,9336.22324746847,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2772.5,9341.7788028121,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2773.5,9347.33435815573,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2774.5,9352.88991349936,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2775.5,9358.44546884298,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2776.5,9364.00102418661,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2777.5,9369.55657953024,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2778.5,9375.11213487387,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2779.5,9380.6676902175,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2780.5,9386.22324556112,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2781.5,9391.77880090475,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2782.5,9397.33435624838,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2783.5,9402.88991159201,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2784.5,9408.44546693563,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2785.5,9414.00102227926,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2786.5,9419.55657762289,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2787.5,9425.11213296652,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2788.5,9430.66768831015,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2789.5,9436.22324365377,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2790.5,9441.7787989974,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2791.5,9447.33435434103,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2792.5,9452.88990968466,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2793.5,9458.44546502829,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2794.5,9464.00102037191,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2795.5,9469.55657571554,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2796.5,9475.11213105917,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2797.5,9480.6676864028,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2798.5,9486.22324174643,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2799.5,9491.77879709005,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2800.5,9497.33435243368,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2801.5,9502.88990777731,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2802.5,9508.44546312094,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2803.5,9514.00101846457,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2804.5,9519.55657380819,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2805.5,9525.11212915182,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2806.5,9530.66768449545,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2807.5,9536.22323983908,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2808.5,9541.7787951827,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2809.5,9547.33435052633,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2810.5,9552.88990586996,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2811.5,9558.44546121359,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2812.5,9564.00101655722,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2813.5,9569.55657190084,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2814.5,9575.11212724447,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2815.5,9580.6676825881,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2816.5,9586.22323793173,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2817.5,9591.77879327536,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2818.5,9597.33434861898,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2819.5,9602.88990396261,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2820.5,9608.44545930624,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2821.5,9614.00101464987,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2822.5,9619.5565699935,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2823.5,9625.11212533712,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2824.5,9630.66768068075,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2825.5,9636.22323602438,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2826.5,9641.77879136801,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2827.5,9647.33434671164,19.9999992370605,19.9999992370605,0,0.4556912,614.8951,219.5255,219.5255,907.2646,-148.0745,14.13561,58.42028,-9.534762,14.13561,0,0,5,0.8088808,1.644411,0,0,0,6.631305,0.3323833,4.718634,11.68232,0,3636.036,-,-
+2828.5,9652.88990205526,19.9999992370605,19.9999992370605,0,0.3026405,614.8951,194.4118,194.4118,907.2646,-148.0745,12.5185,58.42028,-9.534762,12.5185,0,0,5,0.7765384,1.64441,0,0,0,6.631343,0.3323833,3.133828,10.09755,0,3359.86,-,-
+2829.5,9658.44545739889,19.9999992370605,19.9999992370605,0,0.3026405,614.8951,194.4118,194.4118,897.847,-148.0745,12.5185,57.81387,-9.534762,12.5185,0,0,5,0.7765384,1.64441,0,0,0,6.631343,0.3323833,3.133828,10.09755,0,3359.86,-,-
+2830.5,9664.00101274252,19.9999992370605,19.9999992370605,0,0.3026405,614.8951,194.4118,194.4118,897.847,-148.0745,12.5185,57.81387,-9.534762,12.5185,0,0,5,0.7765384,1.64441,0,0,0,6.631343,0.3323833,3.133828,10.09755,0,3359.86,-,-
+2831.5,9669.55656808615,19.9999992370605,19.9999992370605,0,0.1434304,614.8951,168.2869,168.2869,897.847,-148.0745,10.83628,57.81387,-9.534762,10.83628,0,0,5,0.742894,1.644411,0,0,0,6.631367,0.3323833,1.48522,8.448971,0,3088.164,-,-
+2832.5,9675.11212342978,19.9999992370605,19.9999992370605,0,0.1434304,614.8951,168.2869,168.2869,888.0501,-148.0745,10.83628,57.18303,-9.534762,10.83628,0,0,5,0.742894,1.644411,0,0,0,6.631367,0.3323833,1.48522,8.448971,0,3088.164,-,-
+2833.5,9680.6676787734,19.9999992370605,19.9999992370605,0,0.1434304,614.8951,168.2869,168.2869,888.0501,-148.0745,10.83628,57.18303,-9.534762,10.83628,0,0,5,0.742894,1.644411,0,0,0,6.631367,0.3323833,1.48522,8.448971,0,3088.164,-,-
+2834.5,9686.22323411703,19.9999992370605,19.9999992370605,0,0.1434304,614.8951,168.2869,168.2869,888.0501,-148.0745,10.83628,57.18303,-9.534762,10.83628,0,0,5,0.742894,1.644411,0,0,0,6.631367,0.3323833,1.48522,8.448971,0,3088.164,-,-
+2835.5,9691.77878946066,19.9999992370605,19.9999992370605,0,-0.0158,614.8951,142.1582,142.1582,888.0501,-148.0745,9.153803,57.18303,-9.534762,9.153803,0,0,5,0.7092443,1.644411,0,0,0,6.631373,0.3323833,-0.163609,6.800148,0,2840.072,-,-
+2836.5,9697.33434480429,19.9999992370605,19.9999992370605,0,-0.0158,614.8951,142.1582,142.1582,878.2518,-148.0745,9.153803,56.5521,-9.534762,9.153803,0,0,5,0.7092443,1.644411,0,0,0,6.631373,0.3323833,-0.163609,6.800148,0,2840.072,-,-
+2837.5,9702.88990014791,19.9999992370605,19.9999992370605,0,-0.0158,614.8951,142.1582,142.1582,878.2518,-148.0745,9.153803,56.5521,-9.534762,9.153803,0,0,5,0.7092443,1.644411,0,0,0,6.631373,0.3323833,-0.163609,6.800148,0,2840.072,-,-
+2838.5,9708.44545549154,19.9999992370605,19.9999992370605,0,-0.09539483,614.8951,129.0971,129.0971,878.2518,-148.0745,8.312776,56.5521,-9.534762,8.312776,0,0,5,0.6924239,1.644411,0,0,0,6.631371,0.3323833,-0.9878131,5.975941,0,2716.056,-,-
+2839.5,9714.00101083517,19.9999992370605,19.9999992370605,0,-0.1749897,614.8951,116.0359,116.0359,873.3539,-148.0745,7.471745,56.23672,-9.534762,7.471745,0,0,5,0.6756029,1.644411,0,0,0,6.631363,0.3323833,-1.812015,5.151731,0,2592.041,-,-
+2840.5,9719.5565661788,19.9999992370605,19.9999992370605,0,-0.1749897,614.8951,116.0359,116.0359,868.456,-148.0745,7.471745,55.92133,-9.534762,7.471745,0,0,5,0.6756029,1.644411,0,0,0,6.631363,0.3323833,-1.812015,5.151731,0,2592.041,-,-
+2841.5,9725.11212152243,19.9999992370605,19.9999992370605,0,-0.1749897,614.8951,116.0359,116.0359,868.456,-148.0745,7.471745,55.92133,-9.534762,7.471745,0,0,5,0.6756029,1.644411,0,0,0,6.631363,0.3323833,-1.812015,5.151731,0,2592.041,-,-
+2842.5,9730.66767686605,19.9999992370605,19.9999992370605,0,-0.3341997,614.8951,89.91022,89.91022,868.456,-148.0745,5.789469,55.92133,-9.534762,5.789469,0,0,5,0.6419574,1.644411,0,0,0,6.631336,0.3323833,-3.460619,3.503101,0,2343.977,-,-
+2843.5,9736.22323220968,19.9999992370605,19.9999992370605,0,-0.3341997,614.8951,89.91022,89.91022,858.6588,-148.0745,5.789469,55.29047,-9.534762,5.789469,0,0,5,0.6419574,1.644411,0,0,0,6.631336,0.3323833,-3.460619,3.503101,0,2343.977,-,-
+2844.5,9741.77878755331,19.9999992370605,19.9999992370605,0,-0.3341997,614.8951,89.91022,89.91022,858.6588,-148.0745,5.789469,55.29047,-9.534762,5.789469,0,0,5,0.6419574,1.644411,0,0,0,6.631336,0.3323833,-3.460619,3.503101,0,2343.977,-,-
+2845.5,9747.33434289694,19.9999992370605,19.9999992370605,0,-0.3341997,614.8951,89.91022,89.91022,858.6588,-148.0745,5.789469,55.29047,-9.534762,5.789469,0,0,5,0.6419574,1.644411,0,0,0,6.631336,0.3323833,-3.460619,3.503101,0,2343.977,-,-
+2846.5,9752.88989824057,19.9999992370605,19.9999992370605,0,-0.5151277,614.8951,60.22092,60.22092,858.6588,-148.0745,3.877726,55.29047,-9.534762,3.877726,0,0,5,0.6037227,1.644411,0,0,0,6.631286,0.3323833,-5.334076,1.629592,0,2062.077,-,-
+2847.5,9758.44545358419,19.9999992370605,19.9999992370605,0,-0.5820778,614.8951,49.25761,49.25761,847.5254,-148.0745,3.171779,54.57357,-9.534762,3.171779,0,0,5,0.5910378,1.644411,0,0,0,6.631261,0.3323833,-6.027313,0.9363308,0,1957.981,-,-
+2848.5,9764.00100892782,19.9999992370605,19.9999992370605,0,-0.6490278,614.8951,38.59799,38.59799,843.4142,-148.0745,2.485389,54.30885,-9.534762,2.485389,0,0,5,0.5979017,1.644411,0,0,0,6.631234,0.3323833,-6.720541,0.2430763,0,1856.768,-,-
+2849.5,9769.55656427145,19.9999992370605,19.9999992370605,0,-0.7829278,614.8951,17.27903,17.27903,839.4167,-148.0745,1.112626,54.05145,-9.534762,1.112626,0,0,5,0.6116294,1.644411,0,0,0,6.63117,0.3323833,-8.106968,-1.143414,0,1654.344,-,-
+2850.5,9775.11211961508,19.9999992370605,19.9999992370605,0,-0.7829278,614.8951,17.27903,17.27903,831.4221,-148.0745,1.112626,53.53666,-9.534762,1.112626,0,0,5,0.6116294,1.644411,0,0,0,6.63117,0.3323833,-8.106968,-1.143414,0,1654.344,-,-
+2851.5,9780.66767495871,19.9999992370605,19.9999992370605,0,-0.9168277,614.8951,-4.039441,-4.039441,831.4221,-148.0745,-0.2601063,53.53666,-9.534762,-0.2601063,0,0,5,0.6253567,1.644411,0,0,0,6.631095,0.3323833,-9.493352,-2.529874,0,1450.458,-,-
+2852.5,9786.22323030233,19.9999992370605,19.9999992370605,0,-0.9168277,614.8951,-4.039441,-4.039441,823.4277,-148.0745,-0.2601063,53.02188,-9.534762,-0.2601063,0,0,5,0.6253567,1.644411,0,0,0,6.631095,0.3323833,-9.493352,-2.529874,0,1450.458,-,-
+2853.5,9791.77878564596,19.9999992370605,19.9999992370605,0,-1.050728,614.8951,-25.35731,-25.35731,823.4277,-148.0745,-1.6328,53.02188,-9.534762,-1.6328,0,0,5,0.6390837,1.644411,0,0,0,6.631007,0.3323833,-10.87968,-3.916294,0,1240.305,-,-
+2854.5,9797.33434098959,19.9999992370605,19.9999992370605,0,-1.050728,614.8951,-25.35731,-25.35731,815.4335,-148.0745,-1.6328,52.50713,-9.534762,-1.6328,0,0,5,0.6390837,1.644411,0,0,0,6.631007,0.3323833,-10.87968,-3.916294,0,1240.305,-,-
+2855.5,9802.88989633322,19.9999992370605,19.9999992370605,0,-1.184628,614.8951,-46.67448,-46.67448,815.4335,-148.0745,-3.005448,52.50713,-9.534762,-3.005448,0,0,5,0.65281,1.644411,0,0,0,6.630908,0.3323833,-12.26596,-5.302669,0,1030.158,-,-
+2856.5,9808.44545167685,19.9999992370605,19.9999992370605,0,-1.251578,614.8951,-57.33274,-57.33274,807.4396,-148.0745,-3.691751,51.99238,-9.534762,-3.691751,0,0,5,0.6596733,1.644411,0,0,0,6.630854,0.3323833,-12.95907,-5.995835,0,925.0875,-,-
+2857.5,9814.00100702047,19.9999992370605,19.9999992370605,0,-1.318528,614.8951,-67.99079,-67.99079,803.4427,-148.0745,-4.37804,51.73502,-9.534762,-4.37804,0,0,5,0.666536,1.644411,0,0,0,6.630797,0.3323833,-13.65217,-6.688987,0,820.0192,-,-
+2858.5,9819.5565623641,19.9999992370605,19.9999992370605,0,-1.452428,614.8951,-89.30617,-89.30617,799.446,-148.0745,-5.750573,51.47766,-9.534762,-5.750573,0,0,5,0.6802612,1.644411,0,0,0,6.630674,0.3323833,-15.0383,-8.075245,0,609.89,-,-
+2859.5,9825.11211770773,19.9999992370605,19.9999992370605,0,-1.452428,614.8951,-89.30617,-89.30617,791.4528,-148.0745,-5.750573,50.96296,-9.534762,-5.750573,0,0,5,0.6802612,1.644411,0,0,0,6.630674,0.3323833,-15.0383,-8.075245,0,609.89,-,-
+2860.5,9830.66767305136,19.9999992370605,19.9999992370605,0,-1.586328,614.8951,-110.6205,-110.6205,791.4528,-148.0745,-7.123036,50.96296,-9.534762,-7.123036,0,0,5,0.6939859,1.644411,0,0,0,6.630539,0.3323833,-16.42436,-9.461433,0,399.7713,-,-
+2861.5,9836.22322839499,19.9999992370605,19.9999992370605,0,-1.586328,614.8951,-110.6205,-110.6205,783.4598,-148.0745,-7.123036,50.44829,-9.534762,-7.123036,0,0,5,0.6939859,1.644411,0,0,0,6.630539,0.3323833,-16.42436,-9.461433,0,399.7713,-,-
+2862.5,9841.77878373861,19.9999992370605,19.9999992370605,0,-1.586328,614.8951,-110.6205,-110.6205,783.4598,-148.0745,-7.123036,50.44829,-9.534762,-7.123036,0,0,5,0.6939859,1.644411,0,0,0,6.630539,0.3323833,-16.42436,-9.461433,0,399.7713,-,-
+2863.5,9847.33433908224,19.9999992370605,19.9999992370605,0,-1.586328,614.8951,-110.6205,-110.6205,783.4598,-148.0745,-7.123036,50.44829,-9.534762,-7.123036,0,0,5,0.6939859,1.644411,0,0,0,6.630539,0.3323833,-16.42436,-9.461433,0,399.7713,-,-
+2864.5,9852.88989442587,19.9999992370605,19.9999992370605,0,-1.694918,614.8951,-127.905,-127.905,783.4598,-148.0745,-8.236019,50.44829,-9.534762,-8.236019,0,0,5,0.7051159,1.644411,0,0,0,6.630421,0.3323833,-17.54835,-10.58555,0,229.378,-,-
+2865.5,9858.4454497695,19.9999992370605,19.9999992370605,0,-1.694918,614.8951,-127.905,-127.905,776.9781,-148.0745,-8.236019,50.03092,-9.534762,-8.236019,0,0,5,0.7051159,1.644411,0,0,0,6.630421,0.3323833,-17.54835,-10.58555,0,229.378,-,-
+2866.5,9864.00100511312,19.9999992370605,19.9999992370605,0,-1.694918,614.8951,-127.905,-127.905,776.9781,-148.0745,-8.236019,50.03092,-9.534762,-8.236019,0,0,5,0.7051159,1.644411,0,0,0,6.630421,0.3323833,-17.54835,-10.58555,0,229.378,-,-
+2867.5,9869.55656045675,19.9999992370605,19.9999992370605,0,-1.803508,614.8951,-145.1888,-145.1888,776.9781,-148.0745,-9.348951,50.03092,-9.534762,-9.348951,0,0,5,0.716245,1.64441,0,0,0,6.630295,0.3323833,-18.67229,-11.70961,0,36.39016,-,-
+2868.5,9875.11211580038,19.9999992370605,19.9999992370605,0,-1.803508,614.8951,-145.1888,-145.1888,770.4968,-148.0745,-9.348951,49.61357,-9.534762,-9.348951,0,0,5,0.716245,1.64441,0,0,0,6.630295,0.3323833,-18.67229,-11.70961,0,36.39016,-,-
+2869.5,9880.66767114401,19.9999992370605,19.9999992370605,0,-1.803508,614.8951,-145.1888,-145.1888,770.4968,-148.0745,-9.348951,49.61357,-9.534762,-9.348951,0,0,5,0.716245,1.64441,0,0,0,6.630295,0.3323833,-18.67229,-11.70961,0,36.39016,-,-
+2870.5,9886.22322648764,19.9999992370605,19.9999992370605,0,-1.803508,614.8951,-145.1888,-145.1888,770.4968,-148.0745,-9.348951,49.61357,-9.534762,-9.348951,0,0,5,0.716245,1.64441,0,0,0,6.630295,0.3323833,-18.67229,-11.70961,0,36.39016,-,-
+2871.5,9891.77878183126,19.9999992370605,19.9999992370605,0,-1.912098,614.8951,-148.0745,-148.0745,770.4968,-148.0745,-9.534762,49.61357,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.630161,0.3323833,-19.79615,-12.83361,-0.9363308,0,-,-
+2872.5,9897.33433717489,19.9999992370605,19.9999992370605,0,-1.912098,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.630161,0.3323833,-19.79615,-12.83361,-0.9363308,0,-,-
+2873.5,9902.88989251852,19.9999992370605,19.9999992370605,0,-1.912098,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.630161,0.3323833,-19.79615,-12.83361,-0.9363308,0,-,-
+2874.5,9908.44544786215,19.9999992370605,19.9999992370605,0,-1.966393,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.630092,0.3323833,-20.35806,-13.39558,-1.498307,0,-,-
+2875.5,9914.00100320578,19.9999992370605,19.9999992370605,0,-2.020688,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.63002,0.3323833,-20.91995,-13.95755,-2.060268,0,-,-
+2876.5,9919.5565585494,19.9999992370605,19.9999992370605,0,-2.020688,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.63002,0.3323833,-20.91995,-13.95755,-2.060268,0,-,-
+2877.5,9925.11211389303,19.9999992370605,19.9999992370605,0,-2.020688,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.63002,0.3323833,-20.91995,-13.95755,-2.060268,0,-,-
+2878.5,9930.66766923666,19.9999992370605,19.9999992370605,0,-2.129278,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.629871,0.3323833,-22.04367,-15.08142,-3.184142,0,-,-
+2879.5,9936.22322458029,19.9999992370605,19.9999992370605,0,-2.129278,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.629871,0.3323833,-22.04367,-15.08142,-3.184142,0,-,-
+2880.5,9941.77877992392,19.9999992370605,19.9999992370605,0,-2.129278,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.629871,0.3323833,-22.04367,-15.08142,-3.184142,0,-,-
+2881.5,9947.33433526754,19.9999992370605,19.9999992370605,0,-2.129278,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.629871,0.3323833,-22.04367,-15.08142,-3.184142,0,-,-
+2882.5,9952.88989061117,19.9999992370605,19.9999992370605,0,-2.129278,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.629871,0.3323833,-22.04367,-15.08142,-3.184142,0,-,-
+2883.5,9958.4454459548,19.9999992370605,19.9999992370605,0,-2.129278,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.629871,0.3323833,-22.04367,-15.08142,-3.184142,0,-,-
+2884.5,9964.00100129843,19.9999992370605,19.9999992370605,0,-2.129278,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.629871,0.3323833,-22.04367,-15.08142,-3.184142,0,-,-
+2885.5,9969.55655664206,19.9999992370605,19.9999992370605,0,-2.129278,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.629871,0.3323833,-22.04367,-15.08142,-3.184142,0,-,-
+2886.5,9975.11211198568,19.9999992370605,19.9999992370605,0,-2.129278,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.629871,0.3323833,-22.04367,-15.08142,-3.184142,0,-,-
+2887.5,9980.66766732931,19.9999992370605,19.9999992370605,0,-2.129278,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.629871,0.3323833,-22.04367,-15.08142,-3.184142,0,-,-
+2888.5,9986.22322267294,19.9999992370605,19.9999992370605,0,-2.129278,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.629871,0.3323833,-22.04367,-15.08142,-3.184142,0,-,-
+2889.5,9991.77877801657,19.9999992370605,19.9999992370605,0,-2.129278,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.629871,0.3323833,-22.04367,-15.08142,-3.184142,0,-,-
+2890.5,9997.3343333602,19.9999992370605,19.9999992370605,0,-2.129278,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.629871,0.3323833,-22.04367,-15.08142,-3.184142,0,-,-
+2891.5,10002.8898887038,19.9999992370605,19.9999992370605,0,-2.026624,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.630012,0.3323833,-20.98138,-14.01899,-2.121713,0,-,-
+2892.5,10008.4454440475,19.9999992370605,19.9999992370605,0,-2.026624,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.630012,0.3323833,-20.98138,-14.01899,-2.121713,0,-,-
+2893.5,10014.0009993911,19.9999992370605,19.9999992370605,0,-2.026624,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.630012,0.3323833,-20.98138,-14.01899,-2.121713,0,-,-
+2894.5,10019.5565547347,19.9999992370605,19.9999992370605,0,-2.026624,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.630012,0.3323833,-20.98138,-14.01899,-2.121713,0,-,-
+2895.5,10025.1121100783,19.9999992370605,19.9999992370605,0,-2.026624,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.630012,0.3323833,-20.98138,-14.01899,-2.121713,0,-,-
+2896.5,10030.667665422,19.9999992370605,19.9999992370605,0,-1.911565,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.630162,0.3323833,-19.79063,-12.82809,-0.9308119,0,-,-
+2897.5,10036.2232207656,19.9999992370605,19.9999992370605,0,-1.911565,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.630162,0.3323833,-19.79063,-12.82809,-0.9308119,0,-,-
+2898.5,10041.7787761092,19.9999992370605,19.9999992370605,0,-1.911565,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.630162,0.3323833,-19.79063,-12.82809,-0.9308119,0,-,-
+2899.5,10047.3343314528,19.9999992370605,19.9999992370605,0,-1.911565,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.630162,0.3323833,-19.79063,-12.82809,-0.9308119,0,-,-
+2900.5,10052.8898867965,19.9999992370605,19.9999992370605,0,-1.911565,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.630162,0.3323833,-19.79063,-12.82809,-0.9308119,0,-,-
+2901.5,10058.4454421401,19.9999992370605,19.9999992370605,0,-1.854035,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.630234,0.3323833,-19.19523,-12.23261,-0.3353348,0,-,-
+2902.5,10064.0009974837,19.9999992370605,19.9999992370605,0,-1.796505,614.8951,-144.0742,-144.0742,769.4146,-148.0745,-9.277179,49.54389,-9.534762,-9.277179,0,0,5,0.7155273,1.644411,0,0,0,6.630303,0.3323833,-18.5998,-11.63712,0,50.44638,-,-
+2903.5,10069.5565528274,19.9999992370605,19.9999992370605,0,-1.796505,614.8951,-144.0742,-144.0742,770.9147,-148.0745,-9.277179,49.64048,-9.534762,-9.277179,0,0,5,0.7155273,1.644411,0,0,0,6.630303,0.3323833,-18.5998,-11.63712,0,50.44638,-,-
+2904.5,10075.112108171,19.9999992370605,19.9999992370605,0,-1.796505,614.8951,-144.0742,-144.0742,770.9147,-148.0745,-9.277179,49.64048,-9.534762,-9.277179,0,0,5,0.7155273,1.644411,0,0,0,6.630303,0.3323833,-18.5998,-11.63712,0,50.44638,-,-
+2905.5,10080.6676635146,19.9999992370605,19.9999992370605,0,-1.796505,614.8951,-144.0742,-144.0742,770.9147,-148.0745,-9.277179,49.64048,-9.534762,-9.277179,0,0,5,0.7155273,1.644411,0,0,0,6.630303,0.3323833,-18.5998,-11.63712,0,50.44638,-,-
+2906.5,10086.2232188582,19.9999992370605,19.9999992370605,0,-1.796505,614.8951,-144.0742,-144.0742,770.9147,-148.0745,-9.277179,49.64048,-9.534762,-9.277179,0,0,5,0.7155273,1.644411,0,0,0,6.630303,0.3323833,-18.5998,-11.63712,0,50.44638,-,-
+2907.5,10091.7787742019,19.9999992370605,19.9999992370605,0,-1.681445,614.8951,-125.7606,-125.7606,770.9147,-148.0745,-8.097936,49.64048,-9.534762,-8.097936,0,0,5,0.7037352,1.64441,0,0,0,6.630436,0.3323833,-17.4089,-10.44608,0,250.5181,-,-
+2908.5,10097.3343295455,19.9999992370605,19.9999992370605,0,-1.681445,614.8951,-125.7606,-125.7606,777.7823,-148.0745,-8.097936,50.0827,-9.534762,-8.097936,0,0,5,0.7037352,1.64441,0,0,0,6.630436,0.3323833,-17.4089,-10.44608,0,250.5181,-,-
+2909.5,10102.8898848891,19.9999992370605,19.9999992370605,0,-1.681445,614.8951,-125.7606,-125.7606,777.7823,-148.0745,-8.097936,50.0827,-9.534762,-8.097936,0,0,5,0.7037352,1.64441,0,0,0,6.630436,0.3323833,-17.4089,-10.44608,0,250.5181,-,-
+2910.5,10108.4454402328,19.9999992370605,19.9999992370605,0,-1.681445,614.8951,-125.7606,-125.7606,777.7823,-148.0745,-8.097936,50.0827,-9.534762,-8.097936,0,0,5,0.7037352,1.64441,0,0,0,6.630436,0.3323833,-17.4089,-10.44608,0,250.5181,-,-
+2911.5,10114.0009955764,19.9999992370605,19.9999992370605,0,-1.681445,614.8951,-125.7606,-125.7606,777.7823,-148.0745,-8.097936,50.0827,-9.534762,-8.097936,0,0,5,0.7037352,1.64441,0,0,0,6.630436,0.3323833,-17.4089,-10.44608,0,250.5181,-,-
+2912.5,10119.55655092,19.9999992370605,19.9999992370605,0,-1.5627,614.8951,-106.8595,-106.8595,777.7823,-148.0745,-6.880858,50.0827,-9.534762,-6.880858,0,0,5,0.6915644,1.644411,0,0,0,6.630564,0.3323833,-16.17978,-9.216834,0,436.8478,-,-
+2913.5,10125.1121062636,19.9999992370605,19.9999992370605,0,-1.5627,614.8951,-106.8595,-106.8595,784.8702,-148.0745,-6.880858,50.5391,-9.534762,-6.880858,0,0,5,0.6915644,1.644411,0,0,0,6.630564,0.3323833,-16.17978,-9.216834,0,436.8478,-,-
+2914.5,10130.6676616073,19.9999992370605,19.9999992370605,0,-1.5627,614.8951,-106.8595,-106.8595,784.8702,-148.0745,-6.880858,50.5391,-9.534762,-6.880858,0,0,5,0.6915644,1.644411,0,0,0,6.630564,0.3323833,-16.17978,-9.216834,0,436.8478,-,-
+2915.5,10136.2232169509,19.9999992370605,19.9999992370605,0,-1.5627,614.8951,-106.8595,-106.8595,784.8702,-148.0745,-6.880858,50.5391,-9.534762,-6.880858,0,0,5,0.6915644,1.644411,0,0,0,6.630564,0.3323833,-16.17978,-9.216834,0,436.8478,-,-
+2916.5,10141.7787722945,19.9999992370605,19.9999992370605,0,-1.412289,614.8951,-82.91663,-82.91663,784.8702,-148.0745,-5.33914,50.5391,-9.534762,-5.33914,0,0,5,0.6761471,1.644411,0,0,0,6.630712,0.3323833,-14.62279,-7.659698,0,672.8787,-,-
+2917.5,10147.3343276381,19.9999992370605,19.9999992370605,0,-1.412289,614.8951,-82.91663,-82.91663,793.8488,-148.0745,-5.33914,51.11725,-9.534762,-5.33914,0,0,5,0.6761471,1.644411,0,0,0,6.630712,0.3323833,-14.62279,-7.659698,0,672.8787,-,-
+2918.5,10152.8898829818,19.9999992370605,19.9999992370605,0,-1.412289,614.8951,-82.91663,-82.91663,793.8488,-148.0745,-5.33914,51.11725,-9.534762,-5.33914,0,0,5,0.6761471,1.644411,0,0,0,6.630712,0.3323833,-14.62279,-7.659698,0,672.8787,-,-
+2919.5,10158.4454383254,19.9999992370605,19.9999992370605,0,-1.354342,614.8951,-73.69216,-73.69216,793.8488,-148.0745,-4.745161,51.11725,-9.534762,-4.745161,0,0,5,0.6702071,1.644411,0,0,0,6.630765,0.3323833,-14.02293,-7.059779,0,763.8145,-,-
+2920.5,10164.000993669,19.9999992370605,19.9999992370605,0,-1.296396,614.8951,-64.46752,-64.46752,797.3079,-148.0745,-4.151171,51.33999,-9.534762,-4.151171,0,0,5,0.6642672,1.644411,0,0,0,6.630816,0.3323833,-13.42305,-6.459849,0,854.752,-,-
+2921.5,10169.5565490127,19.9999992370605,19.9999992370605,0,-1.296396,614.8951,-64.46752,-64.46752,800.7672,-148.0745,-4.151171,51.56274,-9.534762,-4.151171,0,0,5,0.6642672,1.644411,0,0,0,6.630816,0.3323833,-13.42305,-6.459849,0,854.752,-,-
+2922.5,10175.1121043563,19.9999992370605,19.9999992370605,0,-1.296396,614.8951,-64.46752,-64.46752,800.7672,-148.0745,-4.151171,51.56274,-9.534762,-4.151171,0,0,5,0.6642672,1.644411,0,0,0,6.630816,0.3323833,-13.42305,-6.459849,0,854.752,-,-
+2923.5,10180.6676596999,19.9999992370605,19.9999992370605,0,-1.296396,614.8951,-64.46752,-64.46752,800.7672,-148.0745,-4.151171,51.56274,-9.534762,-4.151171,0,0,5,0.6642672,1.644411,0,0,0,6.630816,0.3323833,-13.42305,-6.459849,0,854.752,-,-
+2924.5,10186.2232150435,19.9999992370605,19.9999992370605,0,-1.296396,614.8951,-64.46752,-64.46752,800.7672,-148.0745,-4.151171,51.56274,-9.534762,-4.151171,0,0,5,0.6642672,1.644411,0,0,0,6.630816,0.3323833,-13.42305,-6.459849,0,854.752,-,-
+2925.5,10191.7787703872,19.9999992370605,19.9999992370605,0,-1.185839,614.8951,-46.86729,-46.86729,800.7672,-148.0745,-3.017863,51.56274,-9.534762,-3.017863,0,0,5,0.6529341,1.644411,0,0,0,6.630907,0.3323833,-12.2785,-5.315208,0,1028.257,-,-
+2926.5,10197.3343257308,19.9999992370605,19.9999992370605,0,-1.185839,614.8951,-46.86729,-46.86729,807.3673,-148.0745,-3.017863,51.98773,-9.534762,-3.017863,0,0,5,0.6529341,1.644411,0,0,0,6.630907,0.3323833,-12.2785,-5.315208,0,1028.257,-,-
+2927.5,10202.8898810744,19.9999992370605,19.9999992370605,0,-1.185839,614.8951,-46.86729,-46.86729,807.3673,-148.0745,-3.017863,51.98773,-9.534762,-3.017863,0,0,5,0.6529341,1.644411,0,0,0,6.630907,0.3323833,-12.2785,-5.315208,0,1028.257,-,-
+2928.5,10208.4454364181,19.9999992370605,19.9999992370605,0,-1.185839,614.8951,-46.86729,-46.86729,807.3673,-148.0745,-3.017863,51.98773,-9.534762,-3.017863,0,0,5,0.6529341,1.644411,0,0,0,6.630907,0.3323833,-12.2785,-5.315208,0,1028.257,-,-
+2929.5,10214.0009917617,19.9999992370605,19.9999992370605,0,-1.185839,614.8951,-46.86729,-46.86729,807.3673,-148.0745,-3.017863,51.98773,-9.534762,-3.017863,0,0,5,0.6529341,1.644411,0,0,0,6.630907,0.3323833,-12.2785,-5.315208,0,1028.257,-,-
+2930.5,10219.5565471053,19.9999992370605,19.9999992370605,0,-1.075282,614.8951,-29.26647,-29.26647,807.3673,-148.0745,-1.884517,51.98773,-9.534762,-1.884517,0,0,5,0.6416008,1.644411,0,0,0,6.63099,0.3323833,-11.1339,-4.170528,0,1201.768,-,-
+2931.5,10225.1121024489,19.9999992370605,19.9999992370605,0,-1.075282,614.8951,-29.26647,-29.26647,813.9677,-148.0745,-1.884517,52.41273,-9.534762,-1.884517,0,0,5,0.6416008,1.644411,0,0,0,6.63099,0.3323833,-11.1339,-4.170528,0,1201.768,-,-
+2932.5,10230.6676577926,19.9999992370605,19.9999992370605,0,-1.075282,614.8951,-29.26647,-29.26647,813.9677,-148.0745,-1.884517,52.41273,-9.534762,-1.884517,0,0,5,0.6416008,1.644411,0,0,0,6.63099,0.3323833,-11.1339,-4.170528,0,1201.768,-,-
+2933.5,10236.2232131362,19.9999992370605,19.9999992370605,0,-1.075282,614.8951,-29.26647,-29.26647,813.9677,-148.0745,-1.884517,52.41273,-9.534762,-1.884517,0,0,5,0.6416008,1.644411,0,0,0,6.63099,0.3323833,-11.1339,-4.170528,0,1201.768,-,-
+2934.5,10241.7787684798,19.9999992370605,19.9999992370605,0,-1.075282,614.8951,-29.26647,-29.26647,813.9677,-148.0745,-1.884517,52.41273,-9.534762,-1.884517,0,0,5,0.6416008,1.644411,0,0,0,6.63099,0.3323833,-11.1339,-4.170528,0,1201.768,-,-
+2935.5,10247.3343238235,19.9999992370605,19.9999992370605,0,-1.075282,614.8951,-29.26647,-29.26647,813.9677,-148.0745,-1.884517,52.41273,-9.534762,-1.884517,0,0,5,0.6416008,1.644411,0,0,0,6.63099,0.3323833,-11.1339,-4.170528,0,1201.768,-,-
+2936.5,10252.8898791671,19.9999992370605,19.9999992370605,0,-0.9647254,614.8951,-11.66518,-11.66518,813.9677,-148.0745,-0.7511405,52.41273,-9.534762,-0.7511405,0,0,5,0.630267,1.644411,0,0,0,6.631065,0.3323833,-9.989266,-3.025818,0,1375.283,-,-
+2937.5,10258.4454345107,19.9999992370605,19.9999992370605,0,-0.9647254,614.8951,-11.66518,-11.66518,820.5681,-148.0745,-0.7511405,52.83775,-9.534762,-0.7511405,0,0,5,0.630267,1.644411,0,0,0,6.631065,0.3323833,-9.989266,-3.025818,0,1375.283,-,-
+2938.5,10264.0009898543,19.9999992370605,19.9999992370605,0,-0.9647254,614.8951,-11.66518,-11.66518,820.5681,-148.0745,-0.7511405,52.83775,-9.534762,-0.7511405,0,0,5,0.630267,1.644411,0,0,0,6.631065,0.3323833,-9.989266,-3.025818,0,1375.283,-,-
+2939.5,10269.556545198,19.9999992370605,19.9999992370605,0,-0.9647254,614.8951,-11.66518,-11.66518,820.5681,-148.0745,-0.7511405,52.83775,-9.534762,-0.7511405,0,0,5,0.630267,1.644411,0,0,0,6.631065,0.3323833,-9.989266,-3.025818,0,1375.283,-,-
+2940.5,10275.1121005416,19.9999992370605,19.9999992370605,0,-0.9647254,614.8951,-11.66518,-11.66518,820.5681,-148.0745,-0.7511405,52.83775,-9.534762,-0.7511405,0,0,5,0.630267,1.644411,0,0,0,6.631065,0.3323833,-9.989266,-3.025818,0,1375.283,-,-
+2941.5,10280.6676558852,19.9999992370605,19.9999992370605,0,-0.8541685,614.8951,5.936584,5.936584,820.5681,-148.0745,0.3822665,52.83775,-9.534762,0.3822665,0,0,5,0.618933,1.644411,0,0,0,6.631132,0.3323833,-8.844592,-1.881077,0,1546.648,-,-
+2942.5,10286.2232112288,19.9999992370605,19.9999992370605,0,-0.8541685,614.8951,5.936584,5.936584,827.1688,-148.0745,0.3822665,53.26278,-9.534762,0.3822665,0,0,5,0.618933,1.644411,0,0,0,6.631132,0.3323833,-8.844592,-1.881077,0,1546.648,-,-
+2943.5,10291.7787665725,19.9999992370605,19.9999992370605,0,-0.8541685,614.8951,5.936584,5.936584,827.1688,-148.0745,0.3822665,53.26278,-9.534762,0.3822665,0,0,5,0.618933,1.644411,0,0,0,6.631132,0.3323833,-8.844592,-1.881077,0,1546.648,-,-
+2944.5,10297.3343219161,19.9999992370605,19.9999992370605,0,-0.8541685,614.8951,5.936584,5.936584,827.1688,-148.0745,0.3822665,53.26278,-9.534762,0.3822665,0,0,5,0.618933,1.644411,0,0,0,6.631132,0.3323833,-8.844592,-1.881077,0,1546.648,-,-
+2945.5,10302.8898772597,19.9999992370605,19.9999992370605,0,-0.8541685,614.8951,5.936584,5.936584,827.1688,-148.0745,0.3822665,53.26278,-9.534762,0.3822665,0,0,5,0.618933,1.644411,0,0,0,6.631132,0.3323833,-8.844592,-1.881077,0,1546.648,-,-
+2946.5,10308.4454326034,19.9999992370605,19.9999992370605,0,-0.7988902,614.8951,14.73759,14.73759,827.1688,-148.0745,0.9489779,53.26278,-9.534762,0.9489779,0,0,5,0.6132658,1.644411,0,0,0,6.631162,0.3323833,-8.272243,-1.308699,0,1630.213,-,-
+2947.5,10314.000987947,19.9999992370605,19.9999992370605,0,-0.7436118,614.8951,23.53871,23.53871,830.4692,-148.0745,1.515697,53.4753,-9.534762,1.515697,0,0,5,0.6075987,1.644411,0,0,0,6.63119,0.3323833,-7.699886,-0.7363129,0,1713.78,-,-
+2948.5,10319.5565432906,19.9999992370605,19.9999992370605,0,-0.7436118,614.8951,23.53871,23.53871,833.7695,-148.0745,1.515697,53.68781,-9.534762,1.515697,0,0,5,0.6075987,1.644411,0,0,0,6.63119,0.3323833,-7.699886,-0.7363129,0,1713.78,-,-
+2949.5,10325.1120986342,19.9999992370605,19.9999992370605,0,-0.7436118,614.8951,23.53871,23.53871,833.7695,-148.0745,1.515697,53.68781,-9.534762,1.515697,0,0,5,0.6075987,1.644411,0,0,0,6.63119,0.3323833,-7.699886,-0.7363129,0,1713.78,-,-
+2950.5,10330.6676539779,19.9999992370605,19.9999992370605,0,-0.7436118,614.8951,23.53871,23.53871,833.7695,-148.0745,1.515697,53.68781,-9.534762,1.515697,0,0,5,0.6075987,1.644411,0,0,0,6.63119,0.3323833,-7.699886,-0.7363129,0,1713.78,-,-
+2951.5,10336.2232093215,19.9999992370605,19.9999992370605,0,-0.7436118,614.8951,23.53871,23.53871,833.7695,-148.0745,1.515697,53.68781,-9.534762,1.515697,0,0,5,0.6075987,1.644411,0,0,0,6.63119,0.3323833,-7.699886,-0.7363129,0,1713.78,-,-
+2952.5,10341.7787646651,19.9999992370605,19.9999992370605,0,-0.7436118,614.8951,23.53871,23.53871,833.7695,-148.0745,1.515697,53.68781,-9.534762,1.515697,0,0,5,0.6075987,1.644411,0,0,0,6.63119,0.3323833,-7.699886,-0.7363129,0,1713.78,-,-
+2953.5,10347.3343200088,19.9999992370605,19.9999992370605,0,-0.7436118,614.8951,23.53871,23.53871,833.7695,-148.0745,1.515697,53.68781,-9.534762,1.515697,0,0,5,0.6075987,1.644411,0,0,0,6.63119,0.3323833,-7.699886,-0.7363129,0,1713.78,-,-
+2954.5,10352.8898753524,19.9999992370605,19.9999992370605,0,-0.7436118,614.8951,23.53871,23.53871,833.7695,-148.0745,1.515697,53.68781,-9.534762,1.515697,0,0,5,0.6075987,1.644411,0,0,0,6.63119,0.3323833,-7.699886,-0.7363129,0,1713.78,-,-
+2955.5,10358.445430696,19.9999992370605,19.9999992370605,0,-0.7436118,614.8951,23.53871,23.53871,833.7695,-148.0745,1.515697,53.68781,-9.534762,1.515697,0,0,5,0.6075987,1.644411,0,0,0,6.63119,0.3323833,-7.699886,-0.7363129,0,1713.78,-,-
+2956.5,10364.0009860396,19.9999992370605,19.9999992370605,0,-0.7436118,614.8951,23.53871,23.53871,833.7695,-148.0745,1.515697,53.68781,-9.534762,1.515697,0,0,5,0.6075987,1.644411,0,0,0,6.63119,0.3323833,-7.699886,-0.7363129,0,1713.78,-,-
+2957.5,10369.5565413833,19.9999992370605,19.9999992370605,0,-0.7436118,614.8951,23.53871,23.53871,833.7695,-148.0745,1.515697,53.68781,-9.534762,1.515697,0,0,5,0.6075987,1.644411,0,0,0,6.63119,0.3323833,-7.699886,-0.7363129,0,1713.78,-,-
+2958.5,10375.1120967269,19.9999992370605,19.9999992370605,0,-0.7436118,614.8951,23.53871,23.53871,833.7695,-148.0745,1.515697,53.68781,-9.534762,1.515697,0,0,5,0.6075987,1.644411,0,0,0,6.63119,0.3323833,-7.699886,-0.7363129,0,1713.78,-,-
+2959.5,10380.6676520705,19.9999992370605,19.9999992370605,0,-0.7436118,614.8951,23.53871,23.53871,833.7695,-148.0745,1.515697,53.68781,-9.534762,1.515697,0,0,5,0.6075987,1.644411,0,0,0,6.63119,0.3323833,-7.699886,-0.7363129,0,1713.78,-,-
+2960.5,10386.2232074142,19.9999992370605,19.9999992370605,0,-0.7436118,614.8951,23.53871,23.53871,833.7695,-148.0745,1.515697,53.68781,-9.534762,1.515697,0,0,5,0.6075987,1.644411,0,0,0,6.63119,0.3323833,-7.699886,-0.7363129,0,1713.78,-,-
+2961.5,10391.7787627578,19.9999992370605,19.9999992370605,0,-0.6031695,614.8951,45.89942,45.89942,833.7695,-148.0745,2.95554,53.68781,-9.534762,2.95554,0,0,5,0.5932001,1.644411,0,0,0,6.631253,0.3323833,-6.245707,0.7179294,0,1926.095,-,-
+2962.5,10397.3343181014,19.9999992370605,19.9999992370605,0,-0.6031695,614.8951,45.89942,45.89942,842.1548,-148.0745,2.95554,54.22775,-9.534762,2.95554,0,0,5,0.5932001,1.644411,0,0,0,6.631253,0.3323833,-6.245707,0.7179294,0,1926.095,-,-
+2963.5,10402.889873445,19.9999992370605,19.9999992370605,0,-0.6031695,614.8951,45.89942,45.89942,842.1548,-148.0745,2.95554,54.22775,-9.534762,2.95554,0,0,5,0.5932001,1.644411,0,0,0,6.631253,0.3323833,-6.245707,0.7179294,0,1926.095,-,-
+2964.5,10408.4454287887,19.9999992370605,19.9999992370605,0,-0.5415247,614.8951,55.88935,55.88935,842.1548,-148.0745,3.598808,54.22775,-9.534762,3.598808,0,0,5,0.5981442,1.644411,0,0,0,6.631276,0.3323833,-5.607406,1.356253,0,2020.949,-,-
+2965.5,10414.0009841323,19.9999992370605,19.9999992370605,0,-0.47988,614.8951,66.00484,66.00484,845.901,-148.0745,4.250162,54.46898,-9.534762,4.250162,0,0,5,0.6111714,1.644411,0,0,0,6.631297,0.3323833,-4.9691,1.99458,0,2116.996,-,-
+2966.5,10419.5565394759,19.9999992370605,19.9999992370605,0,-0.47988,614.8951,66.00484,66.00484,849.6943,-148.0745,4.250162,54.71323,-9.534762,4.250162,0,0,5,0.6111714,1.644411,0,0,0,6.631297,0.3323833,-4.9691,1.99458,0,2116.996,-,-
+2967.5,10425.1120948195,19.9999992370605,19.9999992370605,0,-0.47988,614.8951,66.00484,66.00484,849.6943,-148.0745,4.250162,54.71323,-9.534762,4.250162,0,0,5,0.6111714,1.644411,0,0,0,6.631297,0.3323833,-4.9691,1.99458,0,2116.996,-,-
+2968.5,10430.6676501632,19.9999992370605,19.9999992370605,0,-0.3565906,614.8951,86.23599,86.23599,849.6943,-148.0745,5.552879,54.71323,-9.534762,5.552879,0,0,5,0.6372258,1.644411,0,0,0,6.631331,0.3323833,-3.692472,3.271243,0,2309.091,-,-
+2969.5,10436.2232055068,19.9999992370605,19.9999992370605,0,-0.3565906,614.8951,86.23599,86.23599,857.281,-148.0745,5.552879,55.20176,-9.534762,5.552879,0,0,5,0.6372258,1.644411,0,0,0,6.631331,0.3323833,-3.692472,3.271243,0,2309.091,-,-
+2970.5,10441.7787608504,19.9999992370605,19.9999992370605,0,-0.3565906,614.8951,86.23599,86.23599,857.281,-148.0745,5.552879,55.20176,-9.534762,5.552879,0,0,5,0.6372258,1.644411,0,0,0,6.631331,0.3323833,-3.692472,3.271243,0,2309.091,-,-
+2971.5,10447.3343161941,19.9999992370605,19.9999992370605,0,-0.3565906,614.8951,86.23599,86.23599,857.281,-148.0745,5.552879,55.20176,-9.534762,5.552879,0,0,5,0.6372258,1.644411,0,0,0,6.631331,0.3323833,-3.692472,3.271243,0,2309.091,-,-
+2972.5,10452.8898715377,19.9999992370605,19.9999992370605,0,-0.2333011,614.8951,106.4672,106.4672,857.281,-148.0745,6.855603,55.20176,-9.534762,6.855603,0,0,5,0.6632801,1.644411,0,0,0,6.631355,0.3323833,-2.415826,4.547912,0,2501.186,-,-
+2973.5,10458.4454268813,19.9999992370605,19.9999992370605,0,-0.2333011,614.8951,106.4672,106.4672,864.8677,-148.0745,6.855603,55.69028,-9.534762,6.855603,0,0,5,0.6632801,1.644411,0,0,0,6.631355,0.3323833,-2.415826,4.547912,0,2501.186,-,-
+2974.5,10464.0009822249,19.9999992370605,19.9999992370605,0,-0.2333011,614.8951,106.4672,106.4672,864.8677,-148.0745,6.855603,55.69028,-9.534762,6.855603,0,0,5,0.6632801,1.644411,0,0,0,6.631355,0.3323833,-2.415826,4.547912,0,2501.186,-,-
+2975.5,10469.5565375686,19.9999992370605,19.9999992370605,0,-0.1100117,614.8951,126.6985,126.6985,864.8677,-148.0745,8.158328,55.69028,-9.534762,8.158328,0,0,5,0.6893349,1.644411,0,0,0,6.63137,0.3323833,-1.13917,5.824583,0,2693.282,-,-
+2976.5,10475.1120929122,19.9999992370605,19.9999992370605,0,-0.1100117,614.8951,126.6985,126.6985,872.4545,-148.0745,8.158328,56.1788,-9.534762,8.158328,0,0,5,0.6893349,1.644411,0,0,0,6.63137,0.3323833,-1.13917,5.824583,0,2693.282,-,-
+2977.5,10480.6676482558,19.9999992370605,19.9999992370605,0,-0.1100117,614.8951,126.6985,126.6985,872.4545,-148.0745,8.158328,56.1788,-9.534762,8.158328,0,0,5,0.6893349,1.644411,0,0,0,6.63137,0.3323833,-1.13917,5.824583,0,2693.282,-,-
+2978.5,10486.2232035995,19.9999992370605,19.9999992370605,0,-0.1100117,614.8951,126.6985,126.6985,872.4545,-148.0745,8.158328,56.1788,-9.534762,8.158328,0,0,5,0.6893349,1.644411,0,0,0,6.63137,0.3323833,-1.13917,5.824583,0,2693.282,-,-
+2979.5,10491.7787589431,19.9999992370605,19.9999992370605,0,0.0133,614.8951,146.9333,146.9333,872.4545,-148.0745,9.461283,56.1788,-9.534762,9.461283,0,0,5,0.7153942,1.644411,0,0,0,6.631373,0.3323833,0.1377215,7.101478,0,2885.412,-,-
+2980.5,10497.3343142867,19.9999992370605,19.9999992370605,0,0.0133,614.8951,146.9333,146.9333,880.0425,-148.0745,9.461283,56.66741,-9.534762,9.461283,0,0,5,0.7153942,1.644411,0,0,0,6.631373,0.3323833,0.1377215,7.101478,0,2885.412,-,-
+2981.5,10502.8898696303,19.9999992370605,19.9999992370605,0,0.0133,614.8951,146.9333,146.9333,880.0425,-148.0745,9.461283,56.66741,-9.534762,9.461283,0,0,5,0.7153942,1.644411,0,0,0,6.631373,0.3323833,0.1377215,7.101478,0,2885.412,-,-
+2982.5,10508.445424974,19.9999992370605,19.9999992370605,0,0.07493361,614.8951,157.0471,157.0471,880.0425,-148.0745,10.11252,56.66741,-9.534762,10.11252,0,0,5,0.7284188,1.644411,0,0,0,6.631371,0.3323833,0.7759373,7.739692,0,2981.442,-,-
+2983.5,10514.0009803176,19.9999992370605,19.9999992370605,0,0.1365672,614.8951,167.1607,167.1607,883.8351,-148.0745,10.76376,56.91162,-9.534762,10.76376,0,0,5,0.7414433,1.64441,0,0,0,6.631367,0.3323833,1.414152,8.377902,0,3077.47,-,-
+2984.5,10519.5565356612,19.9999992370605,19.9999992370605,0,0.1365672,614.8951,167.1607,167.1607,887.6278,-148.0745,10.76376,57.15583,-9.534762,10.76376,0,0,5,0.7414433,1.64441,0,0,0,6.631367,0.3323833,1.414152,8.377902,0,3077.47,-,-
+2985.5,10525.1120910048,19.9999992370605,19.9999992370605,0,0.1365672,614.8951,167.1607,167.1607,887.6278,-148.0745,10.76376,57.15583,-9.534762,10.76376,0,0,5,0.7414433,1.64441,0,0,0,6.631367,0.3323833,1.414152,8.377902,0,3077.47,-,-
+2986.5,10530.6676463485,19.9999992370605,19.9999992370605,0,0.2598567,614.8951,187.3915,187.3915,887.6278,-148.0745,12.06645,57.15583,-9.534762,12.06645,0,0,5,0.7674976,1.644411,0,0,0,6.631351,0.3323833,2.690807,9.654541,0,3275.37,-,-
+2987.5,10536.2232016921,19.9999992370605,19.9999992370605,0,0.2598567,614.8951,187.3915,187.3915,895.2144,-148.0745,12.06645,57.64434,-9.534762,12.06645,0,0,5,0.7674976,1.644411,0,0,0,6.631351,0.3323833,2.690807,9.654541,0,3275.37,-,-
+2988.5,10541.7787570357,19.9999992370605,19.9999992370605,0,0.2598567,614.8951,187.3915,187.3915,895.2144,-148.0745,12.06645,57.64434,-9.534762,12.06645,0,0,5,0.7674976,1.644411,0,0,0,6.631351,0.3323833,2.690807,9.654541,0,3275.37,-,-
+2989.5,10547.3343123794,19.9999992370605,19.9999992370605,0,0.2598567,614.8951,187.3915,187.3915,895.2144,-148.0745,12.06645,57.64434,-9.534762,12.06645,0,0,5,0.7674976,1.644411,0,0,0,6.631351,0.3323833,2.690807,9.654541,0,3275.37,-,-
+2990.5,10552.889867723,19.9999992370605,19.9999992370605,0,0.3831461,614.8951,207.6218,207.6218,895.2144,-148.0745,13.36912,57.64434,-9.534762,13.36912,0,0,5,0.7935505,1.64441,0,0,0,6.631325,0.3323833,3.967449,10.93116,0,3508.667,-,-
+2991.5,10558.4454230666,19.9999992370605,19.9999992370605,0,0.3831461,614.8951,207.6218,207.6218,902.8007,-148.0745,13.36912,58.13284,-9.534762,13.36912,0,0,5,0.7935505,1.64441,0,0,0,6.631325,0.3323833,3.967449,10.93116,0,3508.667,-,-
+2992.5,10564.0009784102,19.9999992370605,19.9999992370605,0,0.3831461,614.8951,207.6218,207.6218,902.8007,-148.0745,13.36912,58.13284,-9.534762,13.36912,0,0,5,0.7935505,1.64441,0,0,0,6.631325,0.3323833,3.967449,10.93116,0,3508.667,-,-
+2993.5,10569.5565337539,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,902.8007,-148.0745,14.67176,58.13284,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+2994.5,10575.1120890975,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+2995.5,10580.6676444411,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+2996.5,10586.2231997848,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+2997.5,10591.7787551284,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+2998.5,10597.334310472,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+2999.5,10602.8898658156,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3000.5,10608.4454211593,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3001.5,10614.0009765029,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3002.5,10619.5565318465,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3003.5,10625.1120871902,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3004.5,10630.6676425338,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3005.5,10636.2231978774,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3006.5,10641.778753221,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3007.5,10647.3343085647,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3008.5,10652.8898639083,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3009.5,10658.4454192519,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3010.5,10664.0009745955,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3011.5,10669.5565299392,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3012.5,10675.1120852828,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3013.5,10680.6676406264,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3014.5,10686.2231959701,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3015.5,10691.7787513137,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3016.5,10697.3343066573,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3017.5,10702.8898620009,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3018.5,10708.4454173446,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3019.5,10714.0009726882,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3020.5,10719.5565280318,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3021.5,10725.1120833755,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3022.5,10730.6676387191,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3023.5,10736.2231940627,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3024.5,10741.7787494063,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3025.5,10747.33430475,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3026.5,10752.8898600936,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3027.5,10758.4454154372,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3028.5,10764.0009707808,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3029.5,10769.5565261245,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3030.5,10775.1120814681,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3031.5,10780.6676368117,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3032.5,10786.2231921554,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3033.5,10791.778747499,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3034.5,10797.3343028426,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3035.5,10802.8898581862,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3036.5,10808.4454135299,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3037.5,10814.0009688735,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3038.5,10819.5565242171,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3039.5,10825.1120795608,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3040.5,10830.6676349044,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3041.5,10836.223190248,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3042.5,10841.7787455916,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3043.5,10847.3343009353,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3044.5,10852.8898562789,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3045.5,10858.4454116225,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3046.5,10864.0009669662,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3047.5,10869.5565223098,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3048.5,10875.1120776534,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3049.5,10880.667632997,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3050.5,10886.2231883407,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3051.5,10891.7787436843,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3052.5,10897.3342990279,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3053.5,10902.8898543715,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3054.5,10908.4454097152,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3055.5,10914.0009650588,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3056.5,10919.5565204024,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3057.5,10925.1120757461,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3058.5,10930.6676310897,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3059.5,10936.2231864333,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3060.5,10941.7787417769,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3061.5,10947.3342971206,19.9999992370605,19.9999992370605,0,0.5064356,614.8951,227.8518,227.8518,910.387,-148.0745,14.67176,58.62133,-9.534762,14.67176,0,0,5,0.8196031,1.64441,0,0,0,6.631289,0.3323833,5.244073,12.20774,0,3725.128,-,-
+3062.5,10952.8898524642,19.9999992370605,19.9999992370605,0,0.3792642,614.8951,206.9849,206.9849,910.387,-148.0745,13.3281,58.62133,-9.534762,13.3281,0,0,5,0.79273,1.644411,0,0,0,6.631326,0.3323833,3.927253,10.89096,0,3501.852,-,-
+3063.5,10958.4454078078,19.9999992370605,19.9999992370605,0,0.3792642,614.8951,206.9849,206.9849,902.5619,-148.0745,13.3281,58.11747,-9.534762,13.3281,0,0,5,0.79273,1.644411,0,0,0,6.631326,0.3323833,3.927253,10.89096,0,3501.852,-,-
+3064.5,10964.0009631515,19.9999992370605,19.9999992370605,0,0.3792642,614.8951,206.9849,206.9849,902.5619,-148.0745,13.3281,58.11747,-9.534762,13.3281,0,0,5,0.79273,1.644411,0,0,0,6.631326,0.3323833,3.927253,10.89096,0,3501.852,-,-
+3065.5,10969.5565184951,19.9999992370605,19.9999992370605,0,0.201835,614.8951,177.8706,177.8706,902.5619,-148.0745,11.45339,58.11747,-9.534762,11.45339,0,0,5,0.7552359,1.644411,0,0,0,6.63136,0.3323833,2.089998,9.053741,0,3179.161,-,-
+3066.5,10975.1120738387,19.9999992370605,19.9999992370605,0,0.201835,614.8951,177.8706,177.8706,891.644,-148.0745,11.45339,57.41444,-9.534762,11.45339,0,0,5,0.7552359,1.644411,0,0,0,6.63136,0.3323833,2.089998,9.053741,0,3179.161,-,-
+3067.5,10980.6676291823,19.9999992370605,19.9999992370605,0,0.201835,614.8951,177.8706,177.8706,891.644,-148.0745,11.45339,57.41444,-9.534762,11.45339,0,0,5,0.7552359,1.644411,0,0,0,6.63136,0.3323833,2.089998,9.053741,0,3179.161,-,-
+3068.5,10986.223184526,19.9999992370605,19.9999992370605,0,0.201835,614.8951,177.8706,177.8706,891.644,-148.0745,11.45339,57.41444,-9.534762,11.45339,0,0,5,0.7552359,1.644411,0,0,0,6.63136,0.3323833,2.089998,9.053741,0,3179.161,-,-
+3069.5,10991.7787398696,19.9999992370605,19.9999992370605,0,0.0244,614.8951,148.7548,148.7548,891.644,-148.0745,9.578569,57.41444,-9.534762,9.578569,0,0,5,0.7177396,1.644411,0,0,0,6.631373,0.3323833,0.252662,7.216419,0,2902.707,-,-
+3070.5,10997.3342952132,19.9999992370605,19.9999992370605,0,0.0244,614.8951,148.7548,148.7548,880.7255,-148.0745,9.578569,56.71139,-9.534762,9.578569,0,0,5,0.7177396,1.644411,0,0,0,6.631373,0.3323833,0.252662,7.216419,0,2902.707,-,-
+3071.5,11002.8898505569,19.9999992370605,19.9999992370605,0,0.0244,614.8951,148.7548,148.7548,880.7255,-148.0745,9.578569,56.71139,-9.534762,9.578569,0,0,5,0.7177396,1.644411,0,0,0,6.631373,0.3323833,0.252662,7.216419,0,2902.707,-,-
+3072.5,11008.4454059005,19.9999992370605,19.9999992370605,0,-0.06431162,614.8951,134.1977,134.1977,880.7255,-148.0745,8.641212,56.71139,-9.534762,8.641212,0,0,5,0.6989926,1.644411,0,0,0,6.631372,0.3323833,-0.6659466,6.297809,0,2764.487,-,-
+3073.5,11014.0009612441,19.9999992370605,19.9999992370605,0,-0.1530232,614.8951,119.6405,119.6405,875.2667,-148.0745,7.703852,56.35988,-9.534762,7.703852,0,0,5,0.6802454,1.644411,0,0,0,6.631366,0.3323833,-1.584554,5.379195,0,2626.266,-,-
+3074.5,11019.5565165877,19.9999992370605,19.9999992370605,0,-0.1530232,614.8951,119.6405,119.6405,869.8077,-148.0745,7.703852,56.00837,-9.534762,7.703852,0,0,5,0.6802454,1.644411,0,0,0,6.631366,0.3323833,-1.584554,5.379195,0,2626.266,-,-
+3075.5,11025.1120719314,19.9999992370605,19.9999992370605,0,-0.1530232,614.8951,119.6405,119.6405,869.8077,-148.0745,7.703852,56.00837,-9.534762,7.703852,0,0,5,0.6802454,1.644411,0,0,0,6.631366,0.3323833,-1.584554,5.379195,0,2626.266,-,-
+3076.5,11030.667627275,19.9999992370605,19.9999992370605,0,-0.3304524,614.8951,90.52513,90.52513,869.8077,-148.0745,5.829064,56.00837,-9.534762,5.829064,0,0,5,0.6427492,1.644411,0,0,0,6.631337,0.3323833,-3.421816,3.541905,0,2349.816,-,-
+3077.5,11036.2231826186,19.9999992370605,19.9999992370605,0,-0.3304524,614.8951,90.52513,90.52513,858.8895,-148.0745,5.829064,55.30532,-9.534762,5.829064,0,0,5,0.6427492,1.644411,0,0,0,6.631337,0.3323833,-3.421816,3.541905,0,2349.816,-,-
+3078.5,11041.7787379622,19.9999992370605,19.9999992370605,0,-0.3304524,614.8951,90.52513,90.52513,858.8895,-148.0745,5.829064,55.30532,-9.534762,5.829064,0,0,5,0.6427492,1.644411,0,0,0,6.631337,0.3323833,-3.421816,3.541905,0,2349.816,-,-
+3079.5,11047.3342933059,19.9999992370605,19.9999992370605,0,-0.3304524,614.8951,90.52513,90.52513,858.8895,-148.0745,5.829064,55.30532,-9.534762,5.829064,0,0,5,0.6427492,1.644411,0,0,0,6.631337,0.3323833,-3.421816,3.541905,0,2349.816,-,-
+3080.5,11052.8898486495,19.9999992370605,19.9999992370605,0,-0.5078815,614.8951,61.40998,61.40998,858.8895,-148.0745,3.954291,55.30532,-9.534762,3.954291,0,0,5,0.6052539,1.644411,0,0,0,6.631288,0.3323833,-5.259045,1.704626,0,2073.367,-,-
+3081.5,11058.4454039931,19.9999992370605,19.9999992370605,0,-0.5078815,614.8951,61.40998,61.40998,847.9713,-148.0745,3.954291,54.60228,-9.534762,3.954291,0,0,5,0.6052539,1.644411,0,0,0,6.631288,0.3323833,-5.259045,1.704626,0,2073.367,-,-
+3082.5,11064.0009593368,19.9999992370605,19.9999992370605,0,-0.5078815,614.8951,61.40998,61.40998,847.9713,-148.0745,3.954291,54.60228,-9.534762,3.954291,0,0,5,0.6052539,1.644411,0,0,0,6.631288,0.3323833,-5.259045,1.704626,0,2073.367,-,-
+3083.5,11069.5565146804,19.9999992370605,19.9999992370605,0,-0.6853107,614.8951,32.82115,32.82115,847.9713,-148.0745,2.113409,54.60228,-9.534762,2.113409,0,0,5,0.6016215,1.644411,0,0,0,6.631218,0.3323833,-7.096225,-0.1326237,0,1801.917,-,-
+3084.5,11075.112070024,19.9999992370605,19.9999992370605,0,-0.6853107,614.8951,32.82115,32.82115,837.2504,-148.0745,2.113409,53.91195,-9.534762,2.113409,0,0,5,0.6016215,1.644411,0,0,0,6.631218,0.3323833,-7.096225,-0.1326237,0,1801.917,-,-
+3085.5,11080.6676253676,19.9999992370605,19.9999992370605,0,-0.6853107,614.8951,32.82115,32.82115,837.2504,-148.0745,2.113409,53.91195,-9.534762,2.113409,0,0,5,0.6016215,1.644411,0,0,0,6.631218,0.3323833,-7.096225,-0.1326237,0,1801.917,-,-
+3086.5,11086.2231807113,19.9999992370605,19.9999992370605,0,-0.6853107,614.8951,32.82115,32.82115,837.2504,-148.0745,2.113409,53.91195,-9.534762,2.113409,0,0,5,0.6016215,1.644411,0,0,0,6.631218,0.3323833,-7.096225,-0.1326237,0,1801.917,-,-
+3087.5,11091.7787360549,19.9999992370605,19.9999992370605,0,-0.8627398,614.8951,4.571933,4.571933,837.2504,-148.0745,0.2943944,53.91195,-9.534762,0.2943944,0,0,5,0.6198117,1.644411,0,0,0,6.631127,0.3323833,-8.933338,-1.969828,0,1533.69,-,-
+3088.5,11097.3342913985,19.9999992370605,19.9999992370605,0,-0.8627398,614.8951,4.571933,4.571933,826.657,-148.0745,0.2943944,53.22982,-9.534762,0.2943944,0,0,5,0.6198117,1.644411,0,0,0,6.631127,0.3323833,-8.933338,-1.969828,0,1533.69,-,-
+3089.5,11102.8898467422,19.9999992370605,19.9999992370605,0,-0.8627398,614.8951,4.571933,4.571933,826.657,-148.0745,0.2943944,53.22982,-9.534762,0.2943944,0,0,5,0.6198117,1.644411,0,0,0,6.631127,0.3323833,-8.933338,-1.969828,0,1533.69,-,-
+3090.5,11108.4454020858,19.9999992370605,19.9999992370605,0,-0.9514544,614.8951,-9.552321,-9.552321,826.657,-148.0745,-0.6150899,53.22982,-9.534762,-0.6150899,0,0,5,0.6289065,1.644411,0,0,0,6.631073,0.3323833,-9.851864,-2.888407,0,1396.112,-,-
+3091.5,11114.0009574294,19.9999992370605,19.9999992370605,0,-1.040169,614.8951,-23.6763,-23.6763,821.3604,-148.0745,-1.524557,52.88876,-9.534762,-1.524557,0,0,5,0.6380013,1.644411,0,0,0,6.631015,0.3323833,-10.77037,-3.806969,0,1256.876,-,-
+3092.5,11119.556512773,19.9999992370605,19.9999992370605,0,-1.040169,614.8951,-23.6763,-23.6763,816.0639,-148.0745,-1.524557,52.54772,-9.534762,-1.524557,0,0,5,0.6380013,1.644411,0,0,0,6.631015,0.3323833,-10.77037,-3.806969,0,1256.876,-,-
+3093.5,11125.1120681167,19.9999992370605,19.9999992370605,0,-1.040169,614.8951,-23.6763,-23.6763,816.0639,-148.0745,-1.524557,52.54772,-9.534762,-1.524557,0,0,5,0.6380013,1.644411,0,0,0,6.631015,0.3323833,-10.77037,-3.806969,0,1256.876,-,-
+3094.5,11130.6676234603,19.9999992370605,19.9999992370605,0,-1.217598,614.8951,-51.92329,-51.92329,816.0639,-148.0745,-3.343427,52.54772,-9.534762,-3.343427,0,0,5,0.6561899,1.644411,0,0,0,6.630882,0.3323833,-12.60729,-5.644028,0,978.4144,-,-
+3095.5,11136.2231788039,19.9999992370605,19.9999992370605,0,-1.217598,614.8951,-51.92329,-51.92329,805.4713,-148.0745,-3.343427,51.86564,-9.534762,-3.343427,0,0,5,0.6561899,1.644411,0,0,0,6.630882,0.3323833,-12.60729,-5.644028,0,978.4144,-,-
+3096.5,11141.7787341475,19.9999992370605,19.9999992370605,0,-1.217598,614.8951,-51.92329,-51.92329,805.4713,-148.0745,-3.343427,51.86564,-9.534762,-3.343427,0,0,5,0.6561899,1.644411,0,0,0,6.630882,0.3323833,-12.60729,-5.644028,0,978.4144,-,-
+3097.5,11147.3342894912,19.9999992370605,19.9999992370605,0,-1.217598,614.8951,-51.92329,-51.92329,805.4713,-148.0745,-3.343427,51.86564,-9.534762,-3.343427,0,0,5,0.6561899,1.644411,0,0,0,6.630882,0.3323833,-12.60729,-5.644028,0,978.4144,-,-
+3098.5,11152.8898448348,19.9999992370605,19.9999992370605,0,-1.35067,614.8951,-73.10757,-73.10757,805.4713,-148.0745,-4.707518,51.86564,-9.534762,-4.707518,0,0,5,0.6698308,1.644411,0,0,0,6.630769,0.3323833,-13.98491,-7.02176,0,769.5775,-,-
+3099.5,11158.4454001784,19.9999992370605,19.9999992370605,0,-1.35067,614.8951,-73.10757,-73.10757,797.5272,-148.0745,-4.707518,51.35411,-9.534762,-4.707518,0,0,5,0.6698308,1.644411,0,0,0,6.630769,0.3323833,-13.98491,-7.02176,0,769.5775,-,-
+3100.5,11164.0009555221,19.9999992370605,19.9999992370605,0,-1.35067,614.8951,-73.10757,-73.10757,797.5272,-148.0745,-4.707518,51.35411,-9.534762,-4.707518,0,0,5,0.6698308,1.644411,0,0,0,6.630769,0.3323833,-13.98491,-7.02176,0,769.5775,-,-
+3101.5,11169.5565108657,19.9999992370605,19.9999992370605,0,-1.35067,614.8951,-73.10757,-73.10757,797.5272,-148.0745,-4.707518,51.35411,-9.534762,-4.707518,0,0,5,0.6698308,1.644411,0,0,0,6.630769,0.3323833,-13.98491,-7.02176,0,769.5775,-,-
+3102.5,11175.1120662093,19.9999992370605,19.9999992370605,0,-1.35067,614.8951,-73.10757,-73.10757,797.5272,-148.0745,-4.707518,51.35411,-9.534762,-4.707518,0,0,5,0.6698308,1.644411,0,0,0,6.630769,0.3323833,-13.98491,-7.02176,0,769.5775,-,-
+3103.5,11180.6676215529,19.9999992370605,19.9999992370605,0,-1.35067,614.8951,-73.10757,-73.10757,797.5272,-148.0745,-4.707518,51.35411,-9.534762,-4.707518,0,0,5,0.6698308,1.644411,0,0,0,6.630769,0.3323833,-13.98491,-7.02176,0,769.5775,-,-
+3104.5,11186.2231768966,19.9999992370605,19.9999992370605,0,-1.35067,614.8951,-73.10757,-73.10757,797.5272,-148.0745,-4.707518,51.35411,-9.534762,-4.707518,0,0,5,0.6698308,1.644411,0,0,0,6.630769,0.3323833,-13.98491,-7.02176,0,769.5775,-,-
+3105.5,11191.7787322402,19.9999992370605,19.9999992370605,0,-1.35067,614.8951,-73.10757,-73.10757,797.5272,-148.0745,-4.707518,51.35411,-9.534762,-4.707518,0,0,5,0.6698308,1.644411,0,0,0,6.630769,0.3323833,-13.98491,-7.02176,0,769.5775,-,-
+3106.5,11197.3342875838,19.9999992370605,19.9999992370605,0,-1.35067,614.8951,-73.10757,-73.10757,797.5272,-148.0745,-4.707518,51.35411,-9.534762,-4.707518,0,0,5,0.6698308,1.644411,0,0,0,6.630769,0.3323833,-13.98491,-7.02176,0,769.5775,-,-
+3107.5,11202.8898429275,19.9999992370605,19.9999992370605,0,-1.35067,614.8951,-73.10757,-73.10757,797.5272,-148.0745,-4.707518,51.35411,-9.534762,-4.707518,0,0,5,0.6698308,1.644411,0,0,0,6.630769,0.3323833,-13.98491,-7.02176,0,769.5775,-,-
+3108.5,11208.4453982711,19.9999992370605,19.9999992370605,0,-1.35067,614.8951,-73.10757,-73.10757,797.5272,-148.0745,-4.707518,51.35411,-9.534762,-4.707518,0,0,5,0.6698308,1.644411,0,0,0,6.630769,0.3323833,-13.98491,-7.02176,0,769.5775,-,-
+3109.5,11214.0009536147,19.9999992370605,19.9999992370605,0,-1.35067,614.8951,-73.10757,-73.10757,797.5272,-148.0745,-4.707518,51.35411,-9.534762,-4.707518,0,0,5,0.6698308,1.644411,0,0,0,6.630769,0.3323833,-13.98491,-7.02176,0,769.5775,-,-
+3110.5,11219.5565089583,19.9999992370605,19.9999992370605,0,-1.35067,614.8951,-73.10757,-73.10757,797.5272,-148.0745,-4.707518,51.35411,-9.534762,-4.707518,0,0,5,0.6698308,1.644411,0,0,0,6.630769,0.3323833,-13.98491,-7.02176,0,769.5775,-,-
+3111.5,11225.112064302,19.9999992370605,19.9999992370605,0,-1.35067,614.8951,-73.10757,-73.10757,797.5272,-148.0745,-4.707518,51.35411,-9.534762,-4.707518,0,0,5,0.6698308,1.644411,0,0,0,6.630769,0.3323833,-13.98491,-7.02176,0,769.5775,-,-
+3112.5,11230.6676196456,19.9999992370605,19.9999992370605,0,-1.35067,614.8951,-73.10757,-73.10757,797.5272,-148.0745,-4.707518,51.35411,-9.534762,-4.707518,0,0,5,0.6698308,1.644411,0,0,0,6.630769,0.3323833,-13.98491,-7.02176,0,769.5775,-,-
+3113.5,11236.2231749892,19.9999992370605,19.9999992370605,0,-1.35067,614.8951,-73.10757,-73.10757,797.5272,-148.0745,-4.707518,51.35411,-9.534762,-4.707518,0,0,5,0.6698308,1.644411,0,0,0,6.630769,0.3323833,-13.98491,-7.02176,0,769.5775,-,-
+3114.5,11241.7787303329,19.9999992370605,19.9999992370605,0,-1.35067,614.8951,-73.10757,-73.10757,797.5272,-148.0745,-4.707518,51.35411,-9.534762,-4.707518,0,0,5,0.6698308,1.644411,0,0,0,6.630769,0.3323833,-13.98491,-7.02176,0,769.5775,-,-
+3115.5,11247.3342856765,19.9999992370605,19.9999992370605,0,-1.35067,614.8951,-73.10757,-73.10757,797.5272,-148.0745,-4.707518,51.35411,-9.534762,-4.707518,0,0,5,0.6698308,1.644411,0,0,0,6.630769,0.3323833,-13.98491,-7.02176,0,769.5775,-,-
+3116.5,11252.8898410201,19.9999992370605,19.9999992370605,0,-1.35067,614.8951,-73.10757,-73.10757,797.5272,-148.0745,-4.707518,51.35411,-9.534762,-4.707518,0,0,5,0.6698308,1.644411,0,0,0,6.630769,0.3323833,-13.98491,-7.02176,0,769.5775,-,-
+3117.5,11258.4453963637,19.9999992370605,19.9999992370605,0,-1.35067,614.8951,-73.10757,-73.10757,797.5272,-148.0745,-4.707518,51.35411,-9.534762,-4.707518,0,0,5,0.6698308,1.644411,0,0,0,6.630769,0.3323833,-13.98491,-7.02176,0,769.5775,-,-
+3118.5,11264.0009517074,19.9999992370605,19.9999992370605,0,-1.35067,614.8951,-73.10757,-73.10757,797.5272,-148.0745,-4.707518,51.35411,-9.534762,-4.707518,0,0,5,0.6698308,1.644411,0,0,0,6.630769,0.3323833,-13.98491,-7.02176,0,769.5775,-,-
+3119.5,11269.556507051,19.9999992370605,19.9999992370605,0,-1.480434,614.8951,-93.7644,-93.7644,797.5272,-148.0745,-6.037646,51.35411,-9.534762,-6.037646,0,0,5,0.6831318,1.644411,0,0,0,6.630647,0.3323833,-15.32822,-8.365189,0,565.9402,-,-
+3120.5,11275.1120623946,19.9999992370605,19.9999992370605,0,-1.480434,614.8951,-93.7644,-93.7644,789.7809,-148.0745,-6.037646,50.85531,-9.534762,-6.037646,0,0,5,0.6831318,1.644411,0,0,0,6.630647,0.3323833,-15.32822,-8.365189,0,565.9402,-,-
+3121.5,11280.6676177382,19.9999992370605,19.9999992370605,0,-1.480434,614.8951,-93.7644,-93.7644,789.7809,-148.0745,-6.037646,50.85531,-9.534762,-6.037646,0,0,5,0.6831318,1.644411,0,0,0,6.630647,0.3323833,-15.32822,-8.365189,0,565.9402,-,-
+3122.5,11286.2231730819,19.9999992370605,19.9999992370605,0,-1.480434,614.8951,-93.7644,-93.7644,789.7809,-148.0745,-6.037646,50.85531,-9.534762,-6.037646,0,0,5,0.6831318,1.644411,0,0,0,6.630647,0.3323833,-15.32822,-8.365189,0,565.9402,-,-
+3123.5,11291.7787284255,19.9999992370605,19.9999992370605,0,-1.675151,614.8951,-124.7588,-124.7588,789.7809,-148.0745,-8.033429,50.85531,-9.534762,-8.033429,0,0,5,0.7030901,1.644411,0,0,0,6.630443,0.3323833,-17.34376,-10.38093,0,260.3938,-,-
+3124.5,11297.3342837691,19.9999992370605,19.9999992370605,0,-1.675151,614.8951,-124.7588,-124.7588,778.158,-148.0745,-8.033429,50.10689,-9.534762,-8.033429,0,0,5,0.7030901,1.644411,0,0,0,6.630443,0.3323833,-17.34376,-10.38093,0,260.3938,-,-
+3125.5,11302.8898391128,19.9999992370605,19.9999992370605,0,-1.675151,614.8951,-124.7588,-124.7588,778.158,-148.0745,-8.033429,50.10689,-9.534762,-8.033429,0,0,5,0.7030901,1.644411,0,0,0,6.630443,0.3323833,-17.34376,-10.38093,0,260.3938,-,-
+3126.5,11308.4453944564,19.9999992370605,19.9999992370605,0,-1.772509,614.8951,-140.255,-140.255,778.158,-148.0745,-9.031256,50.10689,-9.534762,-9.031256,0,0,5,0.7130684,1.644411,0,0,0,6.630332,0.3323833,-18.35145,-11.38873,0,98.60892,-,-
+3127.5,11314.0009498,19.9999992370605,19.9999992370605,0,-1.869868,614.8951,-148.0745,-148.0745,772.3469,-148.0745,-9.534762,49.7327,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.630214,0.3323833,-19.35909,-12.3965,-0.4992208,0,-,-
+3128.5,11319.5565051436,19.9999992370605,19.9999992370605,0,-1.869868,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.630214,0.3323833,-19.35909,-12.3965,-0.4992208,0,-,-
+3129.5,11325.1120604873,19.9999992370605,19.9999992370605,0,-1.869868,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.630214,0.3323833,-19.35909,-12.3965,-0.4992208,0,-,-
+3130.5,11330.6676158309,19.9999992370605,19.9999992370605,0,-2.064584,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.629961,0.3323833,-21.37421,-14.41187,-2.514594,0,-,-
+3131.5,11336.2231711745,19.9999992370605,19.9999992370605,0,-2.064584,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.629961,0.3323833,-21.37421,-14.41187,-2.514594,0,-,-
+3132.5,11341.7787265182,19.9999992370605,19.9999992370605,0,-2.064584,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.629961,0.3323833,-21.37421,-14.41187,-2.514594,0,-,-
+3133.5,11347.3342818618,19.9999992370605,19.9999992370605,0,-2.064584,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.629961,0.3323833,-21.37421,-14.41187,-2.514594,0,-,-
+3134.5,11352.8898372054,19.9999992370605,19.9999992370605,0,-2.259301,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.629682,0.3323833,-23.38909,-16.42703,-4.52975,0,-,-
+3135.5,11358.445392549,19.9999992370605,19.9999992370605,0,-2.259301,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.629682,0.3323833,-23.38909,-16.42703,-4.52975,0,-,-
+3136.5,11364.0009478927,19.9999992370605,19.9999992370605,0,-2.259301,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.629682,0.3323833,-23.38909,-16.42703,-4.52975,0,-,-
+3137.5,11369.5565032363,19.9999992370605,19.9999992370605,0,-2.45145,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.629382,0.3323833,-25.37714,-18.41537,-6.518098,0,-,-
+3138.5,11375.1120585799,19.9999992370605,19.9999992370605,0,-2.45145,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.629382,0.3323833,-25.37714,-18.41537,-6.518098,0,-,-
+3139.5,11380.6676139236,19.9999992370605,19.9999992370605,0,-2.45145,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.629382,0.3323833,-25.37714,-18.41537,-6.518098,0,-,-
+3140.5,11386.2231692672,19.9999992370605,19.9999992370605,0,-2.45145,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.629382,0.3323833,-25.37714,-18.41537,-6.518098,0,-,-
+3141.5,11391.7787246108,19.9999992370605,19.9999992370605,0,-2.633268,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.629076,0.3323833,-27.25804,-20.29659,-8.399308,0,-,-
+3142.5,11397.3342799544,19.9999992370605,19.9999992370605,0,-2.633268,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.629076,0.3323833,-27.25804,-20.29659,-8.399308,0,-,-
+3143.5,11402.8898352981,19.9999992370605,19.9999992370605,0,-2.633268,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.629076,0.3323833,-27.25804,-20.29659,-8.399308,0,-,-
+3144.5,11408.4453906417,19.9999992370605,19.9999992370605,0,-2.724053,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628914,0.3323833,-28.19711,-21.23581,-9.338536,0,-,-
+3145.5,11414.0009459853,19.9999992370605,19.9999992370605,0,-2.814838,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628748,0.3323833,-29.13611,-22.17498,-10.2777,0,-,-
+3146.5,11419.5565013289,19.9999992370605,19.9999992370605,0,-2.814838,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628748,0.3323833,-29.13611,-22.17498,-10.2777,0,-,-
+3147.5,11425.1120566726,19.9999992370605,19.9999992370605,0,-2.814838,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628748,0.3323833,-29.13611,-22.17498,-10.2777,0,-,-
+3148.5,11430.6676120162,19.9999992370605,19.9999992370605,0,-2.996408,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628398,0.3323833,-31.01389,-24.0531,-12.15583,0,-,-
+3149.5,11436.2231673598,19.9999992370605,19.9999992370605,0,-2.996408,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628398,0.3323833,-31.01389,-24.0531,-12.15583,0,-,-
+3150.5,11441.7787227035,19.9999992370605,19.9999992370605,0,-2.996408,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628398,0.3323833,-31.01389,-24.0531,-12.15583,0,-,-
+3151.5,11447.3342780471,19.9999992370605,19.9999992370605,0,-2.996408,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628398,0.3323833,-31.01389,-24.0531,-12.15583,0,-,-
+3152.5,11452.8898333907,19.9999992370605,19.9999992370605,0,-3.177978,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628027,0.3323833,-32.89136,-25.93095,-14.03367,0,-,-
+3153.5,11458.4453887343,19.9999992370605,19.9999992370605,0,-3.177978,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628027,0.3323833,-32.89136,-25.93095,-14.03367,0,-,-
+3154.5,11464.000944078,19.9999992370605,19.9999992370605,0,-3.177978,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628027,0.3323833,-32.89136,-25.93095,-14.03367,0,-,-
+3155.5,11469.5564994216,19.9999992370605,19.9999992370605,0,-3.286796,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.627794,0.3323833,-34.0164,-27.05622,-15.15894,0,-,-
+3156.5,11475.1120547652,19.9999992370605,19.9999992370605,0,-3.286796,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.627794,0.3323833,-34.0164,-27.05622,-15.15894,0,-,-
+3157.5,11480.6676101089,19.9999992370605,19.9999992370605,0,-3.286796,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.627794,0.3323833,-34.0164,-27.05622,-15.15894,0,-,-
+3158.5,11486.2231654525,19.9999992370605,19.9999992370605,0,-3.286796,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.627794,0.3323833,-34.0164,-27.05622,-15.15894,0,-,-
+3159.5,11491.7787207961,19.9999992370605,19.9999992370605,0,-3.286796,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.627794,0.3323833,-34.0164,-27.05622,-15.15894,0,-,-
+3160.5,11497.3342761397,19.9999992370605,19.9999992370605,0,-3.286796,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.627794,0.3323833,-34.0164,-27.05622,-15.15894,0,-,-
+3161.5,11502.8898314834,19.9999992370605,19.9999992370605,0,-3.286796,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.627794,0.3323833,-34.0164,-27.05622,-15.15894,0,-,-
+3162.5,11508.445386827,19.9999992370605,19.9999992370605,0,-3.286796,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.627794,0.3323833,-34.0164,-27.05622,-15.15894,0,-,-
+3163.5,11514.0009421706,19.9999992370605,19.9999992370605,0,-3.286796,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.627794,0.3323833,-34.0164,-27.05622,-15.15894,0,-,-
+3164.5,11519.5564975142,19.9999992370605,19.9999992370605,0,-3.286796,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.627794,0.3323833,-34.0164,-27.05622,-15.15894,0,-,-
+3165.5,11525.1120528579,19.9999992370605,19.9999992370605,0,-3.286796,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.627794,0.3323833,-34.0164,-27.05622,-15.15894,0,-,-
+3166.5,11530.6676082015,19.9999992370605,19.9999992370605,0,-3.286796,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.627794,0.3323833,-34.0164,-27.05622,-15.15894,0,-,-
+3167.5,11536.2231635451,19.9999992370605,19.9999992370605,0,-3.286796,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.627794,0.3323833,-34.0164,-27.05622,-15.15894,0,-,-
+3168.5,11541.7787188888,19.9999992370605,19.9999992370605,0,-3.286796,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.627794,0.3323833,-34.0164,-27.05622,-15.15894,0,-,-
+3169.5,11547.3342742324,19.9999992370605,19.9999992370605,0,-3.286796,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.627794,0.3323833,-34.0164,-27.05622,-15.15894,0,-,-
+3170.5,11552.889829576,19.9999992370605,19.9999992370605,0,-3.286796,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.627794,0.3323833,-34.0164,-27.05622,-15.15894,0,-,-
+3171.5,11558.4453849196,19.9999992370605,19.9999992370605,0,-3.286796,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.627794,0.3323833,-34.0164,-27.05622,-15.15894,0,-,-
+3172.5,11564.0009402633,19.9999992370605,19.9999992370605,0,-3.286796,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.627794,0.3323833,-34.0164,-27.05622,-15.15894,0,-,-
+3173.5,11569.5564956069,19.9999992370605,19.9999992370605,0,-3.286796,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.627794,0.3323833,-34.0164,-27.05622,-15.15894,0,-,-
+3174.5,11575.1120509505,19.9999992370605,19.9999992370605,0,-3.286796,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.627794,0.3323833,-34.0164,-27.05622,-15.15894,0,-,-
+3175.5,11580.6676062942,19.9999992370605,19.9999992370605,0,-3.286796,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.627794,0.3323833,-34.0164,-27.05622,-15.15894,0,-,-
+3176.5,11586.2231616378,19.9999992370605,19.9999992370605,0,-3.286796,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.627794,0.3323833,-34.0164,-27.05622,-15.15894,0,-,-
+3177.5,11591.7787169814,19.9999992370605,19.9999992370605,0,-3.286796,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.627794,0.3323833,-34.0164,-27.05622,-15.15894,0,-,-
+3178.5,11597.334272325,19.9999992370605,19.9999992370605,0,-3.286796,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.627794,0.3323833,-34.0164,-27.05622,-15.15894,0,-,-
+3179.5,11602.8898276687,19.9999992370605,19.9999992370605,0,-3.286796,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.627794,0.3323833,-34.0164,-27.05622,-15.15894,0,-,-
+3180.5,11608.4453830123,19.9999992370605,19.9999992370605,0,-3.286796,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.627794,0.3323833,-34.0164,-27.05622,-15.15894,0,-,-
+3181.5,11614.0009383559,19.9999992370605,19.9999992370605,0,-3.286796,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.627794,0.3323833,-34.0164,-27.05622,-15.15894,0,-,-
+3182.5,11619.5564936996,19.9999992370605,19.9999992370605,0,-3.286796,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.627794,0.3323833,-34.0164,-27.05622,-15.15894,0,-,-
+3183.5,11625.1120490432,19.9999992370605,19.9999992370605,0,-3.286796,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.627794,0.3323833,-34.0164,-27.05622,-15.15894,0,-,-
+3184.5,11630.6676043868,19.9999992370605,19.9999992370605,0,-3.286796,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.627794,0.3323833,-34.0164,-27.05622,-15.15894,0,-,-
+3185.5,11636.2231597304,19.9999992370605,19.9999992370605,0,-3.286796,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.627794,0.3323833,-34.0164,-27.05622,-15.15894,0,-,-
+3186.5,11641.7787150741,19.9999992370605,19.9999992370605,0,-3.135116,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628117,0.3323833,-32.44818,-25.48768,-13.59041,0,-,-
+3187.5,11647.3342704177,19.9999992370605,19.9999992370605,0,-3.135116,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628117,0.3323833,-32.44818,-25.48768,-13.59041,0,-,-
+3188.5,11652.8898257613,19.9999992370605,19.9999992370605,0,-2.999405,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628393,0.3323833,-31.04487,-24.0841,-12.18682,0,-,-
+3189.5,11658.4453811049,19.9999992370605,19.9999992370605,0,-2.931549,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628526,0.3323833,-30.34316,-23.38225,-11.48497,0,-,-
+3190.5,11664.0009364486,19.9999992370605,19.9999992370605,0,-2.863693,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628656,0.3323833,-29.64139,-22.68036,-10.78308,0,-,-
+3191.5,11669.5564917922,19.9999992370605,19.9999992370605,0,-2.727982,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628907,0.3323833,-28.23775,-21.27645,-9.379178,0,-,-
+3192.5,11675.1120471358,19.9999992370605,19.9999992370605,0,-2.727982,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628907,0.3323833,-28.23775,-21.27645,-9.379178,0,-,-
+3193.5,11680.6676024795,19.9999992370605,19.9999992370605,0,-2.59227,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.629147,0.3323833,-26.83394,-19.87241,-7.975137,0,-,-
+3194.5,11686.2231578231,19.9999992370605,19.9999992370605,0,-2.59227,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.629147,0.3323833,-26.83394,-19.87241,-7.975137,0,-,-
+3195.5,11691.7787131667,19.9999992370605,19.9999992370605,0,-2.456559,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.629374,0.3323833,-25.42999,-18.46824,-6.570958,0,-,-
+3196.5,11697.3342685103,19.9999992370605,19.9999992370605,0,-2.456559,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.629374,0.3323833,-25.42999,-18.46824,-6.570958,0,-,-
+3197.5,11702.889823854,19.9999992370605,19.9999992370605,0,-2.320847,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.629588,0.3323833,-24.0259,-17.06393,-5.166652,0,-,-
+3198.5,11708.4453791976,19.9999992370605,19.9999992370605,0,-2.252991,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.629691,0.3323833,-23.3238,-16.36173,-4.464454,0,-,-
+3199.5,11714.0009345412,19.9999992370605,19.9999992370605,0,-2.185136,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.629791,0.3323833,-22.62168,-15.6595,-3.762227,0,-,-
+3200.5,11719.5564898849,19.9999992370605,19.9999992370605,0,-2.049424,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.629981,0.3323833,-21.21733,-14.25497,-2.35769,0,-,-
+3201.5,11725.1120452285,19.9999992370605,19.9999992370605,0,-2.049424,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.629981,0.3323833,-21.21733,-14.25497,-2.35769,0,-,-
+3202.5,11730.6676005721,19.9999992370605,19.9999992370605,0,-1.913713,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.630159,0.3323833,-19.81286,-12.85032,-0.9530449,0,-,-
+3203.5,11736.2231559157,19.9999992370605,19.9999992370605,0,-1.913713,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.630159,0.3323833,-19.81286,-12.85032,-0.9530449,0,-,-
+3204.5,11741.7787112594,19.9999992370605,19.9999992370605,0,-1.778001,614.8951,-141.1291,-141.1291,769.4146,-148.0745,-9.087539,49.54389,-9.534762,-9.087539,0,0,5,0.7136311,1.644411,0,0,0,6.630325,0.3323833,-18.40829,-11.44558,0,87.58626,-,-
+3205.5,11747.334266603,19.9999992370605,19.9999992370605,0,-1.778001,614.8951,-141.1291,-141.1291,772.0192,-148.0745,-9.087539,49.7116,-9.534762,-9.087539,0,0,5,0.7136311,1.644411,0,0,0,6.630325,0.3323833,-18.40829,-11.44558,0,87.58626,-,-
+3206.5,11752.8898219466,19.9999992370605,19.9999992370605,0,-1.642289,614.8951,-119.5282,-119.5282,772.0192,-148.0745,-7.696617,49.7116,-9.534762,-7.696617,0,0,5,0.6997221,1.644411,0,0,0,6.630479,0.3323833,-17.00361,-10.04075,0,311.9583,-,-
+3207.5,11758.4453772902,19.9999992370605,19.9999992370605,0,-1.574434,614.8951,-108.7272,-108.7272,780.1194,-148.0745,-7.001127,50.23319,-9.534762,-7.001127,0,0,5,0.6927667,1.64441,0,0,0,6.630552,0.3323833,-16.30124,-9.338305,0,418.4351,-,-
+3208.5,11764.0009326339,19.9999992370605,19.9999992370605,0,-1.506578,614.8951,-97.92595,-97.92595,784.1698,-148.0745,-6.305615,50.494,-9.534762,-6.305615,0,0,5,0.6858118,1.644411,0,0,0,6.630621,0.3323833,-15.59884,-8.635839,0,524.9152,-,-
+3209.5,11769.5564879775,19.9999992370605,19.9999992370605,0,-1.370877,614.8951,-76.32426,-76.32426,788.2203,-148.0745,-4.914646,50.75482,-9.534762,-4.914646,0,0,5,0.6719023,1.644411,0,0,0,6.63075,0.3323833,-14.19409,-7.230959,0,737.867,-,-
+3210.5,11775.1120433211,19.9999992370605,19.9999992370605,0,-1.370877,614.8951,-76.32426,-76.32426,796.321,-148.0745,-4.914646,51.27644,-9.534762,-4.914646,0,0,5,0.6719023,1.644411,0,0,0,6.63075,0.3323833,-14.19409,-7.230959,0,737.867,-,-
+3211.5,11780.6675986648,19.9999992370605,19.9999992370605,0,-1.235269,614.8951,-54.73638,-54.73638,796.321,-148.0745,-3.524567,51.27644,-9.534762,-3.524567,0,0,5,0.6580015,1.644411,0,0,0,6.630867,0.3323833,-12.79023,-5.826979,0,950.6827,-,-
+3212.5,11786.2231540084,19.9999992370605,19.9999992370605,0,-1.235269,614.8951,-54.73638,-54.73638,804.4164,-148.0745,-3.524567,51.79771,-9.534762,-3.524567,0,0,5,0.6580015,1.644411,0,0,0,6.630867,0.3323833,-12.79023,-5.826979,0,950.6827,-,-
+3213.5,11791.778709352,19.9999992370605,19.9999992370605,0,-1.099661,614.8951,-33.14759,-33.14759,804.4164,-148.0745,-2.134429,51.79771,-9.534762,-2.134429,0,0,5,0.6441,1.644411,0,0,0,6.630972,0.3323833,-11.3863,-4.42294,0,1163.507,-,-
+3214.5,11797.3342646956,19.9999992370605,19.9999992370605,0,-1.099661,614.8951,-33.14759,-33.14759,812.5122,-148.0745,-2.134429,52.31902,-9.534762,-2.134429,0,0,5,0.6441,1.644411,0,0,0,6.630972,0.3323833,-11.3863,-4.42294,0,1163.507,-,-
+3215.5,11802.8898200393,19.9999992370605,19.9999992370605,0,-0.9640525,614.8951,-11.55805,-11.55805,812.5122,-148.0745,-0.7442423,52.31902,-9.534762,-0.7442423,0,0,5,0.630198,1.644411,0,0,0,6.631065,0.3323833,-9.9823,-3.018851,0,1376.339,-,-
+3216.5,11808.4453753829,19.9999992370605,19.9999992370605,0,-0.8962485,614.8951,-0.7630159,-0.7630159,820.6082,-148.0745,-0.04913187,52.84033,-9.534762,-0.04913187,0,0,5,0.623247,1.644411,0,0,0,6.631107,0.3323833,-9.28028,-2.31679,0,1482.758,-,-
+3217.5,11814.0009307265,19.9999992370605,19.9999992370605,0,-0.8284445,614.8951,10.03216,10.03216,824.6564,-148.0745,0.6459877,53.101,-9.534762,0.6459877,0,0,5,0.6162958,1.644411,0,0,0,6.631146,0.3323833,-8.578248,-1.614719,0,1585.535,-,-
+3218.5,11819.5564860702,19.9999992370605,19.9999992370605,0,-0.6928364,614.8951,31.62292,31.62292,828.7046,-148.0745,2.036252,53.36167,-9.534762,2.036252,0,0,5,0.602393,1.644411,0,0,0,6.631214,0.3323833,-7.174149,-0.2105513,0,1790.539,-,-
+3219.5,11825.1120414138,19.9999992370605,19.9999992370605,0,-0.6928364,614.8951,31.62292,31.62292,836.8011,-148.0745,2.036252,53.88302,-9.534762,2.036252,0,0,5,0.602393,1.644411,0,0,0,6.631214,0.3323833,-7.174149,-0.2105513,0,1790.539,-,-
+3220.5,11830.6675967574,19.9999992370605,19.9999992370605,0,-0.58435,614.8951,48.89584,48.89584,836.8011,-148.0745,3.148485,53.88302,-9.534762,3.148485,0,0,5,0.5912707,1.644411,0,0,0,6.63126,0.3323833,-6.05084,0.9128032,0,1954.546,-,-
+3221.5,11836.223152101,19.9999992370605,19.9999992370605,0,-0.58435,614.8951,48.89584,48.89584,843.2785,-148.0745,3.148485,54.30011,-9.534762,3.148485,0,0,5,0.5912707,1.644411,0,0,0,6.63126,0.3323833,-6.05084,0.9128032,0,1954.546,-,-
+3222.5,11841.7787074447,19.9999992370605,19.9999992370605,0,-0.58435,614.8951,48.89584,48.89584,843.2785,-148.0745,3.148485,54.30011,-9.534762,3.148485,0,0,5,0.5912707,1.644411,0,0,0,6.63126,0.3323833,-6.05084,0.9128032,0,1954.546,-,-
+3223.5,11847.3342627883,19.9999992370605,19.9999992370605,0,-0.58435,614.8951,48.89584,48.89584,843.2785,-148.0745,3.148485,54.30011,-9.534762,3.148485,0,0,5,0.5912707,1.644411,0,0,0,6.63126,0.3323833,-6.05084,0.9128032,0,1954.546,-,-
+3224.5,11852.8898181319,19.9999992370605,19.9999992370605,0,-0.58435,614.8951,48.89584,48.89584,843.2785,-148.0745,3.148485,54.30011,-9.534762,3.148485,0,0,5,0.5912707,1.644411,0,0,0,6.63126,0.3323833,-6.05084,0.9128032,0,1954.546,-,-
+3225.5,11858.4453734756,19.9999992370605,19.9999992370605,0,-0.58435,614.8951,48.89584,48.89584,843.2785,-148.0745,3.148485,54.30011,-9.534762,3.148485,0,0,5,0.5912707,1.644411,0,0,0,6.63126,0.3323833,-6.05084,0.9128032,0,1954.546,-,-
+3226.5,11864.0009288192,19.9999992370605,19.9999992370605,0,-0.58435,614.8951,48.89584,48.89584,843.2785,-148.0745,3.148485,54.30011,-9.534762,3.148485,0,0,5,0.5912707,1.644411,0,0,0,6.63126,0.3323833,-6.05084,0.9128032,0,1954.546,-,-
+3227.5,11869.5564841628,19.9999992370605,19.9999992370605,0,-0.58435,614.8951,48.89584,48.89584,843.2785,-148.0745,3.148485,54.30011,-9.534762,3.148485,0,0,5,0.5912707,1.644411,0,0,0,6.63126,0.3323833,-6.05084,0.9128032,0,1954.546,-,-
+3228.5,11875.1120395064,19.9999992370605,19.9999992370605,0,-0.58435,614.8951,48.89584,48.89584,843.2785,-148.0745,3.148485,54.30011,-9.534762,3.148485,0,0,5,0.5912707,1.644411,0,0,0,6.63126,0.3323833,-6.05084,0.9128032,0,1954.546,-,-
+3229.5,11880.6675948501,19.9999992370605,19.9999992370605,0,-0.58435,614.8951,48.89584,48.89584,843.2785,-148.0745,3.148485,54.30011,-9.534762,3.148485,0,0,5,0.5912707,1.644411,0,0,0,6.63126,0.3323833,-6.05084,0.9128032,0,1954.546,-,-
+3230.5,11886.2231501937,19.9999992370605,19.9999992370605,0,-0.58435,614.8951,48.89584,48.89584,843.2785,-148.0745,3.148485,54.30011,-9.534762,3.148485,0,0,5,0.5912707,1.644411,0,0,0,6.63126,0.3323833,-6.05084,0.9128032,0,1954.546,-,-
+3231.5,11891.7787055373,19.9999992370605,19.9999992370605,0,-0.58435,614.8951,48.89584,48.89584,843.2785,-148.0745,3.148485,54.30011,-9.534762,3.148485,0,0,5,0.5912707,1.644411,0,0,0,6.63126,0.3323833,-6.05084,0.9128032,0,1954.546,-,-
+3232.5,11897.3342608809,19.9999992370605,19.9999992370605,0,-0.58435,614.8951,48.89584,48.89584,843.2785,-148.0745,3.148485,54.30011,-9.534762,3.148485,0,0,5,0.5912707,1.644411,0,0,0,6.63126,0.3323833,-6.05084,0.9128032,0,1954.546,-,-
+3233.5,11902.8898162246,19.9999992370605,19.9999992370605,0,-0.4363457,614.8951,73.14857,73.14857,843.2785,-148.0745,4.710159,54.30011,-9.534762,4.710159,0,0,5,0.6203712,1.644411,0,0,0,6.63131,0.3323833,-4.518317,2.445377,0,2184.825,-,-
+3234.5,11908.4453715682,19.9999992370605,19.9999992370605,0,-0.4363457,614.8951,73.14857,73.14857,852.3732,-148.0745,4.710159,54.88573,-9.534762,4.710159,0,0,5,0.6203712,1.644411,0,0,0,6.63131,0.3323833,-4.518317,2.445377,0,2184.825,-,-
+3235.5,11914.0009269118,19.9999992370605,19.9999992370605,0,-0.4363457,614.8951,73.14857,73.14857,852.3732,-148.0745,4.710159,54.88573,-9.534762,4.710159,0,0,5,0.6203712,1.644411,0,0,0,6.63131,0.3323833,-4.518317,2.445377,0,2184.825,-,-
+3236.5,11919.5564822555,19.9999992370605,19.9999992370605,0,-0.2805517,614.8951,98.71362,98.71362,852.3732,-148.0745,6.356335,54.88573,-9.534762,6.356335,0,0,5,0.653295,1.644411,0,0,0,6.631347,0.3323833,-2.905102,4.058629,0,2427.566,-,-
+3237.5,11925.1120375991,19.9999992370605,19.9999992370605,0,-0.2805517,614.8951,98.71362,98.71362,861.9601,-148.0745,6.356335,55.50305,-9.534762,6.356335,0,0,5,0.653295,1.644411,0,0,0,6.631347,0.3323833,-2.905102,4.058629,0,2427.566,-,-
+3238.5,11930.6675929427,19.9999992370605,19.9999992370605,0,-0.2805517,614.8951,98.71362,98.71362,861.9601,-148.0745,6.356335,55.50305,-9.534762,6.356335,0,0,5,0.653295,1.644411,0,0,0,6.631347,0.3323833,-2.905102,4.058629,0,2427.566,-,-
+3239.5,11936.2231482863,19.9999992370605,19.9999992370605,0,-0.2805517,614.8951,98.71362,98.71362,861.9601,-148.0745,6.356335,55.50305,-9.534762,6.356335,0,0,5,0.653295,1.644411,0,0,0,6.631347,0.3323833,-2.905102,4.058629,0,2427.566,-,-
+3240.5,11941.77870363,19.9999992370605,19.9999992370605,0,-0.1247578,614.8951,124.2787,124.2787,861.9601,-148.0745,8.002515,55.50305,-9.534762,8.002515,0,0,5,0.6862184,1.644411,0,0,0,6.631368,0.3323833,-1.291866,5.671885,0,2670.306,-,-
+3241.5,11947.3342589736,19.9999992370605,19.9999992370605,0,-0.1247578,614.8951,124.2787,124.2787,871.5471,-148.0745,8.002515,56.12037,-9.534762,8.002515,0,0,5,0.6862184,1.644411,0,0,0,6.631368,0.3323833,-1.291866,5.671885,0,2670.306,-,-
+3242.5,11952.8898143172,19.9999992370605,19.9999992370605,0,-0.1247578,614.8951,124.2787,124.2787,871.5471,-148.0745,8.002515,56.12037,-9.534762,8.002515,0,0,5,0.6862184,1.644411,0,0,0,6.631368,0.3323833,-1.291866,5.671885,0,2670.306,-,-
+3243.5,11958.4453696609,19.9999992370605,19.9999992370605,0,-0.04687888,614.8951,137.0583,137.0583,871.5471,-148.0745,8.825413,56.12037,-9.534762,8.825413,0,0,5,0.7026764,1.644411,0,0,0,6.631373,0.3323833,-0.4854307,6.478325,0,2791.648,-,-
+3244.5,11964.0009250045,19.9999992370605,19.9999992370605,0,0.031,614.8951,149.8378,149.8378,876.3394,-148.0745,9.648306,56.42896,-9.534762,9.648306,0,0,5,0.7191346,1.644411,0,0,0,6.631373,0.3323833,0.321005,7.284761,0,2912.99,-,-
+3245.5,11969.5564803481,19.9999992370605,19.9999992370605,0,0.031,614.8951,149.8378,149.8378,881.1317,-148.0745,9.648306,56.73754,-9.534762,9.648306,0,0,5,0.7191346,1.644411,0,0,0,6.631373,0.3323833,0.321005,7.284761,0,2912.99,-,-
+3246.5,11975.1120356917,19.9999992370605,19.9999992370605,0,0.031,614.8951,149.8378,149.8378,881.1317,-148.0745,9.648306,56.73754,-9.534762,9.648306,0,0,5,0.7191346,1.644411,0,0,0,6.631373,0.3323833,0.321005,7.284761,0,2912.99,-,-
+3247.5,11980.6675910354,19.9999992370605,19.9999992370605,0,0.1868302,614.8951,175.4084,175.4084,881.1317,-148.0745,11.29484,56.73754,-9.534762,11.29484,0,0,5,0.7520648,1.64441,0,0,0,6.631362,0.3323833,1.934623,8.898368,0,3155.783,-,-
+3248.5,11986.223146379,19.9999992370605,19.9999992370605,0,0.1868302,614.8951,175.4084,175.4084,890.7208,-148.0745,11.29484,57.355,-9.534762,11.29484,0,0,5,0.7520648,1.64441,0,0,0,6.631362,0.3323833,1.934623,8.898368,0,3155.783,-,-
+3249.5,11991.7787017226,19.9999992370605,19.9999992370605,0,0.1868302,614.8951,175.4084,175.4084,890.7208,-148.0745,11.29484,57.355,-9.534762,11.29484,0,0,5,0.7520648,1.64441,0,0,0,6.631362,0.3323833,1.934623,8.898368,0,3155.783,-,-
+3250.5,11997.3342570663,19.9999992370605,19.9999992370605,0,0.1868302,614.8951,175.4084,175.4084,890.7208,-148.0745,11.29484,57.355,-9.534762,11.29484,0,0,5,0.7520648,1.64441,0,0,0,6.631362,0.3323833,1.934623,8.898368,0,3155.783,-,-
+3251.5,12002.8898124099,19.9999992370605,19.9999992370605,0,0.3426242,614.8951,200.9727,200.9727,890.7208,-148.0745,12.94097,57.355,-9.534762,12.94097,0,0,5,0.7849874,1.644411,0,0,0,6.631334,0.3323833,3.547852,10.51157,0,3437.521,-,-
+3252.5,12008.4453677535,19.9999992370605,19.9999992370605,0,0.3426242,614.8951,200.9727,200.9727,900.3073,-148.0745,12.94097,57.97229,-9.534762,12.94097,0,0,5,0.7849874,1.644411,0,0,0,6.631334,0.3323833,3.547852,10.51157,0,3437.521,-,-
+3253.5,12014.0009230971,19.9999992370605,19.9999992370605,0,0.3426242,614.8951,200.9727,200.9727,900.3073,-148.0745,12.94097,57.97229,-9.534762,12.94097,0,0,5,0.7849874,1.644411,0,0,0,6.631334,0.3323833,3.547852,10.51157,0,3437.521,-,-
+3254.5,12019.5564784408,19.9999992370605,19.9999992370605,0,0.4984182,614.8951,226.5363,226.5363,900.3073,-148.0745,14.58705,57.97229,-9.534762,14.58705,0,0,5,0.8179087,1.644411,0,0,0,6.631291,0.3323833,5.161056,12.12473,0,3711.052,-,-
+3255.5,12025.1120337844,19.9999992370605,19.9999992370605,0,0.4984182,614.8951,226.5363,226.5363,909.8936,-148.0745,14.58705,58.58957,-9.534762,14.58705,0,0,5,0.8179087,1.644411,0,0,0,6.631291,0.3323833,5.161056,12.12473,0,3711.052,-,-
+3256.5,12030.667589128,19.9999992370605,19.9999992370605,0,0.4984182,614.8951,226.5363,226.5363,909.8936,-148.0745,14.58705,58.58957,-9.534762,14.58705,0,0,5,0.8179087,1.644411,0,0,0,6.631291,0.3323833,5.161056,12.12473,0,3711.052,-,-
+3257.5,12036.2231444716,19.9999992370605,19.9999992370605,0,0.4984182,614.8951,226.5363,226.5363,909.8936,-148.0745,14.58705,58.58957,-9.534762,14.58705,0,0,5,0.8179087,1.644411,0,0,0,6.631291,0.3323833,5.161056,12.12473,0,3711.052,-,-
+3258.5,12041.7786998153,19.9999992370605,19.9999992370605,0,0.6542121,614.8951,252.099,252.099,909.8936,-148.0745,16.23308,58.58957,-9.534762,16.23308,0,0,5,0.8508293,1.644411,0,0,0,6.631231,0.3323833,6.774221,13.73784,0,3984.573,-,-
+3259.5,12047.3342551589,19.9999992370605,19.9999992370605,0,0.6542121,614.8951,252.099,252.099,919.4797,-148.0745,16.23308,59.20683,-9.534762,16.23308,0,0,5,0.8508293,1.644411,0,0,0,6.631231,0.3323833,6.774221,13.73784,0,3984.573,-,-
+3260.5,12052.8898105025,19.9999992370605,19.9999992370605,0,0.6542121,614.8951,252.099,252.099,919.4797,-148.0745,16.23308,59.20683,-9.534762,16.23308,0,0,5,0.8508293,1.644411,0,0,0,6.631231,0.3323833,6.774221,13.73784,0,3984.573,-,-
+3261.5,12058.4453658462,19.9999992370605,19.9999992370605,0,0.7321091,614.8951,264.88,264.88,919.4797,-148.0745,17.05606,59.20683,-9.534762,17.05606,0,0,5,0.8672899,1.644411,0,0,0,6.631196,0.3323833,7.580786,14.54436,0,4121.33,-,-
+3262.5,12064.0009211898,19.9999992370605,19.9999992370605,0,0.8100061,614.8951,277.6607,277.6607,924.2725,-148.0745,17.87904,59.51545,-9.534762,17.87904,0,0,5,0.8837495,1.64441,0,0,0,6.631156,0.3323833,8.387338,15.35088,0,4258.083,-,-
+3263.5,12069.5564765334,19.9999992370605,19.9999992370605,0,0.8100061,614.8951,277.6607,277.6607,929.0653,-148.0745,17.87904,59.82407,-9.534762,17.87904,0,0,5,0.8837495,1.64441,0,0,0,6.631156,0.3323833,8.387338,15.35088,0,4258.083,-,-
+3264.5,12075.112031877,19.9999992370605,19.9999992370605,0,0.8100061,614.8951,277.6607,277.6607,929.0653,-148.0745,17.87904,59.82407,-9.534762,17.87904,0,0,5,0.8837495,1.64441,0,0,0,6.631156,0.3323833,8.387338,15.35088,0,4258.083,-,-
+3265.5,12080.6675872207,19.9999992370605,19.9999992370605,0,0.9857272,614.8951,306.8536,306.8536,929.0653,-148.0745,19.75882,59.82407,-9.534762,19.75882,0,0,5,0.9213449,1.667329,0,0,0,6.631051,0.3323833,10.20671,17.17014,0,4570.447,-,-
+3266.5,12086.2231425643,19.9999992370605,19.9999992370605,0,0.9857272,614.8951,306.8536,306.8536,940.0127,-148.0745,19.75882,60.52898,-9.534762,19.75882,0,0,5,0.9213449,1.667329,0,0,0,6.631051,0.3323833,10.20671,17.17014,0,4570.447,-,-
+3267.5,12091.7786979079,19.9999992370605,19.9999992370605,0,0.9857272,614.8951,306.8536,306.8536,940.0127,-148.0745,19.75882,60.52898,-9.534762,19.75882,0,0,5,0.9213449,1.667329,0,0,0,6.631051,0.3323833,10.20671,17.17014,0,4570.447,-,-
+3268.5,12097.3342532516,19.9999992370605,19.9999992370605,0,0.9857272,614.8951,306.8536,306.8536,940.0127,-148.0745,19.75882,60.52898,-9.534762,19.75882,0,0,5,0.9213449,1.667329,0,0,0,6.631051,0.3323833,10.20671,17.17014,0,4570.447,-,-
+3269.5,12102.8898085952,19.9999992370605,19.9999992370605,0,0.9857272,614.8951,306.8536,306.8536,940.0127,-148.0745,19.75882,60.52898,-9.534762,19.75882,0,0,5,0.9213449,1.667329,0,0,0,6.631051,0.3323833,10.20671,17.17014,0,4570.447,-,-
+3270.5,12108.4453639388,19.9999992370605,19.9999992370605,0,0.9857272,614.8951,306.8536,306.8536,940.0127,-148.0745,19.75882,60.52898,-9.534762,19.75882,0,0,5,0.9213449,1.667329,0,0,0,6.631051,0.3323833,10.20671,17.17014,0,4570.447,-,-
+3271.5,12114.0009192824,19.9999992370605,19.9999992370605,0,0.9857272,614.8951,306.8536,306.8536,940.0127,-148.0745,19.75882,60.52898,-9.534762,19.75882,0,0,5,0.9213449,1.667329,0,0,0,6.631051,0.3323833,10.20671,17.17014,0,4570.447,-,-
+3272.5,12119.5564746261,19.9999992370605,19.9999992370605,0,0.9857272,614.8951,306.8536,306.8536,940.0127,-148.0745,19.75882,60.52898,-9.534762,19.75882,0,0,5,0.9213449,1.667329,0,0,0,6.631051,0.3323833,10.20671,17.17014,0,4570.447,-,-
+3273.5,12125.1120299697,19.9999992370605,19.9999992370605,0,0.9857272,614.8951,306.8536,306.8536,940.0127,-148.0745,19.75882,60.52898,-9.534762,19.75882,0,0,5,0.9213449,1.667329,0,0,0,6.631051,0.3323833,10.20671,17.17014,0,4570.447,-,-
+3274.5,12130.6675853133,19.9999992370605,19.9999992370605,0,0.9857272,614.8951,306.8536,306.8536,940.0127,-148.0745,19.75882,60.52898,-9.534762,19.75882,0,0,5,0.9213449,1.667329,0,0,0,6.631051,0.3323833,10.20671,17.17014,0,4570.447,-,-
+3275.5,12136.2231406569,19.9999992370605,19.9999992370605,0,0.9857272,614.8951,306.8536,306.8536,940.0127,-148.0745,19.75882,60.52898,-9.534762,19.75882,0,0,5,0.9213449,1.667329,0,0,0,6.631051,0.3323833,10.20671,17.17014,0,4570.447,-,-
+3276.5,12141.7786960006,19.9999992370605,19.9999992370605,0,1.10529,614.8951,326.7674,326.7674,940.0127,-148.0745,21.0411,60.52898,-9.534762,21.0411,0,0,5,0.9469907,1.686179,0,0,0,6.630969,0.3323833,11.44458,18.40793,0,4783.525,-,-
+3277.5,12147.3342513442,19.9999992370605,19.9999992370605,0,1.10529,614.8951,326.7674,326.7674,947.4802,-148.0745,21.0411,61.00983,-9.534762,21.0411,0,0,5,0.9469907,1.686179,0,0,0,6.630969,0.3323833,11.44458,18.40793,0,4783.525,-,-
+3278.5,12152.8898066878,19.9999992370605,19.9999992370605,0,1.10529,614.8951,326.7674,326.7674,947.4802,-148.0745,21.0411,61.00983,-9.534762,21.0411,0,0,5,0.9469907,1.686179,0,0,0,6.630969,0.3323833,11.44458,18.40793,0,4783.525,-,-
+3279.5,12158.4453620315,19.9999992370605,19.9999992370605,0,1.10529,614.8951,326.7674,326.7674,947.4802,-148.0745,21.0411,61.00983,-9.534762,21.0411,0,0,5,0.9469907,1.686179,0,0,0,6.630969,0.3323833,11.44458,18.40793,0,4783.525,-,-
+3280.5,12164.0009173751,19.9999992370605,19.9999992370605,0,1.10529,614.8951,326.7674,326.7674,947.4802,-148.0745,21.0411,61.00983,-9.534762,21.0411,0,0,5,0.9469907,1.686179,0,0,0,6.630969,0.3323833,11.44458,18.40793,0,4783.525,-,-
+3281.5,12169.5564727187,19.9999992370605,19.9999992370605,0,1.10529,614.8951,326.7674,326.7674,947.4802,-148.0745,21.0411,61.00983,-9.534762,21.0411,0,0,5,0.9469907,1.686179,0,0,0,6.630969,0.3323833,11.44458,18.40793,0,4783.525,-,-
+3282.5,12175.1120280623,19.9999992370605,19.9999992370605,0,1.10529,614.8951,326.7674,326.7674,947.4802,-148.0745,21.0411,61.00983,-9.534762,21.0411,0,0,5,0.9469907,1.686179,0,0,0,6.630969,0.3323833,11.44458,18.40793,0,4783.525,-,-
+3283.5,12180.667583406,19.9999992370605,19.9999992370605,0,1.10529,614.8951,326.7674,326.7674,947.4802,-148.0745,21.0411,61.00983,-9.534762,21.0411,0,0,5,0.9469907,1.686179,0,0,0,6.630969,0.3323833,11.44458,18.40793,0,4783.525,-,-
+3284.5,12186.2231387496,19.9999992370605,19.9999992370605,0,1.10529,614.8951,326.7674,326.7674,947.4802,-148.0745,21.0411,61.00983,-9.534762,21.0411,0,0,5,0.9469907,1.686179,0,0,0,6.630969,0.3323833,11.44458,18.40793,0,4783.525,-,-
+3285.5,12191.7786940932,19.9999992370605,19.9999992370605,0,1.10529,614.8951,326.7674,326.7674,947.4802,-148.0745,21.0411,61.00983,-9.534762,21.0411,0,0,5,0.9469907,1.686179,0,0,0,6.630969,0.3323833,11.44458,18.40793,0,4783.525,-,-
+3286.5,12197.3342494369,19.9999992370605,19.9999992370605,0,1.10529,614.8951,326.7674,326.7674,947.4802,-148.0745,21.0411,61.00983,-9.534762,21.0411,0,0,5,0.9469907,1.686179,0,0,0,6.630969,0.3323833,11.44458,18.40793,0,4783.525,-,-
+3287.5,12202.8898047805,19.9999992370605,19.9999992370605,0,1.10529,614.8951,326.7674,326.7674,947.4802,-148.0745,21.0411,61.00983,-9.534762,21.0411,0,0,5,0.9469907,1.686179,0,0,0,6.630969,0.3323833,11.44458,18.40793,0,4783.525,-,-
+3288.5,12208.4453601241,19.9999992370605,19.9999992370605,0,1.10529,614.8951,326.7674,326.7674,947.4802,-148.0745,21.0411,61.00983,-9.534762,21.0411,0,0,5,0.9469907,1.686179,0,0,0,6.630969,0.3323833,11.44458,18.40793,0,4783.525,-,-
+3289.5,12214.0009154677,19.9999992370605,19.9999992370605,0,1.10529,614.8951,326.7674,326.7674,947.4802,-148.0745,21.0411,61.00983,-9.534762,21.0411,0,0,5,0.9469907,1.686179,0,0,0,6.630969,0.3323833,11.44458,18.40793,0,4783.525,-,-
+3290.5,12219.5564708114,19.9999992370605,19.9999992370605,0,1.10529,614.8951,326.7674,326.7674,947.4802,-148.0745,21.0411,61.00983,-9.534762,21.0411,0,0,5,0.9469907,1.686179,0,0,0,6.630969,0.3323833,11.44458,18.40793,0,4783.525,-,-
+3291.5,12225.112026155,19.9999992370605,19.9999992370605,0,1.10529,614.8951,326.7674,326.7674,947.4802,-148.0745,21.0411,61.00983,-9.534762,21.0411,0,0,5,0.9469907,1.686179,0,0,0,6.630969,0.3323833,11.44458,18.40793,0,4783.525,-,-
+3292.5,12230.6675814986,19.9999992370605,19.9999992370605,0,1.10529,614.8951,326.7674,326.7674,947.4802,-148.0745,21.0411,61.00983,-9.534762,21.0411,0,0,5,0.9469907,1.686179,0,0,0,6.630969,0.3323833,11.44458,18.40793,0,4783.525,-,-
+3293.5,12236.2231368423,19.9999992370605,19.9999992370605,0,1.10529,614.8951,326.7674,326.7674,947.4802,-148.0745,21.0411,61.00983,-9.534762,21.0411,0,0,5,0.9469907,1.686179,0,0,0,6.630969,0.3323833,11.44458,18.40793,0,4783.525,-,-
+3294.5,12241.7786921859,19.9999992370605,19.9999992370605,0,1.10529,614.8951,326.7674,326.7674,947.4802,-148.0745,21.0411,61.00983,-9.534762,21.0411,0,0,5,0.9469907,1.686179,0,0,0,6.630969,0.3323833,11.44458,18.40793,0,4783.525,-,-
+3295.5,12247.3342475295,19.9999992370605,19.9999992370605,0,1.10529,614.8951,326.7674,326.7674,947.4802,-148.0745,21.0411,61.00983,-9.534762,21.0411,0,0,5,0.9469907,1.686179,0,0,0,6.630969,0.3323833,11.44458,18.40793,0,4783.525,-,-
+3296.5,12252.8898028731,19.9999992370605,19.9999992370605,0,1.10529,614.8951,326.7674,326.7674,947.4802,-148.0745,21.0411,61.00983,-9.534762,21.0411,0,0,5,0.9469907,1.686179,0,0,0,6.630969,0.3323833,11.44458,18.40793,0,4783.525,-,-
+3297.5,12258.4453582168,19.9999992370605,19.9999992370605,0,1.10529,614.8951,326.7674,326.7674,947.4802,-148.0745,21.0411,61.00983,-9.534762,21.0411,0,0,5,0.9469907,1.686179,0,0,0,6.630969,0.3323833,11.44458,18.40793,0,4783.525,-,-
+3298.5,12264.0009135604,19.9999992370605,19.9999992370605,0,1.10529,614.8951,326.7674,326.7674,947.4802,-148.0745,21.0411,61.00983,-9.534762,21.0411,0,0,5,0.9469907,1.686179,0,0,0,6.630969,0.3323833,11.44458,18.40793,0,4783.525,-,-
+3299.5,12269.556468904,19.9999992370605,19.9999992370605,0,1.10529,614.8951,326.7674,326.7674,947.4802,-148.0745,21.0411,61.00983,-9.534762,21.0411,0,0,5,0.9469907,1.686179,0,0,0,6.630969,0.3323833,11.44458,18.40793,0,4783.525,-,-
+3300.5,12275.1120242476,19.9999992370605,19.9999992370605,0,1.10529,614.8951,326.7674,326.7674,947.4802,-148.0745,21.0411,61.00983,-9.534762,21.0411,0,0,5,0.9469907,1.686179,0,0,0,6.630969,0.3323833,11.44458,18.40793,0,4783.525,-,-
+3301.5,12280.6675795913,19.9999992370605,19.9999992370605,0,1.10529,614.8951,326.7674,326.7674,947.4802,-148.0745,21.0411,61.00983,-9.534762,21.0411,0,0,5,0.9469907,1.686179,0,0,0,6.630969,0.3323833,11.44458,18.40793,0,4783.525,-,-
+3302.5,12286.2231349349,19.9999992370605,19.9999992370605,0,1.10529,614.8951,326.7674,326.7674,947.4802,-148.0745,21.0411,61.00983,-9.534762,21.0411,0,0,5,0.9469907,1.686179,0,0,0,6.630969,0.3323833,11.44458,18.40793,0,4783.525,-,-
+3303.5,12291.7786902785,19.9999992370605,19.9999992370605,0,1.10529,614.8951,326.7674,326.7674,947.4802,-148.0745,21.0411,61.00983,-9.534762,21.0411,0,0,5,0.9469907,1.686179,0,0,0,6.630969,0.3323833,11.44458,18.40793,0,4783.525,-,-
+3304.5,12297.3342456222,19.9999992370605,19.9999992370605,0,1.10529,614.8951,326.7674,326.7674,947.4802,-148.0745,21.0411,61.00983,-9.534762,21.0411,0,0,5,0.9469907,1.686179,0,0,0,6.630969,0.3323833,11.44458,18.40793,0,4783.525,-,-
+3305.5,12302.8898009658,19.9999992370605,19.9999992370605,0,0.9962083,614.8951,308.5993,308.5993,947.4802,-148.0745,19.87123,61.00983,-9.534762,19.87123,0,0,5,0.9235926,1.668982,0,0,0,6.631044,0.3323833,10.31522,17.27865,0,4589.126,-,-
+3306.5,12308.4453563094,19.9999992370605,19.9999992370605,0,0.9962083,614.8951,308.5993,308.5993,940.6673,-148.0745,19.87123,60.57114,-9.534762,19.87123,0,0,5,0.9235926,1.668982,0,0,0,6.631044,0.3323833,10.31522,17.27865,0,4589.126,-,-
+3307.5,12314.000911653,19.9999992370605,19.9999992370605,0,0.9962083,614.8951,308.5993,308.5993,940.6673,-148.0745,19.87123,60.57114,-9.534762,19.87123,0,0,5,0.9235926,1.668982,0,0,0,6.631044,0.3323833,10.31522,17.27865,0,4589.126,-,-
+3308.5,12319.5564669967,19.9999992370605,19.9999992370605,0,0.9962083,614.8951,308.5993,308.5993,940.6673,-148.0745,19.87123,60.57114,-9.534762,19.87123,0,0,5,0.9235926,1.668982,0,0,0,6.631044,0.3323833,10.31522,17.27865,0,4589.126,-,-
+3309.5,12325.1120223403,19.9999992370605,19.9999992370605,0,0.9962083,614.8951,308.5993,308.5993,940.6673,-148.0745,19.87123,60.57114,-9.534762,19.87123,0,0,5,0.9235926,1.668982,0,0,0,6.631044,0.3323833,10.31522,17.27865,0,4589.126,-,-
+3310.5,12330.6675776839,19.9999992370605,19.9999992370605,0,0.9962083,614.8951,308.5993,308.5993,940.6673,-148.0745,19.87123,60.57114,-9.534762,19.87123,0,0,5,0.9235926,1.668982,0,0,0,6.631044,0.3323833,10.31522,17.27865,0,4589.126,-,-
+3311.5,12336.2231330276,19.9999992370605,19.9999992370605,0,0.9962083,614.8951,308.5993,308.5993,940.6673,-148.0745,19.87123,60.57114,-9.534762,19.87123,0,0,5,0.9235926,1.668982,0,0,0,6.631044,0.3323833,10.31522,17.27865,0,4589.126,-,-
+3312.5,12341.7786883712,19.9999992370605,19.9999992370605,0,0.8877219,614.8951,290.5297,290.5297,940.6673,-148.0745,18.70769,60.57114,-9.534762,18.70769,0,0,5,0.9003225,1.651877,0,0,0,6.631112,0.3323833,9.191998,16.15549,0,4395.781,-,-
+3313.5,12347.3342437148,19.9999992370605,19.9999992370605,0,0.8877219,614.8951,290.5297,290.5297,933.8912,-148.0745,18.70769,60.13481,-9.534762,18.70769,0,0,5,0.9003225,1.651877,0,0,0,6.631112,0.3323833,9.191998,16.15549,0,4395.781,-,-
+3314.5,12352.8897990584,19.9999992370605,19.9999992370605,0,0.8877219,614.8951,290.5297,290.5297,933.8912,-148.0745,18.70769,60.13481,-9.534762,18.70769,0,0,5,0.9003225,1.651877,0,0,0,6.631112,0.3323833,9.191998,16.15549,0,4395.781,-,-
+3315.5,12358.4453544021,19.9999992370605,19.9999992370605,0,0.8877219,614.8951,290.5297,290.5297,933.8912,-148.0745,18.70769,60.13481,-9.534762,18.70769,0,0,5,0.9003225,1.651877,0,0,0,6.631112,0.3323833,9.191998,16.15549,0,4395.781,-,-
+3316.5,12364.0009097457,19.9999992370605,19.9999992370605,0,0.8877219,614.8951,290.5297,290.5297,933.8912,-148.0745,18.70769,60.13481,-9.534762,18.70769,0,0,5,0.9003225,1.651877,0,0,0,6.631112,0.3323833,9.191998,16.15549,0,4395.781,-,-
+3317.5,12369.5564650893,19.9999992370605,19.9999992370605,0,0.8877219,614.8951,290.5297,290.5297,933.8912,-148.0745,18.70769,60.13481,-9.534762,18.70769,0,0,5,0.9003225,1.651877,0,0,0,6.631112,0.3323833,9.191998,16.15549,0,4395.781,-,-
+3318.5,12375.1120204329,19.9999992370605,19.9999992370605,0,0.8877219,614.8951,290.5297,290.5297,933.8912,-148.0745,18.70769,60.13481,-9.534762,18.70769,0,0,5,0.9003225,1.651877,0,0,0,6.631112,0.3323833,9.191998,16.15549,0,4395.781,-,-
+3319.5,12380.6675757766,19.9999992370605,19.9999992370605,0,0.8877219,614.8951,290.5297,290.5297,933.8912,-148.0745,18.70769,60.13481,-9.534762,18.70769,0,0,5,0.9003225,1.651877,0,0,0,6.631112,0.3323833,9.191998,16.15549,0,4395.781,-,-
+3320.5,12386.2231311202,19.9999992370605,19.9999992370605,0,0.8877219,614.8951,290.5297,290.5297,933.8912,-148.0745,18.70769,60.13481,-9.534762,18.70769,0,0,5,0.9003225,1.651877,0,0,0,6.631112,0.3323833,9.191998,16.15549,0,4395.781,-,-
+3321.5,12391.7786864638,19.9999992370605,19.9999992370605,0,0.8877219,614.8951,290.5297,290.5297,933.8912,-148.0745,18.70769,60.13481,-9.534762,18.70769,0,0,5,0.9003225,1.651877,0,0,0,6.631112,0.3323833,9.191998,16.15549,0,4395.781,-,-
+3322.5,12397.3342418075,19.9999992370605,19.9999992370605,0,0.8877219,614.8951,290.5297,290.5297,933.8912,-148.0745,18.70769,60.13481,-9.534762,18.70769,0,0,5,0.9003225,1.651877,0,0,0,6.631112,0.3323833,9.191998,16.15549,0,4395.781,-,-
+3323.5,12402.8897971511,19.9999992370605,19.9999992370605,0,0.8877219,614.8951,290.5297,290.5297,933.8912,-148.0745,18.70769,60.13481,-9.534762,18.70769,0,0,5,0.9003225,1.651877,0,0,0,6.631112,0.3323833,9.191998,16.15549,0,4395.781,-,-
+3324.5,12408.4453524947,19.9999992370605,19.9999992370605,0,0.8017505,614.8951,276.3062,276.3062,933.8912,-148.0745,17.79182,60.13481,-9.534762,17.79182,0,0,5,0.8820043,1.644411,0,0,0,6.63116,0.3323833,8.30186,15.2654,0,4243.59,-,-
+3325.5,12414.0009078383,19.9999992370605,19.9999992370605,0,0.7157792,614.8951,262.2007,262.2007,928.5574,-148.0745,16.88354,59.79136,-9.534762,16.88354,0,0,5,0.8638391,1.64441,0,0,0,6.631204,0.3323833,7.411703,14.37529,0,4092.661,-,-
+3326.5,12419.556463182,19.9999992370605,19.9999992370605,0,0.7157792,614.8951,262.2007,262.2007,923.2678,-148.0745,16.88354,59.45076,-9.534762,16.88354,0,0,5,0.8638391,1.64441,0,0,0,6.631204,0.3323833,7.411703,14.37529,0,4092.661,-,-
+3327.5,12425.1120185256,19.9999992370605,19.9999992370605,0,0.7157792,614.8951,262.2007,262.2007,923.2678,-148.0745,16.88354,59.45076,-9.534762,16.88354,0,0,5,0.8638391,1.64441,0,0,0,6.631204,0.3323833,7.411703,14.37529,0,4092.661,-,-
+3328.5,12430.6675738692,19.9999992370605,19.9999992370605,0,0.5513933,614.8951,235.2286,235.2286,923.2678,-148.0745,15.14676,59.45076,-9.534762,15.14676,0,0,5,0.8291038,1.644411,0,0,0,6.631273,0.3323833,5.70959,12.67325,0,3804.059,-,-
+3329.5,12436.2231292129,19.9999992370605,19.9999992370605,0,0.5513933,614.8951,235.2286,235.2286,913.1533,-148.0745,15.14676,58.79946,-9.534762,15.14676,0,0,5,0.8291038,1.644411,0,0,0,6.631273,0.3323833,5.70959,12.67325,0,3804.059,-,-
+3330.5,12441.7786845565,19.9999992370605,19.9999992370605,0,0.5513933,614.8951,235.2286,235.2286,913.1533,-148.0745,15.14676,58.79946,-9.534762,15.14676,0,0,5,0.8291038,1.644411,0,0,0,6.631273,0.3323833,5.70959,12.67325,0,3804.059,-,-
+3331.5,12447.3342399001,19.9999992370605,19.9999992370605,0,0.5513933,614.8951,235.2286,235.2286,913.1533,-148.0745,15.14676,58.79946,-9.534762,15.14676,0,0,5,0.8291038,1.644411,0,0,0,6.631273,0.3323833,5.70959,12.67325,0,3804.059,-,-
+3332.5,12452.8897952437,19.9999992370605,19.9999992370605,0,0.3870073,614.8951,208.2554,208.2554,913.1533,-148.0745,13.40991,58.79946,-9.534762,13.40991,0,0,5,0.7943661,1.64441,0,0,0,6.631324,0.3323833,4.007431,10.97114,0,3515.447,-,-
+3333.5,12458.4453505874,19.9999992370605,19.9999992370605,0,0.3870073,614.8951,208.2554,208.2554,903.0384,-148.0745,13.40991,58.14815,-9.534762,13.40991,0,0,5,0.7943661,1.64441,0,0,0,6.631324,0.3323833,4.007431,10.97114,0,3515.447,-,-
+3334.5,12464.000905931,19.9999992370605,19.9999992370605,0,0.3870073,614.8951,208.2554,208.2554,903.0384,-148.0745,13.40991,58.14815,-9.534762,13.40991,0,0,5,0.7943661,1.64441,0,0,0,6.631324,0.3323833,4.007431,10.97114,0,3515.447,-,-
+3335.5,12469.5564612746,19.9999992370605,19.9999992370605,0,0.2226214,614.8951,181.2815,181.2815,903.0384,-148.0745,11.67302,58.14815,-9.534762,11.67302,0,0,5,0.7596288,1.644411,0,0,0,6.631357,0.3323833,2.305239,9.268979,0,3211.548,-,-
+3336.5,12475.1120166183,19.9999992370605,19.9999992370605,0,0.2226214,614.8951,181.2815,181.2815,892.9232,-148.0745,11.67302,57.49681,-9.534762,11.67302,0,0,5,0.7596288,1.644411,0,0,0,6.631357,0.3323833,2.305239,9.268979,0,3211.548,-,-
+3337.5,12480.6675719619,19.9999992370605,19.9999992370605,0,0.2226214,614.8951,181.2815,181.2815,892.9232,-148.0745,11.67302,57.49681,-9.534762,11.67302,0,0,5,0.7596288,1.644411,0,0,0,6.631357,0.3323833,2.305239,9.268979,0,3211.548,-,-
+3338.5,12486.2231273055,19.9999992370605,19.9999992370605,0,0.2226214,614.8951,181.2815,181.2815,892.9232,-148.0745,11.67302,57.49681,-9.534762,11.67302,0,0,5,0.7596288,1.644411,0,0,0,6.631357,0.3323833,2.305239,9.268979,0,3211.548,-,-
+3339.5,12491.7786826491,19.9999992370605,19.9999992370605,0,0.0582,614.8951,154.3012,154.3012,892.9232,-148.0745,9.935709,57.49681,-9.534762,9.935709,0,0,5,0.7248819,1.644411,0,0,0,6.631372,0.3323833,0.6026609,7.566417,0,2955.369,-,-
+3340.5,12497.3342379928,19.9999992370605,19.9999992370605,0,0.0582,614.8951,154.3012,154.3012,882.8055,-148.0745,9.935709,56.84532,-9.534762,9.935709,0,0,5,0.7248819,1.644411,0,0,0,6.631372,0.3323833,0.6026609,7.566417,0,2955.369,-,-
+3341.5,12502.8897933364,19.9999992370605,19.9999992370605,0,0.0582,614.8951,154.3012,154.3012,882.8055,-148.0745,9.935709,56.84532,-9.534762,9.935709,0,0,5,0.7248819,1.644411,0,0,0,6.631372,0.3323833,0.6026609,7.566417,0,2955.369,-,-
+3342.5,12508.44534868,19.9999992370605,19.9999992370605,0,-0.02397524,614.8951,140.8167,140.8167,882.8055,-148.0745,9.067421,56.84532,-9.534762,9.067421,0,0,5,0.7075168,1.644411,0,0,0,6.631373,0.3323833,-0.2482636,6.715493,0,2827.334,-,-
+3343.5,12514.0009040236,19.9999992370605,19.9999992370605,0,-0.1061505,614.8951,127.3321,127.3321,877.7488,-148.0745,8.199127,56.51971,-9.534762,8.199127,0,0,5,0.6901505,1.644411,0,0,0,6.63137,0.3323833,-1.099187,5.864565,0,2699.298,-,-
+3344.5,12519.5564593673,19.9999992370605,19.9999992370605,0,-0.1061505,614.8951,127.3321,127.3321,872.6921,-148.0745,8.199127,56.1941,-9.534762,8.199127,0,0,5,0.6901505,1.644411,0,0,0,6.63137,0.3323833,-1.099187,5.864565,0,2699.298,-,-
+3345.5,12525.1120147109,19.9999992370605,19.9999992370605,0,-0.1061505,614.8951,127.3321,127.3321,872.6921,-148.0745,8.199127,56.1941,-9.534762,8.199127,0,0,5,0.6901505,1.644411,0,0,0,6.63137,0.3323833,-1.099187,5.864565,0,2699.298,-,-
+3346.5,12530.6675700545,19.9999992370605,19.9999992370605,0,-0.2705364,614.8951,100.3571,100.3571,872.6921,-148.0745,6.46216,56.1941,-9.534762,6.46216,0,0,5,0.6554113,1.644411,0,0,0,6.631349,0.3323833,-2.801394,4.162338,0,2443.17,-,-
+3347.5,12536.2231253982,19.9999992370605,19.9999992370605,0,-0.2705364,614.8951,100.3571,100.3571,862.5764,-148.0745,6.46216,55.54274,-9.534762,6.46216,0,0,5,0.6554113,1.644411,0,0,0,6.631349,0.3323833,-2.801394,4.162338,0,2443.17,-,-
+3348.5,12541.7786807418,19.9999992370605,19.9999992370605,0,-0.2705364,614.8951,100.3571,100.3571,862.5764,-148.0745,6.46216,55.54274,-9.534762,6.46216,0,0,5,0.6554113,1.644411,0,0,0,6.631349,0.3323833,-2.801394,4.162338,0,2443.17,-,-
+3349.5,12547.3342360854,19.9999992370605,19.9999992370605,0,-0.2705364,614.8951,100.3571,100.3571,862.5764,-148.0745,6.46216,55.54274,-9.534762,6.46216,0,0,5,0.6554113,1.644411,0,0,0,6.631349,0.3323833,-2.801394,4.162338,0,2443.17,-,-
+3350.5,12552.889791429,19.9999992370605,19.9999992370605,0,-0.4349223,614.8951,73.38214,73.38214,862.5764,-148.0745,4.725199,55.54274,-9.534762,4.725199,0,0,5,0.620672,1.644411,0,0,0,6.631311,0.3323833,-4.503578,2.460116,0,2187.043,-,-
+3351.5,12558.4453467727,19.9999992370605,19.9999992370605,0,-0.4349223,614.8951,73.38214,73.38214,852.4609,-148.0745,4.725199,54.89138,-9.534762,4.725199,0,0,5,0.620672,1.644411,0,0,0,6.631311,0.3323833,-4.503578,2.460116,0,2187.043,-,-
+3352.5,12564.0009021163,19.9999992370605,19.9999992370605,0,-0.4349223,614.8951,73.38214,73.38214,852.4609,-148.0745,4.725199,54.89138,-9.534762,4.725199,0,0,5,0.620672,1.644411,0,0,0,6.631311,0.3323833,-4.503578,2.460116,0,2187.043,-,-
+3353.5,12569.5564574599,19.9999992370605,19.9999992370605,0,-0.5993083,614.8951,46.51421,46.51421,852.4609,-148.0745,2.995127,54.89138,-9.534762,2.995127,0,0,5,0.5928044,1.644411,0,0,0,6.631254,0.3323833,-6.205725,0.7579122,0,1931.932,-,-
+3354.5,12575.1120128036,19.9999992370605,19.9999992370605,0,-0.5993083,614.8951,46.51421,46.51421,842.3853,-148.0745,2.995127,54.2426,-9.534762,2.995127,0,0,5,0.5928044,1.644411,0,0,0,6.631254,0.3323833,-6.205725,0.7579122,0,1931.932,-,-
+3355.5,12580.6675681472,19.9999992370605,19.9999992370605,0,-0.5993083,614.8951,46.51421,46.51421,842.3853,-148.0745,2.995127,54.2426,-9.534762,2.995127,0,0,5,0.5928044,1.644411,0,0,0,6.631254,0.3323833,-6.205725,0.7579122,0,1931.932,-,-
+3356.5,12586.2231234908,19.9999992370605,19.9999992370605,0,-0.5993083,614.8951,46.51421,46.51421,842.3853,-148.0745,2.995127,54.2426,-9.534762,2.995127,0,0,5,0.5928044,1.644411,0,0,0,6.631254,0.3323833,-6.205725,0.7579122,0,1931.932,-,-
+3357.5,12591.7786788344,19.9999992370605,19.9999992370605,0,-0.7636942,614.8951,20.34129,20.34129,842.3853,-148.0745,1.30981,54.2426,-9.534762,1.30981,0,0,5,0.6096575,1.644411,0,0,0,6.63118,0.3323833,-7.907822,-0.9442587,0,1683.42,-,-
+3358.5,12597.3342341781,19.9999992370605,19.9999992370605,0,-0.7636942,614.8951,20.34129,20.34129,832.5706,-148.0745,1.30981,53.61061,-9.534762,1.30981,0,0,5,0.6096575,1.644411,0,0,0,6.63118,0.3323833,-7.907822,-0.9442587,0,1683.42,-,-
+3359.5,12602.8897895217,19.9999992370605,19.9999992370605,0,-0.7636942,614.8951,20.34129,20.34129,832.5706,-148.0745,1.30981,53.61061,-9.534762,1.30981,0,0,5,0.6096575,1.644411,0,0,0,6.63118,0.3323833,-7.907822,-0.9442587,0,1683.42,-,-
+3360.5,12608.4453448653,19.9999992370605,19.9999992370605,0,-0.7636942,614.8951,20.34129,20.34129,832.5706,-148.0745,1.30981,53.61061,-9.534762,1.30981,0,0,5,0.6096575,1.644411,0,0,0,6.63118,0.3323833,-7.907822,-0.9442587,0,1683.42,-,-
+3361.5,12614.000900209,19.9999992370605,19.9999992370605,0,-0.7636942,614.8951,20.34129,20.34129,832.5706,-148.0745,1.30981,53.61061,-9.534762,1.30981,0,0,5,0.6096575,1.644411,0,0,0,6.63118,0.3323833,-7.907822,-0.9442587,0,1683.42,-,-
+3362.5,12619.5564555526,19.9999992370605,19.9999992370605,0,-0.7636942,614.8951,20.34129,20.34129,832.5706,-148.0745,1.30981,53.61061,-9.534762,1.30981,0,0,5,0.6096575,1.644411,0,0,0,6.63118,0.3323833,-7.907822,-0.9442587,0,1683.42,-,-
+3363.5,12625.1120108962,19.9999992370605,19.9999992370605,0,-0.7636942,614.8951,20.34129,20.34129,832.5706,-148.0745,1.30981,53.61061,-9.534762,1.30981,0,0,5,0.6096575,1.644411,0,0,0,6.63118,0.3323833,-7.907822,-0.9442587,0,1683.42,-,-
+3364.5,12630.6675662398,19.9999992370605,19.9999992370605,0,-0.7636942,614.8951,20.34129,20.34129,832.5706,-148.0745,1.30981,53.61061,-9.534762,1.30981,0,0,5,0.6096575,1.644411,0,0,0,6.63118,0.3323833,-7.907822,-0.9442587,0,1683.42,-,-
+3365.5,12636.2231215835,19.9999992370605,19.9999992370605,0,-0.7636942,614.8951,20.34129,20.34129,832.5706,-148.0745,1.30981,53.61061,-9.534762,1.30981,0,0,5,0.6096575,1.644411,0,0,0,6.63118,0.3323833,-7.907822,-0.9442587,0,1683.42,-,-
+3366.5,12641.7786769271,19.9999992370605,19.9999992370605,0,-0.7636942,614.8951,20.34129,20.34129,832.5706,-148.0745,1.30981,53.61061,-9.534762,1.30981,0,0,5,0.6096575,1.644411,0,0,0,6.63118,0.3323833,-7.907822,-0.9442587,0,1683.42,-,-
+3367.5,12647.3342322707,19.9999992370605,19.9999992370605,0,-0.7636942,614.8951,20.34129,20.34129,832.5706,-148.0745,1.30981,53.61061,-9.534762,1.30981,0,0,5,0.6096575,1.644411,0,0,0,6.63118,0.3323833,-7.907822,-0.9442587,0,1683.42,-,-
+3368.5,12652.8897876143,19.9999992370605,19.9999992370605,0,-0.8740336,614.8951,2.773833,2.773833,832.5706,-148.0745,0.1786118,53.61061,-9.534762,0.1786118,0,0,5,0.6209695,1.644411,0,0,0,6.63112,0.3323833,-9.050272,-2.086769,0,1516.617,-,-
+3369.5,12658.445342958,19.9999992370605,19.9999992370605,0,-0.9248866,614.8951,-5.322497,-5.322497,825.9828,-148.0745,-0.3427244,53.18641,-9.534762,-0.3427244,0,0,5,0.6261829,1.644411,0,0,0,6.63109,0.3323833,-9.576791,-2.613318,0,1437.81,-,-
+3370.5,12664.0008983016,19.9999992370605,19.9999992370605,0,-0.9757396,614.8951,-13.41872,-13.41872,822.9466,-148.0745,-0.864054,52.99091,-9.534762,-0.864054,0,0,5,0.6313962,1.644411,0,0,0,6.631058,0.3323833,-10.1033,-3.139861,0,1357.997,-,-
+3371.5,12669.5564536452,19.9999992370605,19.9999992370605,0,-1.077446,614.8951,-29.61093,-29.61093,819.9105,-148.0745,-1.906697,52.79541,-9.534762,-1.906697,0,0,5,0.6418225,1.644411,0,0,0,6.630989,0.3323833,-11.1563,-4.192931,0,1198.372,-,-
+3372.5,12675.1120089889,19.9999992370605,19.9999992370605,0,-1.077446,614.8951,-29.61093,-29.61093,813.8384,-148.0745,-1.906697,52.40441,-9.534762,-1.906697,0,0,5,0.6418225,1.644411,0,0,0,6.630989,0.3323833,-11.1563,-4.192931,0,1198.372,-,-
+3373.5,12680.6675643325,19.9999992370605,19.9999992370605,0,-1.179152,614.8951,-45.80268,-45.80268,813.8384,-148.0745,-2.949311,52.40441,-9.534762,-2.949311,0,0,5,0.6522487,1.644411,0,0,0,6.630912,0.3323833,-12.20927,-5.24597,0,1038.752,-,-
+3374.5,12686.2231196761,19.9999992370605,19.9999992370605,0,-1.179152,614.8951,-45.80268,-45.80268,807.7665,-148.0745,-2.949311,52.01344,-9.534762,-2.949311,0,0,5,0.6522487,1.644411,0,0,0,6.630912,0.3323833,-12.20927,-5.24597,0,1038.752,-,-
+3375.5,12691.7786750197,19.9999992370605,19.9999992370605,0,-1.280858,614.8951,-61.99396,-61.99396,807.7665,-148.0745,-3.991895,52.01344,-9.534762,-3.991895,0,0,5,0.6626745,1.644411,0,0,0,6.630829,0.3323833,-13.26219,-6.29898,0,879.1366,-,-
+3376.5,12697.3342303634,19.9999992370605,19.9999992370605,0,-1.280858,614.8951,-61.99396,-61.99396,801.6948,-148.0745,-3.991895,51.62247,-9.534762,-3.991895,0,0,5,0.6626745,1.644411,0,0,0,6.630829,0.3323833,-13.26219,-6.29898,0,879.1366,-,-
+3377.5,12702.889785707,19.9999992370605,19.9999992370605,0,-1.382564,614.8951,-78.18472,-78.18472,801.6948,-148.0745,-5.034445,51.62247,-9.534762,-5.034445,0,0,5,0.6731001,1.644411,0,0,0,6.63074,0.3323833,-14.31508,-7.351956,0,719.5264,-,-
+3378.5,12708.4453410506,19.9999992370605,19.9999992370605,0,-1.433417,614.8951,-86.27988,-86.27988,795.6232,-148.0745,-5.555706,51.23151,-9.534762,-5.555706,0,0,5,0.6783128,1.644411,0,0,0,6.630692,0.3323833,-14.84151,-7.878429,0,639.7234,-,-
+3379.5,12714.0008963943,19.9999992370605,19.9999992370605,0,-1.48427,614.8951,-94.37492,-94.37492,792.5876,-148.0745,-6.076958,51.03604,-9.534762,-6.076958,0,0,5,0.6835253,1.644411,0,0,0,6.630643,0.3323833,-15.36792,-8.404894,0,559.9217,-,-
+3380.5,12719.5564517379,19.9999992370605,19.9999992370605,0,-1.585976,614.8951,-110.5645,-110.5645,789.5519,-148.0745,-7.119431,50.84057,-9.534762,-7.119431,0,0,5,0.69395,1.644411,0,0,0,6.630539,0.3323833,-16.42072,-9.457792,0,400.3232,-,-
+3381.5,12725.1120070815,19.9999992370605,19.9999992370605,0,-1.585976,614.8951,-110.5645,-110.5645,783.4808,-148.0745,-7.119431,50.44964,-9.534762,-7.119431,0,0,5,0.69395,1.644411,0,0,0,6.630539,0.3323833,-16.42072,-9.457792,0,400.3232,-,-
+3382.5,12730.6675624251,19.9999992370605,19.9999992370605,0,-1.687682,614.8951,-126.7533,-126.7533,783.4808,-148.0745,-8.16186,50.44964,-9.534762,-8.16186,0,0,5,0.7043746,1.644411,0,0,0,6.630429,0.3323833,-17.47346,-10.51064,0,240.7316,-,-
+3383.5,12736.2231177688,19.9999992370605,19.9999992370605,0,-1.687682,614.8951,-126.7533,-126.7533,777.41,-148.0745,-8.16186,50.05873,-9.534762,-8.16186,0,0,5,0.7043746,1.644411,0,0,0,6.630429,0.3323833,-17.47346,-10.51064,0,240.7316,-,-
+3384.5,12741.7786731124,19.9999992370605,19.9999992370605,0,-1.789388,614.8951,-142.9415,-142.9415,777.41,-148.0745,-9.20424,50.05873,-9.534762,-9.20424,0,0,5,0.7147982,1.644411,0,0,0,6.630312,0.3323833,-18.52614,-11.56345,0,64.73103,-,-
+3385.5,12747.334228456,19.9999992370605,19.9999992370605,0,-1.789388,614.8951,-142.9415,-142.9415,771.3395,-148.0745,-9.20424,49.66784,-9.534762,-9.20424,0,0,5,0.7147982,1.644411,0,0,0,6.630312,0.3323833,-18.52614,-11.56345,0,64.73103,-,-
+3386.5,12752.8897837996,19.9999992370605,19.9999992370605,0,-1.891094,614.8951,-148.0745,-148.0745,771.3395,-148.0745,-9.534762,49.66784,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.630188,0.3323833,-19.57878,-12.6162,-0.7189274,0,-,-
+3387.5,12758.4453391433,19.9999992370605,19.9999992370605,0,-1.941947,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.630124,0.3323833,-20.10507,-13.14256,-1.245284,0,-,-
+3388.5,12764.0008944869,19.9999992370605,19.9999992370605,0,-1.9928,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.630057,0.3323833,-20.63135,-13.66891,-1.771628,0,-,-
+3389.5,12769.5564498305,19.9999992370605,19.9999992370605,0,-2.094506,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.62992,0.3323833,-21.68385,-14.72155,-2.824273,0,-,-
+3390.5,12775.1120051742,19.9999992370605,19.9999992370605,0,-2.094506,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.62992,0.3323833,-21.68385,-14.72155,-2.824273,0,-,-
+3391.5,12780.6675605178,19.9999992370605,19.9999992370605,0,-2.196212,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.629775,0.3323833,-22.73629,-15.77413,-3.876855,0,-,-
+3392.5,12786.2231158614,19.9999992370605,19.9999992370605,0,-2.196212,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.629775,0.3323833,-22.73629,-15.77413,-3.876855,0,-,-
+3393.5,12791.778671205,19.9999992370605,19.9999992370605,0,-2.297918,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.629623,0.3323833,-23.78866,-16.82665,-4.929376,0,-,-
+3394.5,12797.3342265487,19.9999992370605,19.9999992370605,0,-2.297918,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.629623,0.3323833,-23.78866,-16.82665,-4.929376,0,-,-
+3395.5,12802.8897818923,19.9999992370605,19.9999992370605,0,-2.399624,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.629465,0.3323833,-24.84095,-17.8791,-5.981828,0,-,-
+3396.5,12808.4453372359,19.9999992370605,19.9999992370605,0,-2.450477,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.629383,0.3323833,-25.36707,-18.40531,-6.508031,0,-,-
+3397.5,12814.0008925796,19.9999992370605,19.9999992370605,0,-2.50133,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.6293,0.3323833,-25.89317,-18.93149,-7.034213,0,-,-
+3398.5,12819.5564479232,19.9999992370605,19.9999992370605,0,-2.603036,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.629128,0.3323833,-26.94531,-19.9838,-8.086522,0,-,-
+3399.5,12825.1120032668,19.9999992370605,19.9999992370605,0,-2.603036,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.629128,0.3323833,-26.94531,-19.9838,-8.086522,0,-,-
+3400.5,12830.6675586104,19.9999992370605,19.9999992370605,0,-2.704742,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628949,0.3323833,-27.99737,-21.03603,-9.138757,0,-,-
+3401.5,12836.2231139541,19.9999992370605,19.9999992370605,0,-2.704742,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628949,0.3323833,-27.99737,-21.03603,-9.138757,0,-,-
+3402.5,12841.7786692977,19.9999992370605,19.9999992370605,0,-2.806448,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628764,0.3323833,-29.04933,-22.08819,-10.19091,0,-,-
+3403.5,12847.3342246413,19.9999992370605,19.9999992370605,0,-2.806448,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628764,0.3323833,-29.04933,-22.08819,-10.19091,0,-,-
+3404.5,12852.889779985,19.9999992370605,19.9999992370605,0,-2.806448,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628764,0.3323833,-29.04933,-22.08819,-10.19091,0,-,-
+3405.5,12858.4453353286,19.9999992370605,19.9999992370605,0,-2.806448,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628764,0.3323833,-29.04933,-22.08819,-10.19091,0,-,-
+3406.5,12864.0008906722,19.9999992370605,19.9999992370605,0,-2.806448,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628764,0.3323833,-29.04933,-22.08819,-10.19091,0,-,-
+3407.5,12869.5564460158,19.9999992370605,19.9999992370605,0,-2.806448,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628764,0.3323833,-29.04933,-22.08819,-10.19091,0,-,-
+3408.5,12875.1120013595,19.9999992370605,19.9999992370605,0,-2.806448,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628764,0.3323833,-29.04933,-22.08819,-10.19091,0,-,-
+3409.5,12880.6675567031,19.9999992370605,19.9999992370605,0,-2.806448,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628764,0.3323833,-29.04933,-22.08819,-10.19091,0,-,-
+3410.5,12886.2231120467,19.9999992370605,19.9999992370605,0,-2.806448,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628764,0.3323833,-29.04933,-22.08819,-10.19091,0,-,-
+3411.5,12891.7786673903,19.9999992370605,19.9999992370605,0,-2.806448,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628764,0.3323833,-29.04933,-22.08819,-10.19091,0,-,-
+3412.5,12897.334222734,19.9999992370605,19.9999992370605,0,-2.806448,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628764,0.3323833,-29.04933,-22.08819,-10.19091,0,-,-
+3413.5,12902.8897780776,19.9999992370605,19.9999992370605,0,-2.806448,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628764,0.3323833,-29.04933,-22.08819,-10.19091,0,-,-
+3414.5,12908.4453334212,19.9999992370605,19.9999992370605,0,-2.806448,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628764,0.3323833,-29.04933,-22.08819,-10.19091,0,-,-
+3415.5,12914.0008887649,19.9999992370605,19.9999992370605,0,-2.806448,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628764,0.3323833,-29.04933,-22.08819,-10.19091,0,-,-
+3416.5,12919.5564441085,19.9999992370605,19.9999992370605,0,-2.911679,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628564,0.3323833,-30.13766,-23.17671,-11.27944,0,-,-
+3417.5,12925.1119994521,19.9999992370605,19.9999992370605,0,-2.911679,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628564,0.3323833,-30.13766,-23.17671,-11.27944,0,-,-
+3418.5,12930.6675547957,19.9999992370605,19.9999992370605,0,-3.022391,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628346,0.3323833,-31.28257,-24.32184,-12.42457,0,-,-
+3419.5,12936.2231101394,19.9999992370605,19.9999992370605,0,-3.022391,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628346,0.3323833,-31.28257,-24.32184,-12.42457,0,-,-
+3420.5,12941.778665483,19.9999992370605,19.9999992370605,0,-3.133103,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628121,0.3323833,-32.42737,-25.46687,-13.56959,0,-,-
+3421.5,12947.3342208266,19.9999992370605,19.9999992370605,0,-3.133103,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628121,0.3323833,-32.42737,-25.46687,-13.56959,0,-,-
+3422.5,12952.8897761703,19.9999992370605,19.9999992370605,0,-3.243815,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.627887,0.3323833,-33.57205,-26.61178,-14.7145,0,-,-
+3423.5,12958.4453315139,19.9999992370605,19.9999992370605,0,-3.299171,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.627768,0.3323833,-34.14434,-27.18419,-15.28691,0,-,-
+3424.5,12964.0008868575,19.9999992370605,19.9999992370605,0,-3.354527,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.627645,0.3323833,-34.7166,-27.75657,-15.85929,0,-,-
+3425.5,12969.5564422011,19.9999992370605,19.9999992370605,0,-3.465239,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.627396,0.3323833,-35.86103,-28.90125,-17.00397,0,-,-
+3426.5,12975.1119975448,19.9999992370605,19.9999992370605,0,-3.465239,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.627396,0.3323833,-35.86103,-28.90125,-17.00397,0,-,-
+3427.5,12980.6675528884,19.9999992370605,19.9999992370605,0,-3.575951,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.627138,0.3323833,-37.00532,-30.0458,-18.14853,0,-,-
+3428.5,12986.223108232,19.9999992370605,19.9999992370605,0,-3.575951,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.627138,0.3323833,-37.00532,-30.0458,-18.14853,0,-,-
+3429.5,12991.7786635756,19.9999992370605,19.9999992370605,0,-3.686664,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.626872,0.3323833,-38.14948,-31.19023,-19.29295,0,-,-
+3430.5,12997.3342189193,19.9999992370605,19.9999992370605,0,-3.686664,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.626872,0.3323833,-38.14948,-31.19023,-19.29295,0,-,-
+3431.5,13002.8897742629,19.9999992370605,19.9999992370605,0,-3.797375,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.626597,0.3323833,-39.2935,-32.33452,-20.43724,0,-,-
+3432.5,13008.4453296065,19.9999992370605,19.9999992370605,0,-3.852731,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.626457,0.3323833,-39.86546,-32.90662,-21.00934,0,-,-
+3433.5,13014.0008849502,19.9999992370605,19.9999992370605,0,-3.908088,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.626315,0.3323833,-40.43738,-33.47868,-21.5814,0,-,-
+3434.5,13019.5564402938,19.9999992370605,19.9999992370605,0,-4.0188,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.626025,0.3323833,-41.5811,-34.6227,-22.72542,0,-,-
+3435.5,13025.1119956374,19.9999992370605,19.9999992370605,0,-4.0188,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.626025,0.3323833,-41.5811,-34.6227,-22.72542,0,-,-
+3436.5,13030.667550981,19.9999992370605,19.9999992370605,0,-4.12945,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.625727,0.3323833,-42.72404,-35.76593,-23.86865,0,-,-
+3437.5,13036.2231063247,19.9999992370605,19.9999992370605,0,-4.12945,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.625727,0.3323833,-42.72404,-35.76593,-23.86865,0,-,-
+3438.5,13041.7786616683,19.9999992370605,19.9999992370605,0,-4.240006,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.625421,0.3323833,-43.86585,-36.90805,-25.01077,0,-,-
+3439.5,13047.3342170119,19.9999992370605,19.9999992370605,0,-4.240006,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.625421,0.3323833,-43.86585,-36.90805,-25.01077,0,-,-
+3440.5,13052.8897723556,19.9999992370605,19.9999992370605,0,-4.351743,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.625103,0.3323833,-45.01969,-38.06221,-26.16493,0,-,-
+3441.5,13058.4453276992,19.9999992370605,19.9999992370605,0,-4.409972,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.624935,0.3323833,-45.62091,-38.6636,-26.76632,0,-,-
+3442.5,13064.0008830428,19.9999992370605,19.9999992370605,0,-4.4682,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.624763,0.3323833,-46.2221,-39.26495,-27.36767,0,-,-
+3443.5,13069.5564383864,19.9999992370605,19.9999992370605,0,-4.584658,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.624415,0.3323833,-47.42431,-40.46751,-28.57024,0,-,-
+3444.5,13075.1119937301,19.9999992370605,19.9999992370605,0,-4.584658,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.624415,0.3323833,-47.42431,-40.46751,-28.57024,0,-,-
+3445.5,13080.6675490737,19.9999992370605,19.9999992370605,0,-4.721115,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.623995,0.3323833,-48.83275,-41.87637,-29.97909,0,-,-
+3446.5,13086.2231044173,19.9999992370605,19.9999992370605,0,-4.721115,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.623995,0.3323833,-48.83275,-41.87637,-29.97909,0,-,-
+3447.5,13091.778659761,19.9999992370605,19.9999992370605,0,-4.862572,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.623548,0.3323833,-50.29251,-43.33658,-31.4393,0,-,-
+3448.5,13097.3342151046,19.9999992370605,19.9999992370605,0,-4.862572,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.623548,0.3323833,-50.29251,-43.33658,-31.4393,0,-,-
+3449.5,13102.8897704482,19.9999992370605,19.9999992370605,0,-5.004028,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.623086,0.3323833,-51.75196,-44.79649,-32.89921,0,-,-
+3450.5,13108.4453257918,19.9999992370605,19.9999992370605,0,-5.068926,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.62287,0.3323833,-52.42143,-45.46618,-33.5689,0,-,-
+3451.5,13114.0008811355,19.9999992370605,19.9999992370605,0,-5.133824,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622652,0.3323833,-53.09083,-46.13579,-34.23851,0,-,-
+3452.5,13119.5564364791,19.9999992370605,19.9999992370605,0,-5.133824,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622652,0.3323833,-53.09083,-46.13579,-34.23851,0,-,-
+3453.5,13125.1119918227,19.9999992370605,19.9999992370605,0,-5.133824,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622652,0.3323833,-53.09083,-46.13579,-34.23851,0,-,-
+3454.5,13130.6675471663,19.9999992370605,19.9999992370605,0,-5.133824,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622652,0.3323833,-53.09083,-46.13579,-34.23851,0,-,-
+3455.5,13136.22310251,19.9999992370605,19.9999992370605,0,-5.133824,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622652,0.3323833,-53.09083,-46.13579,-34.23851,0,-,-
+3456.5,13141.7786578536,19.9999992370605,19.9999992370605,0,-5.133824,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622652,0.3323833,-53.09083,-46.13579,-34.23851,0,-,-
+3457.5,13147.3342131972,19.9999992370605,19.9999992370605,0,-5.133824,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622652,0.3323833,-53.09083,-46.13579,-34.23851,0,-,-
+3458.5,13152.8897685409,19.9999992370605,19.9999992370605,0,-5.133824,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622652,0.3323833,-53.09083,-46.13579,-34.23851,0,-,-
+3459.5,13158.4453238845,19.9999992370605,19.9999992370605,0,-5.195934,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.62244,0.3323833,-53.73141,-46.77659,-34.87931,0,-,-
+3460.5,13164.0008792281,19.9999992370605,19.9999992370605,0,-5.258045,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622225,0.3323833,-54.37195,-47.41734,-35.52006,0,-,-
+3461.5,13169.5564345717,19.9999992370605,19.9999992370605,0,-5.258045,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622225,0.3323833,-54.37195,-47.41734,-35.52006,0,-,-
+3462.5,13175.1119899154,19.9999992370605,19.9999992370605,0,-5.258045,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622225,0.3323833,-54.37195,-47.41734,-35.52006,0,-,-
+3463.5,13180.667545259,19.9999992370605,19.9999992370605,0,-5.258045,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622225,0.3323833,-54.37195,-47.41734,-35.52006,0,-,-
+3464.5,13186.2231006026,19.9999992370605,19.9999992370605,0,-5.258045,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622225,0.3323833,-54.37195,-47.41734,-35.52006,0,-,-
+3465.5,13191.7786559463,19.9999992370605,19.9999992370605,0,-5.258045,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622225,0.3323833,-54.37195,-47.41734,-35.52006,0,-,-
+3466.5,13197.3342112899,19.9999992370605,19.9999992370605,0,-5.258045,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622225,0.3323833,-54.37195,-47.41734,-35.52006,0,-,-
+3467.5,13202.8897666335,19.9999992370605,19.9999992370605,0,-5.258045,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622225,0.3323833,-54.37195,-47.41734,-35.52006,0,-,-
+3468.5,13208.4453219771,19.9999992370605,19.9999992370605,0,-5.320155,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622009,0.3323833,-55.01241,-48.05801,-36.16074,0,-,-
+3469.5,13214.0008773208,19.9999992370605,19.9999992370605,0,-5.382266,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.621789,0.3323833,-55.65281,-48.69864,-36.80136,0,-,-
+3470.5,13219.5564326644,19.9999992370605,19.9999992370605,0,-5.382266,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.621789,0.3323833,-55.65281,-48.69864,-36.80136,0,-,-
+3471.5,13225.111988008,19.9999992370605,19.9999992370605,0,-5.382266,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.621789,0.3323833,-55.65281,-48.69864,-36.80136,0,-,-
+3472.5,13230.6675433517,19.9999992370605,19.9999992370605,0,-5.382266,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.621789,0.3323833,-55.65281,-48.69864,-36.80136,0,-,-
+3473.5,13236.2230986953,19.9999992370605,19.9999992370605,0,-5.382266,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.621789,0.3323833,-55.65281,-48.69864,-36.80136,0,-,-
+3474.5,13241.7786540389,19.9999992370605,19.9999992370605,0,-5.382266,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.621789,0.3323833,-55.65281,-48.69864,-36.80136,0,-,-
+3475.5,13247.3342093825,19.9999992370605,19.9999992370605,0,-5.382266,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.621789,0.3323833,-55.65281,-48.69864,-36.80136,0,-,-
+3476.5,13252.8897647262,19.9999992370605,19.9999992370605,0,-5.482859,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.621428,0.3323833,-56.68986,-49.73605,-37.83877,0,-,-
+3477.5,13258.4453200698,19.9999992370605,19.9999992370605,0,-5.482859,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.621428,0.3323833,-56.68986,-49.73605,-37.83877,0,-,-
+3478.5,13264.0008754134,19.9999992370605,19.9999992370605,0,-5.482859,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.621428,0.3323833,-56.68986,-49.73605,-37.83877,0,-,-
+3479.5,13269.556430757,19.9999992370605,19.9999992370605,0,-5.482859,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.621428,0.3323833,-56.68986,-49.73605,-37.83877,0,-,-
+3480.5,13275.1119861007,19.9999992370605,19.9999992370605,0,-5.482859,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.621428,0.3323833,-56.68986,-49.73605,-37.83877,0,-,-
+3481.5,13280.6675414443,19.9999992370605,19.9999992370605,0,-5.482859,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.621428,0.3323833,-56.68986,-49.73605,-37.83877,0,-,-
+3482.5,13286.2230967879,19.9999992370605,19.9999992370605,0,-5.482859,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.621428,0.3323833,-56.68986,-49.73605,-37.83877,0,-,-
+3483.5,13291.7786521316,19.9999992370605,19.9999992370605,0,-5.482859,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.621428,0.3323833,-56.68986,-49.73605,-37.83877,0,-,-
+3484.5,13297.3342074752,19.9999992370605,19.9999992370605,0,-5.482859,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.621428,0.3323833,-56.68986,-49.73605,-37.83877,0,-,-
+3485.5,13302.8897628188,19.9999992370605,19.9999992370605,0,-5.482859,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.621428,0.3323833,-56.68986,-49.73605,-37.83877,0,-,-
+3486.5,13308.4453181624,19.9999992370605,19.9999992370605,0,-5.482859,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.621428,0.3323833,-56.68986,-49.73605,-37.83877,0,-,-
+3487.5,13314.0008735061,19.9999992370605,19.9999992370605,0,-5.482859,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.621428,0.3323833,-56.68986,-49.73605,-37.83877,0,-,-
+3488.5,13319.5564288497,19.9999992370605,19.9999992370605,0,-5.482859,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.621428,0.3323833,-56.68986,-49.73605,-37.83877,0,-,-
+3489.5,13325.1119841933,19.9999992370605,19.9999992370605,0,-5.482859,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.621428,0.3323833,-56.68986,-49.73605,-37.83877,0,-,-
+3490.5,13330.667539537,19.9999992370605,19.9999992370605,0,-5.362442,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.62186,0.3323833,-55.44843,-48.49418,-36.5969,0,-,-
+3491.5,13336.2230948806,19.9999992370605,19.9999992370605,0,-5.362442,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.62186,0.3323833,-55.44843,-48.49418,-36.5969,0,-,-
+3492.5,13341.7786502242,19.9999992370605,19.9999992370605,0,-5.362442,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.62186,0.3323833,-55.44843,-48.49418,-36.5969,0,-,-
+3493.5,13347.3342055678,19.9999992370605,19.9999992370605,0,-5.362442,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.62186,0.3323833,-55.44843,-48.49418,-36.5969,0,-,-
+3494.5,13352.8897609115,19.9999992370605,19.9999992370605,0,-5.362442,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.62186,0.3323833,-55.44843,-48.49418,-36.5969,0,-,-
+3495.5,13358.4453162551,19.9999992370605,19.9999992370605,0,-5.362442,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.62186,0.3323833,-55.44843,-48.49418,-36.5969,0,-,-
+3496.5,13364.0008715987,19.9999992370605,19.9999992370605,0,-5.362442,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.62186,0.3323833,-55.44843,-48.49418,-36.5969,0,-,-
+3497.5,13369.5564269423,19.9999992370605,19.9999992370605,0,-5.253542,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622241,0.3323833,-54.32551,-47.37088,-35.47361,0,-,-
+3498.5,13375.111982286,19.9999992370605,19.9999992370605,0,-5.253542,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622241,0.3323833,-54.32551,-47.37088,-35.47361,0,-,-
+3499.5,13380.6675376296,19.9999992370605,19.9999992370605,0,-5.253542,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622241,0.3323833,-54.32551,-47.37088,-35.47361,0,-,-
+3500.5,13386.2230929732,19.9999992370605,19.9999992370605,0,-5.253542,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622241,0.3323833,-54.32551,-47.37088,-35.47361,0,-,-
+3501.5,13391.7786483169,19.9999992370605,19.9999992370605,0,-5.253542,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622241,0.3323833,-54.32551,-47.37088,-35.47361,0,-,-
+3502.5,13397.3342036605,19.9999992370605,19.9999992370605,0,-5.253542,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622241,0.3323833,-54.32551,-47.37088,-35.47361,0,-,-
+3503.5,13402.8897590041,19.9999992370605,19.9999992370605,0,-5.253542,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622241,0.3323833,-54.32551,-47.37088,-35.47361,0,-,-
+3504.5,13408.4453143477,19.9999992370605,19.9999992370605,0,-5.199091,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622429,0.3323833,-53.76398,-46.80917,-34.91189,0,-,-
+3505.5,13414.0008696914,19.9999992370605,19.9999992370605,0,-5.144641,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622615,0.3323833,-53.2024,-46.2474,-34.35012,0,-,-
+3506.5,13419.556425035,19.9999992370605,19.9999992370605,0,-5.144641,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622615,0.3323833,-53.2024,-46.2474,-34.35012,0,-,-
+3507.5,13425.1119803786,19.9999992370605,19.9999992370605,0,-5.144641,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622615,0.3323833,-53.2024,-46.2474,-34.35012,0,-,-
+3508.5,13430.6675357223,19.9999992370605,19.9999992370605,0,-5.144641,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622615,0.3323833,-53.2024,-46.2474,-34.35012,0,-,-
+3509.5,13436.2230910659,19.9999992370605,19.9999992370605,0,-5.144641,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622615,0.3323833,-53.2024,-46.2474,-34.35012,0,-,-
+3510.5,13441.7786464095,19.9999992370605,19.9999992370605,0,-5.144641,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622615,0.3323833,-53.2024,-46.2474,-34.35012,0,-,-
+3511.5,13447.3342017531,19.9999992370605,19.9999992370605,0,-5.144641,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622615,0.3323833,-53.2024,-46.2474,-34.35012,0,-,-
+3512.5,13452.8897570968,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3513.5,13458.4453124404,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3514.5,13464.000867784,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3515.5,13469.5564231277,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3516.5,13475.1119784713,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3517.5,13480.6675338149,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3518.5,13486.2230891585,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3519.5,13491.7786445022,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3520.5,13497.3341998458,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3521.5,13502.8897551894,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3522.5,13508.445310533,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3523.5,13514.0008658767,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3524.5,13519.5564212203,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3525.5,13525.1119765639,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3526.5,13530.6675319076,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3527.5,13536.2230872512,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3528.5,13541.7786425948,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3529.5,13547.3341979384,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3530.5,13552.8897532821,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3531.5,13558.4453086257,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3532.5,13564.0008639693,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3533.5,13569.556419313,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3534.5,13575.1119746566,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3535.5,13580.6675300002,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3536.5,13586.2230853438,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3537.5,13591.7786406875,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3538.5,13597.3341960311,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3539.5,13602.8897513747,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3540.5,13608.4453067183,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3541.5,13614.000862062,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3542.5,13619.5564174056,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3543.5,13625.1119727492,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3544.5,13630.6675280929,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3545.5,13636.2230834365,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3546.5,13641.7786387801,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3547.5,13647.3341941237,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3548.5,13652.8897494674,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3549.5,13658.445304811,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3550.5,13664.0008601546,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3551.5,13669.5564154983,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3552.5,13675.1119708419,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3553.5,13680.6675261855,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3554.5,13686.2230815291,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3555.5,13691.7786368728,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3556.5,13697.3341922164,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3557.5,13702.88974756,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3558.5,13708.4453029037,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3559.5,13714.0008582473,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3560.5,13719.5564135909,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3561.5,13725.1119689345,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3562.5,13730.6675242782,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3563.5,13736.2230796218,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3564.5,13741.7786349654,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3565.5,13747.334190309,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3566.5,13752.8897456527,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3567.5,13758.4453009963,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3568.5,13764.0008563399,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3569.5,13769.5564116836,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3570.5,13775.1119670272,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3571.5,13780.6675223708,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3572.5,13786.2230777144,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3573.5,13791.7786330581,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3574.5,13797.3341884017,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3575.5,13802.8897437453,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3576.5,13808.445299089,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3577.5,13814.0008544326,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3578.5,13819.5564097762,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3579.5,13825.1119651198,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3580.5,13830.6675204635,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3581.5,13836.2230758071,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3582.5,13841.7786311507,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3583.5,13847.3341864944,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3584.5,13852.889741838,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3585.5,13858.4452971816,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3586.5,13864.0008525252,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3587.5,13869.5564078689,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3588.5,13875.1119632125,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3589.5,13880.6675185561,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3590.5,13886.2230738997,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3591.5,13891.7786292434,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3592.5,13897.334184587,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3593.5,13902.8897399306,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3594.5,13908.4452952743,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3595.5,13914.0008506179,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3596.5,13919.5564059615,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3597.5,13925.1119613051,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3598.5,13930.6675166488,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3599.5,13936.2230719924,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3600.5,13941.778627336,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3601.5,13947.3341826797,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3602.5,13952.8897380233,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3603.5,13958.4452933669,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3604.5,13964.0008487105,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3605.5,13969.5564040542,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3606.5,13975.1119593978,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3607.5,13980.6675147414,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3608.5,13986.223070085,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3609.5,13991.7786254287,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3610.5,13997.3341807723,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3611.5,14002.8897361159,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3612.5,14008.4452914596,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3613.5,14014.0008468032,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3614.5,14019.5564021468,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3615.5,14025.1119574904,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3616.5,14030.6675128341,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3617.5,14036.2230681777,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3618.5,14041.7786235213,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3619.5,14047.334178865,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3620.5,14052.8897342086,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3621.5,14058.4452895522,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3622.5,14064.0008448958,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3623.5,14069.5564002395,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3624.5,14075.1119555831,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3625.5,14080.6675109267,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3626.5,14086.2230662704,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3627.5,14091.778621614,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3628.5,14097.3341769576,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3629.5,14102.8897323012,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3630.5,14108.4452876449,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3631.5,14114.0008429885,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3632.5,14119.5563983321,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3633.5,14125.1119536757,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3634.5,14130.6675090194,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3635.5,14136.223064363,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3636.5,14141.7786197066,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3637.5,14147.3341750503,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3638.5,14152.8897303939,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3639.5,14158.4452857375,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3640.5,14164.0008410811,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3641.5,14169.5563964248,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3642.5,14175.1119517684,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3643.5,14180.667507112,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3644.5,14186.2230624557,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3645.5,14191.7786177993,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3646.5,14197.3341731429,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3647.5,14202.8897284865,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3648.5,14208.4452838302,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3649.5,14214.0008391738,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3650.5,14219.5563945174,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3651.5,14225.1119498611,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3652.5,14230.6675052047,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3653.5,14236.2230605483,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3654.5,14241.7786158919,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3655.5,14247.3341712356,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3656.5,14252.8897265792,19.9999992370605,19.9999992370605,0,-5.03483,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.622984,0.3323833,-52.06971,-45.11434,-33.21706,0,-,-
+3657.5,14258.4452819228,19.9999992370605,19.9999992370605,0,-4.984598,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.62315,0.3323833,-51.5515,-44.59597,-32.69869,0,-,-
+3658.5,14264.0008372664,19.9999992370605,19.9999992370605,0,-4.934366,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.623315,0.3323833,-51.03327,-44.07757,-32.18029,0,-,-
+3659.5,14269.5563926101,19.9999992370605,19.9999992370605,0,-4.934366,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.623315,0.3323833,-51.03327,-44.07757,-32.18029,0,-,-
+3660.5,14275.1119479537,19.9999992370605,19.9999992370605,0,-4.934366,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.623315,0.3323833,-51.03327,-44.07757,-32.18029,0,-,-
+3661.5,14280.6675032973,19.9999992370605,19.9999992370605,0,-4.934366,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.623315,0.3323833,-51.03327,-44.07757,-32.18029,0,-,-
+3662.5,14286.223058641,19.9999992370605,19.9999992370605,0,-4.934366,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.623315,0.3323833,-51.03327,-44.07757,-32.18029,0,-,-
+3663.5,14291.7786139846,19.9999992370605,19.9999992370605,0,-4.934366,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.623315,0.3323833,-51.03327,-44.07757,-32.18029,0,-,-
+3664.5,14297.3341693282,19.9999992370605,19.9999992370605,0,-4.934366,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.623315,0.3323833,-51.03327,-44.07757,-32.18029,0,-,-
+3665.5,14302.8897246718,19.9999992370605,19.9999992370605,0,-4.934366,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.623315,0.3323833,-51.03327,-44.07757,-32.18029,0,-,-
+3666.5,14308.4452800155,19.9999992370605,19.9999992370605,0,-4.934366,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.623315,0.3323833,-51.03327,-44.07757,-32.18029,0,-,-
+3667.5,14314.0008353591,19.9999992370605,19.9999992370605,0,-4.934366,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.623315,0.3323833,-51.03327,-44.07757,-32.18029,0,-,-
+3668.5,14319.5563907027,19.9999992370605,19.9999992370605,0,-4.934366,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.623315,0.3323833,-51.03327,-44.07757,-32.18029,0,-,-
+3669.5,14325.1119460464,19.9999992370605,19.9999992370605,0,-4.934366,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.623315,0.3323833,-51.03327,-44.07757,-32.18029,0,-,-
+3670.5,14330.66750139,19.9999992370605,19.9999992370605,0,-4.829528,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.623653,0.3323833,-49.95154,-42.99551,-31.09823,0,-,-
+3671.5,14336.2230567336,19.9999992370605,19.9999992370605,0,-4.829528,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.623653,0.3323833,-49.95154,-42.99551,-31.09823,0,-,-
+3672.5,14341.7786120772,19.9999992370605,19.9999992370605,0,-4.829528,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.623653,0.3323833,-49.95154,-42.99551,-31.09823,0,-,-
+3673.5,14347.3341674209,19.9999992370605,19.9999992370605,0,-4.829528,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.623653,0.3323833,-49.95154,-42.99551,-31.09823,0,-,-
+3674.5,14352.8897227645,19.9999992370605,19.9999992370605,0,-4.829528,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.623653,0.3323833,-49.95154,-42.99551,-31.09823,0,-,-
+3675.5,14358.4452781081,19.9999992370605,19.9999992370605,0,-4.829528,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.623653,0.3323833,-49.95154,-42.99551,-31.09823,0,-,-
+3676.5,14364.0008334517,19.9999992370605,19.9999992370605,0,-4.829528,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.623653,0.3323833,-49.95154,-42.99551,-31.09823,0,-,-
+3677.5,14369.5563887954,19.9999992370605,19.9999992370605,0,-4.829528,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.623653,0.3323833,-49.95154,-42.99551,-31.09823,0,-,-
+3678.5,14375.111944139,19.9999992370605,19.9999992370605,0,-4.829528,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.623653,0.3323833,-49.95154,-42.99551,-31.09823,0,-,-
+3679.5,14380.6674994826,19.9999992370605,19.9999992370605,0,-4.829528,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.623653,0.3323833,-49.95154,-42.99551,-31.09823,0,-,-
+3680.5,14386.2230548263,19.9999992370605,19.9999992370605,0,-4.829528,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.623653,0.3323833,-49.95154,-42.99551,-31.09823,0,-,-
+3681.5,14391.7786101699,19.9999992370605,19.9999992370605,0,-4.829528,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.623653,0.3323833,-49.95154,-42.99551,-31.09823,0,-,-
+3682.5,14397.3341655135,19.9999992370605,19.9999992370605,0,-4.829528,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.623653,0.3323833,-49.95154,-42.99551,-31.09823,0,-,-
+3683.5,14402.8897208571,19.9999992370605,19.9999992370605,0,-4.723009,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.62399,0.3323833,-48.8523,-41.89593,-29.99865,0,-,-
+3684.5,14408.4452762008,19.9999992370605,19.9999992370605,0,-4.723009,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.62399,0.3323833,-48.8523,-41.89593,-29.99865,0,-,-
+3685.5,14414.0008315444,19.9999992370605,19.9999992370605,0,-4.723009,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.62399,0.3323833,-48.8523,-41.89593,-29.99865,0,-,-
+3686.5,14419.556386888,19.9999992370605,19.9999992370605,0,-4.723009,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.62399,0.3323833,-48.8523,-41.89593,-29.99865,0,-,-
+3687.5,14425.1119422317,19.9999992370605,19.9999992370605,0,-4.723009,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.62399,0.3323833,-48.8523,-41.89593,-29.99865,0,-,-
+3688.5,14430.6674975753,19.9999992370605,19.9999992370605,0,-4.723009,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.62399,0.3323833,-48.8523,-41.89593,-29.99865,0,-,-
+3689.5,14436.2230529189,19.9999992370605,19.9999992370605,0,-4.723009,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.62399,0.3323833,-48.8523,-41.89593,-29.99865,0,-,-
+3690.5,14441.7786082625,19.9999992370605,19.9999992370605,0,-4.723009,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.62399,0.3323833,-48.8523,-41.89593,-29.99865,0,-,-
+3691.5,14447.3341636062,19.9999992370605,19.9999992370605,0,-4.723009,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.62399,0.3323833,-48.8523,-41.89593,-29.99865,0,-,-
+3692.5,14452.8897189498,19.9999992370605,19.9999992370605,0,-4.723009,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.62399,0.3323833,-48.8523,-41.89593,-29.99865,0,-,-
+3693.5,14458.4452742934,19.9999992370605,19.9999992370605,0,-4.723009,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.62399,0.3323833,-48.8523,-41.89593,-29.99865,0,-,-
+3694.5,14464.0008296371,19.9999992370605,19.9999992370605,0,-4.723009,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.62399,0.3323833,-48.8523,-41.89593,-29.99865,0,-,-
+3695.5,14469.5563849807,19.9999992370605,19.9999992370605,0,-4.723009,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.62399,0.3323833,-48.8523,-41.89593,-29.99865,0,-,-
+3696.5,14475.1119403243,19.9999992370605,19.9999992370605,0,-4.723009,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.62399,0.3323833,-48.8523,-41.89593,-29.99865,0,-,-
+3697.5,14480.6674956679,19.9999992370605,19.9999992370605,0,-4.723009,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.62399,0.3323833,-48.8523,-41.89593,-29.99865,0,-,-
+3698.5,14486.2230510116,19.9999992370605,19.9999992370605,0,-4.723009,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.62399,0.3323833,-48.8523,-41.89593,-29.99865,0,-,-
+3699.5,14491.7786063552,19.9999992370605,19.9999992370605,0,-4.723009,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.62399,0.3323833,-48.8523,-41.89593,-29.99865,0,-,-
+3700.5,14497.3341616988,19.9999992370605,19.9999992370605,0,-4.723009,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.62399,0.3323833,-48.8523,-41.89593,-29.99865,0,-,-
+3701.5,14502.8897170424,19.9999992370605,19.9999992370605,0,-4.723009,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.62399,0.3323833,-48.8523,-41.89593,-29.99865,0,-,-
+3702.5,14508.4452723861,19.9999992370605,19.9999992370605,0,-4.723009,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.62399,0.3323833,-48.8523,-41.89593,-29.99865,0,-,-
+3703.5,14514.0008277297,19.9999992370605,19.9999992370605,0,-4.723009,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.62399,0.3323833,-48.8523,-41.89593,-29.99865,0,-,-
+3704.5,14519.5563830733,19.9999992370605,19.9999992370605,0,-4.723009,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.62399,0.3323833,-48.8523,-41.89593,-29.99865,0,-,-
+3705.5,14525.111938417,19.9999992370605,19.9999992370605,0,-4.723009,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.62399,0.3323833,-48.8523,-41.89593,-29.99865,0,-,-
+3706.5,14530.6674937606,19.9999992370605,19.9999992370605,0,-4.723009,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.62399,0.3323833,-48.8523,-41.89593,-29.99865,0,-,-
+3707.5,14536.2230491042,19.9999992370605,19.9999992370605,0,-4.723009,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.62399,0.3323833,-48.8523,-41.89593,-29.99865,0,-,-
+3708.5,14541.7786044478,19.9999992370605,19.9999992370605,0,-4.723009,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.62399,0.3323833,-48.8523,-41.89593,-29.99865,0,-,-
+3709.5,14547.3341597915,19.9999992370605,19.9999992370605,0,-4.723009,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.62399,0.3323833,-48.8523,-41.89593,-29.99865,0,-,-
+3710.5,14552.8897151351,19.9999992370605,19.9999992370605,0,-4.604388,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.624355,0.3323833,-47.62798,-40.67124,-28.77396,0,-,-
+3711.5,14558.4452704787,19.9999992370605,19.9999992370605,0,-4.604388,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.624355,0.3323833,-47.62798,-40.67124,-28.77396,0,-,-
+3712.5,14564.0008258224,19.9999992370605,19.9999992370605,0,-4.604388,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.624355,0.3323833,-47.62798,-40.67124,-28.77396,0,-,-
+3713.5,14569.556381166,19.9999992370605,19.9999992370605,0,-4.604388,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.624355,0.3323833,-47.62798,-40.67124,-28.77396,0,-,-
+3714.5,14575.1119365096,19.9999992370605,19.9999992370605,0,-4.604388,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.624355,0.3323833,-47.62798,-40.67124,-28.77396,0,-,-
+3715.5,14580.6674918532,19.9999992370605,19.9999992370605,0,-4.604388,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.624355,0.3323833,-47.62798,-40.67124,-28.77396,0,-,-
+3716.5,14586.2230471969,19.9999992370605,19.9999992370605,0,-4.604388,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.624355,0.3323833,-47.62798,-40.67124,-28.77396,0,-,-
+3717.5,14591.7786025405,19.9999992370605,19.9999992370605,0,-4.604388,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.624355,0.3323833,-47.62798,-40.67124,-28.77396,0,-,-
+3718.5,14597.3341578841,19.9999992370605,19.9999992370605,0,-4.604388,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.624355,0.3323833,-47.62798,-40.67124,-28.77396,0,-,-
+3719.5,14602.8897132277,19.9999992370605,19.9999992370605,0,-4.488449,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.624704,0.3323833,-46.43114,-39.47405,-27.57677,0,-,-
+3720.5,14608.4452685714,19.9999992370605,19.9999992370605,0,-4.488449,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.624704,0.3323833,-46.43114,-39.47405,-27.57677,0,-,-
+3721.5,14614.000823915,19.9999992370605,19.9999992370605,0,-4.488449,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.624704,0.3323833,-46.43114,-39.47405,-27.57677,0,-,-
+3722.5,14619.5563792586,19.9999992370605,19.9999992370605,0,-4.488449,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.624704,0.3323833,-46.43114,-39.47405,-27.57677,0,-,-
+3723.5,14625.1119346023,19.9999992370605,19.9999992370605,0,-4.488449,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.624704,0.3323833,-46.43114,-39.47405,-27.57677,0,-,-
+3724.5,14630.6674899459,19.9999992370605,19.9999992370605,0,-4.488449,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.624704,0.3323833,-46.43114,-39.47405,-27.57677,0,-,-
+3725.5,14636.2230452895,19.9999992370605,19.9999992370605,0,-4.488449,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.624704,0.3323833,-46.43114,-39.47405,-27.57677,0,-,-
+3726.5,14641.7786006331,19.9999992370605,19.9999992370605,0,-4.488449,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.624704,0.3323833,-46.43114,-39.47405,-27.57677,0,-,-
+3727.5,14647.3341559768,19.9999992370605,19.9999992370605,0,-4.488449,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.624704,0.3323833,-46.43114,-39.47405,-27.57677,0,-,-
+3728.5,14652.8897113204,19.9999992370605,19.9999992370605,0,-4.372509,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.625043,0.3323833,-45.23411,-38.27668,-26.3794,0,-,-
+3729.5,14658.445266664,19.9999992370605,19.9999992370605,0,-4.372509,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.625043,0.3323833,-45.23411,-38.27668,-26.3794,0,-,-
+3730.5,14664.0008220077,19.9999992370605,19.9999992370605,0,-4.372509,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.625043,0.3323833,-45.23411,-38.27668,-26.3794,0,-,-
+3731.5,14669.5563773513,19.9999992370605,19.9999992370605,0,-4.372509,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.625043,0.3323833,-45.23411,-38.27668,-26.3794,0,-,-
+3732.5,14675.1119326949,19.9999992370605,19.9999992370605,0,-4.372509,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.625043,0.3323833,-45.23411,-38.27668,-26.3794,0,-,-
+3733.5,14680.6674880385,19.9999992370605,19.9999992370605,0,-4.372509,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.625043,0.3323833,-45.23411,-38.27668,-26.3794,0,-,-
+3734.5,14686.2230433822,19.9999992370605,19.9999992370605,0,-4.372509,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.625043,0.3323833,-45.23411,-38.27668,-26.3794,0,-,-
+3735.5,14691.7785987258,19.9999992370605,19.9999992370605,0,-4.372509,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.625043,0.3323833,-45.23411,-38.27668,-26.3794,0,-,-
+3736.5,14697.3341540694,19.9999992370605,19.9999992370605,0,-4.372509,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.625043,0.3323833,-45.23411,-38.27668,-26.3794,0,-,-
+3737.5,14702.8897094131,19.9999992370605,19.9999992370605,0,-4.256569,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.625374,0.3323833,-44.0369,-37.07914,-25.18187,0,-,-
+3738.5,14708.4452647567,19.9999992370605,19.9999992370605,0,-4.256569,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.625374,0.3323833,-44.0369,-37.07914,-25.18187,0,-,-
+3739.5,14714.0008201003,19.9999992370605,19.9999992370605,0,-4.256569,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.625374,0.3323833,-44.0369,-37.07914,-25.18187,0,-,-
+3740.5,14719.5563754439,19.9999992370605,19.9999992370605,0,-4.256569,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.625374,0.3323833,-44.0369,-37.07914,-25.18187,0,-,-
+3741.5,14725.1119307876,19.9999992370605,19.9999992370605,0,-4.256569,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.625374,0.3323833,-44.0369,-37.07914,-25.18187,0,-,-
+3742.5,14730.6674861312,19.9999992370605,19.9999992370605,0,-4.256569,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.625374,0.3323833,-44.0369,-37.07914,-25.18187,0,-,-
+3743.5,14736.2230414748,19.9999992370605,19.9999992370605,0,-4.256569,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.625374,0.3323833,-44.0369,-37.07914,-25.18187,0,-,-
+3744.5,14741.7785968184,19.9999992370605,19.9999992370605,0,-4.256569,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.625374,0.3323833,-44.0369,-37.07914,-25.18187,0,-,-
+3745.5,14747.3341521621,19.9999992370605,19.9999992370605,0,-4.256569,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.625374,0.3323833,-44.0369,-37.07914,-25.18187,0,-,-
+3746.5,14752.8897075057,19.9999992370605,19.9999992370605,0,-4.256569,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.625374,0.3323833,-44.0369,-37.07914,-25.18187,0,-,-
+3747.5,14758.4452628493,19.9999992370605,19.9999992370605,0,-4.256569,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.625374,0.3323833,-44.0369,-37.07914,-25.18187,0,-,-
+3748.5,14764.000818193,19.9999992370605,19.9999992370605,0,-4.256569,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.625374,0.3323833,-44.0369,-37.07914,-25.18187,0,-,-
+3749.5,14769.5563735366,19.9999992370605,19.9999992370605,0,-4.256569,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.625374,0.3323833,-44.0369,-37.07914,-25.18187,0,-,-
+3750.5,14775.1119288802,19.9999992370605,19.9999992370605,0,-4.256569,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.625374,0.3323833,-44.0369,-37.07914,-25.18187,0,-,-
+3751.5,14780.6674842238,19.9999992370605,19.9999992370605,0,-4.256569,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.625374,0.3323833,-44.0369,-37.07914,-25.18187,0,-,-
+3752.5,14786.2230395675,19.9999992370605,19.9999992370605,0,-4.256569,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.625374,0.3323833,-44.0369,-37.07914,-25.18187,0,-,-
+3753.5,14791.7785949111,19.9999992370605,19.9999992370605,0,-4.256569,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.625374,0.3323833,-44.0369,-37.07914,-25.18187,0,-,-
+3754.5,14797.3341502547,19.9999992370605,19.9999992370605,0,-4.256569,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.625374,0.3323833,-44.0369,-37.07914,-25.18187,0,-,-
+3755.5,14802.8897055984,19.9999992370605,19.9999992370605,0,-4.142472,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.625691,0.3323833,-42.85854,-35.90047,-24.00319,0,-,-
+3756.5,14808.445260942,19.9999992370605,19.9999992370605,0,-4.142472,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.625691,0.3323833,-42.85854,-35.90047,-24.00319,0,-,-
+3757.5,14814.0008162856,19.9999992370605,19.9999992370605,0,-4.142472,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.625691,0.3323833,-42.85854,-35.90047,-24.00319,0,-,-
+3758.5,14819.5563716292,19.9999992370605,19.9999992370605,0,-4.142472,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.625691,0.3323833,-42.85854,-35.90047,-24.00319,0,-,-
+3759.5,14825.1119269729,19.9999992370605,19.9999992370605,0,-4.142472,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.625691,0.3323833,-42.85854,-35.90047,-24.00319,0,-,-
+3760.5,14830.6674823165,19.9999992370605,19.9999992370605,0,-4.142472,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.625691,0.3323833,-42.85854,-35.90047,-24.00319,0,-,-
+3761.5,14836.2230376601,19.9999992370605,19.9999992370605,0,-4.142472,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.625691,0.3323833,-42.85854,-35.90047,-24.00319,0,-,-
+3762.5,14841.7785930038,19.9999992370605,19.9999992370605,0,-4.142472,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.625691,0.3323833,-42.85854,-35.90047,-24.00319,0,-,-
+3763.5,14847.3341483474,19.9999992370605,19.9999992370605,0,-4.142472,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.625691,0.3323833,-42.85854,-35.90047,-24.00319,0,-,-
+3764.5,14852.889703691,19.9999992370605,19.9999992370605,0,-4.142472,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.625691,0.3323833,-42.85854,-35.90047,-24.00319,0,-,-
+3765.5,14858.4452590346,19.9999992370605,19.9999992370605,0,-4.142472,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.625691,0.3323833,-42.85854,-35.90047,-24.00319,0,-,-
+3766.5,14864.0008143783,19.9999992370605,19.9999992370605,0,-4.142472,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.625691,0.3323833,-42.85854,-35.90047,-24.00319,0,-,-
+3767.5,14869.5563697219,19.9999992370605,19.9999992370605,0,-4.027982,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.626,0.3323833,-41.67595,-34.71757,-22.82029,0,-,-
+3768.5,14875.1119250655,19.9999992370605,19.9999992370605,0,-4.027982,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.626,0.3323833,-41.67595,-34.71757,-22.82029,0,-,-
+3769.5,14880.6674804091,19.9999992370605,19.9999992370605,0,-4.027982,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.626,0.3323833,-41.67595,-34.71757,-22.82029,0,-,-
+3770.5,14886.2230357528,19.9999992370605,19.9999992370605,0,-4.027982,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.626,0.3323833,-41.67595,-34.71757,-22.82029,0,-,-
+3771.5,14891.7785910964,19.9999992370605,19.9999992370605,0,-4.027982,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.626,0.3323833,-41.67595,-34.71757,-22.82029,0,-,-
+3772.5,14897.33414644,19.9999992370605,19.9999992370605,0,-4.027982,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.626,0.3323833,-41.67595,-34.71757,-22.82029,0,-,-
+3773.5,14902.8897017837,19.9999992370605,19.9999992370605,0,-4.027982,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.626,0.3323833,-41.67595,-34.71757,-22.82029,0,-,-
+3774.5,14908.4452571273,19.9999992370605,19.9999992370605,0,-4.027982,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.626,0.3323833,-41.67595,-34.71757,-22.82029,0,-,-
+3775.5,14914.0008124709,19.9999992370605,19.9999992370605,0,-4.027982,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.626,0.3323833,-41.67595,-34.71757,-22.82029,0,-,-
+3776.5,14919.5563678145,19.9999992370605,19.9999992370605,0,-4.027982,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.626,0.3323833,-41.67595,-34.71757,-22.82029,0,-,-
+3777.5,14925.1119231582,19.9999992370605,19.9999992370605,0,-4.027982,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.626,0.3323833,-41.67595,-34.71757,-22.82029,0,-,-
+3778.5,14930.6674785018,19.9999992370605,19.9999992370605,0,-4.027982,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.626,0.3323833,-41.67595,-34.71757,-22.82029,0,-,-
+3779.5,14936.2230338454,19.9999992370605,19.9999992370605,0,-4.027982,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.626,0.3323833,-41.67595,-34.71757,-22.82029,0,-,-
+3780.5,14941.7785891891,19.9999992370605,19.9999992370605,0,-3.913491,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.626301,0.3323833,-40.4932,-33.53452,-21.63724,0,-,-
+3781.5,14947.3341445327,19.9999992370605,19.9999992370605,0,-3.913491,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.626301,0.3323833,-40.4932,-33.53452,-21.63724,0,-,-
+3782.5,14952.8896998763,19.9999992370605,19.9999992370605,0,-3.913491,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.626301,0.3323833,-40.4932,-33.53452,-21.63724,0,-,-
+3783.5,14958.4452552199,19.9999992370605,19.9999992370605,0,-3.913491,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.626301,0.3323833,-40.4932,-33.53452,-21.63724,0,-,-
+3784.5,14964.0008105636,19.9999992370605,19.9999992370605,0,-3.913491,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.626301,0.3323833,-40.4932,-33.53452,-21.63724,0,-,-
+3785.5,14969.5563659072,19.9999992370605,19.9999992370605,0,-3.913491,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.626301,0.3323833,-40.4932,-33.53452,-21.63724,0,-,-
+3786.5,14975.1119212508,19.9999992370605,19.9999992370605,0,-3.913491,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.626301,0.3323833,-40.4932,-33.53452,-21.63724,0,-,-
+3787.5,14980.6674765944,19.9999992370605,19.9999992370605,0,-3.913491,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.626301,0.3323833,-40.4932,-33.53452,-21.63724,0,-,-
+3788.5,14986.2230319381,19.9999992370605,19.9999992370605,0,-3.913491,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.626301,0.3323833,-40.4932,-33.53452,-21.63724,0,-,-
+3789.5,14991.7785872817,19.9999992370605,19.9999992370605,0,-3.913491,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.626301,0.3323833,-40.4932,-33.53452,-21.63724,0,-,-
+3790.5,14997.3341426253,19.9999992370605,19.9999992370605,0,-3.913491,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.626301,0.3323833,-40.4932,-33.53452,-21.63724,0,-,-
+3791.5,15002.889697969,19.9999992370605,19.9999992370605,0,-3.913491,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.626301,0.3323833,-40.4932,-33.53452,-21.63724,0,-,-
+3792.5,15008.4452533126,19.9999992370605,19.9999992370605,0,-3.913491,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.626301,0.3323833,-40.4932,-33.53452,-21.63724,0,-,-
+3793.5,15014.0008086562,19.9999992370605,19.9999992370605,0,-3.913491,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.626301,0.3323833,-40.4932,-33.53452,-21.63724,0,-,-
+3794.5,15019.5563639998,19.9999992370605,19.9999992370605,0,-3.913491,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.626301,0.3323833,-40.4932,-33.53452,-21.63724,0,-,-
+3795.5,15025.1119193435,19.9999992370605,19.9999992370605,0,-3.913491,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.626301,0.3323833,-40.4932,-33.53452,-21.63724,0,-,-
+3796.5,15030.6674746871,19.9999992370605,19.9999992370605,0,-3.913491,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.626301,0.3323833,-40.4932,-33.53452,-21.63724,0,-,-
+3797.5,15036.2230300307,19.9999992370605,19.9999992370605,0,-3.913491,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.626301,0.3323833,-40.4932,-33.53452,-21.63724,0,-,-
+3798.5,15041.7785853744,19.9999992370605,19.9999992370605,0,-3.913491,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.626301,0.3323833,-40.4932,-33.53452,-21.63724,0,-,-
+3799.5,15047.334140718,19.9999992370605,19.9999992370605,0,-3.913491,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.626301,0.3323833,-40.4932,-33.53452,-21.63724,0,-,-
+3800.5,15052.8896960616,19.9999992370605,19.9999992370605,0,-3.913491,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.626301,0.3323833,-40.4932,-33.53452,-21.63724,0,-,-
+3801.5,15058.4452514052,19.9999992370605,19.9999992370605,0,-3.913491,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.626301,0.3323833,-40.4932,-33.53452,-21.63724,0,-,-
+3802.5,15064.0008067489,19.9999992370605,19.9999992370605,0,-3.913491,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.626301,0.3323833,-40.4932,-33.53452,-21.63724,0,-,-
+3803.5,15069.5563620925,19.9999992370605,19.9999992370605,0,-3.77631,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.62665,0.3323833,-39.07583,-32.1168,-20.21952,0,-,-
+3804.5,15075.1119174361,19.9999992370605,19.9999992370605,0,-3.77631,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.62665,0.3323833,-39.07583,-32.1168,-20.21952,0,-,-
+3805.5,15080.6674727798,19.9999992370605,19.9999992370605,0,-3.77631,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.62665,0.3323833,-39.07583,-32.1168,-20.21952,0,-,-
+3806.5,15086.2230281234,19.9999992370605,19.9999992370605,0,-3.77631,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.62665,0.3323833,-39.07583,-32.1168,-20.21952,0,-,-
+3807.5,15091.778583467,19.9999992370605,19.9999992370605,0,-3.664718,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.626925,0.3323833,-37.9227,-30.96339,-19.06611,0,-,-
+3808.5,15097.3341388106,19.9999992370605,19.9999992370605,0,-3.664718,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.626925,0.3323833,-37.9227,-30.96339,-19.06611,0,-,-
+3809.5,15102.8896941543,19.9999992370605,19.9999992370605,0,-3.664718,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.626925,0.3323833,-37.9227,-30.96339,-19.06611,0,-,-
+3810.5,15108.4452494979,19.9999992370605,19.9999992370605,0,-3.608922,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.627059,0.3323833,-37.34607,-30.38663,-18.48935,0,-,-
+3811.5,15114.0008048415,19.9999992370605,19.9999992370605,0,-3.553126,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.627192,0.3323833,-36.76941,-29.80984,-17.91256,0,-,-
+3812.5,15119.5563601851,19.9999992370605,19.9999992370605,0,-3.553126,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.627192,0.3323833,-36.76941,-29.80984,-17.91256,0,-,-
+3813.5,15125.1119155288,19.9999992370605,19.9999992370605,0,-3.553126,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.627192,0.3323833,-36.76941,-29.80984,-17.91256,0,-,-
+3814.5,15130.6674708724,19.9999992370605,19.9999992370605,0,-3.441534,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.62745,0.3323833,-35.61599,-28.65616,-16.75888,0,-,-
+3815.5,15136.223026216,19.9999992370605,19.9999992370605,0,-3.441534,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.62745,0.3323833,-35.61599,-28.65616,-16.75888,0,-,-
+3816.5,15141.7785815597,19.9999992370605,19.9999992370605,0,-3.441534,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.62745,0.3323833,-35.61599,-28.65616,-16.75888,0,-,-
+3817.5,15147.3341369033,19.9999992370605,19.9999992370605,0,-3.441534,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.62745,0.3323833,-35.61599,-28.65616,-16.75888,0,-,-
+3818.5,15152.8896922469,19.9999992370605,19.9999992370605,0,-3.329942,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.6277,0.3323833,-34.46244,-27.50236,-15.60508,0,-,-
+3819.5,15158.4452475905,19.9999992370605,19.9999992370605,0,-3.329942,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.6277,0.3323833,-34.46244,-27.50236,-15.60508,0,-,-
+3820.5,15164.0008029342,19.9999992370605,19.9999992370605,0,-3.329942,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.6277,0.3323833,-34.46244,-27.50236,-15.60508,0,-,-
+3821.5,15169.5563582778,19.9999992370605,19.9999992370605,0,-3.21835,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.627942,0.3323833,-33.30877,-26.34844,-14.45116,0,-,-
+3822.5,15175.1119136214,19.9999992370605,19.9999992370605,0,-3.21835,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.627942,0.3323833,-33.30877,-26.34844,-14.45116,0,-,-
+3823.5,15180.6674689651,19.9999992370605,19.9999992370605,0,-3.21835,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.627942,0.3323833,-33.30877,-26.34844,-14.45116,0,-,-
+3824.5,15186.2230243087,19.9999992370605,19.9999992370605,0,-3.21835,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.627942,0.3323833,-33.30877,-26.34844,-14.45116,0,-,-
+3825.5,15191.7785796523,19.9999992370605,19.9999992370605,0,-3.106758,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628175,0.3323833,-32.15496,-25.1944,-13.29713,0,-,-
+3826.5,15197.3341349959,19.9999992370605,19.9999992370605,0,-3.106758,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628175,0.3323833,-32.15496,-25.1944,-13.29713,0,-,-
+3827.5,15202.8896903396,19.9999992370605,19.9999992370605,0,-3.106758,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628175,0.3323833,-32.15496,-25.1944,-13.29713,0,-,-
+3828.5,15208.4452456832,19.9999992370605,19.9999992370605,0,-3.050962,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628289,0.3323833,-31.57802,-24.61734,-12.72007,0,-,-
+3829.5,15214.0008010268,19.9999992370605,19.9999992370605,0,-2.995166,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628401,0.3323833,-31.00104,-24.04025,-12.14298,0,-,-
+3830.5,15219.5563563704,19.9999992370605,19.9999992370605,0,-2.995166,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628401,0.3323833,-31.00104,-24.04025,-12.14298,0,-,-
+3831.5,15225.1119117141,19.9999992370605,19.9999992370605,0,-2.995166,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628401,0.3323833,-31.00104,-24.04025,-12.14298,0,-,-
+3832.5,15230.6674670577,19.9999992370605,19.9999992370605,0,-2.883574,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628618,0.3323833,-29.847,-22.886,-10.98872,0,-,-
+3833.5,15236.2230224013,19.9999992370605,19.9999992370605,0,-2.883574,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628618,0.3323833,-29.847,-22.886,-10.98872,0,-,-
+3834.5,15241.778577745,19.9999992370605,19.9999992370605,0,-2.883574,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628618,0.3323833,-29.847,-22.886,-10.98872,0,-,-
+3835.5,15247.3341330886,19.9999992370605,19.9999992370605,0,-2.883574,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628618,0.3323833,-29.847,-22.886,-10.98872,0,-,-
+3836.5,15252.8896884322,19.9999992370605,19.9999992370605,0,-2.883574,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628618,0.3323833,-29.847,-22.886,-10.98872,0,-,-
+3837.5,15258.4452437758,19.9999992370605,19.9999992370605,0,-2.883574,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628618,0.3323833,-29.847,-22.886,-10.98872,0,-,-
+3838.5,15264.0007991195,19.9999992370605,19.9999992370605,0,-2.883574,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628618,0.3323833,-29.847,-22.886,-10.98872,0,-,-
+3839.5,15269.5563544631,19.9999992370605,19.9999992370605,0,-2.883574,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628618,0.3323833,-29.847,-22.886,-10.98872,0,-,-
+3840.5,15275.1119098067,19.9999992370605,19.9999992370605,0,-2.883574,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628618,0.3323833,-29.847,-22.886,-10.98872,0,-,-
+3841.5,15280.6674651504,19.9999992370605,19.9999992370605,0,-2.883574,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628618,0.3323833,-29.847,-22.886,-10.98872,0,-,-
+3842.5,15286.223020494,19.9999992370605,19.9999992370605,0,-2.883574,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628618,0.3323833,-29.847,-22.886,-10.98872,0,-,-
+3843.5,15291.7785758376,19.9999992370605,19.9999992370605,0,-2.883574,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628618,0.3323833,-29.847,-22.886,-10.98872,0,-,-
+3844.5,15297.3341311812,19.9999992370605,19.9999992370605,0,-2.883574,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628618,0.3323833,-29.847,-22.886,-10.98872,0,-,-
+3845.5,15302.8896865249,19.9999992370605,19.9999992370605,0,-2.883574,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628618,0.3323833,-29.847,-22.886,-10.98872,0,-,-
+3846.5,15308.4452418685,19.9999992370605,19.9999992370605,0,-2.883574,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628618,0.3323833,-29.847,-22.886,-10.98872,0,-,-
+3847.5,15314.0007972121,19.9999992370605,19.9999992370605,0,-2.883574,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628618,0.3323833,-29.847,-22.886,-10.98872,0,-,-
+3848.5,15319.5563525558,19.9999992370605,19.9999992370605,0,-2.883574,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628618,0.3323833,-29.847,-22.886,-10.98872,0,-,-
+3849.5,15325.1119078994,19.9999992370605,19.9999992370605,0,-2.883574,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628618,0.3323833,-29.847,-22.886,-10.98872,0,-,-
+3850.5,15330.667463243,19.9999992370605,19.9999992370605,0,-2.883574,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628618,0.3323833,-29.847,-22.886,-10.98872,0,-,-
+3851.5,15336.2230185866,19.9999992370605,19.9999992370605,0,-2.883574,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628618,0.3323833,-29.847,-22.886,-10.98872,0,-,-
+3852.5,15341.7785739303,19.9999992370605,19.9999992370605,0,-2.883574,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628618,0.3323833,-29.847,-22.886,-10.98872,0,-,-
+3853.5,15347.3341292739,19.9999992370605,19.9999992370605,0,-2.883574,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628618,0.3323833,-29.847,-22.886,-10.98872,0,-,-
+3854.5,15352.8896846175,19.9999992370605,19.9999992370605,0,-2.883574,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628618,0.3323833,-29.847,-22.886,-10.98872,0,-,-
+3855.5,15358.4452399611,19.9999992370605,19.9999992370605,0,-2.883574,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628618,0.3323833,-29.847,-22.886,-10.98872,0,-,-
+3856.5,15364.0007953048,19.9999992370605,19.9999992370605,0,-2.883574,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628618,0.3323833,-29.847,-22.886,-10.98872,0,-,-
+3857.5,15369.5563506484,19.9999992370605,19.9999992370605,0,-2.883574,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628618,0.3323833,-29.847,-22.886,-10.98872,0,-,-
+3858.5,15375.111905992,19.9999992370605,19.9999992370605,0,-2.883574,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628618,0.3323833,-29.847,-22.886,-10.98872,0,-,-
+3859.5,15380.6674613357,19.9999992370605,19.9999992370605,0,-2.883574,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628618,0.3323833,-29.847,-22.886,-10.98872,0,-,-
+3860.5,15386.2230166793,19.9999992370605,19.9999992370605,0,-2.883574,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628618,0.3323833,-29.847,-22.886,-10.98872,0,-,-
+3861.5,15391.7785720229,19.9999992370605,19.9999992370605,0,-2.883574,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628618,0.3323833,-29.847,-22.886,-10.98872,0,-,-
+3862.5,15397.3341273665,19.9999992370605,19.9999992370605,0,-2.883574,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628618,0.3323833,-29.847,-22.886,-10.98872,0,-,-
+3863.5,15402.8896827102,19.9999992370605,19.9999992370605,0,-2.883574,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628618,0.3323833,-29.847,-22.886,-10.98872,0,-,-
+3864.5,15408.4452380538,19.9999992370605,19.9999992370605,0,-2.883574,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628618,0.3323833,-29.847,-22.886,-10.98872,0,-,-
+3865.5,15414.0007933974,19.9999992370605,19.9999992370605,0,-2.883574,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628618,0.3323833,-29.847,-22.886,-10.98872,0,-,-
+3866.5,15419.5563487411,19.9999992370605,19.9999992370605,0,-2.883574,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628618,0.3323833,-29.847,-22.886,-10.98872,0,-,-
+3867.5,15425.1119040847,19.9999992370605,19.9999992370605,0,-2.883574,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628618,0.3323833,-29.847,-22.886,-10.98872,0,-,-
+3868.5,15430.6674594283,19.9999992370605,19.9999992370605,0,-2.883574,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628618,0.3323833,-29.847,-22.886,-10.98872,0,-,-
+3869.5,15436.2230147719,19.9999992370605,19.9999992370605,0,-2.883574,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628618,0.3323833,-29.847,-22.886,-10.98872,0,-,-
+3870.5,15441.7785701156,19.9999992370605,19.9999992370605,0,-2.883574,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628618,0.3323833,-29.847,-22.886,-10.98872,0,-,-
+3871.5,15447.3341254592,19.9999992370605,19.9999992370605,0,-2.883574,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628618,0.3323833,-29.847,-22.886,-10.98872,0,-,-
+3872.5,15452.8896808028,19.9999992370605,19.9999992370605,0,-2.741041,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628884,0.3323833,-28.37282,-21.41155,-9.514274,0,-,-
+3873.5,15458.4452361465,19.9999992370605,19.9999992370605,0,-2.741041,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628884,0.3323833,-28.37282,-21.41155,-9.514274,0,-,-
+3874.5,15464.0007914901,19.9999992370605,19.9999992370605,0,-2.741041,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.628884,0.3323833,-28.37282,-21.41155,-9.514274,0,-,-
+3875.5,15469.5563468337,19.9999992370605,19.9999992370605,0,-2.59653,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.629139,0.3323833,-26.87801,-19.91648,-8.019208,0,-,-
+3876.5,15475.1119021773,19.9999992370605,19.9999992370605,0,-2.59653,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.629139,0.3323833,-26.87801,-19.91648,-8.019208,0,-,-
+3877.5,15480.667457521,19.9999992370605,19.9999992370605,0,-2.59653,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.629139,0.3323833,-26.87801,-19.91648,-8.019208,0,-,-
+3878.5,15486.2230128646,19.9999992370605,19.9999992370605,0,-2.59653,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.629139,0.3323833,-26.87801,-19.91648,-8.019208,0,-,-
+3879.5,15491.7785682082,19.9999992370605,19.9999992370605,0,-2.452019,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.629381,0.3323833,-25.38303,-18.42127,-6.523992,0,-,-
+3880.5,15497.3341235518,19.9999992370605,19.9999992370605,0,-2.452019,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.629381,0.3323833,-25.38303,-18.42127,-6.523992,0,-,-
+3881.5,15502.8896788955,19.9999992370605,19.9999992370605,0,-2.452019,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.629381,0.3323833,-25.38303,-18.42127,-6.523992,0,-,-
+3882.5,15508.4452342391,19.9999992370605,19.9999992370605,0,-2.379764,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.629497,0.3323833,-24.63548,-17.6736,-5.776326,0,-,-
+3883.5,15514.0007895827,19.9999992370605,19.9999992370605,0,-2.307509,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.629609,0.3323833,-23.8879,-16.9259,-5.028626,0,-,-
+3884.5,15519.5563449264,19.9999992370605,19.9999992370605,0,-2.307509,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.629609,0.3323833,-23.8879,-16.9259,-5.028626,0,-,-
+3885.5,15525.11190027,19.9999992370605,19.9999992370605,0,-2.307509,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.629609,0.3323833,-23.8879,-16.9259,-5.028626,0,-,-
+3886.5,15530.6674556136,19.9999992370605,19.9999992370605,0,-2.162998,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.629823,0.3323833,-22.39261,-15.4304,-3.533128,0,-,-
+3887.5,15536.2230109572,19.9999992370605,19.9999992370605,0,-2.162998,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.629823,0.3323833,-22.39261,-15.4304,-3.533128,0,-,-
+3888.5,15541.7785663009,19.9999992370605,19.9999992370605,0,-2.162998,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.629823,0.3323833,-22.39261,-15.4304,-3.533128,0,-,-
+3889.5,15547.3341216445,19.9999992370605,19.9999992370605,0,-2.162998,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.629823,0.3323833,-22.39261,-15.4304,-3.533128,0,-,-
+3890.5,15552.8896769881,19.9999992370605,19.9999992370605,0,-2.018488,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.630023,0.3323833,-20.89718,-13.93478,-2.037501,0,-,-
+3891.5,15558.4452323318,19.9999992370605,19.9999992370605,0,-2.018488,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.630023,0.3323833,-20.89718,-13.93478,-2.037501,0,-,-
+3892.5,15564.0007876754,19.9999992370605,19.9999992370605,0,-2.018488,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.630023,0.3323833,-20.89718,-13.93478,-2.037501,0,-,-
+3893.5,15569.556343019,19.9999992370605,19.9999992370605,0,-1.876617,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.630206,0.3323833,-19.42895,-12.46636,-0.5690813,0,-,-
+3894.5,15575.1118983626,19.9999992370605,19.9999992370605,0,-1.876617,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.630206,0.3323833,-19.42895,-12.46636,-0.5690813,0,-,-
+3895.5,15580.6674537063,19.9999992370605,19.9999992370605,0,-1.876617,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.630206,0.3323833,-19.42895,-12.46636,-0.5690813,0,-,-
+3896.5,15586.2230090499,19.9999992370605,19.9999992370605,0,-1.876617,614.8951,-148.0745,-148.0745,769.4146,-148.0745,-9.534762,49.54389,-9.534762,-9.534762,0,0,5,0.7181036,1.644411,0,0,0,6.630206,0.3323833,-19.42895,-12.46636,-0.5690813,0,-,-
+3897.5,15591.7785643935,19.9999992370605,19.9999992370605,0,-1.735626,614.8951,-134.3845,-134.3845,769.4146,-148.0745,-8.653243,49.54389,-9.534762,-8.653243,0,0,5,0.7092882,1.64441,0,0,0,6.630375,0.3323833,-17.9697,-11.00694,0,165.5028,-,-
+3898.5,15597.3341197371,19.9999992370605,19.9999992370605,0,-1.735626,614.8951,-134.3845,-134.3845,774.5483,-148.0745,-8.653243,49.87446,-9.534762,-8.653243,0,0,5,0.7092882,1.64441,0,0,0,6.630375,0.3323833,-17.9697,-11.00694,0,165.5028,-,-
+3899.5,15602.8896750808,19.9999992370605,19.9999992370605,0,-1.735626,614.8951,-134.3845,-134.3845,774.5483,-148.0745,-8.653243,49.87446,-9.534762,-8.653243,0,0,5,0.7092882,1.64441,0,0,0,6.630375,0.3323833,-17.9697,-11.00694,0,165.5028,-,-
+3900.5,15608.4452304244,19.9999992370605,19.9999992370605,0,-1.66513,614.8951,-123.1638,-123.1638,774.5483,-148.0745,-7.930726,49.87446,-9.534762,-7.930726,0,0,5,0.7020625,1.644411,0,0,0,6.630454,0.3323833,-17.24004,-10.2772,0,276.1172,-,-
+3901.5,15614.000785768,19.9999992370605,19.9999992370605,0,-1.594635,614.8951,-111.9428,-111.9428,778.756,-148.0745,-7.208185,50.1454,-9.534762,-7.208185,0,0,5,0.6948377,1.644411,0,0,0,6.63053,0.3323833,-16.51035,-9.547434,0,386.7353,-,-
+3902.5,15619.5563411117,19.9999992370605,19.9999992370605,0,-1.594635,614.8951,-111.9428,-111.9428,782.9639,-148.0745,-7.208185,50.41636,-9.534762,-7.208185,0,0,5,0.6948377,1.644411,0,0,0,6.63053,0.3323833,-16.51035,-9.547434,0,386.7353,-,-
+3903.5,15625.1118964553,19.9999992370605,19.9999992370605,0,-1.594635,614.8951,-111.9428,-111.9428,782.9639,-148.0745,-7.208185,50.41636,-9.534762,-7.208185,0,0,5,0.6948377,1.644411,0,0,0,6.63053,0.3323833,-16.51035,-9.547434,0,386.7353,-,-
+3904.5,15630.6674517989,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,782.9639,-148.0745,-5.763042,50.41636,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3905.5,15636.2230071425,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3906.5,15641.7785624862,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3907.5,15647.3341178298,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3908.5,15652.8896731734,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3909.5,15658.4452285171,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3910.5,15664.0007838607,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3911.5,15669.5563392043,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3912.5,15675.1118945479,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3913.5,15680.6674498916,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3914.5,15686.2230052352,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3915.5,15691.7785605788,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3916.5,15697.3341159225,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3917.5,15702.8896712661,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3918.5,15708.4452266097,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3919.5,15714.0007819533,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3920.5,15719.556337297,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3921.5,15725.1118926406,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3922.5,15730.6674479842,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3923.5,15736.2230033278,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3924.5,15741.7785586715,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3925.5,15747.3341140151,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3926.5,15752.8896693587,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3927.5,15758.4452247024,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3928.5,15764.000780046,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3929.5,15769.5563353896,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3930.5,15775.1118907332,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3931.5,15780.6674460769,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3932.5,15786.2230014205,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3933.5,15791.7785567641,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3934.5,15797.3341121078,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3935.5,15802.8896674514,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3936.5,15808.445222795,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3937.5,15814.0007781386,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3938.5,15819.5563334823,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3939.5,15825.1118888259,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3940.5,15830.6674441695,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3941.5,15836.2229995131,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3942.5,15841.7785548568,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3943.5,15847.3341102004,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3944.5,15852.889665544,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3945.5,15858.4452208877,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3946.5,15864.0007762313,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3947.5,15869.5563315749,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3948.5,15875.1118869185,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3949.5,15880.6674422622,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3950.5,15886.2229976058,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3951.5,15891.7785529494,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3952.5,15897.3341082931,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3953.5,15902.8896636367,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3954.5,15908.4452189803,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3955.5,15914.0007743239,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3956.5,15919.5563296676,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3957.5,15925.1118850112,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3958.5,15930.6674403548,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3959.5,15936.2229956985,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3960.5,15941.7785510421,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3961.5,15947.3341063857,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3962.5,15952.8896617293,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3963.5,15958.445217073,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3964.5,15964.0007724166,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3965.5,15969.5563277602,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3966.5,15975.1118831038,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3967.5,15980.6674384475,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3968.5,15986.2229937911,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3969.5,15991.7785491347,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3970.5,15997.3341044784,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3971.5,16002.889659822,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3972.5,16008.4452151656,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3973.5,16014.0007705092,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3974.5,16019.5563258529,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3975.5,16025.1118811965,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3976.5,16030.6674365401,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3977.5,16036.2229918838,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3978.5,16041.7785472274,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3979.5,16047.334102571,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3980.5,16052.8896579146,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3981.5,16058.4452132583,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3982.5,16064.0007686019,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3983.5,16069.5563239455,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3984.5,16075.1118792892,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3985.5,16080.6674346328,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3986.5,16086.2229899764,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3987.5,16091.77854532,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3988.5,16097.3341006637,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3989.5,16102.8896560073,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3990.5,16108.4452113509,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3991.5,16114.0007666945,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3992.5,16119.5563220382,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3993.5,16125.1118773818,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3994.5,16130.6674327254,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3995.5,16136.2229880691,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3996.5,16141.7785434127,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3997.5,16147.3340987563,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3998.5,16152.8896540999,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+3999.5,16158.4452094436,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+4000.5,16164.0007647872,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+4001.5,16169.5563201308,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+4002.5,16175.1118754745,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+4003.5,16180.6674308181,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+4004.5,16186.2229861617,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+4005.5,16191.7785415053,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+4006.5,16197.334096849,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+4007.5,16202.8896521926,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+4008.5,16208.4452075362,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+4009.5,16214.0007628798,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+4010.5,16219.5563182235,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+4011.5,16225.1118735671,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+4012.5,16230.6674289107,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+4013.5,16236.2229842544,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+4014.5,16241.778539598,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+4015.5,16247.3340949416,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+4016.5,16252.8896502852,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+4017.5,16258.4452056289,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+4018.5,16264.0007609725,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+4019.5,16269.5563163161,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+4020.5,16275.1118716598,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+4021.5,16280.6674270034,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+4022.5,16286.222982347,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+4023.5,16291.7785376906,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+4024.5,16297.3340930343,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+4025.5,16302.8896483779,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+4026.5,16308.4452037215,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+4027.5,16314.0007590652,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+4028.5,16319.5563144088,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+4029.5,16325.1118697524,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+4030.5,16330.667425096,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+4031.5,16336.2229804397,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+4032.5,16341.7785357833,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+4033.5,16347.3340911269,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+4034.5,16352.8896464705,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+4035.5,16358.4452018142,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+4036.5,16364.0007571578,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+4037.5,16369.5563125014,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+4038.5,16375.1118678451,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+4039.5,16380.6674231887,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+4040.5,16386.2229785323,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+4041.5,16391.7785338759,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+4042.5,16397.3340892196,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+4043.5,16402.8896445632,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+4044.5,16408.4451999068,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+4045.5,16414.0007552505,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+4046.5,16419.5563105941,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+4047.5,16425.1118659377,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+4048.5,16430.6674212813,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+4049.5,16436.222976625,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+4050.5,16441.7785319686,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+4051.5,16447.3340873122,19.9999992370605,19.9999992370605,0,-1.453644,614.8951,-89.49981,-89.49981,791.3801,-148.0745,-5.763042,50.95829,-9.534762,-5.763042,0,0,5,0.6803859,1.644411,0,0,0,6.630673,0.3323833,-15.05089,-8.087839,0,607.981,-,-
+4052.5,16452.8896426558,19.9999992370605,19.9999992370605,0,-1.350023,614.8951,-73.00455,-73.00455,791.3801,-148.0745,-4.700885,50.95829,-9.534762,-4.700885,0,0,5,0.6697643,1.644411,0,0,0,6.630769,0.3323833,-13.97821,-7.015061,0,770.593,-,-
+4053.5,16458.4451979995,19.9999992370605,19.9999992370605,0,-1.350023,614.8951,-73.00455,-73.00455,797.5657,-148.0745,-4.700885,51.35659,-9.534762,-4.700885,0,0,5,0.6697643,1.644411,0,0,0,6.630769,0.3323833,-13.97821,-7.015061,0,770.593,-,-
+4054.5,16464.0007533431,19.9999992370605,19.9999992370605,0,-1.350023,614.8951,-73.00455,-73.00455,797.5657,-148.0745,-4.700885,51.35659,-9.534762,-4.700885,0,0,5,0.6697643,1.644411,0,0,0,6.630769,0.3323833,-13.97821,-7.015061,0,770.593,-,-
+4055.5,16469.5563086867,19.9999992370605,19.9999992370605,0,-1.350023,614.8951,-73.00455,-73.00455,797.5657,-148.0745,-4.700885,51.35659,-9.534762,-4.700885,0,0,5,0.6697643,1.644411,0,0,0,6.630769,0.3323833,-13.97821,-7.015061,0,770.593,-,-
+4056.5,16475.1118640304,19.9999992370605,19.9999992370605,0,-1.350023,614.8951,-73.00455,-73.00455,797.5657,-148.0745,-4.700885,51.35659,-9.534762,-4.700885,0,0,5,0.6697643,1.644411,0,0,0,6.630769,0.3323833,-13.97821,-7.015061,0,770.593,-,-
+4057.5,16480.667419374,19.9999992370605,19.9999992370605,0,-1.209653,614.8951,-50.65847,-50.65847,797.5657,-148.0745,-3.261984,51.35659,-9.534762,-3.261984,0,0,5,0.6553754,1.644411,0,0,0,6.630888,0.3323833,-12.52504,-5.56177,0,990.8831,-,-
+4058.5,16486.2229747176,19.9999992370605,19.9999992370605,0,-1.209653,614.8951,-50.65847,-50.65847,805.9456,-148.0745,-3.261984,51.89618,-9.534762,-3.261984,0,0,5,0.6553754,1.644411,0,0,0,6.630888,0.3323833,-12.52504,-5.56177,0,990.8831,-,-
+4059.5,16491.7785300612,19.9999992370605,19.9999992370605,0,-1.209653,614.8951,-50.65847,-50.65847,805.9456,-148.0745,-3.261984,51.89618,-9.534762,-3.261984,0,0,5,0.6553754,1.644411,0,0,0,6.630888,0.3323833,-12.52504,-5.56177,0,990.8831,-,-
+4060.5,16497.3340854049,19.9999992370605,19.9999992370605,0,-1.209653,614.8951,-50.65847,-50.65847,805.9456,-148.0745,-3.261984,51.89618,-9.534762,-3.261984,0,0,5,0.6553754,1.644411,0,0,0,6.630888,0.3323833,-12.52504,-5.56177,0,990.8831,-,-
+4061.5,16502.8896407485,19.9999992370605,19.9999992370605,0,-1.209653,614.8951,-50.65847,-50.65847,805.9456,-148.0745,-3.261984,51.89618,-9.534762,-3.261984,0,0,5,0.6553754,1.644411,0,0,0,6.630888,0.3323833,-12.52504,-5.56177,0,990.8831,-,-
+4062.5,16508.4451960921,19.9999992370605,19.9999992370605,0,-1.139468,614.8951,-39.48507,-39.48507,805.9456,-148.0745,-2.542509,51.89618,-9.534762,-2.542509,0,0,5,0.6481806,1.644411,0,0,0,6.630943,0.3323833,-11.79843,-4.835101,0,1101.032,-,-
+4063.5,16514.0007514358,19.9999992370605,19.9999992370605,0,-1.069283,614.8951,-28.31143,-28.31143,810.1356,-148.0745,-1.82302,52.16599,-9.534762,-1.82302,0,0,5,0.6409859,1.644411,0,0,0,6.630994,0.3323833,-11.07179,-4.108417,0,1211.183,-,-
+4064.5,16519.5563067794,19.9999992370605,19.9999992370605,0,-1.069283,614.8951,-28.31143,-28.31143,814.3257,-148.0745,-1.82302,52.43579,-9.534762,-1.82302,0,0,5,0.6409859,1.644411,0,0,0,6.630994,0.3323833,-11.07179,-4.108417,0,1211.183,-,-
+4065.5,16525.111862123,19.9999992370605,19.9999992370605,0,-1.069283,614.8951,-28.31143,-28.31143,814.3257,-148.0745,-1.82302,52.43579,-9.534762,-1.82302,0,0,5,0.6409859,1.644411,0,0,0,6.630994,0.3323833,-11.07179,-4.108417,0,1211.183,-,-
+4066.5,16530.6674174666,19.9999992370605,19.9999992370605,0,-1.069283,614.8951,-28.31143,-28.31143,814.3257,-148.0745,-1.82302,52.43579,-9.534762,-1.82302,0,0,5,0.6409859,1.644411,0,0,0,6.630994,0.3323833,-11.07179,-4.108417,0,1211.183,-,-
+4067.5,16536.2229728103,19.9999992370605,19.9999992370605,0,-1.069283,614.8951,-28.31143,-28.31143,814.3257,-148.0745,-1.82302,52.43579,-9.534762,-1.82302,0,0,5,0.6409859,1.644411,0,0,0,6.630994,0.3323833,-11.07179,-4.108417,0,1211.183,-,-
+4068.5,16541.7785281539,19.9999992370605,19.9999992370605,0,-0.9289134,614.8951,-5.963605,-5.963605,814.3257,-148.0745,-0.3840065,52.43579,-9.534762,-0.3840065,0,0,5,0.6265957,1.644411,0,0,0,6.631087,0.3323833,-9.618484,-2.655013,0,1431.49,-,-
+4069.5,16547.3340834975,19.9999992370605,19.9999992370605,0,-0.9289134,614.8951,-5.963605,-5.963605,822.7062,-148.0745,-0.3840065,52.97542,-9.534762,-0.3840065,0,0,5,0.6265957,1.644411,0,0,0,6.631087,0.3323833,-9.618484,-2.655013,0,1431.49,-,-
+4070.5,16552.8896388412,19.9999992370605,19.9999992370605,0,-0.9289134,614.8951,-5.963605,-5.963605,822.7062,-148.0745,-0.3840065,52.97542,-9.534762,-0.3840065,0,0,5,0.6265957,1.644411,0,0,0,6.631087,0.3323833,-9.618484,-2.655013,0,1431.49,-,-
+4071.5,16558.4451941848,19.9999992370605,19.9999992370605,0,-0.9289134,614.8951,-5.963605,-5.963605,822.7062,-148.0745,-0.3840065,52.97542,-9.534762,-0.3840065,0,0,5,0.6265957,1.644411,0,0,0,6.631087,0.3323833,-9.618484,-2.655013,0,1431.49,-,-
+4072.5,16564.0007495284,19.9999992370605,19.9999992370605,0,-0.9289134,614.8951,-5.963605,-5.963605,822.7062,-148.0745,-0.3840065,52.97542,-9.534762,-0.3840065,0,0,5,0.6265957,1.644411,0,0,0,6.631087,0.3323833,-9.618484,-2.655013,0,1431.49,-,-
+4073.5,16569.556304872,19.9999992370605,19.9999992370605,0,-0.7885436,614.8951,16.38492,16.38492,822.7062,-148.0745,1.055052,52.97542,-9.534762,1.055052,0,0,5,0.6122051,1.644411,0,0,0,6.631167,0.3323833,-8.165114,-1.201564,0,1645.855,-,-
+4074.5,16575.1118602157,19.9999992370605,19.9999992370605,0,-0.7885436,614.8951,16.38492,16.38492,831.0869,-148.0745,1.055052,53.51507,-9.534762,1.055052,0,0,5,0.6122051,1.644411,0,0,0,6.631167,0.3323833,-8.165114,-1.201564,0,1645.855,-,-
+4075.5,16580.6674155593,19.9999992370605,19.9999992370605,0,-0.7885436,614.8951,16.38492,16.38492,831.0869,-148.0745,1.055052,53.51507,-9.534762,1.055052,0,0,5,0.6122051,1.644411,0,0,0,6.631167,0.3323833,-8.165114,-1.201564,0,1645.855,-,-
+4076.5,16586.2229709029,19.9999992370605,19.9999992370605,0,-0.7885436,614.8951,16.38492,16.38492,831.0869,-148.0745,1.055052,53.51507,-9.534762,1.055052,0,0,5,0.6122051,1.644411,0,0,0,6.631167,0.3323833,-8.165114,-1.201564,0,1645.855,-,-
+4077.5,16591.7785262465,19.9999992370605,19.9999992370605,0,-0.7885436,614.8951,16.38492,16.38492,831.0869,-148.0745,1.055052,53.51507,-9.534762,1.055052,0,0,5,0.6122051,1.644411,0,0,0,6.631167,0.3323833,-8.165114,-1.201564,0,1645.855,-,-
+4078.5,16597.3340815902,19.9999992370605,19.9999992370605,0,-0.7885436,614.8951,16.38492,16.38492,831.0869,-148.0745,1.055052,53.51507,-9.534762,1.055052,0,0,5,0.6122051,1.644411,0,0,0,6.631167,0.3323833,-8.165114,-1.201564,0,1645.855,-,-
+4079.5,16602.8896369338,19.9999992370605,19.9999992370605,0,-0.6481737,614.8951,38.73396,38.73396,831.0869,-148.0745,2.494144,53.51507,-9.534762,2.494144,0,0,5,0.5978142,1.644411,0,0,0,6.631234,0.3323833,-6.711698,0.2519193,0,1858.059,-,-
+4080.5,16608.4451922774,19.9999992370605,19.9999992370605,0,-0.6481737,614.8951,38.73396,38.73396,839.4677,-148.0745,2.494144,54.05473,-9.534762,2.494144,0,0,5,0.5978142,1.644411,0,0,0,6.631234,0.3323833,-6.711698,0.2519193,0,1858.059,-,-
+4081.5,16614.0007476211,19.9999992370605,19.9999992370605,0,-0.6481737,614.8951,38.73396,38.73396,839.4677,-148.0745,2.494144,54.05473,-9.534762,2.494144,0,0,5,0.5978142,1.644411,0,0,0,6.631234,0.3323833,-6.711698,0.2519193,0,1858.059,-,-
+4082.5,16619.5563029647,19.9999992370605,19.9999992370605,0,-0.6481737,614.8951,38.73396,38.73396,839.4677,-148.0745,2.494144,54.05473,-9.534762,2.494144,0,0,5,0.5978142,1.644411,0,0,0,6.631234,0.3323833,-6.711698,0.2519193,0,1858.059,-,-
+4083.5,16625.1118583083,19.9999992370605,19.9999992370605,0,-0.6481737,614.8951,38.73396,38.73396,839.4677,-148.0745,2.494144,54.05473,-9.534762,2.494144,0,0,5,0.5978142,1.644411,0,0,0,6.631234,0.3323833,-6.711698,0.2519193,0,1858.059,-,-
+4084.5,16630.6674136519,19.9999992370605,19.9999992370605,0,-0.5078039,614.8951,61.42271,61.42271,839.4677,-148.0745,3.955111,54.05473,-9.534762,3.955111,0,0,5,0.6052703,1.644411,0,0,0,6.631288,0.3323833,-5.258242,1.70543,0,2073.489,-,-
+4085.5,16636.2229689956,19.9999992370605,19.9999992370605,0,-0.5078039,614.8951,61.42271,61.42271,847.9761,-148.0745,3.955111,54.60259,-9.534762,3.955111,0,0,5,0.6052703,1.644411,0,0,0,6.631288,0.3323833,-5.258242,1.70543,0,2073.489,-,-
+4086.5,16641.7785243392,19.9999992370605,19.9999992370605,0,-0.5078039,614.8951,61.42271,61.42271,847.9761,-148.0745,3.955111,54.60259,-9.534762,3.955111,0,0,5,0.6052703,1.644411,0,0,0,6.631288,0.3323833,-5.258242,1.70543,0,2073.489,-,-
+4087.5,16647.3340796828,19.9999992370605,19.9999992370605,0,-0.5078039,614.8951,61.42271,61.42271,847.9761,-148.0745,3.955111,54.60259,-9.534762,3.955111,0,0,5,0.6052703,1.644411,0,0,0,6.631288,0.3323833,-5.258242,1.70543,0,2073.489,-,-
+4088.5,16652.8896350265,19.9999992370605,19.9999992370605,0,-0.5078039,614.8951,61.42271,61.42271,847.9761,-148.0745,3.955111,54.60259,-9.534762,3.955111,0,0,5,0.6052703,1.644411,0,0,0,6.631288,0.3323833,-5.258242,1.70543,0,2073.489,-,-
+4089.5,16658.4451903701,19.9999992370605,19.9999992370605,0,-0.5078039,614.8951,61.42271,61.42271,847.9761,-148.0745,3.955111,54.60259,-9.534762,3.955111,0,0,5,0.6052703,1.644411,0,0,0,6.631288,0.3323833,-5.258242,1.70543,0,2073.489,-,-
+4090.5,16664.0007457137,19.9999992370605,19.9999992370605,0,-0.5078039,614.8951,61.42271,61.42271,847.9761,-148.0745,3.955111,54.60259,-9.534762,3.955111,0,0,5,0.6052703,1.644411,0,0,0,6.631288,0.3323833,-5.258242,1.70543,0,2073.489,-,-
+4091.5,16669.5563010573,19.9999992370605,19.9999992370605,0,-0.5078039,614.8951,61.42271,61.42271,847.9761,-148.0745,3.955111,54.60259,-9.534762,3.955111,0,0,5,0.6052703,1.644411,0,0,0,6.631288,0.3323833,-5.258242,1.70543,0,2073.489,-,-
+4092.5,16675.111856401,19.9999992370605,19.9999992370605,0,-0.5078039,614.8951,61.42271,61.42271,847.9761,-148.0745,3.955111,54.60259,-9.534762,3.955111,0,0,5,0.6052703,1.644411,0,0,0,6.631288,0.3323833,-5.258242,1.70543,0,2073.489,-,-
+4093.5,16680.6674117446,19.9999992370605,19.9999992370605,0,-0.5078039,614.8951,61.42271,61.42271,847.9761,-148.0745,3.955111,54.60259,-9.534762,3.955111,0,0,5,0.6052703,1.644411,0,0,0,6.631288,0.3323833,-5.258242,1.70543,0,2073.489,-,-
+4094.5,16686.2229670882,19.9999992370605,19.9999992370605,0,-0.5078039,614.8951,61.42271,61.42271,847.9761,-148.0745,3.955111,54.60259,-9.534762,3.955111,0,0,5,0.6052703,1.644411,0,0,0,6.631288,0.3323833,-5.258242,1.70543,0,2073.489,-,-
+4095.5,16691.7785224319,19.9999992370605,19.9999992370605,0,-0.5078039,614.8951,61.42271,61.42271,847.9761,-148.0745,3.955111,54.60259,-9.534762,3.955111,0,0,5,0.6052703,1.644411,0,0,0,6.631288,0.3323833,-5.258242,1.70543,0,2073.489,-,-
+4096.5,16697.3340777755,19.9999992370605,19.9999992370605,0,-0.5078039,614.8951,61.42271,61.42271,847.9761,-148.0745,3.955111,54.60259,-9.534762,3.955111,0,0,5,0.6052703,1.644411,0,0,0,6.631288,0.3323833,-5.258242,1.70543,0,2073.489,-,-
+4097.5,16702.8896331191,19.9999992370605,19.9999992370605,0,-0.5078039,614.8951,61.42271,61.42271,847.9761,-148.0745,3.955111,54.60259,-9.534762,3.955111,0,0,5,0.6052703,1.644411,0,0,0,6.631288,0.3323833,-5.258242,1.70543,0,2073.489,-,-
+4098.5,16708.4451884627,19.9999992370605,19.9999992370605,0,-0.5078039,614.8951,61.42271,61.42271,847.9761,-148.0745,3.955111,54.60259,-9.534762,3.955111,0,0,5,0.6052703,1.644411,0,0,0,6.631288,0.3323833,-5.258242,1.70543,0,2073.489,-,-
+4099.5,16714.0007438064,19.9999992370605,19.9999992370605,0,-0.5078039,614.8951,61.42271,61.42271,847.9761,-148.0745,3.955111,54.60259,-9.534762,3.955111,0,0,5,0.6052703,1.644411,0,0,0,6.631288,0.3323833,-5.258242,1.70543,0,2073.489,-,-
+4100.5,16719.55629915,19.9999992370605,19.9999992370605,0,-0.5078039,614.8951,61.42271,61.42271,847.9761,-148.0745,3.955111,54.60259,-9.534762,3.955111,0,0,5,0.6052703,1.644411,0,0,0,6.631288,0.3323833,-5.258242,1.70543,0,2073.489,-,-
+4101.5,16725.1118544936,19.9999992370605,19.9999992370605,0,-0.5078039,614.8951,61.42271,61.42271,847.9761,-148.0745,3.955111,54.60259,-9.534762,3.955111,0,0,5,0.6052703,1.644411,0,0,0,6.631288,0.3323833,-5.258242,1.70543,0,2073.489,-,-
+4102.5,16730.6674098372,19.9999992370605,19.9999992370605,0,-0.5078039,614.8951,61.42271,61.42271,847.9761,-148.0745,3.955111,54.60259,-9.534762,3.955111,0,0,5,0.6052703,1.644411,0,0,0,6.631288,0.3323833,-5.258242,1.70543,0,2073.489,-,-
+4103.5,16736.2229651809,19.9999992370605,19.9999992370605,0,-0.5078039,614.8951,61.42271,61.42271,847.9761,-148.0745,3.955111,54.60259,-9.534762,3.955111,0,0,5,0.6052703,1.644411,0,0,0,6.631288,0.3323833,-5.258242,1.70543,0,2073.489,-,-
+4104.5,16741.7785205245,19.9999992370605,19.9999992370605,0,-0.5078039,614.8951,61.42271,61.42271,847.9761,-148.0745,3.955111,54.60259,-9.534762,3.955111,0,0,5,0.6052703,1.644411,0,0,0,6.631288,0.3323833,-5.258242,1.70543,0,2073.489,-,-
+4105.5,16747.3340758681,19.9999992370605,19.9999992370605,0,-0.5078039,614.8951,61.42271,61.42271,847.9761,-148.0745,3.955111,54.60259,-9.534762,3.955111,0,0,5,0.6052703,1.644411,0,0,0,6.631288,0.3323833,-5.258242,1.70543,0,2073.489,-,-
+4106.5,16752.8896312118,19.9999992370605,19.9999992370605,0,-0.5078039,614.8951,61.42271,61.42271,847.9761,-148.0745,3.955111,54.60259,-9.534762,3.955111,0,0,5,0.6052703,1.644411,0,0,0,6.631288,0.3323833,-5.258242,1.70543,0,2073.489,-,-
+4107.5,16758.4451865554,19.9999992370605,19.9999992370605,0,-0.4571993,614.8951,69.72661,69.72661,847.9761,-148.0745,4.489813,54.60259,-9.534762,4.489813,0,0,5,0.6159644,1.644411,0,0,0,6.631304,0.3323833,-4.73425,2.229438,0,2152.334,-,-
+4108.5,16764.000741899,19.9999992370605,19.9999992370605,0,-0.4065948,614.8951,78.03056,78.03056,851.09,-148.0745,5.024518,54.8031,-9.534762,5.024518,0,0,5,0.6266586,1.644411,0,0,0,6.631319,0.3323833,-4.210254,2.753448,0,2231.18,-,-
+4109.5,16769.5562972426,19.9999992370605,19.9999992370605,0,-0.4065948,614.8951,78.03056,78.03056,854.204,-148.0745,5.024518,55.00362,-9.534762,5.024518,0,0,5,0.6266586,1.644411,0,0,0,6.631319,0.3323833,-4.210254,2.753448,0,2231.18,-,-
+4110.5,16775.1118525863,19.9999992370605,19.9999992370605,0,-0.4065948,614.8951,78.03056,78.03056,854.204,-148.0745,5.024518,55.00362,-9.534762,5.024518,0,0,5,0.6266586,1.644411,0,0,0,6.631319,0.3323833,-4.210254,2.753448,0,2231.18,-,-
+4111.5,16780.6674079299,19.9999992370605,19.9999992370605,0,-0.3012138,614.8951,95.32305,95.32305,854.204,-148.0745,6.138011,55.00362,-9.534762,6.138011,0,0,5,0.6489282,1.644411,0,0,0,6.631343,0.3323833,-3.119055,3.844671,0,2395.372,-,-
+4112.5,16786.2229632735,19.9999992370605,19.9999992370605,0,-0.3012138,614.8951,95.32305,95.32305,860.6887,-148.0745,6.138011,55.42118,-9.534762,6.138011,0,0,5,0.6489282,1.644411,0,0,0,6.631343,0.3323833,-3.119055,3.844671,0,2395.372,-,-
+4113.5,16791.7785186172,19.9999992370605,19.9999992370605,0,-0.3012138,614.8951,95.32305,95.32305,860.6887,-148.0745,6.138011,55.42118,-9.534762,6.138011,0,0,5,0.6489282,1.644411,0,0,0,6.631343,0.3323833,-3.119055,3.844671,0,2395.372,-,-
+4114.5,16797.3340739608,19.9999992370605,19.9999992370605,0,-0.3012138,614.8951,95.32305,95.32305,860.6887,-148.0745,6.138011,55.42118,-9.534762,6.138011,0,0,5,0.6489282,1.644411,0,0,0,6.631343,0.3323833,-3.119055,3.844671,0,2395.372,-,-
+4115.5,16802.8896293044,19.9999992370605,19.9999992370605,0,-0.195833,614.8951,112.6156,112.6156,860.6887,-148.0745,7.251507,55.42118,-9.534762,7.251507,0,0,5,0.6711984,1.644411,0,0,0,6.631361,0.3323833,-2.027846,4.935897,0,2559.565,-,-
+4116.5,16808.445184648,19.9999992370605,19.9999992370605,0,-0.195833,614.8951,112.6156,112.6156,867.1734,-148.0745,7.251507,55.83874,-9.534762,7.251507,0,0,5,0.6711984,1.644411,0,0,0,6.631361,0.3323833,-2.027846,4.935897,0,2559.565,-,-
diff --git a/VectoCoreTest/TestData/Integration/FullPowerTrain/24t Coach-1Gear_Coach_24t_InitTest.vmod b/VectoCoreTest/TestData/Integration/FullPowerTrain/24t Coach-1Gear_Coach_24t_InitTest.vmod
index a4efbbf2dff03c06cb052c9e38c2f668201cb07b..88ef9aec6d59385407c8a1a13eea832edbf2297b 100644
--- a/VectoCoreTest/TestData/Integration/FullPowerTrain/24t Coach-1Gear_Coach_24t_InitTest.vmod	
+++ b/VectoCoreTest/TestData/Integration/FullPowerTrain/24t Coach-1Gear_Coach_24t_InitTest.vmod	
@@ -1,12 +1,12 @@
 time [s],dist [m],v_act [km/h],v_targ [km/h],acc [m/s²],grad [%],n [1/min],Tq_eng [Nm],Tq_clutch [Nm],Tq_full [Nm],Tq_drag [Nm],Pe_eng [kW],Pe_full [kW],Pe_drag [kW],Pe_clutch [kW],Pa Eng [kW],Paux [kW],Gear [-],Ploss GB [kW],Ploss Diff [kW],Ploss Retarder [kW],Pa GB [kW],Pa Veh [kW],Proll [kW],Pair [kW],Pgrad [kW],Pwheel [kW],Pbrake [kW],FC-Map [g/h],FC-AUXc [g/h],FC-WHTCc [g/h]
-1.5,5,18,18,0,2.842372,964.1117,323.7562,323.7562,2208.664,-158.0261,32.68693,222.9902,-15.95456,32.68693,0,0,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,7574.113,-,-
-2.5,10,18,18,0,2.842372,964.1117,323.7562,323.7562,2208.664,-158.0261,32.68693,222.9902,-15.95456,32.68693,0,0,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,7574.113,-,-
-3.5,15,18,18,0,2.842372,964.1117,323.7562,323.7562,2208.664,-158.0261,32.68693,222.9902,-15.95456,32.68693,0,0,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,7574.113,-,-
-4.5,20,18,18,0,2.842372,964.1117,323.7562,323.7562,2208.664,-158.0261,32.68693,222.9902,-15.95456,32.68693,0,0,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,7574.113,-,-
-5.5,25,18,18,0,2.842372,964.1117,323.7562,323.7562,2208.664,-158.0261,32.68693,222.9902,-15.95456,32.68693,0,0,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,7574.113,-,-
-6.5,30,18,18,0,2.842372,964.1117,323.7562,323.7562,2208.664,-158.0261,32.68693,222.9902,-15.95456,32.68693,0,0,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,7574.113,-,-
-7.5,35,18,18,0,2.842372,964.1117,323.7562,323.7562,2208.664,-158.0261,32.68693,222.9902,-15.95456,32.68693,0,0,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,7574.113,-,-
-8.5,40,18,18,0,2.842372,964.1117,323.7562,323.7562,2208.664,-158.0261,32.68693,222.9902,-15.95456,32.68693,0,0,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,7574.113,-,-
-9.5,45,18,18,0,2.842372,964.1117,323.7562,323.7562,2208.664,-158.0261,32.68693,222.9902,-15.95456,32.68693,0,0,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,7574.113,-,-
-10.5,50,18,18,0,2.842372,964.1117,323.7562,323.7562,2208.664,-158.0261,32.68693,222.9902,-15.95456,32.68693,0,0,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,7574.113,-,-
-11.5,55,18,18,0,2.842372,964.1117,323.7562,323.7562,2208.664,-158.0261,32.68693,222.9902,-15.95456,32.68693,0,0,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,7574.113,-,-
+1.5,5,18,18,0,2.842372,1023.503,338.4261,338.4261,2300,-162.2328,36.27284,246.5163,-17.38827,36.27284,0,0,3,1.822875,1.76304,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8311.801,-,-
+2.5,10,18,18,0,2.842372,1023.503,338.4261,338.4261,1564.41,-162.2328,36.27284,167.675,-17.38827,36.27284,0,0,3,1.822875,1.76304,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8311.801,-,-
+3.5,15,18,18,0,2.842372,1023.503,338.4261,338.4261,1564.41,-162.2328,36.27284,167.675,-17.38827,36.27284,0,0,3,1.822875,1.76304,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8311.801,-,-
+4.5,20,18,18,0,2.842372,1023.503,338.4261,338.4261,1564.41,-162.2328,36.27284,167.675,-17.38827,36.27284,0,0,3,1.822875,1.76304,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8311.801,-,-
+5.5,25,18,18,0,2.842372,1023.503,338.4261,338.4261,1564.41,-162.2328,36.27284,167.675,-17.38827,36.27284,0,0,3,1.822875,1.76304,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8311.801,-,-
+6.5,30,18,18,0,2.842372,1023.503,338.4261,338.4261,1564.41,-162.2328,36.27284,167.675,-17.38827,36.27284,0,0,3,1.822875,1.76304,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8311.801,-,-
+7.5,35,18,18,0,2.842372,1023.503,338.4261,338.4261,1564.41,-162.2328,36.27284,167.675,-17.38827,36.27284,0,0,3,1.822875,1.76304,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8311.801,-,-
+8.5,40,18,18,0,2.842372,1023.503,338.4261,338.4261,1564.41,-162.2328,36.27284,167.675,-17.38827,36.27284,0,0,3,1.822875,1.76304,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8311.801,-,-
+9.5,45,18,18,0,2.842372,1023.503,338.4261,338.4261,1564.41,-162.2328,36.27284,167.675,-17.38827,36.27284,0,0,3,1.822875,1.76304,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8311.801,-,-
+10.5,50,18,18,0,2.842372,1023.503,338.4261,338.4261,1564.41,-162.2328,36.27284,167.675,-17.38827,36.27284,0,0,3,1.822875,1.76304,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8311.801,-,-
+11.5,55,18,18,0,2.842372,1023.503,338.4261,338.4261,1564.41,-162.2328,36.27284,167.675,-17.38827,36.27284,0,0,3,1.822875,1.76304,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8311.801,-,-
diff --git a/VectoCoreTest/TestData/Integration/FullPowerTrain/24t Coach-8indirectgears.vgbx b/VectoCoreTest/TestData/Integration/FullPowerTrain/24t Coach-8indirectgears.vgbx
new file mode 100644
index 0000000000000000000000000000000000000000..a60f91e2a483d6d260aec13ad1d9533046a92a07
--- /dev/null
+++ b/VectoCoreTest/TestData/Integration/FullPowerTrain/24t Coach-8indirectgears.vgbx	
@@ -0,0 +1,90 @@
+{
+  "Header": {
+    "CreatedBy": " ()",
+    "Date": "8/21/2015 10:23:22 AM",
+    "AppVersion": "2.2 beta-2",
+    "FileVersion": 5
+  },
+  "Body": {
+    "SavedInDeclMode": false,
+    "ModelName": "Generic 24t Coach",
+    "Inertia": 0.0,
+    "TracInt": 1.0,
+    "Gears": [
+      {
+        "Ratio": 3.240355,
+        "LossMap": "Axle.vtlm"
+      },
+      {
+        "Ratio": 6.38,
+        "LossMap": "Indirect Gear.vtlm",
+        "TCactive": false,
+        "ShiftPolygon": "ShiftPolygons.vgbs",
+        "FullLoadCurve": "Gearbox.vfld"
+      },
+      {
+        "Ratio": 4.63,
+        "LossMap": "Indirect Gear.vtlm",
+        "TCactive": false,
+        "ShiftPolygon": "ShiftPolygons.vgbs",
+        "FullLoadCurve": "Gearbox.vfld"
+      },
+      {
+        "Ratio": 3.44,
+        "LossMap": "Indirect Gear.vtlm",
+        "TCactive": false,
+        "ShiftPolygon": "ShiftPolygons.vgbs",
+        "FullLoadCurve": "Gearbox.vfld"
+      },
+      {
+        "Ratio": 2.59,
+        "LossMap": "Indirect Gear.vtlm",
+        "TCactive": false,
+        "ShiftPolygon": "ShiftPolygons.vgbs",
+        "FullLoadCurve": "Gearbox.vfld"
+      },
+      {
+        "Ratio": 1.86,
+        "LossMap": "Indirect Gear.vtlm",
+        "TCactive": false,
+        "ShiftPolygon": "ShiftPolygons.vgbs",
+        "FullLoadCurve": "Gearbox.vfld"
+      },
+      {
+        "Ratio": 1.35,
+        "LossMap": "Indirect Gear.vtlm",
+        "TCactive": false,
+        "ShiftPolygon": "ShiftPolygons.vgbs",
+        "FullLoadCurve": "Gearbox.vfld"
+      },
+      {
+        "Ratio": 1.0,
+        "LossMap": "Indirect Gear.vtlm",
+        "TCactive": false,
+        "ShiftPolygon": "ShiftPolygons.vgbs",
+        "FullLoadCurve": "Gearbox.vfld"
+      },
+      {
+        "Ratio": 0.76,
+        "LossMap": "Indirect Gear.vtlm",
+        "TCactive": false,
+        "ShiftPolygon": "ShiftPolygons.vgbs",
+        "FullLoadCurve": "Gearbox.vfld"
+      }
+    ],
+    "TqReserve": 100.0,
+    "SkipGears": true,
+    "ShiftTime": 2,
+    "EaryShiftUp": true,
+    "StartTqReserve": 20.0,
+    "StartSpeed": 2.0,
+    "StartAcc": 0.6,
+    "GearboxType": "AMT",
+    "TorqueConverter": {
+      "Enabled": false,
+      "File": "<NOFILE>",
+      "RefRPM": 0.0,
+      "Inertia": 0.0
+    }
+  }
+}
\ No newline at end of file
diff --git a/VectoCoreTest/TestData/Integration/FullPowerTrain/Axle.vtlm b/VectoCoreTest/TestData/Integration/FullPowerTrain/Axle.vtlm
new file mode 100644
index 0000000000000000000000000000000000000000..ca83698dd7d8747eaa2cc34fc5c1440b1d209a10
--- /dev/null
+++ b/VectoCoreTest/TestData/Integration/FullPowerTrain/Axle.vtlm
@@ -0,0 +1,267 @@
+Input Speed [rpm],Input Torque [Nm],Torque Loss [Nm],Eff [-]
+0,-2500,77.5
+0,-1500,62.5
+0,-500,47.5
+0,500,47.5
+0,1500,62.5
+0,2500,77.5
+0,3500,92.5
+0,4500,107.5
+0,5500,122.5
+0,6500,137.5
+0,7500,152.5
+0,8500,167.5
+0,9500,182.5
+0,10500,197.5
+0,11500,212.5
+0,12500,227.5
+0,13500,242.5
+0,14500,257.5
+0,15500,272.5
+200,-2500,77.5
+200,-1500,62.5
+200,-500,47.5
+200,500,47.5
+200,1500,62.5
+200,2500,77.5
+200,3500,92.5
+200,4500,107.5
+200,5500,122.5
+200,6500,137.5
+200,7500,152.5
+200,8500,167.5
+200,9500,182.5
+200,10500,197.5
+200,11500,212.5
+200,12500,227.5
+200,13500,242.5
+200,14500,257.5
+200,15500,272.5
+400,-2500,77.5
+400,-1500,62.5
+400,-500,47.5
+400,500,47.5
+400,1500,62.5
+400,2500,77.5
+400,3500,92.5
+400,4500,107.5
+400,5500,122.5
+400,6500,137.5
+400,7500,152.5
+400,8500,167.5
+400,9500,182.5
+400,10500,197.5
+400,11500,212.5
+400,12500,227.5
+400,13500,242.5
+400,14500,257.5
+400,15500,272.5
+600,-2500,77.5
+600,-1500,62.5
+600,-500,47.5
+600,500,47.5
+600,1500,62.5
+600,2500,77.5
+600,3500,92.5
+600,4500,107.5
+600,5500,122.5
+600,6500,137.5
+600,7500,152.5
+600,8500,167.5
+600,9500,182.5
+600,10500,197.5
+600,11500,212.5
+600,12500,227.5
+600,13500,242.5
+600,14500,257.5
+600,15500,272.5
+800,-2500,77.5
+800,-1500,62.5
+800,-500,47.5
+800,500,47.5
+800,1500,62.5
+800,2500,77.5
+800,3500,92.5
+800,4500,107.5
+800,5500,122.5
+800,6500,137.5
+800,7500,152.5
+800,8500,167.5
+800,9500,182.5
+800,10500,197.5
+800,11500,212.5
+800,12500,227.5
+800,13500,242.5
+800,14500,257.5
+800,15500,272.5
+1000,-2500,77.5
+1000,-1500,62.5
+1000,-500,47.5
+1000,500,47.5
+1000,1500,62.5
+1000,2500,77.5
+1000,3500,92.5
+1000,4500,107.5
+1000,5500,122.5
+1000,6500,137.5
+1000,7500,152.5
+1000,8500,167.5
+1000,9500,182.5
+1000,10500,197.5
+1000,11500,212.5
+1000,12500,227.5
+1000,13500,242.5
+1000,14500,257.5
+1000,15500,272.5
+1200,-2500,77.5
+1200,-1500,62.5
+1200,-500,47.5
+1200,500,47.5
+1200,1500,62.5
+1200,2500,77.5
+1200,3500,92.5
+1200,4500,107.5
+1200,5500,122.5
+1200,6500,137.5
+1200,7500,152.5
+1200,8500,167.5
+1200,9500,182.5
+1200,10500,197.5
+1200,11500,212.5
+1200,12500,227.5
+1200,13500,242.5
+1200,14500,257.5
+1200,15500,272.5
+1400,-2500,77.5
+1400,-1500,62.5
+1400,-500,47.5
+1400,500,47.5
+1400,1500,62.5
+1400,2500,77.5
+1400,3500,92.5
+1400,4500,107.5
+1400,5500,122.5
+1400,6500,137.5
+1400,7500,152.5
+1400,8500,167.5
+1400,9500,182.5
+1400,10500,197.5
+1400,11500,212.5
+1400,12500,227.5
+1400,13500,242.5
+1400,14500,257.5
+1400,15500,272.5
+1600,-2500,77.5
+1600,-1500,62.5
+1600,-500,47.5
+1600,500,47.5
+1600,1500,62.5
+1600,2500,77.5
+1600,3500,92.5
+1600,4500,107.5
+1600,5500,122.5
+1600,6500,137.5
+1600,7500,152.5
+1600,8500,167.5
+1600,9500,182.5
+1600,10500,197.5
+1600,11500,212.5
+1600,12500,227.5
+1600,13500,242.5
+1600,14500,257.5
+1600,15500,272.5
+1800,-2500,77.5
+1800,-1500,62.5
+1800,-500,47.5
+1800,500,47.5
+1800,1500,62.5
+1800,2500,77.5
+1800,3500,92.5
+1800,4500,107.5
+1800,5500,122.5
+1800,6500,137.5
+1800,7500,152.5
+1800,8500,167.5
+1800,9500,182.5
+1800,10500,197.5
+1800,11500,212.5
+1800,12500,227.5
+1800,13500,242.5
+1800,14500,257.5
+1800,15500,272.5
+2000,-2500,77.5
+2000,-1500,62.5
+2000,-500,47.5
+2000,500,47.5
+2000,1500,62.5
+2000,2500,77.5
+2000,3500,92.5
+2000,4500,107.5
+2000,5500,122.5
+2000,6500,137.5
+2000,7500,152.5
+2000,8500,167.5
+2000,9500,182.5
+2000,10500,197.5
+2000,11500,212.5
+2000,12500,227.5
+2000,13500,242.5
+2000,14500,257.5
+2000,15500,272.5
+2200,-2500,77.5
+2200,-1500,62.5
+2200,-500,47.5
+2200,500,47.5
+2200,1500,62.5
+2200,2500,77.5
+2200,3500,92.5
+2200,4500,107.5
+2200,5500,122.5
+2200,6500,137.5
+2200,7500,152.5
+2200,8500,167.5
+2200,9500,182.5
+2200,10500,197.5
+2200,11500,212.5
+2200,12500,227.5
+2200,13500,242.5
+2200,14500,257.5
+2200,15500,272.5
+2400,-2500,77.5
+2400,-1500,62.5
+2400,-500,47.5
+2400,500,47.5
+2400,1500,62.5
+2400,2500,77.5
+2400,3500,92.5
+2400,4500,107.5
+2400,5500,122.5
+2400,6500,137.5
+2400,7500,152.5
+2400,8500,167.5
+2400,9500,182.5
+2400,10500,197.5
+2400,11500,212.5
+2400,12500,227.5
+2400,13500,242.5
+2400,14500,257.5
+2400,15500,272.5
+2600,-2500,77.5
+2600,-1500,62.5
+2600,-500,47.5
+2600,500,47.5
+2600,1500,62.5
+2600,2500,77.5
+2600,3500,92.5
+2600,4500,107.5
+2600,5500,122.5
+2600,6500,137.5
+2600,7500,152.5
+2600,8500,167.5
+2600,9500,182.5
+2600,10500,197.5
+2600,11500,212.5
+2600,12500,227.5
+2600,13500,242.5
+2600,14500,257.5
+2600,15500,272.5
diff --git a/VectoCoreTest/TestData/Integration/FullPowerTrain/Gearbox.vfld b/VectoCoreTest/TestData/Integration/FullPowerTrain/Gearbox.vfld
new file mode 100644
index 0000000000000000000000000000000000000000..6d672b060c073be809e98ee906e6a83e1d8020b3
--- /dev/null
+++ b/VectoCoreTest/TestData/Integration/FullPowerTrain/Gearbox.vfld
@@ -0,0 +1,11 @@
+n [U/min],Mfull [Nm],Mdrag [Nm],<PT1> [s]
+560,1180,-149,0.6
+600,1282,-148,0.6
+799.9999999,1791,-149,0.6
+1000,2300,-160,0.6
+1200,2300,-179,0.6
+1400,2300,-203,0.6
+1599.999999,2079,-235,0.49
+1800,1857,-264,0.25
+2000.000001,1352,-301,0.25
+2100,1100,-320,0.25
diff --git a/VectoCoreTest/TestData/Integration/FullPowerTrain/Indirect Gear.vtlm b/VectoCoreTest/TestData/Integration/FullPowerTrain/Indirect Gear.vtlm
new file mode 100644
index 0000000000000000000000000000000000000000..90e4beee5b235671a0500dbd9f28ff2b3dd73236
--- /dev/null
+++ b/VectoCoreTest/TestData/Integration/FullPowerTrain/Indirect Gear.vtlm	
@@ -0,0 +1,177 @@
+Input Speed [rpm],Input Torque [Nm],Torque Loss [Nm],Eff [-]
+0,-350,12.06,
+0,-150,8.06,
+0,50,6.06,
+0,250,10.06,
+0,450,14.06,
+0,650,18.06,
+0,850,22.06,
+0,1050,26.06,
+0,1250,30.06,
+0,1450,34.06,
+0,1650,38.06,
+0,1850,42.06,
+0,2050,46.06,
+0,2250,50.06,
+0,2450,54.06,
+200,-350,13.072,
+200,-150,9.072,
+200,50,7.072,
+200,250,11.072,
+200,450,15.072,
+200,650,19.072,
+200,850,23.072,
+200,1050,27.072,
+200,1250,31.072,
+200,1450,35.072,
+200,1650,39.072,
+200,1850,43.072,
+200,2050,47.072,
+200,2250,51.072,
+200,2450,55.072,
+400,-350,14.084,
+400,-150,10.084,
+400,50,8.084,
+400,250,12.084,
+400,450,16.084,
+400,650,20.084,
+400,850,24.084,
+400,1050,28.084,
+400,1250,32.084,
+400,1450,36.084,
+400,1650,40.084,
+400,1850,44.084,
+400,2050,48.084,
+400,2250,52.084,
+400,2450,56.084,
+600,-350,15.096,
+600,-150,11.096,
+600,50,9.096,
+600,250,13.096,
+600,450,17.096,
+600,650,21.096,
+600,850,25.096,
+600,1050,29.096,
+600,1250,33.096,
+600,1450,37.096,
+600,1650,41.096,
+600,1850,45.096,
+600,2050,49.096,
+600,2250,53.096,
+600,2450,57.096,
+800,-350,16.108,
+800,-150,12.108,
+800,50,10.108,
+800,250,14.108,
+800,450,18.108,
+800,650,22.108,
+800,850,26.108,
+800,1050,30.108,
+800,1250,34.108,
+800,1450,38.108,
+800,1650,42.108,
+800,1850,46.108,
+800,2050,50.108,
+800,2250,54.108,
+800,2450,58.108,
+1000,-350,17.12,
+1000,-150,13.12,
+1000,50,11.12,
+1000,250,15.12,
+1000,450,19.12,
+1000,650,23.12,
+1000,850,27.12,
+1000,1050,31.12,
+1000,1250,35.12,
+1000,1450,39.12,
+1000,1650,43.12,
+1000,1850,47.12,
+1000,2050,51.12,
+1000,2250,55.12,
+1000,2450,59.12,
+1200,-350,18.132,
+1200,-150,14.132,
+1200,50,12.132,
+1200,250,16.132,
+1200,450,20.132,
+1200,650,24.132,
+1200,850,28.132,
+1200,1050,32.132,
+1200,1250,36.132,
+1200,1450,40.132,
+1200,1650,44.132,
+1200,1850,48.132,
+1200,2050,52.132,
+1200,2250,56.132,
+1200,2450,60.132,
+1400,-350,19.144,
+1400,-150,15.144,
+1400,50,13.144,
+1400,250,17.144,
+1400,450,21.144,
+1400,650,25.144,
+1400,850,29.144,
+1400,1050,33.144,
+1400,1250,37.144,
+1400,1450,41.144,
+1400,1650,45.144,
+1400,1850,49.144,
+1400,2050,53.144,
+1400,2250,57.144,
+1400,2450,61.144,
+1600,-350,20.156,
+1600,-150,16.156,
+1600,50,14.156,
+1600,250,18.156,
+1600,450,22.156,
+1600,650,26.156,
+1600,850,30.156,
+1600,1050,34.156,
+1600,1250,38.156,
+1600,1450,42.156,
+1600,1650,46.156,
+1600,1850,50.156,
+1600,2050,54.156,
+1600,2250,58.156,
+1600,2450,62.156,
+1800,-350,21.168,
+1800,-150,17.168,
+1800,50,15.168,
+1800,250,19.168,
+1800,450,23.168,
+1800,650,27.168,
+1800,850,31.168,
+1800,1050,35.168,
+1800,1250,39.168,
+1800,1450,43.168,
+1800,1650,47.168,
+1800,1850,51.168,
+1800,2050,55.168,
+1800,2250,59.168,
+1800,2450,63.168,
+2000,-350,22.18,
+2000,-150,18.18,
+2000,50,16.18,
+2000,250,20.18,
+2000,450,24.18,
+2000,650,28.18,
+2000,850,32.18,
+2000,1050,36.18,
+2000,1250,40.18,
+2000,1450,44.18,
+2000,1650,48.18,
+2000,1850,52.18,
+2000,2050,56.18,
+2000,2250,60.18,
+2000,2450,64.18,
+0,-1000,25.06,
+200,-1000,26.072,
+400,-1000,27.084,
+600,-1000,28.096,
+800,-1000,29.108,
+1000,-1000,30.12,
+1200,-1000,31.132,
+1400,-1000,32.144,
+1600,-1000,33.156,
+1800,-1000,34.168,
+2000,-1000,35.18,
diff --git a/VectoCoreTest/TestData/Integration/FullPowerTrain/SimpleLoss.vtlm b/VectoCoreTest/TestData/Integration/FullPowerTrain/SimpleLoss.vtlm
new file mode 100644
index 0000000000000000000000000000000000000000..1221ed5951e9c50ec0c8e5f051d331c14fc238cc
--- /dev/null
+++ b/VectoCoreTest/TestData/Integration/FullPowerTrain/SimpleLoss.vtlm
@@ -0,0 +1,5 @@
+Input Speed [rpm],Input Torque [Nm],Torque Loss [Nm],Eff [-]
+-99999,-99999,40,
+-99999,99999,40,
+99999,-99999,40,
+99999,99999,40,
diff --git a/VectoCoreTest/VectoCoreTest.csproj b/VectoCoreTest/VectoCoreTest.csproj
index 88f10d3e9b8ab0d4f16625f4e7d7f32ce204db00..de0e703075a1bcf14f1bfecec3f5dec5e7b840d7 100644
--- a/VectoCoreTest/VectoCoreTest.csproj
+++ b/VectoCoreTest/VectoCoreTest.csproj
@@ -272,9 +272,6 @@
     <None Include="TestData\EngineFullLoadJumps.csv">
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </None>
-    <None Include="TestData\Integration\FullPowerTrain\1-Gear-StopTest-dist.vdri">
-      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
-    </None>
     <None Include="TestData\Integration\FullPowerTrain\1-Gear-Test-dist.vdri">
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </None>
@@ -284,9 +281,6 @@
     <None Include="TestData\Integration\FullPowerTrain\24t Coach-1Gear.vecto">
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </None>
-    <None Include="TestData\Integration\FullPowerTrain\24t Coach-1Gear.vgbx">
-      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
-    </None>
     <None Include="TestData\Integration\FullPowerTrain\24t Coach-1Gear.vsig">
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </None>
@@ -302,16 +296,13 @@
     <None Include="TestData\Integration\FullPowerTrain\24t Coach.veng">
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </None>
-    <None Include="TestData\Integration\FullPowerTrain\24t Coach.vfld">
-      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
-    </None>
     <None Include="TestData\Integration\FullPowerTrain\24t Coach.vmap">
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </None>
     <None Include="TestData\Integration\FullPowerTrain\24t Coach.vveh">
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </None>
-    <None Include="TestData\Integration\FullPowerTrain\Coach.vacc">
+    <None Include="TestData\Integration\FullPowerTrain\Axle.vtlm">
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </None>
     <None Include="TestData\Integration\FullPowerTrain\Coach.vdri">
@@ -320,12 +311,16 @@
     <None Include="TestData\Integration\FullPowerTrain\Coach_24t_xshort.vdri">
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </None>
-    <None Include="TestData\Integration\FullPowerTrain\NoLossGbxMap.vtlm">
+    <None Include="TestData\Integration\FullPowerTrain\Gearbox.vfld">
+      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
+    </None>
+    <None Include="TestData\Integration\FullPowerTrain\SimpleLoss.vtlm">
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </None>
-    <None Include="TestData\Integration\FullPowerTrain\ShiftPolygons.vgbs">
+    <None Include="TestData\Integration\FullPowerTrain\Indirect Gear.vtlm">
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </None>
+    <None Include="TestData\Integration\FullPowerTrain\NoLossGbxMap.vtlm" />
     <None Include="TestData\Integration\FullPowerTrain\unlimited.vacc">
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </None>