diff --git a/VectoCore/Configuration/Constants.cs b/VectoCore/Configuration/Constants.cs
index c0c53ac46bfa45f748ae8dafe842466361323972..d148d26c72a5c9c0800af65dc9204d0155d0c65c 100644
--- a/VectoCore/Configuration/Constants.cs
+++ b/VectoCore/Configuration/Constants.cs
@@ -54,13 +54,20 @@ namespace TUGraz.VectoCore.Configuration
 			/// threshold for changes in the road gradient. changes below this threshold will be considered to be equal for filtering out the driving cycle.
 			/// altitude computation is done before filtering! 
 			/// </summary>
-			public static readonly double DrivingCycleRoadGradientTolerance = 0;
+			public static readonly double DrivingCycleRoadGradientTolerance = 1E-12;
 
 			//VectoMath.InclinationToAngle(0.25 / 100.0).Value();
 
 			public const int DriverSearchLoopThreshold = 100;
 
 			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>();
 		}
 	}
 }
\ No newline at end of file
diff --git a/VectoCore/FileIO/Reader/DrivingCycleDataReader.cs b/VectoCore/FileIO/Reader/DrivingCycleDataReader.cs
index 09b7b7c4038ae74a72f9afbba39cc92eca298e05..f0daad3e8dfd150419f08032db9b6c22c3bd88c2 100644
--- a/VectoCore/FileIO/Reader/DrivingCycleDataReader.cs
+++ b/VectoCore/FileIO/Reader/DrivingCycleDataReader.cs
@@ -69,16 +69,28 @@ namespace TUGraz.VectoCore.FileIO.Reader
 			filtered.Add(current);
 			var distance = current.Distance;
 			var altitude = current.Altitude;
-			foreach (var entry in entries) {
+			//foreach (var entry in entries) {
+			for (var i = 0; i < entries.Count; i++) {
+				var entry = entries[i];
+				if (i > 0) {
+					altitude += (entry.Distance - distance) * entries[i - 1].RoadGradientPercent / 100.0;
+				}
 				entry.Altitude = altitude;
 				if (!CycleEntriesAreEqual(current, entry)) {
 					entry.Altitude = altitude;
 					filtered.Add(entry);
 					current = entry;
 				}
-				if (entry.StoppingTime.IsEqual(0) && !entry.VehicleTargetSpeed.IsEqual(0)) {
-					altitude += (entry.Distance - distance) * entry.RoadGradientPercent / 100.0;
+				if (!entry.StoppingTime.IsEqual(0) && entry.VehicleTargetSpeed.IsEqual(0)) {
+					// vehicle stops. duplicate current distance entry with 0 waiting time
+					var tmp = new DrivingCycleData.DrivingCycleEntry(entry) {
+						StoppingTime = 0.SI<Second>(),
+						VehicleTargetSpeed = i < entries.Count - 1 ? entries[i + 1].VehicleTargetSpeed : 0.SI<MeterPerSecond>()
+					};
+					filtered.Add(tmp);
+					current = tmp;
 				}
+
 				distance = entry.Distance;
 			}
 			log.Info(string.Format("Data loaded. Number of Entries: {0}, filtered Entries: {1}", entries.Count, filtered.Count));
diff --git a/VectoCore/Models/Connector/Ports/IResponse.cs b/VectoCore/Models/Connector/Ports/IResponse.cs
index 2e82d35260084fa84957a66458824cc5b6ba1570..7965878e35c78a1ab469a724a1814bab4221dbd5 100644
--- a/VectoCore/Models/Connector/Ports/IResponse.cs
+++ b/VectoCore/Models/Connector/Ports/IResponse.cs
@@ -23,5 +23,17 @@ namespace TUGraz.VectoCore.Models.Connector.Ports
 		Second SimulationInterval { get; set; }
 
 		ResponseType ResponseType { get; }
+
+		Watt EnginePowerRequest { get; set; }
+
+		Watt ClutchPowerRequest { get; set; }
+
+		Watt GearboxPowerRequest { get; set; }
+
+		Watt AxlegearPowerRequest { get; set; }
+
+		Watt WheelsPowerRequest { get; set; }
+
+		Watt VehiclePowerRequest { get; set; }
 	}
 }
\ No newline at end of file
diff --git a/VectoCore/Models/Connector/Ports/Impl/Response.cs b/VectoCore/Models/Connector/Ports/Impl/Response.cs
index 3826459d99f144c4ef13d7600a7900e72b5557e4..0f1a00956f39352d9b4f1d6669b0aed0364d46fe 100644
--- a/VectoCore/Models/Connector/Ports/Impl/Response.cs
+++ b/VectoCore/Models/Connector/Ports/Impl/Response.cs
@@ -8,6 +8,18 @@ namespace TUGraz.VectoCore.Models.Connector.Ports.Impl
 		public Second SimulationInterval { get; set; }
 
 		public abstract ResponseType ResponseType { get; }
+
+		public Watt EnginePowerRequest { get; set; }
+
+		public Watt ClutchPowerRequest { get; set; }
+
+		public Watt GearboxPowerRequest { get; set; }
+
+		public Watt AxlegearPowerRequest { get; set; }
+
+		public Watt WheelsPowerRequest { get; set; }
+
+		public Watt VehiclePowerRequest { get; set; }
 	}
 
 	/// <summary>
@@ -37,7 +49,7 @@ namespace TUGraz.VectoCore.Models.Connector.Ports.Impl
 	/// </summary>
 	public class ResponseFailOverload : AbstractResponse
 	{
-		public double Delta { get; set; }
+		public Watt Delta { get; set; }
 		public double Gradient { get; set; }
 
 		public override ResponseType ResponseType
@@ -71,8 +83,8 @@ namespace TUGraz.VectoCore.Models.Connector.Ports.Impl
 
 	internal class ResponseDryRun : AbstractResponse
 	{
-		public double DeltaFullLoad { get; set; }
-		public double DeltaDragLoad { get; set; }
+		public Watt EngineDeltaFullLoad { get; set; }
+		public Watt EngineDeltaDragLoad { get; set; }
 
 		public override ResponseType ResponseType
 		{
diff --git a/VectoCore/Models/Declaration/DeclarationData.cs b/VectoCore/Models/Declaration/DeclarationData.cs
index 42ac5840cec11b5873e334b988195bcfc8e95217..3ec6b22fb2a6cc3ea9c25d7813150235f45aa05c 100644
--- a/VectoCore/Models/Declaration/DeclarationData.cs
+++ b/VectoCore/Models/Declaration/DeclarationData.cs
@@ -130,7 +130,7 @@ namespace TUGraz.VectoCore.Models.Declaration
 			public static class LookAhead
 			{
 				public const bool Enabled = true;
-				public static readonly MeterPerSquareSecond Deceleration = 0.5.SI<MeterPerSquareSecond>();
+				public static readonly MeterPerSquareSecond Deceleration = -0.5.SI<MeterPerSquareSecond>();
 				public static readonly MeterPerSecond MinimumSpeed = 50.KMPHtoMeterPerSecond();
 			}
 
diff --git a/VectoCore/Models/Simulation/Data/ModalDataWriter.cs b/VectoCore/Models/Simulation/Data/ModalDataWriter.cs
index 2ae1b9b37ae9b88a3b5fc0621918a4aa93e99238..42c2dca39a02bbd1800565d59229e5f5645240ee 100644
--- a/VectoCore/Models/Simulation/Data/ModalDataWriter.cs
+++ b/VectoCore/Models/Simulation/Data/ModalDataWriter.cs
@@ -14,7 +14,7 @@ namespace TUGraz.VectoCore.Models.Simulation.Data
 		private string ModFileName { get; set; }
 
 
-		public ModalDataWriter(string modFileName, SimulatorFactory.FactoryMode mode)
+		public ModalDataWriter(string modFileName, SimulatorFactory.FactoryMode mode = SimulatorFactory.FactoryMode.EngineeringMode)
 		{
 			HasTorqueConverter = false;
 			ModFileName = modFileName;
diff --git a/VectoCore/Models/Simulation/Data/ModalResult.cs b/VectoCore/Models/Simulation/Data/ModalResult.cs
index e2a8f032bd5fb2fc79f58bca2e8009eba24cba66..25aa357b3938f7ae6f528ef63e6fad188a69fb7d 100644
--- a/VectoCore/Models/Simulation/Data/ModalResult.cs
+++ b/VectoCore/Models/Simulation/Data/ModalResult.cs
@@ -174,7 +174,7 @@ namespace TUGraz.VectoCore.Models.Simulation.Data
 		/// <summary>
 		///     [km/h]	Target vehicle speed.
 		/// </summary>
-		[ModalResultField(typeof(SI))] v_targ,
+		[ModalResultField(typeof(SI), outputFactor: 3.6)] v_targ,
 
 		/// <summary>
 		///     [m/s2]	Vehicle acceleration.
diff --git a/VectoCore/Models/Simulation/DataBus/IClutchInfo.cs b/VectoCore/Models/Simulation/DataBus/IClutchInfo.cs
new file mode 100644
index 0000000000000000000000000000000000000000..6b227c4786a459e3fe38f6967ba5a16bf0eedb77
--- /dev/null
+++ b/VectoCore/Models/Simulation/DataBus/IClutchInfo.cs
@@ -0,0 +1,10 @@
+using System.Security.Cryptography.X509Certificates;
+using TUGraz.VectoCore.Models.SimulationComponent;
+
+namespace TUGraz.VectoCore.Models.Simulation.DataBus
+{
+	public interface IClutchInfo
+	{
+		ClutchState ClutchState();
+	}
+}
\ No newline at end of file
diff --git a/VectoCore/Models/Simulation/DataBus/IDataBus.cs b/VectoCore/Models/Simulation/DataBus/IDataBus.cs
index f3c7bedf5758971ef05952d0ae287f18cbcac4c6..a3ad564caf7af2599fb4dc836ba54a93019b9d10 100644
--- a/VectoCore/Models/Simulation/DataBus/IDataBus.cs
+++ b/VectoCore/Models/Simulation/DataBus/IDataBus.cs
@@ -1,7 +1,10 @@
-namespace TUGraz.VectoCore.Models.Simulation.DataBus
+using TUGraz.VectoCore.Models.SimulationComponent;
+
+namespace TUGraz.VectoCore.Models.Simulation.DataBus
 {
 	/// <summary>
 	/// Defines interfaces for all different cockpits to access shared data of the powertrain.
 	/// </summary>
-	public interface IDataBus : IGearboxInfo, IEngineInfo, IVehicleInfo, IMileageCounter, IRoadLookAhead {}
+	public interface IDataBus : IGearboxInfo, IEngineInfo, IVehicleInfo, IMileageCounter, IClutchInfo, IBreaks,
+		IRoadLookAhead {}
 }
\ No newline at end of file
diff --git a/VectoCore/Models/Simulation/DataBus/IRoadLookAhead.cs b/VectoCore/Models/Simulation/DataBus/IRoadLookAhead.cs
index 6f5b189670bcd25c436d3f8bb71b7c84715cfc9c..438dc0de58305d372a13f5c3af86ffe12293e286 100644
--- a/VectoCore/Models/Simulation/DataBus/IRoadLookAhead.cs
+++ b/VectoCore/Models/Simulation/DataBus/IRoadLookAhead.cs
@@ -6,7 +6,7 @@ namespace TUGraz.VectoCore.Models.Simulation.DataBus
 {
 	public interface IRoadLookAhead
 	{
-		IReadOnlyList<DrivingCycleData.DrivingCycleEntry> LookAhead(Meter distance);
+		IReadOnlyList<DrivingCycleData.DrivingCycleEntry> LookAhead(Meter lookaheadDistance);
 
 		IReadOnlyList<DrivingCycleData.DrivingCycleEntry> LookAhead(Second time);
 	}
diff --git a/VectoCore/Models/Simulation/Impl/DistanceRun.cs b/VectoCore/Models/Simulation/Impl/DistanceRun.cs
index ffe69095640887ba1ff53aa101e512305070b031..7b037b12ca99dd17e90ba0a3716c6315d5d91102 100644
--- a/VectoCore/Models/Simulation/Impl/DistanceRun.cs
+++ b/VectoCore/Models/Simulation/Impl/DistanceRun.cs
@@ -16,10 +16,30 @@ namespace TUGraz.VectoCore.Models.Simulation.Impl
 			var ds = (Container.VehicleSpeed() * Constants.SimulationSettings.TargetTimeInterval).Cast<Meter>();
 
 			if (ds.IsEqual(0)) {
+				// vehicle stands still, drive a certain distance...
 				ds = Constants.SimulationSettings.DriveOffDistance;
 			}
 
-			var response = CyclePort.Request(AbsTime, ds);
+			IResponse response;
+			var requestDone = false;
+
+			do {
+				response = CyclePort.Request(AbsTime, ds);
+				switch (response.ResponseType) {
+					case ResponseType.Success:
+						requestDone = true;
+						break;
+					case ResponseType.CycleFinished:
+						requestDone = true;
+						break;
+					case ResponseType.DrivingCycleDistanceExceeded:
+						var distanceResponse = response as ResponseDrivingCycleDistanceExceeded;
+						if (distanceResponse != null) {
+							ds = distanceResponse.MaxDistance;
+						}
+						break;
+				}
+			} while (!requestDone);
 
 			//while (response is ResponseFailTimeInterval) {
 			//	_dt = (response as ResponseFailTimeInterval).DeltaT;
diff --git a/VectoCore/Models/Simulation/Impl/PowertrainBuilder.cs b/VectoCore/Models/Simulation/Impl/PowertrainBuilder.cs
index a464fc6effea46512f9bca79b35a8ab65bebbfed..3f27440d733243225b063519e8f514c06f69d68a 100644
--- a/VectoCore/Models/Simulation/Impl/PowertrainBuilder.cs
+++ b/VectoCore/Models/Simulation/Impl/PowertrainBuilder.cs
@@ -46,7 +46,8 @@ namespace TUGraz.VectoCore.Models.Simulation.Impl
 			var driver = AddComponent(cycle, new Driver(_container, data.DriverData));
 			var vehicle = AddComponent(driver, new Vehicle(_container, data.VehicleData));
 			var wheels = AddComponent(vehicle, new Wheels(_container, data.VehicleData.DynamicTyreRadius));
-			var tmp = AddComponent(wheels, new AxleGear(_container, data.GearboxData.AxleGearData));
+			var breaks = AddComponent(wheels, new Breaks(_container));
+			var tmp = AddComponent(breaks, new AxleGear(_container, data.GearboxData.AxleGearData));
 
 			switch (data.VehicleData.Retarder.Type) {
 				case RetarderData.RetarderType.Primary:
@@ -152,7 +153,7 @@ namespace TUGraz.VectoCore.Models.Simulation.Impl
 			directAux.AddDirect(cycle);
 			gearbox.InPort().Connect(directAux.OutPort());
 
-			var engine = new CombustionEngine(_container, data.EngineData);
+			var engine = new EngineOnlyCombustionEngine(_container, data.EngineData);
 			directAux.InPort().Connect(engine.OutPort());
 
 			return _container;
diff --git a/VectoCore/Models/Simulation/Impl/VehicleContainer.cs b/VectoCore/Models/Simulation/Impl/VehicleContainer.cs
index 85ba72ed618998e7ec189d15c6b58f73c11bcd1e..f93e60d9aa871de7d191d9e3faf93a3837235834 100644
--- a/VectoCore/Models/Simulation/Impl/VehicleContainer.cs
+++ b/VectoCore/Models/Simulation/Impl/VehicleContainer.cs
@@ -18,9 +18,12 @@ namespace TUGraz.VectoCore.Models.Simulation.Impl
 		internal IEngineInfo Engine;
 		internal IGearboxInfo Gearbox;
 		internal IVehicleInfo Vehicle;
+		internal IBreaks Breaks;
 
 		internal IMileageCounter MilageCounter;
 
+		internal IClutchInfo Clutch;
+
 		internal IRoadLookAhead Road;
 
 		internal ISimulationOutPort Cycle;
@@ -121,10 +124,20 @@ namespace TUGraz.VectoCore.Models.Simulation.Impl
 				MilageCounter = milage;
 			}
 
+			var breaks = component as IBreaks;
+			if (breaks != null) {
+				Breaks = breaks;
+			}
+
 			var road = component as IRoadLookAhead;
 			if (road != null) {
 				Road = road;
 			}
+
+			var clutch = component as IClutchInfo;
+			if (clutch != null) {
+				Clutch = clutch;
+			}
 		}
 
 
@@ -162,14 +175,25 @@ namespace TUGraz.VectoCore.Models.Simulation.Impl
 			return MilageCounter.Distance();
 		}
 
-		public IReadOnlyList<DrivingCycleData.DrivingCycleEntry> LookAhead(Meter distance)
+		public IReadOnlyList<DrivingCycleData.DrivingCycleEntry> LookAhead(Meter lookaheadDistance)
 		{
-			return Road.LookAhead(distance);
+			return Road.LookAhead(lookaheadDistance);
 		}
 
 		public IReadOnlyList<DrivingCycleData.DrivingCycleEntry> LookAhead(Second time)
 		{
 			return Road.LookAhead(time);
 		}
+
+		public Watt BreakPower
+		{
+			get { return Breaks.BreakPower; }
+			set { Breaks.BreakPower = value; }
+		}
+
+		public ClutchState ClutchState()
+		{
+			return Clutch.ClutchState();
+		}
 	}
 }
\ No newline at end of file
diff --git a/VectoCore/Models/SimulationComponent/Data/AccelerationCurve.cs b/VectoCore/Models/SimulationComponent/Data/AccelerationCurve.cs
index 43e1c4d4782ca5bc72d70f9d732fe2220af65945..1dd22d194bd0133cc093ad57678bc1d53cb5087a 100644
--- a/VectoCore/Models/SimulationComponent/Data/AccelerationCurve.cs
+++ b/VectoCore/Models/SimulationComponent/Data/AccelerationCurve.cs
@@ -1,4 +1,5 @@
-using System.Collections.Generic;
+using System;
+using System.Collections.Generic;
 using System.Data;
 using System.IO;
 using System.Linq;
@@ -47,6 +48,20 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Data
 		}
 
 		public AccelerationEntry Lookup(MeterPerSecond key)
+		{
+			var index = FindIndex(key);
+
+			return new AccelerationEntry {
+				Acceleration =
+					VectoMath.Interpolate(_entries[index - 1].Key, _entries[index].Key, _entries[index - 1].Value.Acceleration,
+						_entries[index].Value.Acceleration, key),
+				Deceleration =
+					VectoMath.Interpolate(_entries[index - 1].Key, _entries[index].Key, _entries[index - 1].Value.Deceleration,
+						_entries[index].Value.Deceleration, key)
+			};
+		}
+
+		protected int FindIndex(MeterPerSecond key)
 		{
 			var index = 1;
 			if (key < _entries[0].Key) {
@@ -58,15 +73,7 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Data
 					index = (key > _entries[0].Key) ? _entries.Count - 1 : 1;
 				}
 			}
-			
-			return new AccelerationEntry {
-				Acceleration =
-					VectoMath.Interpolate(_entries[index - 1].Key, _entries[index].Key, _entries[index - 1].Value.Acceleration,
-						_entries[index].Value.Acceleration, key),
-				Deceleration =
-					VectoMath.Interpolate(_entries[index - 1].Key, _entries[index].Key, _entries[index - 1].Value.Deceleration,
-						_entries[index].Value.Deceleration, key)
-			};
+			return index;
 		}
 
 		public class AccelerationEntry
@@ -74,5 +81,66 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Data
 			public MeterPerSquareSecond Acceleration { get; set; }
 			public MeterPerSquareSecond Deceleration { get; set; }
 		}
+
+		/// <summary>
+		/// 
+		/// </summary>
+		/// <param name="v1">current speed of the vehicle</param>
+		/// <param name="v2">desired speed of the vehicle at the end of acceleration/deceleration phase</param>
+		/// <returns>distance required to accelerate/decelerate the vehicle from v1 to v2 according to the acceleration curve</returns>
+		public Meter ComputeAccelerationDistance(MeterPerSecond v1, MeterPerSecond v2)
+		{
+			var index1 = FindIndex(v1);
+			var index2 = FindIndex(v2);
+
+			var distance = 0.SI<Meter>();
+			for (var i = index2; i <= index1; i++) {
+				distance += ComputeAccelerationSegmentDistance(i, v1, v2);
+			}
+			return distance;
+		}
+
+		/// <summary>
+		/// 
+		/// </summary>
+		/// <param name="i">segment of the acceleration curve to use [(i-1) ... i]</param>
+		/// <param name="v1">current speed of the vehicle</param>
+		/// <param name="v2">desired speed of the vehicle at the end of acceleration/deceleration phase</param>
+		/// <returns>distance required to accelerate/decelerate the vehicle from v1 to v2 according to the acceleration curve</returns>
+		private Meter ComputeAccelerationSegmentDistance(int i, MeterPerSecond v1, MeterPerSecond v2)
+		{
+			var leftEntry = _entries[i - 1]; // entry with lower velocity
+			var rightEntry = _entries[i]; // entry with higher velocity
+
+			v2 = VectoMath.Max(v2, leftEntry.Key); // min. velocity within current segment
+			v1 = VectoMath.Min(v1, rightEntry.Key); // max. velocity within current segment
+
+			if (leftEntry.Value.Deceleration.IsEqual(rightEntry.Value.Deceleration)) {
+				// v(t) = a * t + v1  => t = (v2 - v1) / a
+				// s(t) = a/2 * t^2 + v1 * t + s0  {s0 == 0}  => s(t)
+				var acceleration = v2 > v1 ? leftEntry.Value.Acceleration : leftEntry.Value.Deceleration;
+				return ((v2 - v1) * (v2 - v1) / 2.0 / acceleration + v1 * (v2 - v1) / acceleration).Cast<Meter>();
+			}
+
+			// a(v) = k * v + d
+			// dv/dt = a(v) = d * v + d  ==> v(t) = sgn(k * v1 + d) * exp(-k * c) / k * exp(t * k) - d / k 
+			// v(0) = v1  => c = - ln(|v1 * k + d|) / k
+			// v(t) = (v1 + d / k) * exp(t * k) - d / k   => t = 1 / k * ln((v2 * k + d) / (v1 * k + d))
+			// s(t) = m / k* exp(t * k) + b * t + c'   {m = v1 + d / k, b = -d / k}
+
+			var k = (leftEntry.Value.Deceleration - rightEntry.Value.Deceleration) / (leftEntry.Key - rightEntry.Key);
+			var d = leftEntry.Value.Deceleration - k * leftEntry.Key;
+			if (v2 > v1) {
+				k = (leftEntry.Value.Acceleration - rightEntry.Value.Acceleration) / (leftEntry.Key - rightEntry.Key);
+				d = leftEntry.Value.Acceleration - k * leftEntry.Key;
+			}
+			var m = v1 + d / k;
+			var b = -d / k;
+			var c = 0.SI<Meter>() - m / k;
+			var t = Math.Log(((v2 * k + d) / (v1 * k + d)).Cast<Scalar>()) / k;
+			// TODO @@@quam: remove .SI<> when bug #VECTO-111 is fixed...
+
+			return m / k * Math.Exp((k * t).Value()) + b * t + c;
+		}
 	}
 }
\ No newline at end of file
diff --git a/VectoCore/Models/SimulationComponent/Data/DrivingCycleData.cs b/VectoCore/Models/SimulationComponent/Data/DrivingCycleData.cs
index eea002c1817b2133abd724553fc1b47be45c5baf..6fdee417cdb7fdd6dd1df959287ccb4282260dda 100644
--- a/VectoCore/Models/SimulationComponent/Data/DrivingCycleData.cs
+++ b/VectoCore/Models/SimulationComponent/Data/DrivingCycleData.cs
@@ -22,6 +22,26 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Data
 
 		public class DrivingCycleEntry
 		{
+			public DrivingCycleEntry() {}
+
+			public DrivingCycleEntry(DrivingCycleEntry entry)
+			{
+				Distance = entry.Distance;
+				Time = entry.Time;
+				VehicleTargetSpeed = entry.VehicleTargetSpeed;
+				RoadGradient = entry.RoadGradient;
+				Altitude = entry.Altitude;
+				StoppingTime = entry.StoppingTime;
+				EngineSpeed = entry.EngineSpeed;
+				Gear = entry.Gear;
+				AdditionalAuxPowerDemand = entry.AdditionalAuxPowerDemand;
+				AirSpeedRelativeToVehicle = entry.AirSpeedRelativeToVehicle;
+				WindYawAngle = entry.WindYawAngle;
+				EngineTorque = entry.EngineTorque;
+				Drag = entry.Drag;
+				AuxiliarySupplyPower = new Dictionary<string, Watt>(entry.AuxiliarySupplyPower);
+			}
+
 			/// <summary>
 			///     [m]	Travelled distance used for distance-based cycles. If "t"
 			///     is also defined this column will be ignored.
diff --git a/VectoCore/Models/SimulationComponent/Data/Engine/EngineFullLoadCurve.cs b/VectoCore/Models/SimulationComponent/Data/Engine/EngineFullLoadCurve.cs
index 5b2e82d0e1daab584e5d814aef59015cfcabe94b..c8f4af8de253806abacc4d9fdeeb32988e3ca4de 100644
--- a/VectoCore/Models/SimulationComponent/Data/Engine/EngineFullLoadCurve.cs
+++ b/VectoCore/Models/SimulationComponent/Data/Engine/EngineFullLoadCurve.cs
@@ -51,7 +51,7 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Data.Engine
 				log.WarnFormat(
 					"FullLoadCurve: Header Line is not valid. Expected: '{0}, {1}, {2}', Got: '{3}'. Falling back to column index.",
 					Fields.EngineSpeed, Fields.TorqueFullLoad, Fields.TorqueDrag,
-					string.Join(", ", data.Columns.Cast<DataColumn>().Select(c => c.ColumnName).Reverse()));
+					string.Join(", ", data.Columns.Cast<DataColumn>().Select(c => c.ColumnName)));
 
 				entriesFld = CreateFromColumnIndizes(data);
 			}
diff --git a/VectoCore/Models/SimulationComponent/Data/Gearbox/TransmissionLossMap.cs b/VectoCore/Models/SimulationComponent/Data/Gearbox/TransmissionLossMap.cs
index bc429a3f29fc25e2aee419ad7de7010784c67a70..dfc6cc7269c335e6efe8f17d714527a44b0d9621 100644
--- a/VectoCore/Models/SimulationComponent/Data/Gearbox/TransmissionLossMap.cs
+++ b/VectoCore/Models/SimulationComponent/Data/Gearbox/TransmissionLossMap.cs
@@ -4,6 +4,7 @@ using System.Data;
 using System.Linq;
 using Common.Logging;
 using Newtonsoft.Json;
+using NLog.Fluent;
 using TUGraz.VectoCore.Exceptions;
 using TUGraz.VectoCore.Utils;
 
@@ -13,6 +14,8 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Data.Gearbox
 	{
 		[JsonProperty] private readonly List<GearLossMapEntry> _entries;
 
+		private readonly double _ratio;
+
 		private readonly DelauneyMap _lossMap; // Input Speed, Output Torque (to Wheels) => Input Torque (Engine)
 		//private readonly DelauneyMap _reverseLossMap; // Input Speed, Input Torque (Engine) => Output Torque (Wheels)
 
@@ -80,11 +83,12 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Data.Gearbox
 
 		private TransmissionLossMap(List<GearLossMapEntry> entries, double gearRatio)
 		{
+			_ratio = gearRatio;
 			_entries = entries;
 			_lossMap = new DelauneyMap();
 			//_reverseLossMap = new DelauneyMap();
 			foreach (var entry in _entries) {
-				_lossMap.AddPoint(entry.InputSpeed.Value(), (entry.InputTorque.Value() - entry.TorqueLoss.Value()) * gearRatio,
+				_lossMap.AddPoint(entry.InputSpeed.Value(), (entry.InputTorque.Value() - entry.TorqueLoss.Value()) * _ratio,
 					entry.InputTorque.Value());
 				// @@@quam: according to Raphael, not needed for now...
 				//_reverseLossMap.AddPoint(entry.InputSpeed.Double(), entry.InputTorque.Double(),
@@ -103,8 +107,11 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Data.Gearbox
 		public NewtonMeter GearboxInTorque(PerSecond angularVelocity, NewtonMeter gbxOutTorque)
 		{
 			try {
-				return VectoMath.Max(_lossMap.Interpolate(angularVelocity.Value(), gbxOutTorque.Value()).SI<NewtonMeter>(),
-					0.SI<NewtonMeter>());
+				var gbxInTorque = _lossMap.Interpolate(angularVelocity.Value(), gbxOutTorque.Value()).SI<NewtonMeter>();
+				LogManager.GetLogger(this.GetType()).DebugFormat("GearboxLoss: {0}", gbxInTorque);
+				// Torque at input of the geabox must be greater than or equal to the torque at the output
+				// (i.e. no 'torque-gain' in the transmission due to interpolation etc.)
+				return VectoMath.Max(gbxInTorque, gbxOutTorque / _ratio);
 			} catch (Exception e) {
 				throw new VectoSimulationException(
 					string.Format("Failed to interpolate in TransmissionLossMap. angularVelocity: {0}, torque: {1}", angularVelocity,
diff --git a/VectoCore/Models/SimulationComponent/IBreaks.cs b/VectoCore/Models/SimulationComponent/IBreaks.cs
new file mode 100644
index 0000000000000000000000000000000000000000..d32488fe2e3c7dec835ccd1baf73d48103dc2da5
--- /dev/null
+++ b/VectoCore/Models/SimulationComponent/IBreaks.cs
@@ -0,0 +1,9 @@
+using TUGraz.VectoCore.Utils;
+
+namespace TUGraz.VectoCore.Models.SimulationComponent
+{
+	public interface IBreaks
+	{
+		Watt BreakPower { get; set; }
+	}
+}
\ No newline at end of file
diff --git a/VectoCore/Models/SimulationComponent/IClutch.cs b/VectoCore/Models/SimulationComponent/IClutch.cs
index 1ffff0489c72f4e203a1275faf39de6c61b33a67..64ee08e9f8675a4c6090c74624d2e06b6db7b943 100644
--- a/VectoCore/Models/SimulationComponent/IClutch.cs
+++ b/VectoCore/Models/SimulationComponent/IClutch.cs
@@ -1,4 +1,11 @@
 namespace TUGraz.VectoCore.Models.SimulationComponent
 {
+	public enum ClutchState
+	{
+		ClutchClosed,
+		ClutchOpened,
+		ClutchSlipping
+	}
+
 	public interface IClutch : IPowerTrainComponent {}
 }
\ No newline at end of file
diff --git a/VectoCore/Models/SimulationComponent/Impl/AxleGear.cs b/VectoCore/Models/SimulationComponent/Impl/AxleGear.cs
index 371e0ecd0893a3babc4dff0312a64972f44f1cf1..77d08182c4418e22a7f475620f8ff82cf1a7fbc9 100644
--- a/VectoCore/Models/SimulationComponent/Impl/AxleGear.cs
+++ b/VectoCore/Models/SimulationComponent/Impl/AxleGear.cs
@@ -34,9 +34,12 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 
 		public IResponse Request(Second absTime, Second dt, NewtonMeter torque, PerSecond angularVelocity, bool dryRun = false)
 		{
-			return _nextComponent.Request(absTime, dt,
+			Log.DebugFormat("request: torque: {0}, angularVelocity: {1}", torque, angularVelocity);
+			var retVal = _nextComponent.Request(absTime, dt,
 				_gearData.LossMap.GearboxInTorque(angularVelocity * _gearData.Ratio, torque),
 				angularVelocity * _gearData.Ratio, dryRun);
+			retVal.AxlegearPowerRequest = Formulas.TorqueToPower(torque, angularVelocity);
+			return retVal;
 		}
 
 		public IResponse Initialize(NewtonMeter torque, PerSecond angularVelocity)
diff --git a/VectoCore/Models/SimulationComponent/Impl/Breaks.cs b/VectoCore/Models/SimulationComponent/Impl/Breaks.cs
new file mode 100644
index 0000000000000000000000000000000000000000..87f5ba393c9f31d6412c2fcad45efcc8b671b984
--- /dev/null
+++ b/VectoCore/Models/SimulationComponent/Impl/Breaks.cs
@@ -0,0 +1,67 @@
+using System;
+using TUGraz.VectoCore.Models.Connector.Ports;
+using TUGraz.VectoCore.Models.Simulation;
+using TUGraz.VectoCore.Models.Simulation.Data;
+using TUGraz.VectoCore.Utils;
+
+namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
+{
+	public class Breaks : VectoSimulationComponent, IPowerTrainComponent, ITnOutPort, ITnInPort, IBreaks
+	{
+		protected ITnOutPort Next;
+
+		protected NewtonMeter BreakTorque;
+
+		public Breaks(IVehicleContainer dataBus) : base(dataBus) {}
+
+
+		public ITnInPort InPort()
+		{
+			return this;
+		}
+
+		public ITnOutPort OutPort()
+		{
+			return this;
+		}
+
+		public Watt BreakPower { get; set; }
+
+		public IResponse Request(Second absTime, Second dt, NewtonMeter torque, PerSecond angularVelocity, bool dryRun = false)
+		{
+			
+			if (!BreakPower.IsEqual(0)) {
+				if (angularVelocity.IsEqual(0)) {
+					BreakTorque = -torque;
+				} else {
+					BreakTorque = Formulas.PowerToTorque(BreakPower, angularVelocity);
+				}
+			}
+			return Next.Request(absTime, dt, torque - BreakTorque, angularVelocity, dryRun);
+		}
+
+		public IResponse Initialize(NewtonMeter torque, PerSecond angularVelocity)
+		{
+			BreakPower = 0.SI<Watt>();
+			BreakTorque = 0.SI<NewtonMeter>();
+			return Next.Initialize(torque, angularVelocity);
+		}
+
+
+		public void Connect(ITnOutPort other)
+		{
+			Next = other;
+		}
+
+		protected override void DoWriteModalResults(IModalDataWriter writer)
+		{
+			writer[ModalResultField.Pbrake] = BreakPower;
+		}
+
+		protected override void DoCommitSimulationStep()
+		{
+			BreakPower = 0.SI<Watt>();
+			BreakTorque = 0.SI<NewtonMeter>();
+		}
+	}
+}
\ No newline at end of file
diff --git a/VectoCore/Models/SimulationComponent/Impl/Clutch.cs b/VectoCore/Models/SimulationComponent/Impl/Clutch.cs
index ae33867ac93ac17e81743692f257a39dfdf93873..4b28aa1e435bb8489af9e8a55acf466c9780ade4 100644
--- a/VectoCore/Models/SimulationComponent/Impl/Clutch.cs
+++ b/VectoCore/Models/SimulationComponent/Impl/Clutch.cs
@@ -1,27 +1,22 @@
 using System;
+using TUGraz.VectoCore.Configuration;
 using TUGraz.VectoCore.Models.Connector.Ports;
 using TUGraz.VectoCore.Models.Simulation;
 using TUGraz.VectoCore.Models.Simulation.Data;
+using TUGraz.VectoCore.Models.Simulation.DataBus;
 using TUGraz.VectoCore.Models.SimulationComponent.Data;
 using TUGraz.VectoCore.Utils;
 
 namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 {
-	public class Clutch : VectoSimulationComponent, IClutch, ITnOutPort, ITnInPort
+	public class Clutch : VectoSimulationComponent, IClutch, IClutchInfo, ITnOutPort, ITnInPort
 	{
 		private readonly PerSecond _idleSpeed;
 		private readonly PerSecond _ratedSpeed;
 		private ITnOutPort _nextComponent;
 		private const double ClutchEff = 1;
-		private const double CluchNormSpeed = 0.03;
-		private ClutchState _clutchState = ClutchState.ClutchClosed;
+		private ClutchState _clutchState = SimulationComponent.ClutchState.ClutchOpened;
 
-		public enum ClutchState
-		{
-			ClutchClosed,
-			ClutchOpened,
-			ClutchSlipping
-		}
 
 		public Clutch(IVehicleContainer cockpit, CombustionEngineData engineData)
 			: base(cockpit)
@@ -64,7 +59,9 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 			PerSecond engineSpeedIn;
 			AddClutchLoss(torque, angularVelocity, out torqueIn, out engineSpeedIn);
 
-			return _nextComponent.Request(absTime, dt, torqueIn, engineSpeedIn, dryRun);
+			var retVal = _nextComponent.Request(absTime, dt, torqueIn, engineSpeedIn, dryRun);
+			retVal.ClutchPowerRequest = Formulas.TorqueToPower(torque, angularVelocity);
+			return retVal;
 		}
 
 		public IResponse Initialize(NewtonMeter torque, PerSecond angularVelocity)
@@ -73,7 +70,8 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 			PerSecond engineSpeedIn;
 			AddClutchLoss(torque, angularVelocity, out torqueIn, out engineSpeedIn);
 
-			return _nextComponent.Initialize(torqueIn, engineSpeedIn);
+			var retVal = _nextComponent.Initialize(torqueIn, engineSpeedIn);
+			return retVal;
 		}
 
 		public void Connect(ITnOutPort other)
@@ -84,31 +82,40 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 		private void AddClutchLoss(NewtonMeter torque, PerSecond angularVelocity, out NewtonMeter torqueIn,
 			out PerSecond engineSpeedIn)
 		{
+			Log.DebugFormat("from Wheels: torque: {0}, angularVelocity: {1}, power {2}", torque, angularVelocity,
+				Formulas.TorqueToPower(torque, angularVelocity));
 			torqueIn = torque;
 			engineSpeedIn = angularVelocity;
 
 			if (DataBus.Gear() == 0) {
-				_clutchState = ClutchState.ClutchOpened;
+				_clutchState = SimulationComponent.ClutchState.ClutchOpened;
 				engineSpeedIn = _idleSpeed;
 				torqueIn = 0.SI<NewtonMeter>();
 			} else {
 				var engineSpeedNorm = (angularVelocity - _idleSpeed) /
 									(_ratedSpeed - _idleSpeed);
-				if (engineSpeedNorm < CluchNormSpeed) {
-					_clutchState = ClutchState.ClutchSlipping;
+				if (engineSpeedNorm < Constants.SimulationSettings.CluchNormSpeed) {
+					_clutchState = SimulationComponent.ClutchState.ClutchSlipping;
 
 					var engineSpeed0 = VectoMath.Max(_idleSpeed, angularVelocity);
-					var clutchSpeedNorm = CluchNormSpeed /
-										((_idleSpeed + CluchNormSpeed * (_ratedSpeed - _idleSpeed)) / _ratedSpeed);
+					var clutchSpeedNorm = Constants.SimulationSettings.CluchNormSpeed /
+										((_idleSpeed + Constants.SimulationSettings.CluchNormSpeed * (_ratedSpeed - _idleSpeed)) / _ratedSpeed);
 					engineSpeedIn =
 						((clutchSpeedNorm * engineSpeed0 / _ratedSpeed) * (_ratedSpeed - _idleSpeed) + _idleSpeed).Radian
 							.Cast<PerSecond>();
 
 					torqueIn = Formulas.PowerToTorque(Formulas.TorqueToPower(torque, angularVelocity) / ClutchEff, engineSpeedIn);
 				} else {
-					_clutchState = ClutchState.ClutchClosed;
+					_clutchState = SimulationComponent.ClutchState.ClutchClosed;
 				}
 			}
+			Log.DebugFormat("to Engine:   torque: {0}, angularVelocity: {1}, power {2}", torqueIn, engineSpeedIn,
+				Formulas.TorqueToPower(torqueIn, engineSpeedIn));
+		}
+
+		public ClutchState ClutchState()
+		{
+			return _clutchState;
 		}
 	}
 }
\ No newline at end of file
diff --git a/VectoCore/Models/SimulationComponent/Impl/CombustionEngine.cs b/VectoCore/Models/SimulationComponent/Impl/CombustionEngine.cs
index febe784069de97f747170bfd773e719bf4e0cb1d..1dfa218e1ed98a4e5b26e57dbfa9dc09fc593ba9 100644
--- a/VectoCore/Models/SimulationComponent/Impl/CombustionEngine.cs
+++ b/VectoCore/Models/SimulationComponent/Impl/CombustionEngine.cs
@@ -29,19 +29,20 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 			Undef
 		}
 
-		private const int EngineIdleSpeedStopThreshold = 100;
-		private const double MaxPowerExceededThreshold = 1.05;
-		private const double ZeroThreshold = 0.0001;
-		private const double FullLoadMargin = 0.01;
-		[NonSerialized] private readonly List<Second> _enginePowerCorrections = new List<Second>();
+		protected const int EngineIdleSpeedStopThreshold = 100;
+		protected const double MaxPowerExceededThreshold = 1.05;
+		protected const double ZeroThreshold = 0.0001;
+		protected const double FullLoadMargin = 0.01;
+
+		protected readonly Watt StationaryIdleFullLoadPower;
 
 		/// <summary>
 		///     Current state is computed in request method
 		/// </summary>
-		private EngineState _currentState = new EngineState();
+		internal EngineState _currentState = new EngineState();
 
 		private CombustionEngineData _data;
-		private EngineState _previousState = new EngineState();
+		internal EngineState _previousState = new EngineState();
 
 		public CombustionEngine(IVehicleContainer cockpit, CombustionEngineData data)
 			: base(cockpit)
@@ -52,6 +53,9 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 			_previousState.EnginePower = 0.SI<Watt>();
 			_previousState.EngineSpeed = _data.IdleSpeed;
 			_previousState.dt = 1.SI<Second>();
+
+			StationaryIdleFullLoadPower = Formulas.TorqueToPower(_data.FullLoadCurve.FullLoadStationaryTorque(_data.IdleSpeed),
+				_data.IdleSpeed);
 		}
 
 		#region IEngineCockpit
@@ -76,21 +80,15 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 
 		IResponse ITnOutPort.Request(Second absTime, Second dt, NewtonMeter torque, PerSecond engineSpeed, bool dryRun)
 		{
-			_currentState.dt = dt;
-			_currentState.EngineSpeed = engineSpeed;
-			_currentState.AbsTime = absTime;
-
-			var requestedPower = Formulas.TorqueToPower(torque, engineSpeed);
-			_currentState.EnginePowerLoss = InertiaPowerLoss(torque, engineSpeed);
-			var requestedEnginePower = requestedPower + _currentState.EnginePowerLoss;
-
-			if (engineSpeed < _data.IdleSpeed.Value() - EngineIdleSpeedStopThreshold) {
-				_currentState.OperationMode = EngineOperationMode.Stopped;
-				//todo: _currentState.EnginePowerLoss = enginePowerLoss;
-			}
+			return DoHandleRequest(absTime, dt, torque, engineSpeed, dryRun);
+		}
 
-			_currentState.FullDragTorque = _data.FullLoadCurve.DragLoadStationaryTorque(engineSpeed);
-			_currentState.FullDragPower = Formulas.TorqueToPower(_currentState.FullDragTorque, engineSpeed);
+		protected virtual IResponse DoHandleRequest(Second absTime, Second dt, NewtonMeter torque, PerSecond engineSpeed,
+			bool dryRun)
+		{
+			Watt requestedPower;
+			Watt requestedEnginePower;
+			ComputeRequestedEnginePower(absTime, dt, torque, engineSpeed, out requestedPower, out requestedEnginePower);
 
 			ComputeFullLoadPower(engineSpeed, dt);
 
@@ -100,13 +98,17 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 
 			if (dryRun) {
 				return new ResponseDryRun() {
-					DeltaFullLoad = (requestedEnginePower - _currentState.DynamicFullLoadPower).Value(),
-					DeltaDragLoad = (requestedEnginePower - _currentState.FullDragPower).Value()
+					EngineDeltaFullLoad = (requestedEnginePower - _currentState.DynamicFullLoadPower),
+					EngineDeltaDragLoad = (requestedEnginePower - _currentState.FullDragPower),
+					EnginePowerRequest = requestedEnginePower
 				};
 			}
 
 			if (!_currentState.EnginePower.IsEqual(requestedEnginePower, Constants.SimulationSettings.EngineFLDPowerTolerance)) {
-				return new ResponseFailOverload() { Delta = (requestedEnginePower - _currentState.EnginePower).Value() };
+				return new ResponseFailOverload() {
+					Delta = (requestedEnginePower - _currentState.EnginePower),
+					EnginePowerRequest = requestedEnginePower
+				};
 			}
 
 			UpdateEngineState(_currentState.EnginePower);
@@ -115,7 +117,27 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 			_currentState.EngineTorque = Formulas.PowerToTorque(_currentState.EnginePower,
 				_currentState.EngineSpeed);
 
-			return new ResponseSuccess();
+			return new ResponseSuccess() { EnginePowerRequest = requestedEnginePower };
+		}
+
+		protected void ComputeRequestedEnginePower(Second absTime, Second dt, NewtonMeter torque, PerSecond engineSpeed,
+			out Watt requestedPower, out Watt requestedEnginePower)
+		{
+			_currentState.dt = dt;
+			_currentState.EngineSpeed = engineSpeed;
+			_currentState.AbsTime = absTime;
+
+			requestedPower = Formulas.TorqueToPower(torque, engineSpeed);
+			_currentState.EnginePowerLoss = InertiaPowerLoss(torque, engineSpeed);
+			requestedEnginePower = requestedPower + _currentState.EnginePowerLoss;
+
+			if (engineSpeed < _data.IdleSpeed.Value() - EngineIdleSpeedStopThreshold) {
+				_currentState.OperationMode = EngineOperationMode.Stopped;
+				//todo: _currentState.EnginePowerLoss = enginePowerLoss;
+			}
+
+			_currentState.FullDragTorque = _data.FullLoadCurve.DragLoadStationaryTorque(engineSpeed);
+			_currentState.FullDragPower = Formulas.TorqueToPower(_currentState.FullDragTorque, engineSpeed);
 		}
 
 		public IResponse Initialize(NewtonMeter torque, PerSecond engineSpeed)
@@ -123,18 +145,18 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 			_previousState = new EngineState() {
 				EngineSpeed = engineSpeed,
 				dt = 1.SI<Second>(),
-				EnginePowerLoss = InertiaPowerLoss(torque, engineSpeed),
+				EnginePowerLoss = 0.SI<Watt>(),
 				StationaryFullLoadTorque =
 					_data.FullLoadCurve.FullLoadStationaryTorque(engineSpeed),
-				StationaryFullLoadPower = Formulas.TorqueToPower(_previousState.StationaryFullLoadTorque,
-					engineSpeed),
-				DynamicFullLoadTorque = _previousState.StationaryFullLoadTorque,
-				DynamicFullLoadPower = _previousState.StationaryFullLoadPower,
 				FullDragTorque = _data.FullLoadCurve.DragLoadStationaryTorque(engineSpeed),
-				FullDragPower = Formulas.TorqueToPower(_previousState.FullDragTorque, engineSpeed),
-				EnginePower = Formulas.TorqueToPower(torque, engineSpeed) + _previousState.EnginePowerLoss,
-				EngineTorque = Formulas.PowerToTorque(_previousState.EnginePower, _previousState.EngineSpeed)
+				EngineTorque = torque,
+				EnginePower = Formulas.TorqueToPower(torque, engineSpeed)
 			};
+			_previousState.StationaryFullLoadPower = Formulas.TorqueToPower(_previousState.StationaryFullLoadTorque,
+				engineSpeed);
+			_previousState.DynamicFullLoadTorque = _previousState.StationaryFullLoadTorque;
+			_previousState.DynamicFullLoadPower = _previousState.StationaryFullLoadPower;
+			_previousState.FullDragPower = Formulas.TorqueToPower(_previousState.FullDragTorque, engineSpeed);
 
 			return new ResponseSuccess();
 		}
@@ -153,7 +175,7 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 			writer[ModalResultField.Tq_drag] = _currentState.FullDragTorque;
 			writer[ModalResultField.Tq_full] = _currentState.DynamicFullLoadTorque;
 			writer[ModalResultField.Tq_eng] = _currentState.EngineTorque;
-			writer[ModalResultField.n] = _currentState.EngineSpeed.ConvertTo().Rounds.Per.Minute;
+			writer[ModalResultField.n] = _currentState.EngineSpeed;
 
 			try {
 				writer[ModalResultField.FCMap] =
@@ -179,7 +201,7 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 		///     Validates the requested power demand [W].
 		/// </summary>
 		/// <param name="requestedEnginePower">[W]</param>
-		protected void ValidatePowerDemand(SI requestedEnginePower)
+		protected virtual void ValidatePowerDemand(SI requestedEnginePower)
 		{
 			Contract.Requires(requestedEnginePower.HasEqualUnit(new SI().Watt));
 
@@ -198,25 +220,12 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 		/// </summary>
 		/// <param name="requestedEnginePower">[W]</param>
 		/// <returns>[W]</returns>
-		protected Watt LimitEnginePower(Watt requestedEnginePower)
+		protected virtual Watt LimitEnginePower(Watt requestedEnginePower)
 		{
 			if (requestedEnginePower > _currentState.DynamicFullLoadPower) {
-				if (requestedEnginePower / _currentState.DynamicFullLoadPower > MaxPowerExceededThreshold) {
-					_enginePowerCorrections.Add(_currentState.AbsTime);
-					Log.WarnFormat(
-						"t: {0}  requested power > P_engine_full * 1.05 - corrected. P_request: {1}  P_engine_full: {2}",
-						_currentState.AbsTime, requestedEnginePower, _currentState.DynamicFullLoadPower);
-				}
 				return _currentState.DynamicFullLoadPower;
 			}
 			if (requestedEnginePower < _currentState.FullDragPower) {
-				if (requestedEnginePower / _currentState.FullDragPower > MaxPowerExceededThreshold &&
-					requestedEnginePower > -99999) {
-					_enginePowerCorrections.Add(_currentState.AbsTime);
-					Log.WarnFormat(
-						"t: {0}  requested power < P_engine_drag * 1.05 - corrected. P_request: {1}  P_engine_drag: {2}",
-						_currentState.AbsTime, requestedEnginePower, _currentState.FullDragPower);
-				}
 				return _currentState.FullDragPower;
 			}
 			return requestedEnginePower;
@@ -226,7 +235,7 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 		///     Updates the engine state dependend on the requested power [W].
 		/// </summary>
 		/// <param name="requestedEnginePower">[W]</param>
-		protected void UpdateEngineState(Watt requestedEnginePower)
+		protected virtual void UpdateEngineState(Watt requestedEnginePower)
 		{
 			if (requestedEnginePower < -ZeroThreshold) {
 				_currentState.OperationMode = IsFullLoad(requestedEnginePower, _currentState.DynamicFullLoadPower)
@@ -242,13 +251,6 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 			}
 		}
 
-		public IList<string> Warnings()
-		{
-			IList<string> retVal = new List<string>();
-			retVal.Add(string.Format("Engine power corrected (>5%) in {0} time steps ", _enginePowerCorrections.Count));
-			return retVal;
-		}
-
 		/// <summary>
 		///     computes full load power from gear [-], angularVelocity [rad/s] and dt [s].
 		/// </summary>
@@ -279,6 +281,10 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 				? dynFullPowerCalculated
 				: _currentState.StationaryFullLoadPower;
 
+			if (_currentState.DynamicFullLoadPower < StationaryIdleFullLoadPower) {
+				_currentState.DynamicFullLoadPower = StationaryIdleFullLoadPower;
+			}
+
 			_currentState.DynamicFullLoadTorque = Formulas.PowerToTorque(_currentState.DynamicFullLoadPower,
 				angularVelocity);
 		}
diff --git a/VectoCore/Models/SimulationComponent/Impl/DistanceBasedDrivingCycle.cs b/VectoCore/Models/SimulationComponent/Impl/DistanceBasedDrivingCycle.cs
index 5c0e718e19c54ec1223be169745a729a736c26a3..63c2ffeb637a0fdc34465dd4d58168d578ba3d50 100644
--- a/VectoCore/Models/SimulationComponent/Impl/DistanceBasedDrivingCycle.cs
+++ b/VectoCore/Models/SimulationComponent/Impl/DistanceBasedDrivingCycle.cs
@@ -3,6 +3,7 @@ using System.Collections;
 using System.Collections.Generic;
 using System.Linq;
 using System.Net.Cache;
+using TUGraz.VectoCore.Configuration;
 using TUGraz.VectoCore.Exceptions;
 using TUGraz.VectoCore.Models.Connector.Ports;
 using TUGraz.VectoCore.Models.Connector.Ports.Impl;
@@ -20,6 +21,7 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 	public class DistanceBasedDrivingCycle : VectoSimulationComponent, IDrivingCycle,
 		ISimulationOutPort, IDrivingCycleInPort, IRoadLookAhead
 	{
+		protected const double LookaheadTimeSafetyMargin = 1.5;
 		protected DrivingCycleData Data;
 
 		internal DrivingCycleState PreviousState = null;
@@ -33,7 +35,6 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 		{
 			Data = cycle;
 			CycleIntervalIterator = new DrivingCycleEnumerator(Data);
-			CycleIntervalIterator.MoveNext();
 		}
 
 		#region IDrivingCycleInProvider
@@ -105,7 +106,6 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 
 
 			return DriveDistance(absTime, ds);
-			throw new NotImplementedException("Distance based Cycle is not yet implemented.");
 		}
 
 		private IResponse DriveTimeInterval(Second absTime, Second dt)
@@ -119,6 +119,12 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 
 		private IResponse DriveDistance(Second absTime, Meter ds)
 		{
+			if (!CurrentState.RequestToNextSamplePointDone &&
+				(CycleIntervalIterator.RightSample.Distance - PreviousState.Distance) <
+				Constants.SimulationSettings.DriveOffDistance) {
+				CurrentState.RequestToNextSamplePointDone = true;
+				return new ResponseDrivingCycleDistanceExceeded() { MaxDistance = Constants.SimulationSettings.DriveOffDistance };
+			}
 			CurrentState.Distance = PreviousState.Distance + ds;
 			CurrentState.VehicleTargetSpeed = CycleIntervalIterator.LeftSample.VehicleTargetSpeed;
 			CurrentState.Gradient = ComputeGradient();
@@ -192,7 +198,10 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 				// we needed to stop at the current interval in the cycle and have already waited enough time, move on..
 				CycleIntervalIterator.MoveNext();
 			}
-			if (CurrentState.Distance >= CycleIntervalIterator.RightSample.Distance) {
+
+			// separately test for equality and greater than to have tolerance for equality comparison
+			if (CurrentState.Distance.IsEqual(CycleIntervalIterator.RightSample.Distance) ||
+				CurrentState.Distance > CycleIntervalIterator.RightSample.Distance) {
 				// we have reached the end of the current interval in the cycle, move on...
 				CycleIntervalIterator.MoveNext();
 			}
@@ -200,72 +209,90 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 
 		#endregion
 
-		public IReadOnlyList<DrivingCycleData.DrivingCycleEntry> LookAhead(Meter distance)
+		public IReadOnlyList<DrivingCycleData.DrivingCycleEntry> LookAhead(Meter lookaheadDistance)
 		{
-			throw new NotImplementedException();
+			var retVal = new List<DrivingCycleData.DrivingCycleEntry>();
+
+			var cycleIterator = CycleIntervalIterator.Clone();
+
+			do {
+				retVal.Add(cycleIterator.RightSample);
+			} while (cycleIterator.MoveNext() && cycleIterator.RightSample.Distance < PreviousState.Distance + lookaheadDistance);
+			return retVal;
 		}
 
 		public IReadOnlyList<DrivingCycleData.DrivingCycleEntry> LookAhead(Second time)
 		{
-			throw new NotImplementedException();
+			return LookAhead((LookaheadTimeSafetyMargin * DataBus.VehicleSpeed() * time).Cast<Meter>());
 		}
 
-		public class DrivingCycleEnumerator : IEnumerator<DrivingCycleData.DrivingCycleEntry>
+		public CycleData CycleData()
 		{
-			protected IEnumerator<DrivingCycleData.DrivingCycleEntry> LeftSampleIt;
-			protected IEnumerator<DrivingCycleData.DrivingCycleEntry> RightSampleIt;
+			return new CycleData {
+				AbsTime = CurrentState.AbsTime,
+				AbsDistance = CurrentState.Distance,
+				LeftSample = CycleIntervalIterator.LeftSample,
+				RightSample = CycleIntervalIterator.RightSample
+			};
+		}
 
-			//protected uint currentCycleIndex;
+		public class DrivingCycleEnumerator : IEnumerator<DrivingCycleData.DrivingCycleEntry>
+		{
+			protected int CurrentCycleIndex;
+			protected DrivingCycleData Data;
 
 			public DrivingCycleEnumerator(DrivingCycleData data)
 			{
-				LeftSampleIt = data.Entries.GetEnumerator();
-				RightSampleIt = data.Entries.GetEnumerator();
-				RightSampleIt.MoveNext();
-				//currentCycleIndex = 0;
+				CurrentCycleIndex = 0;
+				Data = data;
+			}
+
+			public DrivingCycleEnumerator Clone()
+			{
+				return new DrivingCycleEnumerator(Data) {
+					CurrentCycleIndex = CurrentCycleIndex,
+				};
 			}
 
 			public DrivingCycleData.DrivingCycleEntry Current
 			{
-				get { return LeftSampleIt.Current; }
+				get { return LeftSample; }
 			}
 
 			public DrivingCycleData.DrivingCycleEntry Next
 			{
-				get { return RightSampleIt.Current; }
+				get { return RightSample; }
 			}
 
 			public DrivingCycleData.DrivingCycleEntry LeftSample
 			{
-				get { return LeftSampleIt.Current; }
+				get { return Data.Entries[CurrentCycleIndex]; }
 			}
 
 			public DrivingCycleData.DrivingCycleEntry RightSample
 			{
-				get { return RightSampleIt.Current; }
+				get { return CurrentCycleIndex + 1 >= Data.Entries.Count ? null : Data.Entries[CurrentCycleIndex + 1]; }
 			}
 
-			public void Dispose()
-			{
-				LeftSampleIt.Dispose();
-				RightSampleIt.Dispose();
-			}
+			public void Dispose() {}
 
 			object System.Collections.IEnumerator.Current
 			{
-				get { return LeftSampleIt.Current; }
+				get { return LeftSample; }
 			}
 
 			public bool MoveNext()
 			{
-				return LeftSampleIt.MoveNext() && RightSampleIt.MoveNext();
+				if (CurrentCycleIndex >= Data.Entries.Count - 1) {
+					return false;
+				}
+				CurrentCycleIndex++;
+				return true;
 			}
 
 			public void Reset()
 			{
-				LeftSampleIt.Reset();
-				RightSampleIt.Reset();
-				RightSampleIt.MoveNext();
+				CurrentCycleIndex = 0;
 			}
 		}
 
@@ -299,16 +326,8 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 			public Radian Gradient;
 
 			public IResponse Response;
-		}
 
-		public CycleData CycleData()
-		{
-			return new CycleData {
-				AbsTime = CurrentState.AbsTime,
-				AbsDistance = CurrentState.Distance,
-				LeftSample = CycleIntervalIterator.LeftSample,
-				RightSample = CycleIntervalIterator.RightSample
-			};
+			public bool RequestToNextSamplePointDone = false;
 		}
 	}
 }
\ No newline at end of file
diff --git a/VectoCore/Models/SimulationComponent/Impl/Driver.cs b/VectoCore/Models/SimulationComponent/Impl/Driver.cs
index d75603342c654bb727cc28a94ff0f33894db5149..7a76fa86a043759802f6fec5f9359cfd7b2c9816 100644
--- a/VectoCore/Models/SimulationComponent/Impl/Driver.cs
+++ b/VectoCore/Models/SimulationComponent/Impl/Driver.cs
@@ -1,12 +1,17 @@
 using System;
+using System.CodeDom;
 using System.Collections.Generic;
+using System.Configuration;
 using System.Linq;
+using System.Security.Cryptography.X509Certificates;
 using TUGraz.VectoCore.Configuration;
 using TUGraz.VectoCore.Exceptions;
 using TUGraz.VectoCore.Models.Connector.Ports;
 using TUGraz.VectoCore.Models.Connector.Ports.Impl;
+using TUGraz.VectoCore.Models.Declaration;
 using TUGraz.VectoCore.Models.Simulation.Data;
 using TUGraz.VectoCore.Models.Simulation.Impl;
+using TUGraz.VectoCore.Models.SimulationComponent;
 using TUGraz.VectoCore.Models.SimulationComponent.Data;
 using TUGraz.VectoCore.Utils;
 
@@ -20,6 +25,25 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 
 		protected DriverData DriverData;
 
+		public enum DrivingBehavior
+		{
+			Stopped,
+			Accelerating,
+			Drive,
+			Coasting,
+			Breaking,
+			//EcoRoll,
+			//OverSpeed,
+		}
+
+		public class DrivingBehaviorEntry
+		{
+			public DrivingBehavior Action;
+			public MeterPerSecond NextTargetSpeed;
+			public Meter TriggerDistance;
+			public Meter ActionDistance;
+		}
+
 		public Driver(VehicleContainer container, DriverData driverData) : base(container)
 		{
 			DriverData = driverData;
@@ -35,8 +59,21 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 			Next = other;
 		}
 
+
+		public IResponse Initialize(MeterPerSecond vehicleSpeed, Radian roadGradient)
+		{
+			return Next.Initialize(vehicleSpeed, roadGradient);
+		}
+
+
 		public IResponse Request(Second absTime, Meter ds, MeterPerSecond targetVelocity, Radian gradient)
 		{
+			Log.Debug("==== DRIVER Request ====");
+			Log.DebugFormat(
+				"Request: absTime: {0},  ds: {1}, targetVelocity: {2}, gradient: {3} | distance: {4}, velocity: {5}", absTime, ds,
+				targetVelocity,
+				gradient, DataBus.Distance(), DataBus.VehicleSpeed());
+
 			var retVal = DoHandleRequest(absTime, ds, targetVelocity, gradient);
 
 			CurrentState.Response = retVal;
@@ -52,6 +89,9 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 
 		public IResponse Request(Second absTime, Second dt, MeterPerSecond targetVelocity, Radian gradient)
 		{
+			Log.Debug("==== DRIVER Request ====");
+			Log.DebugFormat("Request: absTime: {0},  dt: {1}, targetVelocity: {2}, gradient: {3}", absTime, dt, targetVelocity
+				, gradient);
 			var retVal = DoHandleRequest(absTime, dt, targetVelocity, gradient);
 
 			CurrentState.Response = retVal;
@@ -60,15 +100,154 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 			return retVal;
 		}
 
-		public IResponse Initialize(MeterPerSecond vehicleSpeed, Radian roadGradient)
+
+		protected IResponse DoHandleRequest(Second absTime, Meter ds, MeterPerSecond targetVelocity, Radian gradient)
 		{
-			return Next.Initialize(vehicleSpeed, roadGradient);
+			var currentDistance = DataBus.Distance();
+			var nextDrivingActions = GetNextDrivingActions(currentDistance);
+
+			if (CurrentState.DrivingAction.Action == DrivingBehavior.Stopped && targetVelocity >= DataBus.VehicleSpeed()) {
+				CurrentState.DrivingAction.Action = DrivingBehavior.Drive;
+			}
+
+			if (nextDrivingActions.Count > 0) {
+				// if we exceeded the previous action (by accident), set the action anyway in case there is no 'next action'...
+				var previousActionss = nextDrivingActions.Where(x => x.Key < currentDistance).ToList();
+				if (previousActionss.Count > 0) {
+					CurrentState.DrivingAction = previousActionss.Last().Value;
+				}
+
+				var nextActions = nextDrivingActions.Where(x => x.Key >= currentDistance).ToList();
+				var nextDrivingAction = nextActions.GetEnumerator();
+				nextDrivingAction.MoveNext();
+				var hasNextEntry = true;
+
+				// if the current position matches the next action - set new action.
+				if (nextDrivingAction.Current.Key.IsEqual(currentDistance,
+					Constants.SimulationSettings.DriverActionDistanceTolerance.Value())) {
+					CurrentState.DrivingAction = nextDrivingAction.Current.Value;
+					hasNextEntry = nextDrivingAction.MoveNext(); // the current action has already been processed, look at next one...
+				}
+				// check if desired distance exeeds next acttion point
+				if (hasNextEntry && nextDrivingAction.Current.Key < currentDistance + ds) {
+					Log.DebugFormat(
+						"current Distance: {3} -- Simulation Distance {0} exceeds next DrivingAction at {1}, reducing interval to {2}", ds,
+						nextDrivingAction.Current.Key, nextDrivingAction.Current.Key - currentDistance, currentDistance);
+					return new ResponseDrivingCycleDistanceExceeded() { MaxDistance = nextDrivingAction.Current.Key - currentDistance };
+				}
+			} else {
+				if (targetVelocity > DataBus.VehicleSpeed()) {
+					CurrentState.DrivingAction.Action = DrivingBehavior.Accelerating;
+				}
+			}
+			Log.DebugFormat("DrivingAction: {0}", CurrentState.DrivingAction.Action);
+			//CurrentState.DrivingAction = nextAction;
+			switch (CurrentState.DrivingAction.Action) {
+				case DrivingBehavior.Accelerating:
+					return DriveOrAccelerate(absTime, ds, targetVelocity, gradient);
+				case DrivingBehavior.Drive:
+					return DriveOrAccelerate(absTime, ds, targetVelocity, gradient);
+				case DrivingBehavior.Coasting:
+					return DoCoast(absTime, ds, gradient);
+				case DrivingBehavior.Breaking:
+					return DoBreak(absTime, ds, gradient, CurrentState.DrivingAction.NextTargetSpeed);
+			}
+			throw new VectoSimulationException("unhandled driving action " + CurrentState.DrivingAction);
 		}
 
+		private IResponse DoBreak(Second absTime, Meter ds, Radian gradient, MeterPerSecond nextTargetSpeed)
+		{
+			ComputeAcceleration(ref ds, nextTargetSpeed);
 
-		protected IResponse DoHandleRequest(Second absTime, Meter ds, MeterPerSecond targetVelocity, Radian gradient)
+			// todo: still required?
+			if (CurrentState.dt.IsEqual(0)) {
+				return new ResponseFailTimeInterval();
+			}
+
+			var response = Next.Request(absTime, CurrentState.dt, CurrentState.Acceleration, gradient, true);
+
+			var dryRun = response as ResponseDryRun;
+			if (dryRun == null) {
+				throw new VectoSimulationException("Expected DryRunResponse after Dry-Run Request!");
+			}
+
+			//if (dryRun.EngineDeltaDragLoad > 0) {
+			//	throw new VectoSimulationException("No breaking necessary, still above full drag load!");
+			//}
+
+			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!");
+			}
+
+			if (!ds.IsEqual(newDs)) {
+				Log.DebugFormat(
+					"SearchOperatingPoint Breaking reduced the max. distance: {0} -> {1}. Issue new request from driving cycle!", newDs,
+					ds);
+				return new ResponseDrivingCycleDistanceExceeded() { MaxDistance = newDs, SimulationInterval = CurrentState.dt };
+			}
+
+			Log.DebugFormat("Found operating point for breaking. dt: {0}, acceleration: {1}", CurrentState.dt,
+				CurrentState.Acceleration);
+			var retVal = Next.Request(absTime, CurrentState.dt, CurrentState.Acceleration, gradient);
+			CurrentState.Response = retVal;
+			switch (retVal.ResponseType) {
+				case ResponseType.Success:
+					retVal.SimulationInterval = CurrentState.dt;
+					return retVal;
+			}
+			Log.DebugFormat("unhandled response from powertrain: {0}", retVal);
+			return retVal; //new ResponseDrivingCycleDistanceExceeded() { SimulationInterval = CurrentState.dt };
+		}
+
+		private bool SearchBreakingPower(Second absTime, ref Meter ds, Radian gradient, ResponseDryRun response, bool coasting)
 		{
-			ComputeAcceleration(ds, targetVelocity);
+			var exceeded = new List<Watt>(); // only used while testing
+			var breakingPower = VectoMath.Abs(response.EngineDeltaDragLoad);
+			if (DataBus.ClutchState() != ClutchState.ClutchClosed) {
+				breakingPower = VectoMath.Abs(response.AxlegearPowerRequest);
+			}
+			var searchInterval = breakingPower;
+			var originalDs = ds;
+
+			do {
+				ds = originalDs;
+				var delta = DataBus.ClutchState() == ClutchState.ClutchClosed
+					? -response.EngineDeltaDragLoad
+					: -response.AxlegearPowerRequest;
+
+				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;
+				}
+
+				searchInterval /= 2.0;
+				ComputeTimeInterval(CurrentState.Acceleration, ref ds, out CurrentState.dt);
+				DataBus.BreakPower = breakingPower;
+				response = (ResponseDryRun)Next.Request(absTime, CurrentState.dt, CurrentState.Acceleration, gradient, true);
+			} while (CurrentState.RetryCount++ < Constants.SimulationSettings.DriverSearchLoopThreshold);
+
+			Log.DebugFormat("Exceeded max iterations when searching for operating point!");
+			//Log.DebugFormat("acceleration: {0} ... {1}", string.Join(", ", acceleration.Take(5)),
+			//	string.Join(", ", acceleration.GetRange(acceleration.Count - 6, 5)));
+			Log.DebugFormat("exceeded: {0} ... {1}", string.Join(", ", exceeded.Take(5)),
+				string.Join(", ", exceeded.GetRange(exceeded.Count - 6, 5)));
+
+			return false;
+		}
+
+		private IResponse DriveOrAccelerate(Second absTime, Meter ds, MeterPerSecond targetVelocity, Radian gradient)
+		{
+			ComputeAcceleration(ref ds, targetVelocity);
 			if (CurrentState.dt.IsEqual(0)) {
 				return new ResponseFailTimeInterval();
 			}
@@ -80,7 +259,10 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 						retVal.SimulationInterval = CurrentState.dt;
 						return retVal;
 					case ResponseType.FailOverload:
-						SearchOperatingPoint(absTime, ds, targetVelocity, gradient, retVal);
+						SearchOperatingPoint(absTime, ref ds, gradient, retVal);
+						Log.DebugFormat("Found operating point for Drive/Accelerate. dt: {0}, acceleration: {1}", CurrentState.dt,
+							CurrentState.Acceleration);
+
 						break;
 				}
 			} while (CurrentState.RetryCount++ < Constants.SimulationSettings.DriverSearchLoopThreshold);
@@ -88,21 +270,130 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 			return new ResponseDrivingCycleDistanceExceeded() { SimulationInterval = CurrentState.dt };
 		}
 
-		private void SearchOperatingPoint(Second absTime, Meter ds, MeterPerSecond targetVelocity, Radian gradient,
-			IResponse response)
+		protected List<KeyValuePair<Meter, DrivingBehaviorEntry>> GetNextDrivingActions(Meter minDistance)
+		{
+			var currentSpeed = DataBus.VehicleSpeed();
+			// distance until halt: s = - v * v / (2 * a)
+			var lookaheadDistance =
+				(-currentSpeed * currentSpeed / (2 * DeclarationData.Driver.LookAhead.Deceleration)).Cast<Meter>();
+			var lookaheadData = DataBus.LookAhead(1.2 * lookaheadDistance);
+
+			Log.DebugFormat("Lookahead distance: {0} @ current speed {1}", lookaheadDistance, currentSpeed);
+			var nextActions = new List<KeyValuePair<Meter, DrivingBehaviorEntry>>();
+			for (var i = 0; i < lookaheadData.Count; i++) {
+				var entry = lookaheadData[i];
+				if (entry.VehicleTargetSpeed < currentSpeed) {
+					var breakingDistance = ComputeDecelerationDistance(entry.VehicleTargetSpeed);
+					Log.DebugFormat("distance to decelerate from {0} to {1}: {2}", currentSpeed, entry.VehicleTargetSpeed,
+						breakingDistance);
+					Log.DebugFormat("adding 'Braking' starting at distance {0}", entry.Distance - breakingDistance);
+					nextActions.Add(new KeyValuePair<Meter, DrivingBehaviorEntry>(entry.Distance - breakingDistance,
+						new DrivingBehaviorEntry() {
+							Action = DrivingBehavior.Breaking,
+							ActionDistance = entry.Distance - breakingDistance,
+							TriggerDistance = entry.Distance,
+							NextTargetSpeed = entry.VehicleTargetSpeed
+						}));
+					Log.DebugFormat("adding 'Coasting' starting at distance {0}", entry.Distance - lookaheadDistance);
+					nextActions.Add(new KeyValuePair<Meter, DrivingBehaviorEntry>(entry.Distance - lookaheadDistance,
+						new DrivingBehaviorEntry() {
+							Action = DrivingBehavior.Coasting,
+							ActionDistance = entry.Distance - lookaheadDistance,
+							TriggerDistance = entry.Distance,
+							NextTargetSpeed = entry.VehicleTargetSpeed
+						}));
+				}
+				if (entry.VehicleTargetSpeed > currentSpeed) {
+					nextActions.Add(new KeyValuePair<Meter, DrivingBehaviorEntry>(entry.Distance, new DrivingBehaviorEntry() {
+						Action = DrivingBehavior.Accelerating,
+						NextTargetSpeed = entry.VehicleTargetSpeed,
+						TriggerDistance = entry.Distance,
+						ActionDistance = entry.Distance
+					}));
+				}
+			}
+
+			nextActions.Sort((x, y) => x.Key.CompareTo(y.Key));
+
+			return nextActions;
+		}
+
+		protected internal Meter ComputeDecelerationDistance(MeterPerSecond targetSpeed)
 		{
-			var exceeded = new List<double>();
-			var acceleration = new List<double>();
+			return DriverData.AccelerationCurve.ComputeAccelerationDistance(DataBus.VehicleSpeed(), targetSpeed);
+		}
+
+		protected internal IResponse DoCoast(Second absTime, Meter ds, Radian gradient)
+		{
+			ComputeAcceleration(ref ds, 0.SI<MeterPerSecond>());
+
+			// todo: still required?
+			if (CurrentState.dt.IsEqual(0)) {
+				return new ResponseFailTimeInterval();
+			}
+
+			var response = Next.Request(absTime, CurrentState.dt, CurrentState.Acceleration, gradient, true);
+
+			var newDs = ds;
+			var success = SearchOperatingPoint(absTime, ref newDs, gradient, response, true);
+
+			if (!success) {
+				Log.ErrorFormat("Failed to find operating point for coasting!");
+				throw new VectoSimulationException("Failed to find operating point for coasting!");
+			}
+
+			if (!ds.IsEqual(newDs)) {
+				Log.DebugFormat(
+					"SearchOperatingPoint reduced the max. distance: {0} -> {1}. Issue new request from driving cycle!", newDs, ds);
+				return new ResponseDrivingCycleDistanceExceeded() { MaxDistance = newDs, SimulationInterval = CurrentState.dt };
+			}
+
+			Log.DebugFormat("Found operating point for coasting. dt: {0}, acceleration: {1}", CurrentState.dt,
+				CurrentState.Acceleration);
+			var retVal = Next.Request(absTime, CurrentState.dt, CurrentState.Acceleration, gradient);
+			CurrentState.Response = retVal;
+			switch (retVal.ResponseType) {
+				case ResponseType.Success:
+					retVal.SimulationInterval = CurrentState.dt;
+					return retVal;
+			}
+			Log.DebugFormat("unhandled response from powertrain: {0}", retVal);
+			return retVal; //new ResponseDrivingCycleDistanceExceeded() { SimulationInterval = CurrentState.dt };
+		}
+
+		/// <summary>
+		/// search for the operating point where the engine's requested power is either on the full-load curve or  on the drag curve (parameter 'coasting').
+		/// before the search can  be performed either a normal request or a dry-run request has to be made and the response is passed to this method.
+		/// perform a binary search starting with the currentState's acceleration value.
+		/// while searching it might be necessary to reduce the simulation distance because the vehicle already stopped before reaching the given ds. However,
+		/// it for every new iteration of the search the original distance is used. The resulting distance is returned.
+		/// After the search operation a normal request has to be made by the caller of this method. The final acceleration and time interval is stored in CurrentState.
+		/// </summary>
+		/// <param name="absTime">absTime from the original request</param>
+		/// <param name="ds">ds from the original request</param>
+		/// <param name="gradient">gradient from the original request</param>
+		/// <param name="response">response of the former request that resulted in an overload response (or a dry-run response)</param>
+		/// <param name="coasting">if true approach the drag-load curve, otherwise full-load curve</param>
+		/// <returns></returns>
+		private bool SearchOperatingPoint(Second absTime, ref Meter ds, Radian gradient,
+			IResponse response, bool coasting = false)
+		{
+			var exceeded = new List<Watt>(); // only used while testing
+			var acceleration = new List<double>(); // only used while testing
 			var searchInterval = CurrentState.Acceleration / 2.0;
+			Meter originalDs = ds;
 
 			do {
-				var delta = 0.0;
+				var delta = 0.0.SI<Watt>();
+				ds = originalDs;
 				switch (response.ResponseType) {
 					case ResponseType.FailOverload:
 						delta = ((ResponseFailOverload)response).Delta;
 						break;
 					case ResponseType.DryRun:
-						delta = ((ResponseDryRun)response).DeltaFullLoad;
+						delta = coasting
+							? -((ResponseDryRun)response).EngineDeltaDragLoad
+							: ((ResponseDryRun)response).EngineDeltaFullLoad;
 						break;
 					default:
 						throw new VectoSimulationException("Unknown response type");
@@ -111,22 +402,44 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 				exceeded.Add(delta);
 				acceleration.Add(CurrentState.Acceleration.Value());
 				if (delta.IsEqual(0, Constants.SimulationSettings.EngineFLDPowerTolerance)) {
-					return;
+					Log.DebugFormat("found operating point in {0} iterations. Engine Power req: {2},  delta: {1}", exceeded.Count,
+						delta, response.EnginePowerRequest);
+					return true;
 				}
 				if (delta > 0) {
 					CurrentState.Acceleration -= searchInterval;
 				} else {
 					CurrentState.Acceleration += searchInterval;
 				}
+				// check for minimum acceleration, add some safety margin due to search
+				if (Math.Abs(CurrentState.Acceleration.Value()) < Constants.SimulationSettings.MinimumAcceleration.Value() / 5.0 &&
+					searchInterval.Abs() < Constants.SimulationSettings.MinimumAcceleration / 20.0) {
+					throw new VectoSimulationException("Could not achieve minimum acceleration");
+				}
 				searchInterval /= 2.0;
-				CurrentState.dt = ComputeTimeInterval(ds, targetVelocity, CurrentState.Acceleration);
-
+				ComputeTimeInterval(CurrentState.Acceleration, ref ds, out CurrentState.dt);
 				response = Next.Request(absTime, CurrentState.dt, CurrentState.Acceleration, gradient, true);
-				//factor *= 2;
 			} while (CurrentState.RetryCount++ < Constants.SimulationSettings.DriverSearchLoopThreshold);
+
+			Log.DebugFormat("Exceeded max iterations when searching for operating point!");
+			Log.DebugFormat("acceleration: {0} ... {1}", string.Join(", ", acceleration.Take(5)),
+				string.Join(", ", acceleration.GetRange(acceleration.Count - 6, 5)));
+			Log.DebugFormat("exceeded: {0} ... {1}", string.Join(", ", exceeded.Take(5)),
+				string.Join(", ", exceeded.GetRange(exceeded.Count - 6, 5)));
+
+			return false;
 		}
 
-		private void ComputeAcceleration(Meter ds, MeterPerSecond targetVelocity)
+		/// <summary>
+		/// compute the acceleration and time-interval such that the vehicle's velocity approaches the given target velocity
+		/// - first compute the acceleration to reach the targetVelocity within the given distance
+		/// - limit the acceleration/deceleration by the driver's acceleration curve
+		/// - compute the time interval required to drive the given distance with the computed acceleration
+		/// computed acceleration and time interval are stored in CurrentState!
+		/// </summary>
+		/// <param name="ds"></param>
+		/// <param name="targetVelocity"></param>
+		private void ComputeAcceleration(ref Meter ds, MeterPerSecond targetVelocity)
 		{
 			var currentSpeed = DataBus.VehicleSpeed();
 
@@ -143,33 +456,66 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 			}
 
 			CurrentState.Acceleration = requiredAcceleration;
-			CurrentState.dt = ComputeTimeInterval(ds, targetVelocity, CurrentState.Acceleration);
+			var tmpDs = ds;
+			ComputeTimeInterval(CurrentState.Acceleration, ref ds, out CurrentState.dt);
+			if (!ds.IsEqual(tmpDs)) {
+				Log.ErrorFormat(
+					"Unexpected Condition: Distance has been adjusted from {0} to {1}, currentVelocity: {2} acceleration: {3}, targetVelocity: {4}",
+					tmpDs, ds, currentSpeed, CurrentState.Acceleration, targetVelocity);
+				throw new VectoSimulationException("Simulation distance unexpectedly adjusted!");
+			}
 		}
 
-		private Second ComputeTimeInterval(Meter ds, MeterPerSecond targetVelocity, MeterPerSquareSecond acceleration)
+		/// <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
+		/// </summary>
+		/// <param name="acceleration"></param>
+		/// <param name="ds"></param>
+		/// <param name="dt"></param>
+		private void ComputeTimeInterval(MeterPerSquareSecond acceleration, ref Meter ds, out Second dt)
 		{
+			if (!(ds > 0)) {
+				throw new VectoSimulationException("distance has to be greater than 0!");
+			}
 			var currentSpeed = DataBus.VehicleSpeed();
 
 			if (acceleration.IsEqual(0)) {
-				return (ds / currentSpeed).Cast<Second>();
+				if (!(currentSpeed > 0)) {
+					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;
 			}
 
 			// we need to accelerate / decelerate. solve quadratic equation...
 			// ds = acceleration / 2 * dt^2 + currentSpeed * dt   => solve for dt
 			var solutions = VectoMath.QuadraticEquationSolver(acceleration.Value() / 2.0, currentSpeed.Value(),
 				-ds.Value());
-			solutions = solutions.Where(x => x >= 0).ToList();
 
 			if (solutions.Count == 0) {
-				Log.WarnFormat(
-					"Could not find solution for computing required time interval to drive distance {0}. currentSpeed: {1}, targetSpeed: {2}, acceleration: {3}",
-					ds, currentSpeed, targetVelocity, acceleration);
-				return 0.SI<Second>();
+				// 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>();
+				if (stopDistance > ds) {
+					Log.WarnFormat(
+						"Could not find solution for computing required time interval to drive distance {0}. currentSpeed: {1}, acceleration: {2}",
+						ds, currentSpeed, acceleration);
+					throw new VectoSimulationException("Could not find solution");
+				}
+				Log.InfoFormat(
+					"Adjusted distance when computing time interval: currentSpeed: {0}, acceleration: {1}, distance: {2} -> {3}, timeInterval: {4}",
+					currentSpeed, acceleration, ds, stopDistance, dt);
+				ds = stopDistance;
+				return;
 			}
+			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();
-			return solutions.First().SI<Second>();
+			dt = solutions.First().SI<Second>();
 		}
 
 
@@ -199,15 +545,34 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 			if (CurrentState.Response.ResponseType != ResponseType.Success) {
 				throw new VectoSimulationException("Previois request did not succeed!");
 			}
+			CurrentState.RetryCount = 0;
+			CurrentState.Response = null;
+
+			if (CurrentState.DrivingAction.NextTargetSpeed != null &&
+				DataBus.VehicleSpeed().IsEqual(CurrentState.DrivingAction.NextTargetSpeed)) {
+				Log.DebugFormat("reached target Speed {0} - set Driving action to {1}", CurrentState.DrivingAction.NextTargetSpeed,
+					DrivingBehavior.Drive);
+				CurrentState.DrivingAction.Action = DrivingBehavior.Drive;
+			}
+			if (DataBus.VehicleSpeed().IsEqual(0)) {
+				Log.DebugFormat("vehicle stopped {0} - set Driving action to {1}", DataBus.VehicleSpeed(), DrivingBehavior.Stopped);
+				CurrentState.DrivingAction.Action = DrivingBehavior.Stopped;
+			}
 		}
 
 
 		public class DriverState
 		{
+			public DriverState()
+			{
+				DrivingAction = new DrivingBehaviorEntry();
+			}
+
 			public Second dt;
 			public MeterPerSquareSecond Acceleration;
 			public IResponse Response;
 			public int RetryCount;
+			public DrivingBehaviorEntry DrivingAction;
 		}
 	}
 }
\ No newline at end of file
diff --git a/VectoCore/Models/SimulationComponent/Impl/EngineOnlyCombustionEngine.cs b/VectoCore/Models/SimulationComponent/Impl/EngineOnlyCombustionEngine.cs
new file mode 100644
index 0000000000000000000000000000000000000000..6daee37b5af079d510138ab0ecb5db6b4c7d6b70
--- /dev/null
+++ b/VectoCore/Models/SimulationComponent/Impl/EngineOnlyCombustionEngine.cs
@@ -0,0 +1,84 @@
+using System.Collections.Generic;
+using TUGraz.VectoCore.Configuration;
+using TUGraz.VectoCore.Models.Connector.Ports;
+using TUGraz.VectoCore.Models.Connector.Ports.Impl;
+using TUGraz.VectoCore.Models.Simulation;
+using TUGraz.VectoCore.Models.SimulationComponent.Data;
+using TUGraz.VectoCore.Utils;
+
+namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
+{
+	public class EngineOnlyCombustionEngine : CombustionEngine
+	{
+		protected readonly List<Second> _enginePowerCorrections = new List<Second>();
+
+		public EngineOnlyCombustionEngine(IVehicleContainer cockpit, CombustionEngineData data) : base(cockpit, data) {}
+
+		// the behavior in engin-only mode differs a little bit from normal driving cycle simulation: in engine-only mode
+		// certain amount of overload is tolerated.
+		protected override IResponse DoHandleRequest(Second absTime, Second dt, NewtonMeter torque, PerSecond engineSpeed,
+			bool dryRun)
+		{
+			Watt requestedPower;
+			Watt requestedEnginePower;
+			ComputeRequestedEnginePower(absTime, dt, torque, engineSpeed, out requestedPower, out requestedEnginePower);
+
+			ComputeFullLoadPower(engineSpeed, dt);
+
+			ValidatePowerDemand(requestedEnginePower);
+
+			_currentState.EnginePower = LimitEnginePower(requestedEnginePower);
+
+			if (dryRun) {
+				return new ResponseDryRun() {
+					EngineDeltaFullLoad = (requestedEnginePower - _currentState.DynamicFullLoadPower),
+					EngineDeltaDragLoad = (requestedEnginePower - _currentState.FullDragPower)
+				};
+			}
+
+			UpdateEngineState(_currentState.EnginePower);
+
+			// = requestedEnginePower; //todo + _currentState.EnginePowerLoss;
+			_currentState.EngineTorque = Formulas.PowerToTorque(_currentState.EnginePower,
+				_currentState.EngineSpeed);
+
+			return new ResponseSuccess();
+		}
+
+		/// <summary>
+		///     [W] => [W]
+		/// </summary>
+		/// <param name="requestedEnginePower">[W]</param>
+		/// <returns>[W]</returns>
+		protected override Watt LimitEnginePower(Watt requestedEnginePower)
+		{
+			if (requestedEnginePower > _currentState.DynamicFullLoadPower) {
+				if (requestedEnginePower / _currentState.DynamicFullLoadPower > MaxPowerExceededThreshold) {
+					_enginePowerCorrections.Add(_currentState.AbsTime);
+					Log.WarnFormat(
+						"t: {0}  requested power > P_engine_full * 1.05 - corrected. P_request: {1}  P_engine_full: {2}",
+						_currentState.AbsTime, requestedEnginePower, _currentState.DynamicFullLoadPower);
+				}
+				return _currentState.DynamicFullLoadPower;
+			}
+			if (requestedEnginePower < _currentState.FullDragPower) {
+				if (requestedEnginePower / _currentState.FullDragPower > MaxPowerExceededThreshold &&
+					requestedEnginePower > -99999) {
+					_enginePowerCorrections.Add(_currentState.AbsTime);
+					Log.WarnFormat(
+						"t: {0}  requested power < P_engine_drag * 1.05 - corrected. P_request: {1}  P_engine_drag: {2}",
+						_currentState.AbsTime, requestedEnginePower, _currentState.FullDragPower);
+				}
+				return _currentState.FullDragPower;
+			}
+			return requestedEnginePower;
+		}
+
+		public IList<string> Warnings()
+		{
+			IList<string> retVal = new List<string>();
+			retVal.Add(string.Format("Engine power corrected (>5%) in {0} time steps ", _enginePowerCorrections.Count));
+			return retVal;
+		}
+	}
+}
\ No newline at end of file
diff --git a/VectoCore/Models/SimulationComponent/Impl/Vehicle.cs b/VectoCore/Models/SimulationComponent/Impl/Vehicle.cs
index ae1757ddb8863f08c2807c78929b7fde243dbebb..7cb46b6bdb320c5f9f0b9dfde2c806d15f99ad5c 100644
--- a/VectoCore/Models/SimulationComponent/Impl/Vehicle.cs
+++ b/VectoCore/Models/SimulationComponent/Impl/Vehicle.cs
@@ -22,8 +22,8 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 		public Vehicle(VehicleContainer container, VehicleData data) : base(container)
 		{
 			_data = data;
-			_previousState = new VehicleState { Velocity = 0.SI<MeterPerSecond>() };
-			_currentState = new VehicleState();
+			_previousState = new VehicleState() { Distance = 0.SI<Meter>(), Velocity = 0.SI<MeterPerSecond>() };
+			_currentState = new VehicleState() { Distance = 0.SI<Meter>(), Velocity = 0.SI<MeterPerSecond>() };
 		}
 
 		public Vehicle(VehicleContainer container, VehicleData data, double initialVelocity) : this(container, data)
@@ -49,7 +49,7 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 		protected override void DoWriteModalResults(IModalDataWriter writer)
 		{
 			writer[ModalResultField.v_act] = (_previousState.Velocity + _currentState.Velocity) / 2;
-			writer[ModalResultField.dist] = (_previousState.Distance - _currentState.Distance) / 2;
+			writer[ModalResultField.dist] = _currentState.Distance;
 
 			// hint: take care to use correct velocity when writing the P... values in moddata
 		}
@@ -63,22 +63,26 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 		public IResponse Request(Second absTime, Second dt, MeterPerSquareSecond accelleration, Radian gradient,
 			bool dryRun = false)
 		{
+			Log.DebugFormat("from Wheels: acceleration: {0}", accelleration);
 			_currentState.Velocity = (_previousState.Velocity + (accelleration * dt)).Cast<MeterPerSecond>();
 			_currentState.dt = dt;
-			_currentState.Distance = ((_previousState.Velocity + _currentState.Velocity) / 2 * _currentState.dt).Cast<Meter>();
+			_currentState.Distance = _previousState.Distance +
+									((_previousState.Velocity + _currentState.Velocity) / 2 * _currentState.dt).Cast<Meter>();
 
 			// DriverAcceleration = vehicleAccelerationForce - RollingResistance - AirDragResistance - SlopeResistance
 			var vehicleAccelerationForce = DriverAcceleration(accelleration) + RollingResistance(gradient) +
 											AirDragResistance() +
 											SlopeResistance(gradient);
 
-			return _nextInstance.Request(absTime, dt, vehicleAccelerationForce, _currentState.Velocity);
+			var retval = _nextInstance.Request(absTime, dt, vehicleAccelerationForce, _currentState.Velocity, dryRun);
+			//retval.VehiclePowerRequest = 
+			return retval;
 		}
 
 		public IResponse Initialize(MeterPerSecond vehicleSpeed, Radian roadGradient)
 		{
-			_previousState = new VehicleState() { Distance = 0.SI<Meter>(), Velocity = 0.SI<MeterPerSecond>() };
-			_currentState = new VehicleState() { Distance = 0.SI<Meter>(), Velocity = 0.SI<MeterPerSecond>() };
+			_previousState = new VehicleState() { Distance = 0.SI<Meter>(), Velocity = vehicleSpeed };
+			_currentState = new VehicleState() { Distance = 0.SI<Meter>(), Velocity = vehicleSpeed };
 
 			var vehicleAccelerationForce = RollingResistance(roadGradient) + AirDragResistance() + SlopeResistance(roadGradient);
 			return _nextInstance.Initialize(vehicleAccelerationForce, vehicleSpeed);
@@ -86,9 +90,11 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 
 		protected Newton RollingResistance(Radian gradient)
 		{
-			return (Math.Cos(gradient.Value()) * _data.TotalVehicleWeight() *
-					Physics.GravityAccelleration *
-					_data.TotalRollResistanceCoefficient).Cast<Newton>();
+			var retVal = (Math.Cos(gradient.Value()) * _data.TotalVehicleWeight() *
+						Physics.GravityAccelleration *
+						_data.TotalRollResistanceCoefficient).Cast<Newton>();
+			Log.DebugFormat("RollingResistance: {0}", retVal);
+			return retVal;
 		}
 
 
@@ -124,7 +130,9 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 				//break;
 			}
 
-			return (CdA * Physics.AirDensity / 2 * vAir * vAir).Cast<Newton>();
+			var retVal = (CdA * Physics.AirDensity / 2 * vAir * vAir).Cast<Newton>();
+			Log.DebugFormat("AirDragResistance: {0}", retVal);
+			return retVal;
 		}
 
 		private double AirDragInterpolate(IEnumerable<Point> curve, MeterPerSecond x)
@@ -186,13 +194,17 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 
 		protected Newton DriverAcceleration(MeterPerSquareSecond accelleration)
 		{
-			return ((_data.TotalVehicleWeight() + _data.ReducedMassWheels) * accelleration).Cast<Newton>();
+			var retVal = ((_data.TotalVehicleWeight() + _data.ReducedMassWheels) * accelleration).Cast<Newton>();
+			Log.DebugFormat("DriverAcceleration: {0}", retVal);
+			return retVal;
 		}
 
 
 		protected Newton SlopeResistance(Radian gradient)
 		{
-			return (_data.TotalVehicleWeight() * Physics.GravityAccelleration * Math.Sin(gradient.Value())).Cast<Newton>();
+			var retVal = (_data.TotalVehicleWeight() * Physics.GravityAccelleration * Math.Sin(gradient.Value())).Cast<Newton>();
+			Log.DebugFormat("SlopeResistance: {0}", retVal);
+			return retVal;
 		}
 
 		public MeterPerSecond VehicleSpeed()
diff --git a/VectoCore/Models/SimulationComponent/Impl/Wheels.cs b/VectoCore/Models/SimulationComponent/Impl/Wheels.cs
index 6df4dd11e971d475b0f1d07e615c6c1a5e843532..e461bb1894da0781f54754f1b6fa271b825e71f5 100644
--- a/VectoCore/Models/SimulationComponent/Impl/Wheels.cs
+++ b/VectoCore/Models/SimulationComponent/Impl/Wheels.cs
@@ -39,9 +39,12 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 
 		IResponse IFvOutPort.Request(Second absTime, Second dt, Newton force, MeterPerSecond velocity, bool dryRun)
 		{
+			Log.DebugFormat("request: force: {0}, velocity: {1}", force, velocity);
 			var torque = force * _dynamicWheelRadius;
 			var angularVelocity = velocity / _dynamicWheelRadius;
-			return _outPort.Request(absTime, dt, torque, angularVelocity, dryRun);
+			var retVal = _outPort.Request(absTime, dt, torque, angularVelocity, dryRun);
+			retVal.WheelsPowerRequest = Formulas.TorqueToPower(torque, angularVelocity);
+			return retVal;
 		}
 
 		public IResponse Initialize(Newton force, MeterPerSecond velocity)
diff --git a/VectoCore/VectoCore.csproj b/VectoCore/VectoCore.csproj
index 6fd2bc46d9a89e946085b1a9b8b220e20221c1d0..7dc29ca4aabcce07513c491bb08f9d905122a98b 100644
--- a/VectoCore/VectoCore.csproj
+++ b/VectoCore/VectoCore.csproj
@@ -157,8 +157,12 @@
     <Compile Include="Models\Declaration\Mission.cs" />
     <Compile Include="Models\Declaration\MissionType.cs" />
     <Compile Include="Models\SimulationComponent\Data\Engine\PT1Curve.cs" />
+    <Compile Include="Models\SimulationComponent\IBreaks.cs" />
     <Compile Include="Models\SimulationComponent\IDrivingCycleInfo.cs" />
     <Compile Include="Models\SimulationComponent\Impl\AuxiliaryData.cs" />
+    <Compile Include="Models\SimulationComponent\Impl\Breaks.cs" />
+    <Compile Include="Models\SimulationComponent\Impl\EngineOnlyCombustionEngine.cs" />
+    <Compile Include="Models\Simulation\DataBus\IClutchInfo.cs" />
     <Compile Include="Models\Simulation\Data\AuxiliaryDemandType.cs" />
     <Compile Include="Models\SimulationComponent\Data\AuxiliaryType.cs" />
     <Compile Include="Models\SimulationComponent\Data\GearFullLoadCurve.cs" />
@@ -272,7 +276,6 @@
     <EmbeddedResource Include="Resources\Declaration\DefaultTC.vtcc" />
     <EmbeddedResource Include="Resources\Declaration\VCDV\parameters.csv" />
     <EmbeddedResource Include="Resources\Declaration\WHTC-Weighting-Factors.csv" />
-    <EmbeddedResource Include="Resources\Declaration\VAUX\ALT-Tech.csv" />
   </ItemGroup>
   <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
   <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
diff --git a/VectoCoreArchitecture/VectoCoreArchitecture.modelproj b/VectoCoreArchitecture/VectoCoreArchitecture.modelproj
index 404a340fee5914a57699d4de4b2a5487cf37a663..b18f4bf22041aaaa82f6c1da51926e3a55b403e6 100644
--- a/VectoCoreArchitecture/VectoCoreArchitecture.modelproj
+++ b/VectoCoreArchitecture/VectoCoreArchitecture.modelproj
@@ -22,17 +22,16 @@
   </PropertyGroup>
   <Import Project="$(VSToolsPath)\ArchitectureTools\Microsoft.VisualStudio.TeamArchitect.ModelingProject.targets" Condition="'$(VSToolsPath)' != ''" />
   <ItemGroup>
-<Content Include="FileInputAndPowertrainCreation.classdiagram">
+    <Content Include="FileInputAndPowertrainCreation.classdiagram">
       <SubType>Content</SubType>
     </Content>
     <Content Include="FileInputAndPowertrainCreation.classdiagram.layout">
       <SubType>Content</SubType>
       <DependentUpon>FileInputAndPowertrainCreation.classdiagram</DependentUpon>
     </Content>
-<Content Include="VectoFiles.dgml">
+    <Content Include="VectoFiles.dgml">
       <SubType>Content</SubType>
     </Content>
-
     <Content Include="ModelDefinition\Package10_1344.uml">
       <SubType>Content</SubType>
     </Content>
@@ -216,13 +215,6 @@
       <SubType>Content</SubType>
       <DependentUpon>Simulation.sequencediagram</DependentUpon>
     </Content>
-    <Content Include="UMLClassDiagram1.classdiagram">
-      <SubType>Content</SubType>
-    </Content>
-    <Content Include="UMLClassDiagram1.classdiagram.layout">
-      <SubType>Content</SubType>
-      <DependentUpon>UMLClassDiagram1.classdiagram</DependentUpon>
-    </Content>
     <Content Include="VectoCore.classdiagram">
       <SubType>Content</SubType>
     </Content>
diff --git a/VectoCoreTest/Integration/EngineOnlyCycle/EngineOnlyCycleTest.cs b/VectoCoreTest/Integration/EngineOnlyCycle/EngineOnlyCycleTest.cs
index def1ad5e0e5c0f8a3bb01a118a3a20505b87ff01..86d87d34843abb7259359d3f3d98cc87747a93f1 100644
--- a/VectoCoreTest/Integration/EngineOnlyCycle/EngineOnlyCycleTest.cs
+++ b/VectoCoreTest/Integration/EngineOnlyCycle/EngineOnlyCycleTest.cs
@@ -4,6 +4,7 @@ using System.Linq;
 using Microsoft.VisualStudio.TestTools.UnitTesting;
 using TUGraz.VectoCore.FileIO.Reader;
 using TUGraz.VectoCore.FileIO.Reader.Impl;
+using TUGraz.VectoCore.Models.Connector.Ports.Impl;
 using TUGraz.VectoCore.Models.Simulation.Data;
 using TUGraz.VectoCore.Models.Simulation.Impl;
 using TUGraz.VectoCore.Models.SimulationComponent.Impl;
@@ -34,7 +35,7 @@ namespace TUGraz.VectoCore.Tests.Integration.EngineOnlyCycle
 			aux.AddDirect(cycle);
 			var gearbox = new EngineOnlyGearbox(vehicle);
 
-			var engine = new CombustionEngine(vehicle, engineData);
+			var engine = new EngineOnlyCombustionEngine(vehicle, engineData);
 
 			aux.InPort().Connect(engine.OutPort());
 			gearbox.InPort().Connect(aux.OutPort());
@@ -47,7 +48,8 @@ namespace TUGraz.VectoCore.Tests.Integration.EngineOnlyCycle
 			var dataWriter = new ModalDataWriter(modFile, SimulatorFactory.FactoryMode.EngineOnlyMode);
 
 			foreach (var cycleEntry in data.Entries) {
-				port.Request(absTime, dt, cycleEntry.EngineTorque, cycleEntry.EngineSpeed);
+				var response = port.Request(absTime, dt, cycleEntry.EngineTorque, cycleEntry.EngineSpeed);
+				Assert.IsInstanceOfType(response, typeof(ResponseSuccess));
 				foreach (var sc in vehicle.SimulationComponents()) {
 					dataWriter[ModalResultField.time] = absTime + dt / 2;
 					sc.CommitSimulationStep(dataWriter);
diff --git a/VectoCoreTest/Integration/SimulationRuns/MinimalPowertrain.cs b/VectoCoreTest/Integration/SimulationRuns/MinimalPowertrain.cs
index adb9dbc631e490f9c3794bbc37e0b1604c5dec76..b7351c3e3b7d866be43800bf2a2dfd34dc1b60b9 100644
--- a/VectoCoreTest/Integration/SimulationRuns/MinimalPowertrain.cs
+++ b/VectoCoreTest/Integration/SimulationRuns/MinimalPowertrain.cs
@@ -22,12 +22,16 @@ namespace TUGraz.VectoCore.Tests.Integration.SimulationRuns
 	public class MinimalPowertrain
 	{
 		public const string CycleFile = @"TestData\Integration\MinimalPowerTrain\1-Gear-Test-dist.vdri";
+		public const string CycleFileStop = @"TestData\Integration\MinimalPowerTrain\1-Gear-StopTest-dist.vdri";
 		public const string EngineFile = @"TestData\Integration\MinimalPowerTrain\24t Coach.veng";
 		public const string GearboxFile = @"TestData\Integration\MinimalPowerTrain\24t Coach-1Gear.vgbx";
 		public const string GbxLossMap = @"TestData\Integration\MinimalPowerTrain\NoLossGbxMap.vtlm";
 
 
 		public const string AccelerationFile = @"TestData\Components\Coach.vacc";
+		public const string AccelerationFile2 = @"TestData\Components\Truck.vacc";
+
+		public const double Tolerance = 0.001;
 
 
 		[TestMethod]
@@ -35,19 +39,24 @@ namespace TUGraz.VectoCore.Tests.Integration.SimulationRuns
 		{
 			var engineData = EngineeringModeSimulationDataReader.CreateEngineDataFromFile(EngineFile);
 
-			var vehicleData = CreateVehicleData(50000.SI<Kilogram>());
+			var vehicleData = CreateVehicleData(3300.SI<Kilogram>());
 
-			var driverData = CreateDriverData();
+			var axleGearData = CreateAxleGearData();
 
-			var modalWriter = new ModalDataWriter("Coach_MinimalPowertrainOverload.vmod", SimulatorFactory.FactoryMode.EngineeringMode);
+			var driverData = CreateDriverData(AccelerationFile);
+
+			var modalWriter = new ModalDataWriter("Coach_MinimalPowertrainOverload.vmod"); //new TestModalDataWriter();
 			var sumWriter = new TestSumWriter();
 			var vehicleContainer = new VehicleContainer(modalWriter, sumWriter);
 
 			var driver = new Driver(vehicleContainer, driverData);
 			dynamic tmp = AddComponent(driver, new Vehicle(vehicleContainer, vehicleData));
 			tmp = AddComponent(tmp, new Wheels(vehicleContainer, vehicleData.DynamicTyreRadius));
+			tmp = AddComponent(tmp, new AxleGear(vehicleContainer, axleGearData));
+
 			tmp = AddComponent(tmp, new Clutch(vehicleContainer, engineData));
-			AddComponent(tmp, new CombustionEngine(vehicleContainer, engineData));
+			var engine = new CombustionEngine(vehicleContainer, engineData);
+			AddComponent(tmp, engine);
 
 			var gbx = new DummyGearbox(vehicleContainer);
 
@@ -55,12 +64,21 @@ namespace TUGraz.VectoCore.Tests.Integration.SimulationRuns
 
 			gbx.CurrentGear = 1;
 
-			var response = driverPort.Initialize(18.KMPHtoMeterPerSecond(), VectoMath.InclinationToAngle(0.5 / 100));
+			var response = driverPort.Initialize(18.KMPHtoMeterPerSecond(), VectoMath.InclinationToAngle(2.842372037 / 100));
 
 
 			var absTime = 0.SI<Second>();
 
 			Assert.IsInstanceOfType(response, typeof(ResponseSuccess));
+
+//			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     , -             , -
+
+			AssertHelper.AreRelativeEqual(964.1117.RPMtoRad().Value(), vehicleContainer.Engine.EngineSpeed().Value());
+			Assert.AreEqual(2208.664, engine._previousState.StationaryFullLoadTorque.Value(), Tolerance);
+			Assert.AreEqual(-158.0261, engine._previousState.FullDragTorque.Value(), Tolerance);
+
+			Assert.AreEqual(323.7562, engine._previousState.EngineTorque.Value(), Tolerance);
 		}
 
 
@@ -74,9 +92,9 @@ namespace TUGraz.VectoCore.Tests.Integration.SimulationRuns
 
 			var vehicleData = CreateVehicleData(3300.SI<Kilogram>());
 
-			var driverData = CreateDriverData();
+			var driverData = CreateDriverData(AccelerationFile);
 
-			var modalWriter = new ModalDataWriter("Coach_MinimalPowertrain.vmod", SimulatorFactory.FactoryMode.EngineeringMode);
+			var modalWriter = new ModalDataWriter("Coach_MinimalPowertrain.vmod"); //new TestModalDataWriter();
 			var sumWriter = new TestSumWriter();
 			var vehicleContainer = new VehicleContainer(modalWriter, sumWriter);
 
@@ -85,6 +103,7 @@ namespace TUGraz.VectoCore.Tests.Integration.SimulationRuns
 			dynamic tmp = AddComponent(cycle, new Driver(vehicleContainer, driverData));
 			tmp = AddComponent(tmp, new Vehicle(vehicleContainer, vehicleData));
 			tmp = AddComponent(tmp, new Wheels(vehicleContainer, vehicleData.DynamicTyreRadius));
+			tmp = AddComponent(tmp, new Breaks(vehicleContainer));
 			tmp = AddComponent(tmp, new AxleGear(vehicleContainer, axleGearData));
 			tmp = AddComponent(tmp, new Clutch(vehicleContainer, engineData));
 			AddComponent(tmp, new CombustionEngine(vehicleContainer, engineData));
@@ -134,27 +153,19 @@ namespace TUGraz.VectoCore.Tests.Integration.SimulationRuns
 			//run.Run();
 		}
 
-		private GearData CreateAxleGearData()
-		{
-			return new GearData() {
-				Ratio = 3.0 * 3.5,
-				LossMap = TransmissionLossMap.ReadFromFile(GbxLossMap, 3.0 * 3.5)
-			};
-		}
-
-
 		[TestMethod]
-		public void TestWheelsAndEngineOverload()
+		public void TestWheelsAndEngineLookahead()
 		{
 			var engineData = EngineeringModeSimulationDataReader.CreateEngineDataFromFile(EngineFile);
-			var cycleData = DrivingCycleDataReader.ReadFromFileDistanceBased(CycleFile);
+			var cycleData = DrivingCycleDataReader.ReadFromFileDistanceBased(CycleFileStop);
 
+			var axleGearData = CreateAxleGearData();
 
-			var vehicleData = CreateVehicleData(50000.SI<Kilogram>());
+			var vehicleData = CreateVehicleData(3300.SI<Kilogram>());
 
-			var driverData = CreateDriverData();
+			var driverData = CreateDriverData(AccelerationFile2);
 
-			var modalWriter = new ModalDataWriter("Coach_MinimalPowertrainOverload.vmod", SimulatorFactory.FactoryMode.EngineeringMode);
+			var modalWriter = new ModalDataWriter("Coach_MinimalPowertrain_Stop.vmod"); //new TestModalDataWriter();
 			var sumWriter = new TestSumWriter();
 			var vehicleContainer = new VehicleContainer(modalWriter, sumWriter);
 
@@ -163,6 +174,8 @@ namespace TUGraz.VectoCore.Tests.Integration.SimulationRuns
 			dynamic tmp = AddComponent(cycle, new Driver(vehicleContainer, driverData));
 			tmp = AddComponent(tmp, new Vehicle(vehicleContainer, vehicleData));
 			tmp = AddComponent(tmp, new Wheels(vehicleContainer, vehicleData.DynamicTyreRadius));
+			tmp = AddComponent(tmp, new Breaks(vehicleContainer));
+			tmp = AddComponent(tmp, new AxleGear(vehicleContainer, axleGearData));
 			tmp = AddComponent(tmp, new Clutch(vehicleContainer, engineData));
 			AddComponent(tmp, new CombustionEngine(vehicleContainer, engineData));
 
@@ -175,16 +188,11 @@ namespace TUGraz.VectoCore.Tests.Integration.SimulationRuns
 			gbx.CurrentGear = 0;
 
 			var absTime = 0.SI<Second>();
-			var response = cyclePort.Request(absTime, 1.SI<Meter>());
-
-			Assert.IsInstanceOfType(response, typeof(ResponseSuccess));
-
-			vehicleContainer.CommitSimulationStep(absTime, response.SimulationInterval);
-			absTime += response.SimulationInterval;
 
 			gbx.CurrentGear = 1;
+			IResponse response;
 			var ds = Constants.SimulationSettings.DriveOffDistance;
-			while (vehicleContainer.Distance().Value() < 200) {
+			while (vehicleContainer.Distance().Value() < 100) {
 				response = cyclePort.Request(absTime, ds);
 
 				switch (response.ResponseType) {
@@ -207,10 +215,17 @@ namespace TUGraz.VectoCore.Tests.Integration.SimulationRuns
 			}
 
 			modalWriter.Finish();
-			//var run = new DistanceRun(vehicleContainer);
-			//run.Run();
 		}
 
+		private static GearData CreateAxleGearData()
+		{
+			return new GearData() {
+				Ratio = 3.0 * 3.5,
+				LossMap = TransmissionLossMap.ReadFromFile(GbxLossMap, 3.0 * 3.5)
+			};
+		}
+
+
 		private static VehicleData CreateVehicleData(Kilogram loading)
 		{
 			var axles = new List<Axle>() {
@@ -225,7 +240,7 @@ namespace TUGraz.VectoCore.Tests.Integration.SimulationRuns
 					AxleWeightShare = 0.375,
 					Inertia = 10.83333.SI<KilogramSquareMeter>(),
 					RollResistanceCoefficient = 0.0065,
-					TwinTyres = false,
+					TwinTyres = true,
 					TyreTestLoad = 52532.55.SI<Newton>()
 				},
 				new Axle() {
@@ -237,7 +252,7 @@ namespace TUGraz.VectoCore.Tests.Integration.SimulationRuns
 				}
 			};
 			return new VehicleData() {
-				AxleConfiguration = AxleConfiguration.AxleConfig_4x2,
+				AxleConfiguration = AxleConfiguration.AxleConfig_6x2,
 				CrossSectionArea = 3.2634.SI<SquareMeter>(),
 				CrossWindCorrectionMode = CrossWindCorrectionMode.NoCorrection,
 				DragCoefficient = 1,
@@ -251,10 +266,10 @@ namespace TUGraz.VectoCore.Tests.Integration.SimulationRuns
 			};
 		}
 
-		private static DriverData CreateDriverData()
+		private static DriverData CreateDriverData(string accelerationFile)
 		{
 			return new DriverData() {
-				AccelerationCurve = AccelerationCurveData.ReadFromFile(AccelerationFile),
+				AccelerationCurve = AccelerationCurveData.ReadFromFile(accelerationFile),
 				LookAheadCoasting = new DriverData.LACData() {
 					Enabled = false,
 				},
diff --git a/VectoCoreTest/Models/Simulation/PowerTrainBuilderTest.cs b/VectoCoreTest/Models/Simulation/PowerTrainBuilderTest.cs
index b3c3b4948bfc0ae71519685f3e27b62c97d1c82b..b6800417bc9e9d00d0e34d006afc9a1012c40f61 100644
--- a/VectoCoreTest/Models/Simulation/PowerTrainBuilderTest.cs
+++ b/VectoCoreTest/Models/Simulation/PowerTrainBuilderTest.cs
@@ -28,7 +28,7 @@ namespace TUGraz.VectoCore.Tests.Models.Simulation
 			var powerTrain = builder.Build(runData);
 
 			Assert.IsInstanceOfType(powerTrain, typeof(IVehicleContainer));
-			Assert.AreEqual(10, powerTrain.Components.Count);
+			Assert.AreEqual(11, powerTrain.Components.Count);
 
 			Assert.IsInstanceOfType(powerTrain.Engine, typeof(CombustionEngine));
 			Assert.IsInstanceOfType(powerTrain.Gearbox, typeof(Gearbox));
diff --git a/VectoCoreTest/Models/SimulationComponent/CombustionEngineTest.cs b/VectoCoreTest/Models/SimulationComponent/CombustionEngineTest.cs
index 9d19fb3278724602b14323cb35e9f2564e95707a..cddadc43176ce1753b6de252d1b399e2f883095f 100644
--- a/VectoCoreTest/Models/SimulationComponent/CombustionEngineTest.cs
+++ b/VectoCoreTest/Models/SimulationComponent/CombustionEngineTest.cs
@@ -148,7 +148,7 @@ namespace TUGraz.VectoCore.Tests.Models.SimulationComponent
 			var engineData =
 				EngineeringModeSimulationDataReader.CreateEngineDataFromFile(
 					TestContext.DataRow["EngineFile"].ToString());
-			var engine = new CombustionEngine(vehicleContainer, engineData);
+			var engine = new EngineOnlyCombustionEngine(vehicleContainer, engineData);
 
 			gearbox.InPort().Connect(engine.OutPort());
 
diff --git a/VectoCoreTest/Models/SimulationComponent/DistanceBasedDrivingCycleTest.cs b/VectoCoreTest/Models/SimulationComponent/DistanceBasedDrivingCycleTest.cs
index 00a23ad32af5677854bb4b115e3d3c2346eec8ae..c8b1723fff119f4c5514c8b343eb492e9a134e83 100644
--- a/VectoCoreTest/Models/SimulationComponent/DistanceBasedDrivingCycleTest.cs
+++ b/VectoCoreTest/Models/SimulationComponent/DistanceBasedDrivingCycleTest.cs
@@ -1,6 +1,7 @@
 using System;
 using System.Linq;
 using Microsoft.VisualStudio.TestTools.UnitTesting;
+using TUGraz.VectoCore.Configuration;
 using TUGraz.VectoCore.Exceptions;
 using TUGraz.VectoCore.FileIO.Reader;
 using TUGraz.VectoCore.FileIO.Reader.Impl;
@@ -23,6 +24,8 @@ namespace TUGraz.VectoCore.Tests.Models.SimulationComponent
 		[TestMethod]
 		public void TestDistanceRequest()
 		{
+			// Constants.SimulationSettings.DrivingCycleRoadGradientTolerance = 1E-12;
+
 			var cycleData = DrivingCycleDataReader.ReadFromFile(ShortCycle, DrivingCycleData.CycleType.DistanceBased);
 
 			var vehicleContainer = new VehicleContainer();
@@ -52,7 +55,7 @@ namespace TUGraz.VectoCore.Tests.Models.SimulationComponent
 			Assert.IsInstanceOfType(response, typeof(ResponseSuccess));
 
 			Assert.AreEqual(5.SI<MeterPerSecond>().Value(), driver.LastRequest.TargetVelocity.Value(), Tolerance);
-			Assert.AreEqual(0.02667562971628240, driver.LastRequest.Gradient.Value(), 1E-12);
+			Assert.AreEqual(0.0284160694958265, driver.LastRequest.Gradient.Value(), 1E-12);
 			Assert.AreEqual(1 + startDistance, cycle.CurrentState.Distance.Value(), Tolerance);
 
 			vehicleContainer.CommitSimulationStep(absTime, response.SimulationInterval);
@@ -64,7 +67,7 @@ namespace TUGraz.VectoCore.Tests.Models.SimulationComponent
 			Assert.IsInstanceOfType(response, typeof(ResponseSuccess));
 
 			Assert.AreEqual(5.SI<MeterPerSecond>().Value(), driver.LastRequest.TargetVelocity.Value(), Tolerance);
-			Assert.AreEqual(0.02667562971628240, driver.LastRequest.Gradient.Value(), 1E-12);
+			Assert.AreEqual(0.0284160694958265, driver.LastRequest.Gradient.Value(), 1E-12);
 			Assert.AreEqual(2 + startDistance, cycle.CurrentState.Distance.Value(), Tolerance);
 
 			vehicleContainer.CommitSimulationStep(absTime, response.SimulationInterval);
@@ -75,10 +78,10 @@ namespace TUGraz.VectoCore.Tests.Models.SimulationComponent
 
 			Assert.IsInstanceOfType(response, typeof(ResponseDrivingCycleDistanceExceeded));
 			var tmp = response as ResponseDrivingCycleDistanceExceeded;
-			Assert.AreEqual(36, tmp.MaxDistance.Value(), Tolerance);
+			Assert.AreEqual(16, tmp.MaxDistance.Value(), Tolerance);
 
 			Assert.AreEqual(5.SI<MeterPerSecond>().Value(), driver.LastRequest.TargetVelocity.Value(), Tolerance);
-			Assert.AreEqual(0.02667562971628240, driver.LastRequest.Gradient.Value(), 1E-12);
+			Assert.AreEqual(0.0284160694958265, driver.LastRequest.Gradient.Value(), 1E-12);
 			Assert.AreEqual(2 + startDistance, cycle.CurrentState.Distance.Value(), Tolerance);
 
 			try {
@@ -91,8 +94,8 @@ namespace TUGraz.VectoCore.Tests.Models.SimulationComponent
 			response = cycle.OutPort().Request(absTime, tmp.MaxDistance);
 
 			Assert.AreEqual(5.SI<MeterPerSecond>().Value(), driver.LastRequest.TargetVelocity.Value(), Tolerance);
-			Assert.AreEqual(0.02667562971628240, driver.LastRequest.Gradient.Value(), 1E-12);
-			Assert.AreEqual(38 + startDistance, cycle.CurrentState.Distance.Value(), Tolerance);
+			Assert.AreEqual(0.0284160694958265, driver.LastRequest.Gradient.Value(), 1E-12);
+			Assert.AreEqual(18 + startDistance, cycle.CurrentState.Distance.Value(), Tolerance);
 
 
 			vehicleContainer.CommitSimulationStep(absTime, response.SimulationInterval);
diff --git a/VectoCoreTest/Models/SimulationComponent/DriverTest.cs b/VectoCoreTest/Models/SimulationComponent/DriverTest.cs
index c9df257d5705be3c928bdf6e5c95b547a19a96c9..fb9f863c0df96ce76e4d55dbd34a77408c8c5d2d 100644
--- a/VectoCoreTest/Models/SimulationComponent/DriverTest.cs
+++ b/VectoCoreTest/Models/SimulationComponent/DriverTest.cs
@@ -2,6 +2,8 @@
 using System.Collections.Generic;
 using System.Linq;
 using Microsoft.VisualStudio.TestTools.UnitTesting;
+using TUGraz.VectoCore.Configuration;
+using TUGraz.VectoCore.Exceptions;
 using TUGraz.VectoCore.FileIO.Reader;
 using TUGraz.VectoCore.FileIO.Reader.Impl;
 using TUGraz.VectoCore.Models.Connector.Ports;
@@ -31,6 +33,116 @@ namespace TUGraz.VectoCore.Tests.Models.SimulationComponent
 		public const double Tolerance = 0.001;
 
 
+		[TestMethod]
+		public void DriverCoastingTest()
+		{
+			var engineData = EngineeringModeSimulationDataReader.CreateEngineDataFromFile(EngineFile);
+
+			var vehicleData = CreateVehicleData(33000.SI<Kilogram>());
+
+			var driverData = CreateDriverData();
+
+			var modalWriter = new ModalDataWriter("Coach_MinimalPowertrain_Coasting.vmod");
+			var sumWriter = new TestSumWriter();
+			var vehicleContainer = new VehicleContainer(modalWriter, sumWriter);
+
+			var driver = new Driver(vehicleContainer, driverData);
+			var engine = new CombustionEngine(vehicleContainer, engineData);
+
+			dynamic tmp = AddComponent(driver, new Vehicle(vehicleContainer, vehicleData));
+			tmp = AddComponent(tmp, new Wheels(vehicleContainer, vehicleData.DynamicTyreRadius));
+			tmp = AddComponent(tmp, new Clutch(vehicleContainer, engineData));
+			AddComponent(tmp, engine);
+
+			var gbx = new DummyGearbox(vehicleContainer);
+			gbx.CurrentGear = 1;
+
+			var driverPort = driver.OutPort();
+
+			driverPort.Initialize(5.SI<MeterPerSecond>(), 0.SI<Radian>());
+
+			var absTime = 0.SI<Second>();
+
+			var response = driver.DoCoast(absTime, 1.SI<Meter>(), 0.SI<Radian>());
+
+			Assert.IsInstanceOfType(response, typeof(ResponseSuccess));
+
+			vehicleContainer.CommitSimulationStep(absTime, response.SimulationInterval);
+			absTime += response.SimulationInterval;
+
+			Assert.AreEqual(4.9812, vehicleContainer.VehicleSpeed().Value(), Tolerance);
+			Assert.AreEqual(0.2004, response.SimulationInterval.Value(), Tolerance);
+			Assert.AreEqual(engine._previousState.FullDragPower.Value(), engine._previousState.EnginePower.Value(),
+				Constants.SimulationSettings.EngineFLDPowerTolerance);
+
+			while (vehicleContainer.VehicleSpeed() > 1) {
+				response = driver.DoCoast(absTime, 1.SI<Meter>(), 0.SI<Radian>());
+
+				Assert.IsInstanceOfType(response, typeof(ResponseSuccess));
+
+				vehicleContainer.CommitSimulationStep(absTime, response.SimulationInterval);
+				absTime += response.SimulationInterval;
+				modalWriter.Finish();
+			}
+			modalWriter.Finish();
+		}
+
+		[TestMethod]
+		public void DriverCoastingTest2()
+		{
+			var engineData = EngineeringModeSimulationDataReader.CreateEngineDataFromFile(EngineFile);
+
+			var vehicleData = CreateVehicleData(33000.SI<Kilogram>());
+
+			var driverData = CreateDriverData();
+
+			var modalWriter = new ModalDataWriter("Coach_MinimalPowertrain_Coasting.vmod"); //new TestModalDataWriter();
+			var sumWriter = new TestSumWriter();
+			var vehicleContainer = new VehicleContainer(modalWriter, sumWriter);
+
+			var driver = new Driver(vehicleContainer, driverData);
+			var engine = new CombustionEngine(vehicleContainer, engineData);
+
+			dynamic tmp = AddComponent(driver, new Vehicle(vehicleContainer, vehicleData));
+			tmp = AddComponent(tmp, new Wheels(vehicleContainer, vehicleData.DynamicTyreRadius));
+			tmp = AddComponent(tmp, new Clutch(vehicleContainer, engineData));
+			AddComponent(tmp, engine);
+
+			var gbx = new DummyGearbox(vehicleContainer);
+			gbx.CurrentGear = 1;
+
+			var driverPort = driver.OutPort();
+
+			var gradient = VectoMath.InclinationToAngle(-0.020237973 / 100.0);
+			driverPort.Initialize(5.SI<MeterPerSecond>(), gradient);
+
+			var absTime = 0.SI<Second>();
+
+			var response = driver.DoCoast(absTime, 1.SI<Meter>(), gradient);
+
+			Assert.IsInstanceOfType(response, typeof(ResponseSuccess));
+
+			vehicleContainer.CommitSimulationStep(absTime, response.SimulationInterval);
+			absTime += response.SimulationInterval;
+
+			Assert.AreEqual(4.9812, vehicleContainer.VehicleSpeed().Value(), Tolerance);
+			Assert.AreEqual(0.2004, response.SimulationInterval.Value(), Tolerance);
+			Assert.AreEqual(engine._previousState.FullDragPower.Value(), engine._previousState.EnginePower.Value(),
+				Constants.SimulationSettings.EngineFLDPowerTolerance);
+
+			while (vehicleContainer.VehicleSpeed() > 1) {
+				response = driver.DoCoast(absTime, 1.SI<Meter>(), gradient);
+
+				Assert.IsInstanceOfType(response, typeof(ResponseSuccess));
+
+				vehicleContainer.CommitSimulationStep(absTime, response.SimulationInterval);
+				absTime += response.SimulationInterval;
+				modalWriter.Finish();
+			}
+			modalWriter.Finish();
+		}
+
+
 		[TestMethod]
 		public void DriverOverloadTest()
 		{
@@ -67,7 +179,7 @@ namespace TUGraz.VectoCore.Tests.Models.SimulationComponent
 			vehicleContainer.CommitSimulationStep(absTime, response.SimulationInterval);
 			absTime += response.SimulationInterval;
 
-			Assert.AreEqual(0.900, modalWriter.GetValues<SI>(ModalResultField.acc).Last().Value(), Tolerance);
+			Assert.AreEqual(0.908, modalWriter.GetValues<SI>(ModalResultField.acc).Last().Value(), Tolerance);
 
 			response = driverPort.Request(absTime, 1.SI<Meter>(), 10.SI<MeterPerSecond>(), 0.SI<Radian>());
 
@@ -76,14 +188,18 @@ namespace TUGraz.VectoCore.Tests.Models.SimulationComponent
 			vehicleContainer.CommitSimulationStep(absTime, response.SimulationInterval);
 			absTime += response.SimulationInterval;
 
-			Assert.AreEqual(0.7990, modalWriter.GetValues<SI>(ModalResultField.acc).Last().Value(), Tolerance);
+			Assert.AreEqual(0.7973, modalWriter.GetValues<SI>(ModalResultField.acc).Last().Value(), Tolerance);
 
-			/// change vehicle weight
+			// change vehicle weight, cannot reach minimum acceleration...
 			vehicleData.Loading = 70000.SI<Kilogram>();
 
-			response = driverPort.Request(absTime, 1.SI<Meter>(), 10.SI<MeterPerSecond>(), 0.05.SI<Radian>());
-
-			Assert.IsInstanceOfType(response, typeof(ResponseSuccess));
+			try {
+				response = driverPort.Request(absTime, 1.SI<Meter>(), 10.SI<MeterPerSecond>(), 0.05.SI<Radian>());
+				Assert.Fail();
+			} catch (VectoSimulationException e) {
+				Assert.AreEqual("Could not achieve minimum acceleration", e.Message);
+			}
+			//Assert.IsInstanceOfType(response, typeof(ResponseSuccess));
 		}
 
 		[TestMethod]
diff --git a/VectoCoreTest/Models/SimulationComponentData/AccelerationCurveTest.cs b/VectoCoreTest/Models/SimulationComponentData/AccelerationCurveTest.cs
index 8b4a72ee2c626628be489104f47a4e7730f14b1c..508f6bbf0d2df364068ad4d1b59de4dcaa296955 100644
--- a/VectoCoreTest/Models/SimulationComponentData/AccelerationCurveTest.cs
+++ b/VectoCoreTest/Models/SimulationComponentData/AccelerationCurveTest.cs
@@ -79,5 +79,44 @@ namespace TUGraz.VectoCore.Tests.Models.SimulationComponentData
 			// EXTRAPOLATE 
 			EqualAcceleration(130, 0.16, -0.103);
 		}
+
+		[TestMethod]
+		public void ComputeAccelerationDistanceTest()
+		{
+			Data = AccelerationCurveData.ReadFromFile(@"TestData\Components\Truck.vacc");
+
+			// in this part the deceleration is constant
+
+			var result = Data.ComputeAccelerationDistance(25.KMPHtoMeterPerSecond(), 0.KMPHtoMeterPerSecond());
+			Assert.AreEqual(24.11265432099, result.Value(), Tolerance);
+
+			result = Data.ComputeAccelerationDistance(25.KMPHtoMeterPerSecond(), 15.KMPHtoMeterPerSecond());
+			Assert.AreEqual(15.43209876543, result.Value(), Tolerance);
+
+			result = Data.ComputeAccelerationDistance(50.KMPHtoMeterPerSecond(), 0.KMPHtoMeterPerSecond());
+			Assert.AreEqual(96.45061728395, result.Value(), Tolerance);
+
+			result = Data.ComputeAccelerationDistance(50.KMPHtoMeterPerSecond(), 15.KMPHtoMeterPerSecond());
+			Assert.AreEqual(87.77006172840, result.Value(), Tolerance);
+
+			result = Data.ComputeAccelerationDistance(100.KMPHtoMeterPerSecond(), 60.KMPHtoMeterPerSecond());
+			Assert.AreEqual(493.82716049383, result.Value(), Tolerance);
+
+			// decelerate in the non-constant part only
+
+			result = Data.ComputeAccelerationDistance(60.KMPHtoMeterPerSecond(), 50.KMPHtoMeterPerSecond());
+			Assert.AreEqual(59.44491148, result.Value(), Tolerance);
+
+			result = Data.ComputeAccelerationDistance(59.KMPHtoMeterPerSecond(), 55.KMPHtoMeterPerSecond());
+			Assert.AreEqual(27.33155090, result.Value(), Tolerance);
+
+			// decelerate across multiple areas of acceleration curve
+
+			result = Data.ComputeAccelerationDistance(60.KMPHtoMeterPerSecond(), 0.KMPHtoMeterPerSecond());
+			Assert.AreEqual(59.44491148 + 96.45061728395, result.Value(), Tolerance);
+
+			result = Data.ComputeAccelerationDistance(100.KMPHtoMeterPerSecond(), 0.KMPHtoMeterPerSecond());
+			Assert.AreEqual(59.44491148 + 96.45061728395 + 493.82716049383, result.Value(), Tolerance);
+		}
 	}
 }
\ No newline at end of file
diff --git a/VectoCoreTest/Models/SimulationComponentData/AuxiliaryTypeHelperTest.cs b/VectoCoreTest/Models/SimulationComponentData/AuxiliaryTypeHelperTest.cs
new file mode 100644
index 0000000000000000000000000000000000000000..b87038708c3e99b9a93db0578ac8896778664b70
--- /dev/null
+++ b/VectoCoreTest/Models/SimulationComponentData/AuxiliaryTypeHelperTest.cs
@@ -0,0 +1,48 @@
+using System;
+using Microsoft.VisualStudio.TestTools.UnitTesting;
+using TUGraz.VectoCore.Configuration;
+using TUGraz.VectoCore.Models.SimulationComponent.Data;
+
+namespace TUGraz.VectoCore.Tests.Models.SimulationComponentData
+{
+	[TestClass]
+	public class AuxiliaryTypeHelperTest
+	{
+		[TestMethod]
+		public void TestParseAuxiliaryType()
+		{
+			var aux1 = AuxiliaryTypeHelper.Parse("Fan");
+			Assert.AreEqual(AuxiliaryType.Fan, aux1);
+
+			var aux2 = AuxiliaryTypeHelper.Parse("Steering pump");
+			Assert.AreEqual(AuxiliaryType.SteeringPump, aux2);
+
+			var aux3 = AuxiliaryTypeHelper.Parse("Electric System");
+			Assert.AreEqual(AuxiliaryType.ElectricSystem, aux3);
+
+			var aux4 = AuxiliaryTypeHelper.Parse("HVAC");
+			Assert.AreEqual(AuxiliaryType.HeatingVentilationAirCondition, aux4);
+
+			var aux5 = AuxiliaryTypeHelper.Parse("Pneumatic System");
+			Assert.AreEqual(AuxiliaryType.PneumaticSystem, aux5);
+
+			try {
+				var aux6 = AuxiliaryTypeHelper.Parse("Foo Bar Blupp");
+				Assert.Fail();
+			} catch (ArgumentOutOfRangeException e) {}
+		}
+
+		[TestMethod]
+		public void TestToString()
+		{
+			Assert.AreEqual(Constants.Auxiliaries.Names.Fan, AuxiliaryTypeHelper.ToString(AuxiliaryType.Fan));
+			Assert.AreEqual(Constants.Auxiliaries.Names.SteeringPump, AuxiliaryTypeHelper.ToString(AuxiliaryType.SteeringPump));
+			Assert.AreEqual(Constants.Auxiliaries.Names.HeatingVentilationAirCondition,
+				AuxiliaryTypeHelper.ToString(AuxiliaryType.HeatingVentilationAirCondition));
+			Assert.AreEqual(Constants.Auxiliaries.Names.PneumaticSystem,
+				AuxiliaryTypeHelper.ToString(AuxiliaryType.PneumaticSystem));
+			Assert.AreEqual(Constants.Auxiliaries.Names.ElectricSystem,
+				AuxiliaryTypeHelper.ToString(AuxiliaryType.ElectricSystem));
+		}
+	}
+}
\ No newline at end of file
diff --git a/VectoCoreTest/Models/SimulationComponentData/CombustionEngineDataTest.cs b/VectoCoreTest/Models/SimulationComponentData/CombustionEngineDataTest.cs
new file mode 100644
index 0000000000000000000000000000000000000000..9a068976ebf2538987de6181ecf278be6598a46b
--- /dev/null
+++ b/VectoCoreTest/Models/SimulationComponentData/CombustionEngineDataTest.cs
@@ -0,0 +1,15 @@
+using Microsoft.VisualStudio.TestTools.UnitTesting;
+
+namespace TUGraz.VectoCore.Tests.Models.SimulationComponentData
+{
+	[TestClass]
+	public class CombustionEngineDataTest
+	{
+
+		[TestMethod]
+		public void TestEquals()
+		{
+			
+		}
+	}
+}
\ No newline at end of file
diff --git a/VectoCoreTest/TestData/Integration/MinimalPowerTrain/1-Gear-StopTest-dist.vdri b/VectoCoreTest/TestData/Integration/MinimalPowerTrain/1-Gear-StopTest-dist.vdri
new file mode 100644
index 0000000000000000000000000000000000000000..a664b45b36c835ebad676c19ad16d2575da6e711
--- /dev/null
+++ b/VectoCoreTest/TestData/Integration/MinimalPowerTrain/1-Gear-StopTest-dist.vdri
@@ -0,0 +1,16814 @@
+<s>,<v>,<grad>,<stop>
+0,12.8,-0.020237973,0
+1,12.8,-0.020237973,0
+2,12.8,-0.020237973,0
+3,12.8,-0.020237973,0
+4,12.8,-0.020237973,0
+5,12.8,-0.020237973,0
+6,12.8,-0.020237973,0
+7,12.8,-0.020237973,0
+8,12.8,-0.020237973,0
+9,12.8,-0.020237973,0
+10,12.8,-0.020237973,0
+11,12.8,-0.020237973,0
+12,12.8,-0.020237973,0
+13,12.8,-0.020237973,0
+14,12.8,-0.020237973,0
+15,0,-0.020237973,40
+16,12.8,-0.020237973,0
+17,12.8,-0.020237973,0
+18,12.8,-0.020237973,0
+19,12.8,-0.020237973,0
+20,12.8,-0.020237973,0
+21,12.8,-0.020237973,0
+22,12.8,-0.020237973,0
+23,12.8,-0.020237973,0
+24,12.8,-0.020237973,0
+25,12.8,-0.020237973,0
+26,12.8,-0.020237973,0
+27,12.8,-0.020237973,0
+28,12.8,-0.020237973,0
+29,12.8,-0.020237973,0
+30,12.8,-0.020237973,0
+31,12.8,-0.020237973,0
+32,12.8,-0.020237973,0
+33,12.8,-0.020237973,0
+34,12.8,-0.020237973,0
+35,12.8,-0.020237973,0
+36,12.8,-0.020237973,0
+37,12.8,-0.020237973,0
+38,12.8,-0.020237973,0
+39,12.8,-0.020237973,0
+40,12.8,-0.020237973,0
+41,12.8,-0.020237973,0
+42,12.8,-0.020237973,0
+43,12.8,-0.020237973,0
+44,12.8,-0.020237973,0
+45,12.8,-0.020237973,0
+46,12.8,-0.020237973,0
+47,12.8,-0.020237973,0
+48,12.8,-0.020237973,0
+49,12.8,-0.020237973,0
+50,12.8,-0.020237973,0
+51,12.8,-0.020237973,0
+52,12.8,-0.020237973,0
+53,12.8,-0.020237973,0
+54,12.8,-0.020237973,0
+55,12.8,-0.020237973,0
+56,12.8,-0.020237973,0
+57,12.8,-0.020237973,0
+58,12.8,-0.020237973,0
+59,12.8,-0.020237973,0
+60,12.8,-0.020237973,0
+61,12.8,-0.020237973,0
+62,12.8,-0.020237973,0
+63,12.8,-0.020237973,0
+64,12.8,-0.020237973,0
+65,12.8,-0.020237973,0
+66,12.8,-0.020237973,0
+67,12.8,-0.020237973,0
+68,12.8,-0.020237973,0
+69,12.8,-0.175306592,0
+70,12.8,-0.175306592,0
+71,12.8,-0.175306592,0
+72,12.8,-0.175306592,0
+73,12.8,-0.175306592,0
+74,12.8,-0.175306592,0
+75,12.8,-0.175306592,0
+76,12.8,-0.175306592,0
+77,12.8,-0.175306592,0
+78,12.8,-0.175306592,0
+79,12.8,-0.175306592,0
+80,12.8,-0.175306592,0
+81,12.8,-0.175306592,0
+82,12.8,-0.175306592,0
+83,12.8,-0.175306592,0
+84,12.8,-0.175306592,0
+85,12.8,-0.175306592,0
+86,12.8,-0.175306592,0
+87,12.8,-0.175306592,0
+88,12.8,-0.175306592,0
+89,12.8,-0.295483884,0
+90,12.8,-0.295483884,0
+91,12.8,-0.295483884,0
+92,12.8,-0.295483884,0
+93,12.8,-0.295483884,0
+94,12.8,-0.295483884,0
+95,12.8,-0.295483884,0
+96,12.8,-0.295483884,0
+97,12.8,-0.295483884,0
+98,12.8,-0.295483884,0
+99,12.8,-0.295483884,0
+100,12.8,-0.295483884,0
+101,12.8,-0.295483884,0
+102,12.8,-0.295483884,0
+103,12.8,-0.295483884,0
+104,12.8,-0.295483884,0
+105,12.8,-0.295483884,0
+106,12.8,-0.295483884,0
+107,12.8,-0.295483884,0
+108,12.8,-0.295483884,0
+109,12.8,-0.295483884,0
+110,12.8,-0.295483884,0
+111,12.8,-0.295483884,0
+112,12.8,-0.295483884,0
+113,12.8,-0.295483884,0
+114,12.8,-0.295483884,0
+115,12.8,-0.295483884,0
+116,12.8,-0.295483884,0
+117,12.8,-0.295483884,0
+118,12.8,-0.295483884,0
+119,12.8,-0.407019169,0
+120,12.8,-0.407019169,0
+121,12.8,-0.407019169,0
+122,12.8,-0.407019169,0
+123,12.8,-0.407019169,0
+124,12.8,-0.407019169,0
+125,12.8,-0.407019169,0
+126,12.8,-0.407019169,0
+127,12.8,-0.407019169,0
+128,12.8,-0.407019169,0
+129,12.8,-0.407019169,0
+130,12.8,-0.407019169,0
+131,12.8,-0.407019169,0
+132,12.8,-0.407019169,0
+133,12.8,-0.407019169,0
+134,12.8,-0.407019169,0
+135,12.8,-0.407019169,0
+136,12.8,-0.407019169,0
+137,12.8,-0.407019169,0
+138,12.8,-0.407019169,0
+139,12.8,-0.407019169,0
+140,12.8,-0.407019169,0
+141,12.8,-0.407019169,0
+142,12.8,-0.407019169,0
+143,12.8,-0.407019169,0
+144,12.8,-0.407019169,0
+145,12.8,-0.407019169,0
+146,12.8,-0.407019169,0
+147,12.8,-0.407019169,0
+148,12.8,-0.407019169,0
+149,12.8,-0.511364898,0
+150,12.8,-0.511364898,0
+151,12.8,-0.511364898,0
+152,12.8,-0.511364898,0
+153,12.8,-0.511364898,0
+154,12.8,-0.511364898,0
+155,12.8,-0.511364898,0
+156,12.8,-0.511364898,0
+157,12.8,-0.511364898,0
+158,12.8,-0.511364898,0
+159,12.8,-0.511364898,0
+160,12.8,-0.511364898,0
+161,12.8,-0.511364898,0
+162,12.8,-0.511364898,0
+163,12.8,-0.511364898,0
+164,12.8,-0.511364898,0
+165,12.8,-0.511364898,0
+166,12.8,-0.511364898,0
+167,12.8,-0.511364898,0
+168,12.8,-0.511364898,0
+169,12.8,-0.511364898,0
+170,12.8,-0.511364898,0
+171,12.8,-0.511364898,0
+172,12.8,-0.511364898,0
+173,12.8,-0.511364898,0
+174,12.8,-0.511364898,0
+175,12.8,-0.511364898,0
+176,12.8,-0.511364898,0
+177,12.8,-0.511364898,0
+178,12.8,-0.511364898,0
+179,12.8,-0.615710627,0
+180,12.8,-0.615710627,0
+181,12.8,-0.615710627,0
+182,12.8,-0.615710627,0
+183,12.8,-0.615710627,0
+184,12.8,-0.615710627,0
+185,12.8,-0.615710627,0
+186,12.8,-0.615710627,0
+187,12.8,-0.615710627,0
+188,12.8,-0.615710627,0
+189,12.8,-0.615710627,0
+190,12.8,-0.615710627,0
+191,12.8,-0.615710627,0
+192,12.8,-0.615710627,0
+193,12.8,-0.615710627,0
+194,12.8,-0.615710627,0
+195,12.8,-0.615710627,0
+196,12.8,-0.615710627,0
+197,12.8,-0.615710627,0
+198,12.8,-0.615710627,0
+199,12.8,-0.615710627,0
+200,12.8,-0.615710627,0
+201,12.8,-0.615710627,0
+202,12.8,-0.615710627,0
+203,12.8,-0.615710627,0
+204,12.8,-0.615710627,0
+205,12.8,-0.615710627,0
+206,12.8,-0.615710627,0
+207,12.8,-0.615710627,0
+208,12.8,-0.615710627,0
+209,12.8,-0.795427511,0
+210,12.8,-0.795427511,0
+211,12.8,-0.795427511,0
+212,12.8,-0.795427511,0
+213,12.8,-0.795427511,0
+214,12.8,-0.795427511,0
+215,12.8,-0.795427511,0
+216,12.8,-0.795427511,0
+217,12.8,-0.795427511,0
+218,12.8,-0.795427511,0
+219,12.8,-0.932640074,0
+220,12.8,-0.932640074,0
+221,12.8,-0.932640074,0
+222,12.8,-0.932640074,0
+223,12.8,-0.932640074,0
+224,12.8,-0.932640074,0
+225,12.8,-0.932640074,0
+226,12.8,-0.932640074,0
+227,12.8,-0.932640074,0
+228,12.8,-0.932640074,0
+229,12.8,-1.069852637,0
+230,12.8,-1.069852637,0
+231,12.8,-1.069852637,0
+232,12.8,-1.069852637,0
+233,12.8,-1.069852637,0
+234,12.8,-1.069852637,0
+235,12.8,-1.069852637,0
+236,12.8,-1.069852637,0
+237,12.8,-1.069852637,0
+238,12.8,-1.069852637,0
+239,12.8,-1.069852637,0
+240,12.8,-1.069852637,0
+241,12.8,-1.069852637,0
+242,12.8,-1.069852637,0
+243,12.8,-1.069852637,0
+244,12.8,-1.069852637,0
+245,12.8,-1.069852637,0
+246,12.8,-1.069852637,0
+247,12.8,-1.069852637,0
+248,12.8,-1.069852637,0
+249,12.8,-1.193271481,0
+250,12.8,-1.193271481,0
+251,12.8,-1.193271481,0
+252,12.8,-1.193271481,0
+253,12.8,-1.193271481,0
+254,12.8,-1.193271481,0
+255,12.8,-1.193271481,0
+256,12.8,-1.193271481,0
+257,12.8,-1.193271481,0
+258,12.8,-1.193271481,0
+259,12.8,-1.193271481,0
+260,12.8,-1.193271481,0
+261,12.8,-1.193271481,0
+262,12.8,-1.193271481,0
+263,12.8,-1.193271481,0
+264,12.8,-1.193271481,0
+265,12.8,-1.193271481,0
+266,12.8,-1.193271481,0
+267,12.8,-1.193271481,0
+268,12.8,-1.193271481,0
+269,12.8,-1.193271481,0
+270,12.8,-1.193271481,0
+271,12.8,-1.193271481,0
+272,12.8,-1.193271481,0
+273,12.8,-1.193271481,0
+274,12.8,-1.193271481,0
+275,12.8,-1.193271481,0
+276,12.8,-1.193271481,0
+277,12.8,-1.193271481,0
+278,12.8,-1.193271481,0
+279,12.8,-1.302896606,0
+280,12.8,-1.302896606,0
+281,12.8,-1.302896606,0
+282,12.8,-1.302896606,0
+283,12.8,-1.302896606,0
+284,12.8,-1.302896606,0
+285,12.8,-1.302896606,0
+286,12.8,-1.302896606,0
+287,12.8,-1.302896606,0
+288,12.8,-1.302896606,0
+289,12.8,-1.302896606,0
+290,12.8,-1.302896606,0
+291,12.8,-1.302896606,0
+292,12.8,-1.302896606,0
+293,12.8,-1.302896606,0
+294,12.8,-1.302896606,0
+295,12.8,-1.302896606,0
+296,12.8,-1.302896606,0
+297,12.8,-1.302896606,0
+298,12.8,-1.302896606,0
+299,12.8,-1.302896606,0
+300,12.8,-1.302896606,0
+301,12.8,-1.302896606,0
+302,12.8,-1.302896606,0
+303,12.8,-1.302896606,0
+304,12.8,-1.302896606,0
+305,12.8,-1.302896606,0
+306,12.8,-1.302896606,0
+307,12.8,-1.302896606,0
+308,12.8,-1.302896606,0
+309,12.8,-1.412521732,0
+310,12.8,-1.412521732,0
+311,12.8,-1.412521732,0
+312,12.8,-1.412521732,0
+313,12.8,-1.412521732,0
+314,12.8,-1.412521732,0
+315,12.8,-1.412521732,0
+316,12.8,-1.412521732,0
+317,12.8,-1.412521732,0
+318,12.8,-1.412521732,0
+319,12.8,-1.412521732,0
+320,12.8,-1.412521732,0
+321,12.8,-1.412521732,0
+322,12.8,-1.412521732,0
+323,12.8,-1.412521732,0
+324,12.8,-1.412521732,0
+325,12.8,-1.412521732,0
+326,12.8,-1.412521732,0
+327,12.8,-1.412521732,0
+328,12.8,-1.412521732,0
+329,12.8,-1.412521732,0
+330,12.8,-1.412521732,0
+331,12.8,-1.412521732,0
+332,12.8,-1.412521732,0
+333,12.8,-1.412521732,0
+334,12.8,-1.412521732,0
+335,12.8,-1.412521732,0
+336,12.8,-1.412521732,0
+337,12.8,-1.412521732,0
+338,12.8,-1.412521732,0
+339,12.8,-1.522146858,0
+340,12.8,-1.522146858,0
+341,12.8,-1.522146858,0
+342,12.8,-1.522146858,0
+343,12.8,-1.522146858,0
+344,12.8,-1.522146858,0
+345,12.8,-1.522146858,0
+346,12.8,-1.522146858,0
+347,12.8,-1.522146858,0
+348,12.8,-1.522146858,0
+349,12.8,-1.522146858,0
+350,12.8,-1.522146858,0
+351,12.8,-1.522146858,0
+352,12.8,-1.522146858,0
+353,12.8,-1.522146858,0
+354,12.8,-1.522146858,0
+355,12.8,-1.522146858,0
+356,12.8,-1.522146858,0
+357,12.8,-1.522146858,0
+358,12.8,-1.522146858,0
+359,12.8,-1.522146858,0
+360,12.8,-1.522146858,0
+361,12.8,-1.522146858,0
+362,12.8,-1.522146858,0
+363,12.8,-1.522146858,0
+364,12.8,-1.522146858,0
+365,12.8,-1.522146858,0
+366,12.8,-1.522146858,0
+367,12.8,-1.522146858,0
+368,12.8,-1.522146858,0
+369,12.8,-1.631771983,0
+370,12.8,-1.631771983,0
+371,12.8,-1.631771983,0
+372,12.8,-1.631771983,0
+373,12.8,-1.631771983,0
+374,12.8,-1.631771983,0
+375,12.8,-1.631771983,0
+376,12.8,-1.631771983,0
+377,12.8,-1.631771983,0
+378,12.8,-1.631771983,0
+379,12.8,-1.631771983,0
+380,12.8,-1.631771983,0
+381,12.8,-1.631771983,0
+382,12.8,-1.631771983,0
+383,12.8,-1.631771983,0
+384,12.8,-1.631771983,0
+385,12.8,-1.631771983,0
+386,12.8,-1.631771983,0
+387,12.8,-1.631771983,0
+388,12.8,-1.631771983,0
+389,12.8,-1.631771983,0
+390,12.8,-1.631771983,0
+391,12.8,-1.631771983,0
+392,12.8,-1.631771983,0
+393,12.8,-1.631771983,0
+394,12.8,-1.631771983,0
+395,12.8,-1.631771983,0
+396,12.8,-1.631771983,0
+397,12.8,-1.631771983,0
+398,12.8,-1.631771983,0
+399,12.8,-1.741397109,0
+400,12.8,-1.741397109,0
+401,12.8,-1.741397109,0
+402,12.8,-1.741397109,0
+403,12.8,-1.741397109,0
+404,12.8,-1.741397109,0
+405,12.8,-1.741397109,0
+406,12.8,-1.741397109,0
+407,12.8,-1.741397109,0
+408,12.8,-1.741397109,0
+409,12.8,-1.741397109,0
+410,12.8,-1.741397109,0
+411,12.8,-1.741397109,0
+412,12.8,-1.741397109,0
+413,12.8,-1.741397109,0
+414,12.8,-1.741397109,0
+415,12.8,-1.741397109,0
+416,12.8,-1.741397109,0
+417,12.8,-1.741397109,0
+418,12.8,-1.741397109,0
+419,12.8,-1.581219169,0
+420,12.8,-1.581219169,0
+421,12.8,-1.581219169,0
+422,12.8,-1.581219169,0
+423,12.8,-1.581219169,0
+424,12.8,-1.581219169,0
+425,12.8,-1.581219169,0
+426,12.8,-1.581219169,0
+427,12.8,-1.581219169,0
+428,12.8,-1.581219169,0
+429,12.8,-1.480548315,0
+430,12.8,-1.480548315,0
+431,12.8,-1.480548315,0
+432,12.8,-1.480548315,0
+433,12.8,-1.480548315,0
+434,12.8,-1.480548315,0
+435,12.8,-1.480548315,0
+436,12.8,-1.480548315,0
+437,12.8,-1.480548315,0
+438,12.8,-1.480548315,0
+439,12.8,-1.480548315,0
+440,12.8,-1.480548315,0
+441,12.8,-1.480548315,0
+442,12.8,-1.480548315,0
+443,12.8,-1.480548315,0
+444,12.8,-1.480548315,0
+445,12.8,-1.480548315,0
+446,12.8,-1.480548315,0
+447,12.8,-1.480548315,0
+448,12.8,-1.480548315,0
+449,12.8,-1.480548315,0
+450,12.8,-1.480548315,0
+451,12.8,-1.480548315,0
+452,12.8,-1.480548315,0
+453,12.8,-1.480548315,0
+454,12.8,-1.480548315,0
+455,12.8,-1.480548315,0
+456,12.8,-1.480548315,0
+457,12.8,-1.480548315,0
+458,12.8,-1.480548315,0
+459,12.8,-1.480548315,0
+460,12.8,-1.480548315,0
+461,12.8,-1.480548315,0
+462,12.8,-1.480548315,0
+463,12.8,-1.480548315,0
+464,12.8,-1.480548315,0
+465,12.8,-1.480548315,0
+466,12.8,-1.480548315,0
+467,12.8,-1.480548315,0
+468,12.8,-1.480548315,0
+469,12.8,-1.480548315,0
+470,12.8,-1.480548315,0
+471,12.8,-1.480548315,0
+472,12.8,-1.480548315,0
+473,12.8,-1.480548315,0
+474,12.8,-1.480548315,0
+475,12.8,-1.480548315,0
+476,12.8,-1.480548315,0
+477,12.8,-1.480548315,0
+478,12.8,-1.480548315,0
+479,12.8,-1.480548315,0
+480,12.8,-1.480548315,0
+481,12.8,-1.480548315,0
+482,12.8,-1.480548315,0
+483,12.8,-1.480548315,0
+484,12.8,-1.480548315,0
+485,12.8,-1.480548315,0
+486,12.8,-1.480548315,0
+487,12.8,-1.480548315,0
+488,12.8,-1.480548315,0
+489,12.8,-1.480548315,0
+490,12.8,-1.480548315,0
+491,12.8,-1.480548315,0
+492,12.8,-1.480548315,0
+493,12.8,-1.480548315,0
+494,12.8,-1.480548315,0
+495,12.8,-1.480548315,0
+496,12.8,-1.480548315,0
+497,12.8,-1.480548315,0
+498,12.8,-1.480548315,0
+499,12.8,-1.480548315,0
+500,12.8,-1.480548315,0
+501,12.8,-1.480548315,0
+502,12.8,-1.480548315,0
+503,12.8,-1.480548315,0
+504,12.8,-1.480548315,0
+505,12.8,-1.480548315,0
+506,12.8,-1.480548315,0
+507,12.8,-1.480548315,0
+508,12.8,-1.480548315,0
+509,12.8,-1.480548315,0
+510,12.8,-1.480548315,0
+511,12.8,-1.480548315,0
+512,12.8,-1.480548315,0
+513,12.8,-1.480548315,0
+514,12.8,-1.480548315,0
+515,12.8,-1.480548315,0
+516,12.8,-1.480548315,0
+517,12.8,-1.480548315,0
+518,12.8,-1.480548315,0
+519,12.8,-1.480548315,0
+520,12.8,-1.480548315,0
+521,12.8,-1.480548315,0
+522,12.8,-1.480548315,0
+523,12.8,-1.480548315,0
+524,12.8,-1.480548315,0
+525,12.8,-1.480548315,0
+526,12.8,-1.480548315,0
+527,12.8,-1.480548315,0
+528,12.8,-1.480548315,0
+529,12.8,-1.480548315,0
+530,12.8,-1.480548315,0
+531,12.8,-1.480548315,0
+532,12.8,-1.480548315,0
+533,12.8,-1.480548315,0
+534,12.8,-1.480548315,0
+535,12.8,-1.480548315,0
+536,12.8,-1.480548315,0
+537,12.8,-1.480548315,0
+538,12.8,-1.480548315,0
+539,12.8,-1.480548315,0
+540,12.8,-1.480548315,0
+541,12.8,-1.480548315,0
+542,12.8,-1.480548315,0
+543,12.8,-1.480548315,0
+544,12.8,-1.480548315,0
+545,12.8,-1.480548315,0
+546,12.8,-1.480548315,0
+547,12.8,-1.480548315,0
+548,12.8,-1.480548315,0
+549,12.8,-1.480548315,0
+550,12.8,-1.480548315,0
+551,12.8,-1.480548315,0
+552,12.8,-1.480548315,0
+553,12.8,-1.480548315,0
+554,12.8,-1.480548315,0
+555,12.8,-1.480548315,0
+556,12.8,-1.480548315,0
+557,12.8,-1.480548315,0
+558,12.8,-1.480548315,0
+559,12.8,-1.480548315,0
+560,12.8,-1.480548315,0
+561,12.8,-1.480548315,0
+562,12.8,-1.480548315,0
+563,12.8,-1.480548315,0
+564,12.8,-1.480548315,0
+565,12.8,-1.480548315,0
+566,12.8,-1.480548315,0
+567,12.8,-1.480548315,0
+568,12.8,-1.480548315,0
+569,12.8,-1.480548315,0
+570,12.8,-1.480548315,0
+571,12.8,-1.480548315,0
+572,12.8,-1.480548315,0
+573,12.8,-1.480548315,0
+574,12.8,-1.480548315,0
+575,12.8,-1.480548315,0
+576,12.8,-1.480548315,0
+577,12.8,-1.480548315,0
+578,12.8,-1.480548315,0
+579,12.8,-1.480548315,0
+580,12.8,-1.480548315,0
+581,12.8,-1.480548315,0
+582,12.8,-1.480548315,0
+583,12.8,-1.480548315,0
+584,12.8,-1.480548315,0
+585,12.8,-1.480548315,0
+586,12.8,-1.480548315,0
+587,12.8,-1.480548315,0
+588,12.8,-1.480548315,0
+589,12.8,-1.480548315,0
+590,12.8,-1.480548315,0
+591,12.8,-1.480548315,0
+592,12.8,-1.480548315,0
+593,12.8,-1.480548315,0
+594,12.8,-1.480548315,0
+595,12.8,-1.480548315,0
+596,12.8,-1.480548315,0
+597,12.8,-1.480548315,0
+598,12.8,-1.480548315,0
+599,12.8,-1.480548315,0
+600,12.8,-1.480548315,0
+601,12.8,-1.480548315,0
+602,12.8,-1.480548315,0
+603,12.8,-1.480548315,0
+604,12.8,-1.480548315,0
+605,12.8,-1.480548315,0
+606,12.8,-1.480548315,0
+607,12.8,-1.480548315,0
+608,12.8,-1.480548315,0
+609,12.8,-1.480548315,0
+610,12.8,-1.480548315,0
+611,12.8,-1.480548315,0
+612,12.8,-1.480548315,0
+613,12.8,-1.480548315,0
+614,12.8,-1.480548315,0
+615,12.8,-1.480548315,0
+616,12.8,-1.480548315,0
+617,12.8,-1.480548315,0
+618,12.8,-1.480548315,0
+619,12.8,-1.480548315,0
+620,12.8,-1.480548315,0
+621,12.8,-1.480548315,0
+622,12.8,-1.480548315,0
+623,12.8,-1.480548315,0
+624,12.8,-1.480548315,0
+625,12.8,-1.480548315,0
+626,12.8,-1.480548315,0
+627,12.8,-1.480548315,0
+628,12.8,-1.480548315,0
+629,12.8,-1.480548315,0
+630,12.8,-1.480548315,0
+631,12.8,-1.480548315,0
+632,12.8,-1.480548315,0
+633,12.8,-1.480548315,0
+634,12.8,-1.480548315,0
+635,12.8,-1.480548315,0
+636,12.8,-1.480548315,0
+637,12.8,-1.480548315,0
+638,12.8,-1.480548315,0
+639,12.8,-1.480548315,0
+640,12.8,-1.480548315,0
+641,12.8,-1.480548315,0
+642,12.8,-1.480548315,0
+643,12.8,-1.480548315,0
+644,12.8,-1.480548315,0
+645,12.8,-1.480548315,0
+646,12.8,-1.480548315,0
+647,12.8,-1.480548315,0
+648,12.8,-1.480548315,0
+649,12.8,-1.480548315,0
+650,12.8,-1.480548315,0
+651,12.8,-1.480548315,0
+652,12.8,-1.480548315,0
+653,12.8,-1.480548315,0
+654,12.8,-1.480548315,0
+655,12.8,-1.480548315,0
+656,12.8,-1.480548315,0
+657,12.8,-1.480548315,0
+658,12.8,-1.480548315,0
+659,12.8,-1.480548315,0
+660,12.8,-1.480548315,0
+661,12.8,-1.480548315,0
+662,12.8,-1.480548315,0
+663,12.8,-1.480548315,0
+664,12.8,-1.480548315,0
+665,12.8,-1.480548315,0
+666,12.8,-1.480548315,0
+667,12.8,-1.480548315,0
+668,12.8,-1.480548315,0
+669,12.8,-1.366026807,0
+670,12.8,-1.366026807,0
+671,12.8,-1.366026807,0
+672,12.8,-1.366026807,0
+673,12.8,-1.366026807,0
+674,12.8,-1.366026807,0
+675,12.8,-1.366026807,0
+676,12.8,-1.366026807,0
+677,12.8,-1.366026807,0
+678,12.8,-1.366026807,0
+679,12.8,-1.242271531,0
+680,12.8,-1.242271531,0
+681,12.8,-1.242271531,0
+682,12.8,-1.242271531,0
+683,12.8,-1.242271531,0
+684,12.8,-1.242271531,0
+685,12.8,-1.242271531,0
+686,12.8,-1.242271531,0
+687,12.8,-1.242271531,0
+688,12.8,-1.242271531,0
+689,12.8,-1.118516255,0
+690,12.8,-1.118516255,0
+691,12.8,-1.118516255,0
+692,12.8,-1.118516255,0
+693,12.8,-1.118516255,0
+694,12.8,-1.118516255,0
+695,12.8,-1.118516255,0
+696,12.8,-1.118516255,0
+697,12.8,-1.118516255,0
+698,12.8,-1.118516255,0
+699,12.8,-0.994760978,0
+700,12.8,-0.994760978,0
+701,12.8,-0.994760978,0
+702,12.8,-0.994760978,0
+703,12.8,-0.994760978,0
+704,12.8,-0.994760978,0
+705,12.8,-0.994760978,0
+706,12.8,-0.994760978,0
+707,12.8,-0.994760978,0
+708,12.8,-0.994760978,0
+709,12.8,-0.871005702,0
+710,12.8,-0.871005702,0
+711,12.8,-0.871005702,0
+712,12.8,-0.871005702,0
+713,12.8,-0.871005702,0
+714,12.8,-0.871005702,0
+715,12.8,-0.871005702,0
+716,12.8,-0.871005702,0
+717,12.8,-0.871005702,0
+718,12.8,-0.871005702,0
+719,12.8,-0.747250426,0
+720,12.8,-0.747250426,0
+721,12.8,-0.747250426,0
+722,12.8,-0.747250426,0
+723,12.8,-0.747250426,0
+724,12.8,-0.747250426,0
+725,12.8,-0.747250426,0
+726,12.8,-0.747250426,0
+727,12.8,-0.747250426,0
+728,12.8,-0.747250426,0
+729,12.8,-0.623495149,0
+730,12.8,-0.623495149,0
+731,12.8,-0.623495149,0
+732,12.8,-0.623495149,0
+733,12.8,-0.623495149,0
+734,12.8,-0.623495149,0
+735,12.8,-0.623495149,0
+736,12.8,-0.623495149,0
+737,12.8,-0.623495149,0
+738,12.8,-0.623495149,0
+739,12.8,-0.499739873,0
+740,12.8,-0.499739873,0
+741,12.8,-0.499739873,0
+742,12.8,-0.499739873,0
+743,12.8,-0.499739873,0
+744,12.8,-0.499739873,0
+745,12.8,-0.499739873,0
+746,12.8,-0.499739873,0
+747,12.8,-0.499739873,0
+748,12.8,-0.499739873,0
+749,12.8,-0.375984596,0
+750,12.8,-0.375984596,0
+751,12.8,-0.375984596,0
+752,12.8,-0.375984596,0
+753,12.8,-0.375984596,0
+754,12.8,-0.375984596,0
+755,12.8,-0.375984596,0
+756,12.8,-0.375984596,0
+757,12.8,-0.375984596,0
+758,12.8,-0.375984596,0
+759,12.8,-0.25222932,0
+760,12.8,-0.25222932,0
+761,12.8,-0.25222932,0
+762,12.8,-0.25222932,0
+763,12.8,-0.25222932,0
+764,12.8,-0.25222932,0
+765,12.8,-0.25222932,0
+766,12.8,-0.25222932,0
+767,12.8,-0.25222932,0
+768,12.8,-0.25222932,0
+769,12.8,-0.128474044,0
+770,12.8,-0.128474044,0
+771,12.8,-0.128474044,0
+772,12.8,-0.128474044,0
+773,12.8,-0.128474044,0
+774,12.8,-0.128474044,0
+775,12.8,-0.128474044,0
+776,12.8,-0.128474044,0
+777,12.8,-0.128474044,0
+778,12.8,-0.128474044,0
+779,12.8,-4.72E-03,0
+780,12.8,-4.72E-03,0
+781,12.8,-4.72E-03,0
+782,12.8,-4.72E-03,0
+783,12.8,-4.72E-03,0
+784,12.8,-4.72E-03,0
+785,12.8,-4.72E-03,0
+786,12.8,-4.72E-03,0
+787,12.8,-4.72E-03,0
+788,12.8,-4.72E-03,0
+789,12.8,0.119036509,0
+790,12.8,0.119036509,0
+791,12.8,0.119036509,0
+792,12.8,0.119036509,0
+793,12.8,0.119036509,0
+794,12.8,0.119036509,0
+795,12.8,0.119036509,0
+796,12.8,0.119036509,0
+797,12.8,0.119036509,0
+798,12.8,0.119036509,0
+799,12.8,0.242791786,0
+800,12.8,0.242791786,0
+801,12.8,0.242791786,0
+802,12.8,0.242791786,0
+803,12.8,0.242791786,0
+804,12.8,0.242791786,0
+805,12.8,0.242791786,0
+806,12.8,0.242791786,0
+807,12.8,0.242791786,0
+808,12.8,0.242791786,0
+809,12.8,0.366547062,0
+810,12.8,0.366547062,0
+811,12.8,0.366547062,0
+812,12.8,0.366547062,0
+813,12.8,0.366547062,0
+814,12.8,0.366547062,0
+815,12.8,0.366547062,0
+816,12.8,0.366547062,0
+817,12.8,0.366547062,0
+818,12.8,0.366547062,0
+819,12.8,0.508573193,0
+820,12.8,0.508573193,0
+821,12.8,0.508573193,0
+822,12.8,0.508573193,0
+823,12.8,0.508573193,0
+824,12.8,0.508573193,0
+825,12.8,0.508573193,0
+826,12.8,0.508573193,0
+827,12.8,0.508573193,0
+828,12.8,0.508573193,0
+829,12.8,0.815037012,0
+830,12.8,0.815037012,0
+831,12.8,0.815037012,0
+832,12.8,0.815037012,0
+833,12.8,0.815037012,0
+834,12.8,0.815037012,0
+835,12.8,0.815037012,0
+836,12.8,0.815037012,0
+837,12.8,0.815037012,0
+838,12.8,0.815037012,0
+839,12.8,1.121500831,0
+840,12.8,1.121500831,0
+841,12.8,1.121500831,0
+842,12.8,1.121500831,0
+843,12.8,1.121500831,0
+844,12.8,1.121500831,0
+845,12.8,1.121500831,0
+846,12.8,1.121500831,0
+847,12.8,1.121500831,0
+848,12.8,1.121500831,0
+849,12.8,1.42796465,0
+850,12.8,1.42796465,0
+851,12.8,1.42796465,0
+852,12.8,1.42796465,0
+853,12.8,1.42796465,0
+854,12.8,1.42796465,0
+855,12.8,1.42796465,0
+856,12.8,1.42796465,0
+857,12.8,1.42796465,0
+858,12.8,1.42796465,0
+859,12.8,1.734428469,0
+860,12.8,1.734428469,0
+861,12.8,1.734428469,0
+862,12.8,1.734428469,0
+863,12.8,1.734428469,0
+864,12.8,1.734428469,0
+865,12.8,1.734428469,0
+866,12.8,1.734428469,0
+867,12.8,1.734428469,0
+868,12.8,1.734428469,0
+869,12.8,1.954263595,0
+870,12.8,1.954263595,0
+871,12.8,1.954263595,0
+872,12.8,1.954263595,0
+873,12.8,1.954263595,0
+874,12.8,1.954263595,0
+875,12.8,1.954263595,0
+876,12.8,1.954263595,0
+877,12.8,1.954263595,0
+878,12.8,1.954263595,0
+879,12.8,2.136972137,0
+880,12.8,2.136972137,0
+881,12.8,2.136972137,0
+882,12.8,2.136972137,0
+883,12.8,2.136972137,0
+884,12.8,2.136972137,0
+885,12.8,2.136972137,0
+886,12.8,2.136972137,0
+887,12.8,2.136972137,0
+888,12.8,2.136972137,0
+889,12.8,2.31968068,0
+890,12.8,2.31968068,0
+891,12.8,2.31968068,0
+892,12.8,2.31968068,0
+893,12.8,2.31968068,0
+894,12.8,2.31968068,0
+895,12.8,2.31968068,0
+896,12.8,2.31968068,0
+897,12.8,2.31968068,0
+898,12.8,2.31968068,0
+899,12.8,2.502389223,0
+900,12.8,2.502389223,0
+901,12.8,2.502389223,0
+902,12.8,2.502389223,0
+903,12.8,2.502389223,0
+904,12.8,2.502389223,0
+905,12.8,2.502389223,0
+906,12.8,2.502389223,0
+907,12.8,2.502389223,0
+908,12.8,2.502389223,0
+909,12.8,2.502389223,0
+910,12.8,2.502389223,0
+911,12.8,2.502389223,0
+912,12.8,2.502389223,0
+913,12.8,2.502389223,0
+914,12.8,2.502389223,0
+915,12.8,2.502389223,0
+916,12.8,2.502389223,0
+917,12.8,2.502389223,0
+918,12.8,2.502389223,0
+919,12.8,2.502389223,0
+920,12.8,2.502389223,0
+921,12.8,2.502389223,0
+922,12.8,2.502389223,0
+923,12.8,2.502389223,0
+924,12.8,2.502389223,0
+925,12.8,2.502389223,0
+926,12.8,2.502389223,0
+927,12.8,2.502389223,0
+928,12.8,2.502389223,0
+929,12.8,2.629363896,0
+930,12.8,2.629363896,0
+931,12.8,2.629363896,0
+932,12.8,2.629363896,0
+933,12.8,2.629363896,0
+934,12.8,2.629363896,0
+935,12.8,2.629363896,0
+936,12.8,2.629363896,0
+937,12.8,2.629363896,0
+938,12.8,2.629363896,0
+939,12.8,2.629363896,0
+940,12.8,2.629363896,0
+941,12.8,2.629363896,0
+942,12.8,2.629363896,0
+943,12.8,2.629363896,0
+944,12.8,2.629363896,0
+945,12.8,2.629363896,0
+946,12.8,2.629363896,0
+947,12.8,2.629363896,0
+948,12.8,2.629363896,0
+949,12.8,2.629363896,0
+950,12.8,2.629363896,0
+951,12.8,2.629363896,0
+952,12.8,2.629363896,0
+953,12.8,2.629363896,0
+954,12.8,2.629363896,0
+955,12.8,2.629363896,0
+956,12.8,2.629363896,0
+957,12.8,2.629363896,0
+958,12.8,2.629363896,0
+959,12.8,2.629363896,0
+960,12.8,2.629363896,0
+961,12.8,2.629363896,0
+962,12.8,2.629363896,0
+963,12.8,2.629363896,0
+964,12.8,2.629363896,0
+965,12.8,2.629363896,0
+966,12.8,2.629363896,0
+967,12.8,2.629363896,0
+968,12.8,2.629363896,0
+969,12.8,2.758553846,0
+970,12.8,2.758553846,0
+971,12.8,2.758553846,0
+972,12.8,2.758553846,0
+973,12.8,2.758553846,0
+974,12.8,2.758553846,0
+975,12.8,2.758553846,0
+976,12.8,2.758553846,0
+977,12.8,2.758553846,0
+978,12.8,2.758553846,0
+979,12.8,2.758553846,0
+980,12.8,2.758553846,0
+981,12.8,2.758553846,0
+982,12.8,2.758553846,0
+983,12.8,2.758553846,0
+984,12.8,2.758553846,0
+985,12.8,2.758553846,0
+986,12.8,2.758553846,0
+987,12.8,2.758553846,0
+988,12.8,2.758553846,0
+989,12.8,2.758553846,0
+990,12.8,2.758553846,0
+991,12.8,2.758553846,0
+992,12.8,2.758553846,0
+993,12.8,2.758553846,0
+994,12.8,2.758553846,0
+995,12.8,2.758553846,0
+996,12.8,2.758553846,0
+997,12.8,2.758553846,0
+998,12.8,2.758553846,0
+999,12.8,2.758553846,0
+1000,12.8,2.758553846,0
+1001,10,2.758553846,0
+1002,10,2.758553846,0
+1003,10,2.758553846,0
+1004,10,2.758553846,0
+1005,10,2.758553846,0
+1006,10,2.758553846,0
+1007,10,2.758553846,0
+1008,10,2.758553846,0
+1009,10,2.887743796,0
+1010,10,2.887743796,0
+1011,10,2.887743796,0
+1012,10,2.887743796,0
+1013,10,2.887743796,0
+1014,10,2.887743796,0
+1015,10,2.887743796,0
+1016,10,2.887743796,0
+1017,10,2.887743796,0
+1018,10,2.887743796,0
+1019,10,2.887743796,0
+1020,10,2.887743796,0
+1021,10,2.887743796,0
+1022,10,2.887743796,0
+1023,10,2.887743796,0
+1024,10,2.887743796,0
+1025,10,2.887743796,0
+1026,10,2.887743796,0
+1027,10,2.887743796,0
+1028,10,2.887743796,0
+1029,10,2.733088519,0
+1030,10,2.733088519,0
+1031,10,2.733088519,0
+1032,10,2.733088519,0
+1033,10,2.733088519,0
+1034,10,2.733088519,0
+1035,10,2.733088519,0
+1036,10,2.733088519,0
+1037,10,2.733088519,0
+1038,10,2.733088519,0
+1039,10,2.582677464,0
+1040,10,2.582677464,0
+1041,10,2.582677464,0
+1042,10,2.582677464,0
+1043,10,2.582677464,0
+1044,10,2.582677464,0
+1045,10,2.582677464,0
+1046,10,2.582677464,0
+1047,10,2.582677464,0
+1048,10,2.582677464,0
+1049,10,2.432266409,0
+1050,10,2.432266409,0
+1051,10,2.432266409,0
+1052,10,2.432266409,0
+1053,10,2.432266409,0
+1054,10,2.432266409,0
+1055,10,2.432266409,0
+1056,10,2.432266409,0
+1057,10,2.432266409,0
+1058,10,2.432266409,0
+1059,10,2.281855353,0
+1060,10,2.281855353,0
+1061,10,2.281855353,0
+1062,10,2.281855353,0
+1063,10,2.281855353,0
+1064,10,2.281855353,0
+1065,10,2.281855353,0
+1066,10,2.281855353,0
+1067,10,2.281855353,0
+1068,10,2.281855353,0
+1069,10,2.131444298,0
+1070,10,2.131444298,0
+1071,10,2.131444298,0
+1072,10,2.131444298,0
+1073,10,2.131444298,0
+1074,10,2.131444298,0
+1075,10,2.131444298,0
+1076,10,2.131444298,0
+1077,10,2.131444298,0
+1078,10,2.131444298,0
+1079,10,1.981033243,0
+1080,10,1.981033243,0
+1081,10,1.981033243,0
+1082,10,1.981033243,0
+1083,10,1.981033243,0
+1084,10,1.981033243,0
+1085,10,1.981033243,0
+1086,10,1.981033243,0
+1087,10,1.981033243,0
+1088,10,1.981033243,0
+1089,10,1.830622188,0
+1090,10,1.830622188,0
+1091,10,1.830622188,0
+1092,10,1.830622188,0
+1093,10,1.830622188,0
+1094,10,1.830622188,0
+1095,10,1.830622188,0
+1096,10,1.830622188,0
+1097,10,1.830622188,0
+1098,10,1.830622188,0
+1099,10,1.680211132,0
+1100,10,1.680211132,0
+1101,10,1.680211132,0
+1102,10,1.680211132,0
+1103,10,1.680211132,0
+1104,10,1.680211132,0
+1105,10,1.680211132,0
+1106,10,1.680211132,0
+1107,10,1.680211132,0
+1108,10,1.680211132,0
+1109,10,1.680211132,0
+1110,10,1.680211132,0
+1111,10,1.680211132,0
+1112,10,1.680211132,0
+1113,10,1.680211132,0
+1114,10,1.680211132,0
+1115,10,1.680211132,0
+1116,10,1.680211132,0
+1117,10,1.680211132,0
+1118,10,1.680211132,0
+1119,10,1.680211132,0
+1120,10,1.680211132,0
+1121,10,1.680211132,0
+1122,10,1.680211132,0
+1123,10,1.680211132,0
+1124,10,1.680211132,0
+1125,10,1.680211132,0
+1126,10,1.680211132,0
+1127,10,1.680211132,0
+1128,10,1.680211132,0
+1129,10,1.680211132,0
+1130,10,1.680211132,0
+1131,10,1.680211132,0
+1132,10,1.680211132,0
+1133,10,1.680211132,0
+1134,10,1.680211132,0
+1135,10,1.680211132,0
+1136,10,1.680211132,0
+1137,10,1.680211132,0
+1138,10,1.680211132,0
+1139,10,1.680211132,0
+1140,10,1.680211132,0
+1141,10,1.680211132,0
+1142,10,1.680211132,0
+1143,10,1.680211132,0
+1144,10,1.680211132,0
+1145,10,1.680211132,0
+1146,10,1.680211132,0
+1147,10,1.680211132,0
+1148,10,1.680211132,0
+1149,10,1.680211132,0
+1150,10,1.680211132,0
+1151,10,1.680211132,0
+1152,10,1.680211132,0
+1153,10,1.680211132,0
+1154,10,1.680211132,0
+1155,10,1.680211132,0
+1156,10,1.680211132,0
+1157,10,1.680211132,0
+1158,10,1.680211132,0
+1159,10,1.680211132,0
+1160,10,1.680211132,0
+1161,10,1.680211132,0
+1162,10,1.680211132,0
+1163,10,1.680211132,0
+1164,10,1.680211132,0
+1165,10,1.680211132,0
+1166,10,1.680211132,0
+1167,10,1.680211132,0
+1168,10,1.680211132,0
+1169,10,1.680211132,0
+1170,10,1.680211132,0
+1171,10,1.680211132,0
+1172,10,1.680211132,0
+1173,10,1.680211132,0
+1174,10,1.680211132,0
+1175,10,1.680211132,0
+1176,10,1.680211132,0
+1177,10,1.680211132,0
+1178,10,1.680211132,0
+1179,10,1.557899926,0
+1180,10,1.557899926,0
+1181,10,1.557899926,0
+1182,10,1.557899926,0
+1183,10,1.557899926,0
+1184,10,1.557899926,0
+1185,10,1.557899926,0
+1186,10,1.557899926,0
+1187,10,1.557899926,0
+1188,10,1.557899926,0
+1189,10,1.557899926,0
+1190,10,1.557899926,0
+1191,10,1.557899926,0
+1192,10,1.557899926,0
+1193,10,1.557899926,0
+1194,10,1.557899926,0
+1195,10,1.557899926,0
+1196,10,1.557899926,0
+1197,10,1.557899926,0
+1198,10,1.557899926,0
+1199,10,1.557899926,0
+1200,10,1.557899926,0
+1201,10,1.557899926,0
+1202,10,1.557899926,0
+1203,10,1.557899926,0
+1204,10,1.557899926,0
+1205,10,1.557899926,0
+1206,10,1.557899926,0
+1207,10,1.557899926,0
+1208,10,1.557899926,0
+1209,10,1.429175806,0
+1210,10,1.429175806,0
+1211,10,1.429175806,0
+1212,10,1.429175806,0
+1213,10,1.429175806,0
+1214,10,1.429175806,0
+1215,10,1.429175806,0
+1216,10,1.429175806,0
+1217,10,1.429175806,0
+1218,10,1.429175806,0
+1219,10,1.429175806,0
+1220,10,1.429175806,0
+1221,10,1.429175806,0
+1222,10,1.429175806,0
+1223,10,1.429175806,0
+1224,10,1.429175806,0
+1225,10,1.429175806,0
+1226,10,1.429175806,0
+1227,10,1.429175806,0
+1228,10,1.429175806,0
+1229,10,1.429175806,0
+1230,10,1.429175806,0
+1231,10,1.429175806,0
+1232,10,1.429175806,0
+1233,10,1.429175806,0
+1234,10,1.429175806,0
+1235,10,1.429175806,0
+1236,10,1.429175806,0
+1237,10,1.429175806,0
+1238,10,1.429175806,0
+1239,10,1.300451685,0
+1240,10,1.300451685,0
+1241,10,1.300451685,0
+1242,10,1.300451685,0
+1243,10,1.300451685,0
+1244,10,1.300451685,0
+1245,10,1.300451685,0
+1246,10,1.300451685,0
+1247,10,1.300451685,0
+1248,10,1.300451685,0
+1249,10,1.300451685,0
+1250,10,1.300451685,0
+1251,10,1.300451685,0
+1252,10,1.300451685,0
+1253,10,1.300451685,0
+1254,10,1.300451685,0
+1255,10,1.300451685,0
+1256,10,1.300451685,0
+1257,10,1.300451685,0
+1258,10,1.300451685,0
+1259,10,1.300451685,0
+1260,10,1.300451685,0
+1261,10,1.300451685,0
+1262,10,1.300451685,0
+1263,10,1.300451685,0
+1264,10,1.300451685,0
+1265,10,1.300451685,0
+1266,10,1.300451685,0
+1267,10,1.300451685,0
+1268,10,1.300451685,0
+1269,10,1.171727564,0
+1270,10,1.171727564,0
+1271,10,1.171727564,0
+1272,10,1.171727564,0
+1273,10,1.171727564,0
+1274,10,1.171727564,0
+1275,10,1.171727564,0
+1276,10,1.171727564,0
+1277,10,1.171727564,0
+1278,10,1.171727564,0
+1279,10,1.171727564,0
+1280,10,1.171727564,0
+1281,10,1.171727564,0
+1282,10,1.171727564,0
+1283,10,1.171727564,0
+1284,10,1.171727564,0
+1285,10,1.171727564,0
+1286,10,1.171727564,0
+1287,10,1.171727564,0
+1288,10,1.171727564,0
+1289,10,1.171727564,0
+1290,10,1.171727564,0
+1291,10,1.171727564,0
+1292,10,1.171727564,0
+1293,10,1.171727564,0
+1294,10,1.171727564,0
+1295,10,1.171727564,0
+1296,10,1.171727564,0
+1297,10,1.171727564,0
+1298,10,1.171727564,0
+1299,10,1.043003444,0
+1300,10,1.043003444,0
+1301,10,1.043003444,0
+1302,10,1.043003444,0
+1303,10,1.043003444,0
+1304,10,1.043003444,0
+1305,10,1.043003444,0
+1306,10,1.043003444,0
+1307,10,1.043003444,0
+1308,10,1.043003444,0
+1309,10,1.043003444,0
+1310,10,1.043003444,0
+1311,10,1.043003444,0
+1312,10,1.043003444,0
+1313,10,1.043003444,0
+1314,10,1.043003444,0
+1315,10,1.043003444,0
+1316,10,1.043003444,0
+1317,10,1.043003444,0
+1318,10,1.043003444,0
+1319,10,1.043003444,0
+1320,10,1.043003444,0
+1321,10,1.043003444,0
+1322,10,1.043003444,0
+1323,10,1.043003444,0
+1324,10,1.043003444,0
+1325,10,1.043003444,0
+1326,10,1.043003444,0
+1327,10,1.043003444,0
+1328,10,1.043003444,0
+1329,10,0.914279323,0
+1330,10,0.914279323,0
+1331,10,0.914279323,0
+1332,10,0.914279323,0
+1333,10,0.914279323,0
+1334,10,0.914279323,0
+1335,10,0.914279323,0
+1336,10,0.914279323,0
+1337,10,0.914279323,0
+1338,10,0.914279323,0
+1339,10,0.914279323,0
+1340,10,0.914279323,0
+1341,10,0.914279323,0
+1342,10,0.914279323,0
+1343,10,0.914279323,0
+1344,10,0.914279323,0
+1345,10,0.914279323,0
+1346,10,0.914279323,0
+1347,10,0.914279323,0
+1348,10,0.914279323,0
+1349,10,0.914279323,0
+1350,10,0.914279323,0
+1351,10,0.914279323,0
+1352,10,0.914279323,0
+1353,10,0.914279323,0
+1354,10,0.914279323,0
+1355,10,0.914279323,0
+1356,10,0.914279323,0
+1357,10,0.914279323,0
+1358,10,0.914279323,0
+1359,10,0.811300027,0
+1360,10,0.811300027,0
+1361,10,0.811300027,0
+1362,10,0.811300027,0
+1363,10,0.811300027,0
+1364,10,0.811300027,0
+1365,10,0.811300027,0
+1366,10,0.811300027,0
+1367,10,0.811300027,0
+1368,10,0.811300027,0
+1369,10,0.811300027,0
+1370,10,0.811300027,0
+1371,10,0.811300027,0
+1372,10,0.811300027,0
+1373,10,0.811300027,0
+1374,10,0.811300027,0
+1375,10,0.811300027,0
+1376,10,0.811300027,0
+1377,10,0.811300027,0
+1378,10,0.811300027,0
+1379,10,0.811300027,0
+1380,10,0.811300027,0
+1381,10,0.811300027,0
+1382,10,0.811300027,0
+1383,10,0.811300027,0
+1384,10,0.811300027,0
+1385,10,0.811300027,0
+1386,10,0.811300027,0
+1387,10,0.811300027,0
+1388,10,0.811300027,0
+1389,10,0.811300027,0
+1390,10,0.811300027,0
+1391,10,0.811300027,0
+1392,10,0.811300027,0
+1393,10,0.811300027,0
+1394,10,0.811300027,0
+1395,10,0.811300027,0
+1396,10,0.811300027,0
+1397,10,0.811300027,0
+1398,10,0.811300027,0
+1399,10,0.811300027,0
+1400,10,0.811300027,0
+1401,10,0.811300027,0
+1402,10,0.811300027,0
+1403,10,0.811300027,0
+1404,10,0.811300027,0
+1405,10,0.811300027,0
+1406,10,0.811300027,0
+1407,10,0.811300027,0
+1408,10,0.811300027,0
+1409,10,0.811300027,0
+1410,10,0.811300027,0
+1411,10,0.811300027,0
+1412,10,0.811300027,0
+1413,10,0.811300027,0
+1414,10,0.811300027,0
+1415,10,0.811300027,0
+1416,10,0.811300027,0
+1417,10,0.811300027,0
+1418,10,0.811300027,0
+1419,10,0.811300027,0
+1420,10,0.811300027,0
+1421,10,0.811300027,0
+1422,10,0.811300027,0
+1423,10,0.811300027,0
+1424,10,0.811300027,0
+1425,10,0.811300027,0
+1426,10,0.811300027,0
+1427,10,0.811300027,0
+1428,10,0.811300027,0
+1429,10,0.811300027,0
+1430,10,0.811300027,0
+1431,10,0.811300027,0
+1432,10,0.811300027,0
+1433,10,0.811300027,0
+1434,10,0.811300027,0
+1435,10,0.811300027,0
+1436,10,0.811300027,0
+1437,10,0.811300027,0
+1438,10,0.811300027,0
+1439,10,0.811300027,0
+1440,10,0.811300027,0
+1441,10,0.811300027,0
+1442,10,0.811300027,0
+1443,10,0.811300027,0
+1444,10,0.811300027,0
+1445,10,0.811300027,0
+1446,10,0.811300027,0
+1447,10,0.811300027,0
+1448,10,0.811300027,0
+1449,10,0.811300027,0
+1450,10,0.811300027,0
+1451,10,0.811300027,0
+1452,10,0.811300027,0
+1453,10,0.811300027,0
+1454,10,0.811300027,0
+1455,10,0.811300027,0
+1456,10,0.811300027,0
+1457,10,0.811300027,0
+1458,10,0.811300027,0
+1459,10,0.811300027,0
+1460,10,0.811300027,0
+1461,10,0.811300027,0
+1462,10,0.811300027,0
+1463,10,0.811300027,0
+1464,10,0.811300027,0
+1465,10,0.811300027,0
+1466,10,0.811300027,0
+1467,10,0.811300027,0
+1468,10,0.811300027,0
+1469,10,0.811300027,0
+1470,10,0.811300027,0
+1471,10,0.811300027,0
+1472,10,0.811300027,0
+1473,10,0.811300027,0
+1474,10,0.811300027,0
+1475,10,0.811300027,0
+1476,10,0.811300027,0
+1477,10,0.811300027,0
+1478,10,0.811300027,0
+1479,10,0.811300027,0
+1480,10,0.811300027,0
+1481,10,0.811300027,0
+1482,10,0.811300027,0
+1483,10,0.811300027,0
+1484,10,0.811300027,0
+1485,10,0.811300027,0
+1486,10,0.811300027,0
+1487,10,0.811300027,0
+1488,10,0.811300027,0
+1489,10,0.811300027,0
+1490,10,0.811300027,0
+1491,10,0.811300027,0
+1492,10,0.811300027,0
+1493,10,0.811300027,0
+1494,10,0.811300027,0
+1495,10,0.811300027,0
+1496,10,0.811300027,0
+1497,10,0.811300027,0
+1498,10,0.811300027,0
+1499,10,0.811300027,0
+1500,10,0.811300027,0
+1501,10,0.811300027,0
+1502,10,0.811300027,0
+1503,10,0.811300027,0
+1504,10,0.811300027,0
+1505,10,0.811300027,0
+1506,10,0.811300027,0
+1507,10,0.811300027,0
+1508,10,0.811300027,0
+1509,10,0.811300027,0
+1510,10,0.811300027,0
+1511,10,0.811300027,0
+1512,10,0.811300027,0
+1513,10,0.811300027,0
+1514,10,0.811300027,0
+1515,10,0.811300027,0
+1516,10,0.811300027,0
+1517,10,0.811300027,0
+1518,10,0.811300027,0
+1519,10,0.811300027,0
+1520,10,0.811300027,0
+1521,10,0.811300027,0
+1522,10,0.811300027,0
+1523,10,0.811300027,0
+1524,10,0.811300027,0
+1525,10,0.811300027,0
+1526,10,0.811300027,0
+1527,10,0.811300027,0
+1528,10,0.811300027,0
+1529,10,0.811300027,0
+1530,10,0.811300027,0
+1531,10,0.811300027,0
+1532,10,0.811300027,0
+1533,10,0.811300027,0
+1534,10,0.811300027,0
+1535,10,0.811300027,0
+1536,10,0.811300027,0
+1537,10,0.811300027,0
+1538,10,0.811300027,0
+1539,10,0.811300027,0
+1540,10,0.811300027,0
+1541,10,0.811300027,0
+1542,10,0.811300027,0
+1543,10,0.811300027,0
+1544,10,0.811300027,0
+1545,10,0.811300027,0
+1546,10,0.811300027,0
+1547,10,0.811300027,0
+1548,10,0.811300027,0
+1549,10,0.811300027,0
+1550,10,0.811300027,0
+1551,10,0.811300027,0
+1552,10,0.811300027,0
+1553,10,0.811300027,0
+1554,10,0.811300027,0
+1555,10,0.811300027,0
+1556,10,0.811300027,0
+1557,10,0.811300027,0
+1558,10,0.811300027,0
+1559,10,0.811300027,0
+1560,10,0.811300027,0
+1561,10,0.811300027,0
+1562,10,0.811300027,0
+1563,10,0.811300027,0
+1564,10,0.811300027,0
+1565,10,0.811300027,0
+1566,10,0.811300027,0
+1567,10,0.811300027,0
+1568,10,0.811300027,0
+1569,10,0.811300027,0
+1570,10,0.811300027,0
+1571,10,0.811300027,0
+1572,10,0.811300027,0
+1573,10,0.811300027,0
+1574,10,0.811300027,0
+1575,10,0.811300027,0
+1576,10,0.811300027,0
+1577,10,0.811300027,0
+1578,10,0.811300027,0
+1579,10,0.811300027,0
+1580,10,0.811300027,0
+1581,10,0.811300027,0
+1582,10,0.811300027,0
+1583,10,0.811300027,0
+1584,10,0.811300027,0
+1585,10,0.811300027,0
+1586,10,0.811300027,0
+1587,10,0.811300027,0
+1588,10,0.811300027,0
+1589,10,0.811300027,0
+1590,10,0.811300027,0
+1591,10,0.811300027,0
+1592,10,0.811300027,0
+1593,10,0.811300027,0
+1594,10,0.811300027,0
+1595,10,0.811300027,0
+1596,10,0.811300027,0
+1597,10,0.811300027,0
+1598,10,0.811300027,0
+1599,10,0.811300027,0
+1600,10,0.811300027,0
+1601,10,0.811300027,0
+1602,10,0.811300027,0
+1603,10,0.811300027,0
+1604,10,0.811300027,0
+1605,10,0.811300027,0
+1606,10,0.811300027,0
+1607,10,0.811300027,0
+1608,10,0.811300027,0
+1609,10,0.811300027,0
+1610,10,0.811300027,0
+1611,10,0.811300027,0
+1612,10,0.811300027,0
+1613,10,0.811300027,0
+1614,10,0.811300027,0
+1615,10,0.811300027,0
+1616,10,0.811300027,0
+1617,10,0.811300027,0
+1618,10,0.811300027,0
+1619,10,0.811300027,0
+1620,10,0.811300027,0
+1621,10,0.811300027,0
+1622,10,0.811300027,0
+1623,10,0.811300027,0
+1624,10,0.811300027,0
+1625,10,0.811300027,0
+1626,10,0.811300027,0
+1627,10,0.811300027,0
+1628,10,0.811300027,0
+1629,10,0.811300027,0
+1630,10,0.811300027,0
+1631,10,0.811300027,0
+1632,10,0.811300027,0
+1633,10,0.811300027,0
+1634,10,0.811300027,0
+1635,10,0.811300027,0
+1636,10,0.811300027,0
+1637,10,0.811300027,0
+1638,10,0.811300027,0
+1639,10,0.811300027,0
+1640,10,0.811300027,0
+1641,10,0.811300027,0
+1642,10,0.811300027,0
+1643,10,0.811300027,0
+1644,10,0.811300027,0
+1645,10,0.811300027,0
+1646,10,0.811300027,0
+1647,10,0.811300027,0
+1648,10,0.811300027,0
+1649,10,0.811300027,0
+1650,10,0.811300027,0
+1651,10,0.811300027,0
+1652,10,0.811300027,0
+1653,10,0.811300027,0
+1654,10,0.811300027,0
+1655,10,0.811300027,0
+1656,10,0.811300027,0
+1657,10,0.811300027,0
+1658,10,0.811300027,0
+1659,10,0.706312489,0
+1660,10,0.706312489,0
+1661,10,0.706312489,0
+1662,10,0.706312489,0
+1663,10,0.706312489,0
+1664,10,0.706312489,0
+1665,10,0.706312489,0
+1666,10,0.706312489,0
+1667,10,0.706312489,0
+1668,10,0.706312489,0
+1669,10,0.706312489,0
+1670,10,0.706312489,0
+1671,10,0.706312489,0
+1672,10,0.706312489,0
+1673,10,0.706312489,0
+1674,10,0.706312489,0
+1675,10,0.706312489,0
+1676,10,0.706312489,0
+1677,10,0.706312489,0
+1678,10,0.706312489,0
+1679,10,0.706312489,0
+1680,10,0.706312489,0
+1681,10,0.706312489,0
+1682,10,0.706312489,0
+1683,10,0.706312489,0
+1684,10,0.706312489,0
+1685,10,0.706312489,0
+1686,10,0.706312489,0
+1687,10,0.706312489,0
+1688,10,0.706312489,0
+1689,10,0.706312489,0
+1690,10,0.706312489,0
+1691,10,0.706312489,0
+1692,10,0.706312489,0
+1693,10,0.706312489,0
+1694,10,0.706312489,0
+1695,10,0.706312489,0
+1696,10,0.706312489,0
+1697,10,0.706312489,0
+1698,10,0.706312489,0
+1699,10,0.706312489,0
+1700,10,0.706312489,0
+1701,10,0.706312489,0
+1702,10,0.706312489,0
+1703,10,0.706312489,0
+1704,10,0.706312489,0
+1705,10,0.706312489,0
+1706,10,0.706312489,0
+1707,10,0.706312489,0
+1708,10,0.706312489,0
+1709,10,0.587008469,0
+1710,10,0.587008469,0
+1711,10,0.587008469,0
+1712,10,0.587008469,0
+1713,10,0.587008469,0
+1714,10,0.587008469,0
+1715,10,0.587008469,0
+1716,10,0.587008469,0
+1717,10,0.587008469,0
+1718,10,0.587008469,0
+1719,10,0.587008469,0
+1720,10,0.587008469,0
+1721,10,0.587008469,0
+1722,10,0.587008469,0
+1723,10,0.587008469,0
+1724,10,0.587008469,0
+1725,10,0.587008469,0
+1726,10,0.587008469,0
+1727,10,0.587008469,0
+1728,10,0.587008469,0
+1729,10,0.587008469,0
+1730,10,0.587008469,0
+1731,10,0.587008469,0
+1732,10,0.587008469,0
+1733,10,0.587008469,0
+1734,10,0.587008469,0
+1735,10,0.587008469,0
+1736,10,0.587008469,0
+1737,10,0.587008469,0
+1738,10,0.587008469,0
+1739,10,0.587008469,0
+1740,10,0.587008469,0
+1741,10,0.587008469,0
+1742,10,0.587008469,0
+1743,10,0.587008469,0
+1744,10,0.587008469,0
+1745,10,0.587008469,0
+1746,10,0.587008469,0
+1747,10,0.587008469,0
+1748,10,0.587008469,0
+1749,10,0.587008469,0
+1750,10,0.587008469,0
+1751,10,0.587008469,0
+1752,10,0.587008469,0
+1753,10,0.587008469,0
+1754,10,0.587008469,0
+1755,10,0.587008469,0
+1756,10,0.587008469,0
+1757,10,0.587008469,0
+1758,10,0.587008469,0
+1759,10,0.467704449,0
+1760,10,0.467704449,0
+1761,10,0.467704449,0
+1762,10,0.467704449,0
+1763,10,0.467704449,0
+1764,10,0.467704449,0
+1765,10,0.467704449,0
+1766,10,0.467704449,0
+1767,10,0.467704449,0
+1768,10,0.467704449,0
+1769,10,0.467704449,0
+1770,10,0.467704449,0
+1771,10,0.467704449,0
+1772,10,0.467704449,0
+1773,10,0.467704449,0
+1774,10,0.467704449,0
+1775,10,0.467704449,0
+1776,10,0.467704449,0
+1777,10,0.467704449,0
+1778,10,0.467704449,0
+1779,10,0.467704449,0
+1780,10,0.467704449,0
+1781,10,0.467704449,0
+1782,10,0.467704449,0
+1783,10,0.467704449,0
+1784,10,0.467704449,0
+1785,10,0.467704449,0
+1786,10,0.467704449,0
+1787,10,0.467704449,0
+1788,10,0.467704449,0
+1789,10,0.467704449,0
+1790,10,0.467704449,0
+1791,10,0.467704449,0
+1792,10,0.467704449,0
+1793,10,0.467704449,0
+1794,10,0.467704449,0
+1795,10,0.467704449,0
+1796,10,0.467704449,0
+1797,10,0.467704449,0
+1798,10,0.467704449,0
+1799,10,0.467704449,0
+1800,10,0.467704449,0
+1801,10,0.467704449,0
+1802,10,0.467704449,0
+1803,10,0.467704449,0
+1804,10,0.467704449,0
+1805,10,0.467704449,0
+1806,10,0.467704449,0
+1807,10,0.467704449,0
+1808,10,0.467704449,0
+1809,10,0.348400429,0
+1810,10,0.348400429,0
+1811,10,0.348400429,0
+1812,10,0.348400429,0
+1813,10,0.348400429,0
+1814,10,0.348400429,0
+1815,10,0.348400429,0
+1816,10,0.348400429,0
+1817,10,0.348400429,0
+1818,10,0.348400429,0
+1819,10,0.348400429,0
+1820,10,0.348400429,0
+1821,10,0.348400429,0
+1822,10,0.348400429,0
+1823,10,0.348400429,0
+1824,10,0.348400429,0
+1825,10,0.348400429,0
+1826,10,0.348400429,0
+1827,10,0.348400429,0
+1828,10,0.348400429,0
+1829,10,0.348400429,0
+1830,10,0.348400429,0
+1831,10,0.348400429,0
+1832,10,0.348400429,0
+1833,10,0.348400429,0
+1834,10,0.348400429,0
+1835,10,0.348400429,0
+1836,10,0.348400429,0
+1837,10,0.348400429,0
+1838,10,0.348400429,0
+1839,10,0.348400429,0
+1840,10,0.348400429,0
+1841,10,0.348400429,0
+1842,10,0.348400429,0
+1843,10,0.348400429,0
+1844,10,0.348400429,0
+1845,10,0.348400429,0
+1846,10,0.348400429,0
+1847,10,0.348400429,0
+1848,10,0.348400429,0
+1849,10,0.348400429,0
+1850,10,0.348400429,0
+1851,10,0.348400429,0
+1852,10,0.348400429,0
+1853,10,0.348400429,0
+1854,10,0.348400429,0
+1855,10,0.348400429,0
+1856,10,0.348400429,0
+1857,10,0.348400429,0
+1858,10,0.348400429,0
+1859,10,0.348400429,0
+1860,10,0.348400429,0
+1861,10,0.348400429,0
+1862,10,0.348400429,0
+1863,10,0.348400429,0
+1864,10,0.348400429,0
+1865,10,0.348400429,0
+1866,10,0.348400429,0
+1867,10,0.348400429,0
+1868,10,0.348400429,0
+1869,10,0.348400429,0
+1870,10,0.348400429,0
+1871,10,0.348400429,0
+1872,10,0.348400429,0
+1873,10,0.348400429,0
+1874,10,0.348400429,0
+1875,10,0.348400429,0
+1876,10,0.348400429,0
+1877,10,0.348400429,0
+1878,10,0.348400429,0
+1879,10,0.348400429,0
+1880,10,0.348400429,0
+1881,10,0.348400429,0
+1882,10,0.348400429,0
+1883,10,0.348400429,0
+1884,10,0.348400429,0
+1885,10,0.348400429,0
+1886,10,0.348400429,0
+1887,10,0.348400429,0
+1888,10,0.348400429,0
+1889,10,0.348400429,0
+1890,10,0.348400429,0
+1891,10,0.348400429,0
+1892,10,0.348400429,0
+1893,10,0.348400429,0
+1894,10,0.348400429,0
+1895,10,0.348400429,0
+1896,10,0.348400429,0
+1897,10,0.348400429,0
+1898,10,0.348400429,0
+1899,10,0.348400429,0
+1900,10,0.348400429,0
+1901,10,0.348400429,0
+1902,10,0.348400429,0
+1903,10,0.348400429,0
+1904,10,0.348400429,0
+1905,10,0.348400429,0
+1906,10,0.348400429,0
+1907,10,0.348400429,0
+1908,10,0.348400429,0
+1909,10,0.348400429,0
+1910,10,0.348400429,0
+1911,10,0.348400429,0
+1912,10,0.348400429,0
+1913,10,0.348400429,0
+1914,10,0.348400429,0
+1915,10,0.348400429,0
+1916,10,0.348400429,0
+1917,10,0.348400429,0
+1918,10,0.348400429,0
+1919,10,0.348400429,0
+1920,10,0.348400429,0
+1921,10,0.348400429,0
+1922,10,0.348400429,0
+1923,10,0.348400429,0
+1924,10,0.348400429,0
+1925,10,0.348400429,0
+1926,10,0.348400429,0
+1927,10,0.348400429,0
+1928,10,0.348400429,0
+1929,10,0.348400429,0
+1930,10,0.348400429,0
+1931,10,0.348400429,0
+1932,10,0.348400429,0
+1933,10,0.348400429,0
+1934,10,0.348400429,0
+1935,10,0.348400429,0
+1936,10,0.348400429,0
+1937,10,0.348400429,0
+1938,10,0.348400429,0
+1939,10,0.466250027,0
+1940,10,0.466250027,0
+1941,10,0.466250027,0
+1942,10,0.466250027,0
+1943,10,0.466250027,0
+1944,10,0.466250027,0
+1945,10,0.466250027,0
+1946,10,0.466250027,0
+1947,10,0.466250027,0
+1948,10,0.466250027,0
+1949,10,0.466250027,0
+1950,10,0.466250027,0
+1951,10,0.466250027,0
+1952,10,0.466250027,0
+1953,10,0.466250027,0
+1954,10,0.466250027,0
+1955,10,0.466250027,0
+1956,10,0.466250027,0
+1957,10,0.466250027,0
+1958,10,0.466250027,0
+1959,10,0.610450027,0
+1960,10,0.610450027,0
+1961,10,0.610450027,0
+1962,10,0.610450027,0
+1963,10,0.610450027,0
+1964,10,0.610450027,0
+1965,10,0.610450027,0
+1966,10,0.610450027,0
+1967,10,0.610450027,0
+1968,10,0.610450027,0
+1969,10,0.610450027,0
+1970,10,0.610450027,0
+1971,10,0.610450027,0
+1972,10,0.610450027,0
+1973,10,0.610450027,0
+1974,10,0.610450027,0
+1975,10,0.610450027,0
+1976,10,0.610450027,0
+1977,10,0.610450027,0
+1978,10,0.610450027,0
+1979,10,0.754650027,0
+1980,10,0.754650027,0
+1981,10,0.754650027,0
+1982,10,0.754650027,0
+1983,10,0.754650027,0
+1984,10,0.754650027,0
+1985,10,0.754650027,0
+1986,10,0.754650027,0
+1987,10,0.754650027,0
+1988,10,0.754650027,0
+1989,10,0.754650027,0
+1990,10,0.754650027,0
+1991,10,0.754650027,0
+1992,10,0.754650027,0
+1993,10,0.754650027,0
+1994,10,0.754650027,0
+1995,10,0.754650027,0
+1996,10,0.754650027,0
+1997,10,0.754650027,0
+1998,10,0.754650027,0
+1999,10,0.898850027,0
+2000,10,0.898850027,0
+2001,10,0.898850027,0
+2002,10,0.898850027,0
+2003,10,0.898850027,0
+2004,10,0.898850027,0
+2005,10,0.898850027,0
+2006,10,0.898850027,0
+2007,10,0.898850027,0
+2008,10,0.898850027,0
+2009,10,0.898850027,0
+2010,10,0.898850027,0
+2011,10,0.898850027,0
+2012,10,0.898850027,0
+2013,10,0.898850027,0
+2014,10,0.898850027,0
+2015,10,0.898850027,0
+2016,10,0.898850027,0
+2017,10,0.898850027,0
+2018,10,0.898850027,0
+2019,10,0.898850027,0
+2020,10,0.898850027,0
+2021,10,0.898850027,0
+2022,10,0.898850027,0
+2023,10,0.898850027,0
+2024,10,0.898850027,0
+2025,10,0.898850027,0
+2026,10,0.898850027,0
+2027,10,0.898850027,0
+2028,10,0.898850027,0
+2029,10,0.898850027,0
+2030,10,0.898850027,0
+2031,10,0.898850027,0
+2032,10,0.898850027,0
+2033,10,0.898850027,0
+2034,10,0.898850027,0
+2035,10,0.898850027,0
+2036,10,0.898850027,0
+2037,10,0.898850027,0
+2038,10,0.898850027,0
+2039,10,0.898850027,0
+2040,10,0.898850027,0
+2041,10,0.898850027,0
+2042,10,0.898850027,0
+2043,10,0.898850027,0
+2044,10,0.898850027,0
+2045,10,0.898850027,0
+2046,10,0.898850027,0
+2047,10,0.898850027,0
+2048,10,0.898850027,0
+2049,10,0.898850027,0
+2050,10,0.898850027,0
+2051,10,0.898850027,0
+2052,10,0.898850027,0
+2053,10,0.898850027,0
+2054,10,0.898850027,0
+2055,10,0.898850027,0
+2056,10,0.898850027,0
+2057,10,0.898850027,0
+2058,10,0.898850027,0
+2059,10,0.898850027,0
+2060,10,0.898850027,0
+2061,10,0.898850027,0
+2062,10,0.898850027,0
+2063,10,0.898850027,0
+2064,10,0.898850027,0
+2065,10,0.898850027,0
+2066,10,0.898850027,0
+2067,10,0.898850027,0
+2068,10,0.898850027,0
+2069,10,0.898850027,0
+2070,10,0.898850027,0
+2071,10,0.898850027,0
+2072,10,0.898850027,0
+2073,10,0.898850027,0
+2074,10,0.898850027,0
+2075,10,0.898850027,0
+2076,10,0.898850027,0
+2077,10,0.898850027,0
+2078,10,0.898850027,0
+2079,10,0.773749022,0
+2080,10,0.773749022,0
+2081,10,0.773749022,0
+2082,10,0.773749022,0
+2083,10,0.773749022,0
+2084,10,0.773749022,0
+2085,10,0.773749022,0
+2086,10,0.773749022,0
+2087,10,0.773749022,0
+2088,10,0.773749022,0
+2089,10,0.773749022,0
+2090,10,0.773749022,0
+2091,10,0.773749022,0
+2092,10,0.773749022,0
+2093,10,0.773749022,0
+2094,10,0.773749022,0
+2095,10,0.773749022,0
+2096,10,0.773749022,0
+2097,10,0.773749022,0
+2098,10,0.773749022,0
+2099,10,0.773749022,0
+2100,10,0.773749022,0
+2101,10,0.773749022,0
+2102,10,0.773749022,0
+2103,10,0.773749022,0
+2104,10,0.773749022,0
+2105,10,0.773749022,0
+2106,10,0.773749022,0
+2107,10,0.773749022,0
+2108,10,0.773749022,0
+2109,10,0.773749022,0
+2110,10,0.773749022,0
+2111,10,0.773749022,0
+2112,10,0.773749022,0
+2113,10,0.773749022,0
+2114,10,0.773749022,0
+2115,10,0.773749022,0
+2116,10,0.773749022,0
+2117,10,0.773749022,0
+2118,10,0.773749022,0
+2119,10,0.666711836,0
+2120,10,0.666711836,0
+2121,10,0.666711836,0
+2122,10,0.666711836,0
+2123,10,0.666711836,0
+2124,10,0.666711836,0
+2125,10,0.666711836,0
+2126,10,0.666711836,0
+2127,10,0.666711836,0
+2128,10,0.666711836,0
+2129,10,0.666711836,0
+2130,10,0.666711836,0
+2131,10,0.666711836,0
+2132,10,0.666711836,0
+2133,10,0.666711836,0
+2134,10,0.666711836,0
+2135,10,0.666711836,0
+2136,10,0.666711836,0
+2137,10,0.666711836,0
+2138,10,0.666711836,0
+2139,10,0.476203243,0
+2140,10,0.476203243,0
+2141,10,0.476203243,0
+2142,10,0.476203243,0
+2143,10,0.476203243,0
+2144,10,0.476203243,0
+2145,10,0.476203243,0
+2146,10,0.476203243,0
+2147,10,0.476203243,0
+2148,10,0.476203243,0
+2149,10,0.476203243,0
+2150,10,0.476203243,0
+2151,10,0.476203243,0
+2152,10,0.476203243,0
+2153,10,0.476203243,0
+2154,10,0.476203243,0
+2155,10,0.476203243,0
+2156,10,0.476203243,0
+2157,10,0.476203243,0
+2158,10,0.476203243,0
+2159,10,0.27848465,0
+2160,10,0.27848465,0
+2161,10,0.27848465,0
+2162,10,0.27848465,0
+2163,10,0.27848465,0
+2164,10,0.27848465,0
+2165,10,0.27848465,0
+2166,10,0.27848465,0
+2167,10,0.27848465,0
+2168,10,0.27848465,0
+2169,10,0.27848465,0
+2170,10,0.27848465,0
+2171,10,0.27848465,0
+2172,10,0.27848465,0
+2173,10,0.27848465,0
+2174,10,0.27848465,0
+2175,10,0.27848465,0
+2176,10,0.27848465,0
+2177,10,0.27848465,0
+2178,10,0.27848465,0
+2179,10,8.08E-02,0
+2180,10,8.08E-02,0
+2181,10,8.08E-02,0
+2182,10,8.08E-02,0
+2183,10,8.08E-02,0
+2184,10,8.08E-02,0
+2185,10,8.08E-02,0
+2186,10,8.08E-02,0
+2187,10,8.08E-02,0
+2188,10,8.08E-02,0
+2189,10,8.08E-02,0
+2190,10,8.08E-02,0
+2191,10,8.08E-02,0
+2192,10,8.08E-02,0
+2193,10,8.08E-02,0
+2194,10,8.08E-02,0
+2195,10,8.08E-02,0
+2196,10,8.08E-02,0
+2197,10,8.08E-02,0
+2198,10,8.08E-02,0
+2199,10,-0.116952536,0
+2200,10,-0.116952536,0
+2201,10,-0.116952536,0
+2202,10,-0.116952536,0
+2203,10,-0.116952536,0
+2204,10,-0.116952536,0
+2205,10,-0.116952536,0
+2206,10,-0.116952536,0
+2207,10,-0.116952536,0
+2208,10,-0.116952536,0
+2209,10,-0.116952536,0
+2210,10,-0.116952536,0
+2211,10,-0.116952536,0
+2212,10,-0.116952536,0
+2213,10,-0.116952536,0
+2214,10,-0.116952536,0
+2215,10,-0.116952536,0
+2216,10,-0.116952536,0
+2217,10,-0.116952536,0
+2218,10,-0.116952536,0
+2219,10,-0.116952536,0
+2220,10,-0.116952536,0
+2221,10,-0.116952536,0
+2222,10,-0.116952536,0
+2223,10,-0.116952536,0
+2224,10,-0.116952536,0
+2225,10,-0.116952536,0
+2226,10,-0.116952536,0
+2227,10,-0.116952536,0
+2228,10,-0.116952536,0
+2229,10,-0.116952536,0
+2230,10,-0.116952536,0
+2231,10,-0.116952536,0
+2232,10,-0.116952536,0
+2233,10,-0.116952536,0
+2234,10,-0.116952536,0
+2235,10,-0.116952536,0
+2236,10,-0.116952536,0
+2237,10,-0.116952536,0
+2238,10,-0.116952536,0
+2239,10,-0.116952536,0
+2240,10,-0.116952536,0
+2241,10,-0.116952536,0
+2242,10,-0.116952536,0
+2243,10,-0.116952536,0
+2244,10,-0.116952536,0
+2245,10,-0.116952536,0
+2246,10,-0.116952536,0
+2247,10,-0.116952536,0
+2248,10,-0.116952536,0
+2249,10,-0.116952536,0
+2250,10,-0.116952536,0
+2251,10,-0.116952536,0
+2252,10,-0.116952536,0
+2253,10,-0.116952536,0
+2254,10,-0.116952536,0
+2255,10,-0.116952536,0
+2256,10,-0.116952536,0
+2257,10,-0.116952536,0
+2258,10,-0.116952536,0
+2259,10,-0.116952536,0
+2260,10,-0.116952536,0
+2261,10,-0.116952536,0
+2262,10,-0.116952536,0
+2263,10,-0.116952536,0
+2264,10,-0.116952536,0
+2265,10,-0.116952536,0
+2266,10,-0.116952536,0
+2267,10,-0.116952536,0
+2268,10,-0.116952536,0
+2269,10,-0.116952536,0
+2270,10,-0.116952536,0
+2271,10,-0.116952536,0
+2272,10,-0.116952536,0
+2273,10,-0.116952536,0
+2274,10,-0.116952536,0
+2275,10,-0.116952536,0
+2276,10,-0.116952536,0
+2277,10,-0.116952536,0
+2278,10,-0.116952536,0
+2279,10,-0.116952536,0
+2280,10,-0.116952536,0
+2281,10,-0.116952536,0
+2282,10,-0.116952536,0
+2283,10,-0.116952536,0
+2284,10,-0.116952536,0
+2285,10,-0.116952536,0
+2286,10,-0.116952536,0
+2287,10,-0.116952536,0
+2288,10,-0.116952536,0
+2289,10,-0.116952536,0
+2290,10,-0.116952536,0
+2291,10,-0.116952536,0
+2292,10,-0.116952536,0
+2293,10,-0.116952536,0
+2294,10,-0.116952536,0
+2295,10,-0.116952536,0
+2296,10,-0.116952536,0
+2297,10,-0.116952536,0
+2298,10,-0.116952536,0
+2299,10,-0.116952536,0
+2300,10,-0.116952536,0
+2301,10,-0.116952536,0
+2302,10,-0.116952536,0
+2303,10,-0.116952536,0
+2304,10,-0.116952536,0
+2305,10,-0.116952536,0
+2306,10,-0.116952536,0
+2307,10,-0.116952536,0
+2308,10,-0.116952536,0
+2309,10,-0.116952536,0
+2310,10,-0.116952536,0
+2311,10,-0.116952536,0
+2312,10,-0.116952536,0
+2313,10,-0.116952536,0
+2314,10,-0.116952536,0
+2315,10,-0.116952536,0
+2316,10,-0.116952536,0
+2317,10,-0.116952536,0
+2318,10,-0.116952536,0
+2319,10,-0.116952536,0
+2320,10,-0.116952536,0
+2321,10,-0.116952536,0
+2322,10,-0.116952536,0
+2323,10,-0.116952536,0
+2324,10,-0.116952536,0
+2325,10,-0.116952536,0
+2326,10,-0.116952536,0
+2327,10,-0.116952536,0
+2328,10,-0.116952536,0
+2329,10,-0.116952536,0
+2330,10,-0.116952536,0
+2331,10,-0.116952536,0
+2332,10,-0.116952536,0
+2333,10,-0.116952536,0
+2334,10,-0.116952536,0
+2335,10,-0.116952536,0
+2336,10,-0.116952536,0
+2337,10,-0.116952536,0
+2338,10,-0.116952536,0
+2339,10,-0.116952536,0
+2340,10,-0.116952536,0
+2341,10,-0.116952536,0
+2342,10,-0.116952536,0
+2343,10,-0.116952536,0
+2344,10,-0.116952536,0
+2345,10,-0.116952536,0
+2346,10,-0.116952536,0
+2347,10,-0.116952536,0
+2348,10,-0.116952536,0
+2349,10,-0.116952536,0
+2350,10,-0.116952536,0
+2351,10,-0.116952536,0
+2352,10,-0.116952536,0
+2353,10,-0.116952536,0
+2354,10,-0.116952536,0
+2355,10,-0.116952536,0
+2356,10,-0.116952536,0
+2357,10,-0.116952536,0
+2358,10,-0.116952536,0
+2359,10,-0.116952536,0
+2360,10,-0.116952536,0
+2361,10,-0.116952536,0
+2362,10,-0.116952536,0
+2363,10,-0.116952536,0
+2364,10,-0.116952536,0
+2365,10,-0.116952536,0
+2366,10,-0.116952536,0
+2367,10,-0.116952536,0
+2368,10,-0.116952536,0
+2369,10,-0.116952536,0
+2370,10,-0.116952536,0
+2371,10,-0.116952536,0
+2372,10,-0.116952536,0
+2373,10,-0.116952536,0
+2374,10,-0.116952536,0
+2375,10,-0.116952536,0
+2376,10,-0.116952536,0
+2377,10,-0.116952536,0
+2378,10,-0.116952536,0
+2379,10,-0.116952536,0
+2380,10,-0.116952536,0
+2381,10,-0.116952536,0
+2382,10,-0.116952536,0
+2383,10,-0.116952536,0
+2384,10,-0.116952536,0
+2385,10,-0.116952536,0
+2386,10,-0.116952536,0
+2387,10,-0.116952536,0
+2388,10,-0.116952536,0
+2389,10,-0.116952536,0
+2390,10,-0.116952536,0
+2391,10,-0.116952536,0
+2392,10,-0.116952536,0
+2393,10,-0.116952536,0
+2394,10,-0.116952536,0
+2395,10,-0.116952536,0
+2396,10,-0.116952536,0
+2397,10,-0.116952536,0
+2398,10,-0.116952536,0
+2399,10,-0.116952536,0
+2400,10,-0.116952536,0
+2401,10,-0.116952536,0
+2402,10,-0.116952536,0
+2403,10,-0.116952536,0
+2404,10,-0.116952536,0
+2405,10,-0.116952536,0
+2406,10,-0.116952536,0
+2407,10,-0.116952536,0
+2408,10,-0.116952536,0
+2409,10,-0.116952536,0
+2410,10,-0.116952536,0
+2411,10,-0.116952536,0
+2412,10,-0.116952536,0
+2413,10,-0.116952536,0
+2414,10,-0.116952536,0
+2415,10,-0.116952536,0
+2416,10,-0.116952536,0
+2417,10,-0.116952536,0
+2418,10,-0.116952536,0
+2419,10,-0.116952536,0
+2420,10,-0.116952536,0
+2421,10,-0.116952536,0
+2422,10,-0.116952536,0
+2423,10,-0.116952536,0
+2424,10,-0.116952536,0
+2425,10,-0.116952536,0
+2426,10,-0.116952536,0
+2427,10,-0.116952536,0
+2428,10,-0.116952536,0
+2429,10,-0.116952536,0
+2430,10,-0.116952536,0
+2431,10,-0.116952536,0
+2432,10,-0.116952536,0
+2433,10,-0.116952536,0
+2434,10,-0.116952536,0
+2435,10,-0.116952536,0
+2436,10,-0.116952536,0
+2437,10,-0.116952536,0
+2438,10,-0.116952536,0
+2439,10,-0.116952536,0
+2440,10,-0.116952536,0
+2441,10,-0.116952536,0
+2442,10,-0.116952536,0
+2443,10,-0.116952536,0
+2444,10,-0.116952536,0
+2445,10,-0.116952536,0
+2446,10,-0.116952536,0
+2447,10,-0.116952536,0
+2448,10,-0.116952536,0
+2449,10,-0.116952536,0
+2450,10,-0.116952536,0
+2451,10,-0.116952536,0
+2452,10,-0.116952536,0
+2453,10,-0.116952536,0
+2454,10,-0.116952536,0
+2455,10,-0.116952536,0
+2456,10,-0.116952536,0
+2457,10,-0.116952536,0
+2458,10,-0.116952536,0
+2459,10,-0.116952536,0
+2460,10,-0.116952536,0
+2461,10,-0.116952536,0
+2462,10,-0.116952536,0
+2463,10,-0.116952536,0
+2464,10,-0.116952536,0
+2465,10,-0.116952536,0
+2466,10,-0.116952536,0
+2467,10,-0.116952536,0
+2468,10,-0.116952536,0
+2469,10,-0.116952536,0
+2470,10,-0.116952536,0
+2471,10,-0.116952536,0
+2472,10,-0.116952536,0
+2473,10,-0.116952536,0
+2474,10,-0.116952536,0
+2475,10,-0.116952536,0
+2476,10,-0.116952536,0
+2477,10,-0.116952536,0
+2478,10,-0.116952536,0
+2479,10,-0.116952536,0
+2480,10,-0.116952536,0
+2481,10,-0.116952536,0
+2482,10,-0.116952536,0
+2483,10,-0.116952536,0
+2484,10,-0.116952536,0
+2485,10,-0.116952536,0
+2486,10,-0.116952536,0
+2487,10,-0.116952536,0
+2488,10,-0.116952536,0
+2489,10,-0.116952536,0
+2490,10,-0.116952536,0
+2491,10,-0.116952536,0
+2492,10,-0.116952536,0
+2493,10,-0.116952536,0
+2494,10,-0.116952536,0
+2495,10,-0.116952536,0
+2496,10,-0.116952536,0
+2497,10,-0.116952536,0
+2498,10,-0.116952536,0
+2499,10,-0.116952536,0
+2500,10,-0.116952536,0
+2501,10,-0.116952536,0
+2502,10,-0.116952536,0
+2503,10,-0.116952536,0
+2504,10,-0.116952536,0
+2505,10,-0.116952536,0
+2506,10,-0.116952536,0
+2507,10,-0.116952536,0
+2508,10,-0.116952536,0
+2509,10,-0.116952536,0
+2510,10,-0.116952536,0
+2511,10,-0.116952536,0
+2512,10,-0.116952536,0
+2513,10,-0.116952536,0
+2514,10,-0.116952536,0
+2515,10,-0.116952536,0
+2516,10,-0.116952536,0
+2517,10,-0.116952536,0
+2518,10,-0.116952536,0
+2519,10,-0.116952536,0
+2520,10,-0.116952536,0
+2521,10,-0.116952536,0
+2522,10,-0.116952536,0
+2523,10,-0.116952536,0
+2524,10,-0.116952536,0
+2525,10,-0.116952536,0
+2526,10,-0.116952536,0
+2527,10,-0.116952536,0
+2528,10,-0.116952536,0
+2529,10,-0.116952536,0
+2530,10,-0.116952536,0
+2531,10,-0.116952536,0
+2532,10,-0.116952536,0
+2533,10,-0.116952536,0
+2534,10,-0.116952536,0
+2535,10,-0.116952536,0
+2536,10,-0.116952536,0
+2537,10,-0.116952536,0
+2538,10,-0.116952536,0
+2539,10,-0.116952536,0
+2540,10,-0.116952536,0
+2541,10,-0.116952536,0
+2542,10,-0.116952536,0
+2543,10,-0.116952536,0
+2544,10,-0.116952536,0
+2545,10,-0.116952536,0
+2546,10,-0.116952536,0
+2547,10,-0.116952536,0
+2548,10,-0.116952536,0
+2549,10,-0.116952536,0
+2550,10,-0.116952536,0
+2551,10,-0.116952536,0
+2552,10,-0.116952536,0
+2553,10,-0.116952536,0
+2554,10,-0.116952536,0
+2555,10,-0.116952536,0
+2556,10,-0.116952536,0
+2557,10,-0.116952536,0
+2558,10,-0.116952536,0
+2559,10,-0.116952536,0
+2560,10,-0.116952536,0
+2561,10,-0.116952536,0
+2562,10,-0.116952536,0
+2563,10,-0.116952536,0
+2564,10,-0.116952536,0
+2565,10,-0.116952536,0
+2566,10,-0.116952536,0
+2567,10,-0.116952536,0
+2568,10,-0.116952536,0
+2569,10,-0.116952536,0
+2570,10,-0.116952536,0
+2571,10,-0.116952536,0
+2572,10,-0.116952536,0
+2573,10,-0.116952536,0
+2574,10,-0.116952536,0
+2575,10,-0.116952536,0
+2576,10,-0.116952536,0
+2577,10,-0.116952536,0
+2578,10,-0.116952536,0
+2579,10,-0.116952536,0
+2580,10,-0.116952536,0
+2581,10,-0.116952536,0
+2582,10,-0.116952536,0
+2583,10,-0.116952536,0
+2584,10,-0.116952536,0
+2585,10,-0.116952536,0
+2586,10,-0.116952536,0
+2587,10,-0.116952536,0
+2588,10,-0.116952536,0
+2589,10,-0.116952536,0
+2590,10,-0.116952536,0
+2591,10,-0.116952536,0
+2592,10,-0.116952536,0
+2593,10,-0.116952536,0
+2594,10,-0.116952536,0
+2595,10,-0.116952536,0
+2596,10,-0.116952536,0
+2597,10,-0.116952536,0
+2598,10,-0.116952536,0
+2599,10,-0.116952536,0
+2600,10,-0.116952536,0
+2601,10,-0.116952536,0
+2602,10,-0.116952536,0
+2603,10,-0.116952536,0
+2604,10,-0.116952536,0
+2605,10,-0.116952536,0
+2606,10,-0.116952536,0
+2607,10,-0.116952536,0
+2608,10,-0.116952536,0
+2609,10,-0.116952536,0
+2610,10,-0.116952536,0
+2611,10,-0.116952536,0
+2612,10,-0.116952536,0
+2613,10,-0.116952536,0
+2614,10,-0.116952536,0
+2615,10,-0.116952536,0
+2616,10,-0.116952536,0
+2617,10,-0.116952536,0
+2618,10,-0.116952536,0
+2619,10,-0.116952536,0
+2620,10,-0.116952536,0
+2621,10,-0.116952536,0
+2622,10,-0.116952536,0
+2623,10,-0.116952536,0
+2624,10,-0.116952536,0
+2625,10,-0.116952536,0
+2626,10,-0.116952536,0
+2627,10,-0.116952536,0
+2628,10,-0.116952536,0
+2629,10,-0.116952536,0
+2630,10,-0.116952536,0
+2631,10,-0.116952536,0
+2632,10,-0.116952536,0
+2633,10,-0.116952536,0
+2634,10,-0.116952536,0
+2635,10,-0.116952536,0
+2636,10,-0.116952536,0
+2637,10,-0.116952536,0
+2638,10,-0.116952536,0
+2639,10,-0.116952536,0
+2640,10,-0.116952536,0
+2641,10,-0.116952536,0
+2642,10,-0.116952536,0
+2643,10,-0.116952536,0
+2644,10,-0.116952536,0
+2645,10,-0.116952536,0
+2646,10,-0.116952536,0
+2647,10,-0.116952536,0
+2648,10,-0.116952536,0
+2649,10,-0.116952536,0
+2650,10,-0.116952536,0
+2651,10,-0.116952536,0
+2652,10,-0.116952536,0
+2653,10,-0.116952536,0
+2654,10,-0.116952536,0
+2655,10,-0.116952536,0
+2656,10,-0.116952536,0
+2657,10,-0.116952536,0
+2658,10,-0.116952536,0
+2659,10,-0.116952536,0
+2660,10,-0.116952536,0
+2661,10,-0.116952536,0
+2662,10,-0.116952536,0
+2663,10,-0.116952536,0
+2664,10,-0.116952536,0
+2665,10,-0.116952536,0
+2666,10,-0.116952536,0
+2667,10,-0.116952536,0
+2668,10,-0.116952536,0
+2669,10,-0.116952536,0
+2670,10,-0.116952536,0
+2671,10,-0.116952536,0
+2672,10,-0.116952536,0
+2673,10,-0.116952536,0
+2674,10,-0.116952536,0
+2675,10,-0.116952536,0
+2676,10,-0.116952536,0
+2677,10,-0.116952536,0
+2678,10,-0.116952536,0
+2679,10,-0.116952536,0
+2680,10,-0.116952536,0
+2681,10,-0.116952536,0
+2682,10,-0.116952536,0
+2683,10,-0.116952536,0
+2684,10,-0.116952536,0
+2685,10,-0.116952536,0
+2686,10,-0.116952536,0
+2687,10,-0.116952536,0
+2688,10,-0.116952536,0
+2689,10,-0.116952536,0
+2690,10,-0.116952536,0
+2691,10,-0.116952536,0
+2692,10,-0.116952536,0
+2693,10,-0.116952536,0
+2694,10,-0.116952536,0
+2695,10,-0.116952536,0
+2696,10,-0.116952536,0
+2697,10,-0.116952536,0
+2698,10,-0.116952536,0
+2699,10,-0.116952536,0
+2700,10,-0.116952536,0
+2701,10,-0.116952536,0
+2702,10,-0.116952536,0
+2703,10,-0.116952536,0
+2704,10,-0.116952536,0
+2705,10,-0.116952536,0
+2706,10,-0.116952536,0
+2707,10,-0.116952536,0
+2708,10,-0.116952536,0
+2709,10,-0.116952536,0
+2710,10,-0.116952536,0
+2711,10,-0.116952536,0
+2712,10,-0.116952536,0
+2713,10,-0.116952536,0
+2714,10,-0.116952536,0
+2715,10,-0.116952536,0
+2716,10,-0.116952536,0
+2717,10,-0.116952536,0
+2718,10,-0.116952536,0
+2719,10,-0.116952536,0
+2720,10,-0.116952536,0
+2721,10,-0.116952536,0
+2722,10,-0.116952536,0
+2723,10,-0.116952536,0
+2724,10,-0.116952536,0
+2725,10,-0.116952536,0
+2726,10,-0.116952536,0
+2727,10,-0.116952536,0
+2728,10,-0.116952536,0
+2729,10,-0.116952536,0
+2730,10,-0.116952536,0
+2731,10,-0.116952536,0
+2732,10,-0.116952536,0
+2733,10,-0.116952536,0
+2734,10,-0.116952536,0
+2735,10,-0.116952536,0
+2736,10,-0.116952536,0
+2737,10,-0.116952536,0
+2738,10,-0.116952536,0
+2739,10,-0.116952536,0
+2740,10,-0.116952536,0
+2741,10,-0.116952536,0
+2742,10,-0.116952536,0
+2743,10,-0.116952536,0
+2744,10,-0.116952536,0
+2745,10,-0.116952536,0
+2746,10,-0.116952536,0
+2747,10,-0.116952536,0
+2748,10,-0.116952536,0
+2749,10,-0.116952536,0
+2750,10,-0.116952536,0
+2751,10,-0.116952536,0
+2752,10,-0.116952536,0
+2753,10,-0.116952536,0
+2754,10,-0.116952536,0
+2755,10,-0.116952536,0
+2756,10,-0.116952536,0
+2757,10,-0.116952536,0
+2758,10,-0.116952536,0
+2759,10,-0.116952536,0
+2760,10,-0.116952536,0
+2761,10,-0.116952536,0
+2762,10,-0.116952536,0
+2763,10,-0.116952536,0
+2764,10,-0.116952536,0
+2765,10,-0.116952536,0
+2766,10,-0.116952536,0
+2767,10,-0.116952536,0
+2768,10,-0.116952536,0
+2769,10,-0.116952536,0
+2770,10,-0.116952536,0
+2771,10,-0.116952536,0
+2772,10,-0.116952536,0
+2773,10,-0.116952536,0
+2774,10,-0.116952536,0
+2775,10,-0.116952536,0
+2776,10,-0.116952536,0
+2777,10,-0.116952536,0
+2778,10,-0.116952536,0
+2779,10,-0.116952536,0
+2780,10,-0.116952536,0
+2781,10,-0.116952536,0
+2782,10,-0.116952536,0
+2783,10,-0.116952536,0
+2784,10,-0.116952536,0
+2785,10,-0.116952536,0
+2786,10,-0.116952536,0
+2787,10,-0.116952536,0
+2788,10,-0.116952536,0
+2789,10,-0.116952536,0
+2790,10,-0.116952536,0
+2791,10,-0.116952536,0
+2792,10,-0.116952536,0
+2793,10,-0.116952536,0
+2794,10,-0.116952536,0
+2795,10,-0.116952536,0
+2796,10,-0.116952536,0
+2797,10,-0.116952536,0
+2798,10,-0.116952536,0
+2799,10,-8.80E-03,0
+2800,10,-8.80E-03,0
+2801,10,-8.80E-03,0
+2802,10,-8.80E-03,0
+2803,10,-8.80E-03,0
+2804,10,-8.80E-03,0
+2805,10,-8.80E-03,0
+2806,10,-8.80E-03,0
+2807,10,-8.80E-03,0
+2808,10,-8.80E-03,0
+2809,10,-8.80E-03,0
+2810,10,-8.80E-03,0
+2811,10,-8.80E-03,0
+2812,10,-8.80E-03,0
+2813,10,-8.80E-03,0
+2814,10,-8.80E-03,0
+2815,10,-8.80E-03,0
+2816,10,-8.80E-03,0
+2817,10,-8.80E-03,0
+2818,10,-8.80E-03,0
+2819,10,0.101345353,0
+2820,10,0.101345353,0
+2821,10,0.101345353,0
+2822,10,0.101345353,0
+2823,10,0.101345353,0
+2824,10,0.101345353,0
+2825,10,0.101345353,0
+2826,10,0.101345353,0
+2827,10,0.101345353,0
+2828,10,0.101345353,0
+2829,10,0.101345353,0
+2830,10,0.101345353,0
+2831,10,0.101345353,0
+2832,10,0.101345353,0
+2833,10,0.101345353,0
+2834,10,0.101345353,0
+2835,10,0.101345353,0
+2836,10,0.101345353,0
+2837,10,0.101345353,0
+2838,10,0.101345353,0
+2839,10,0.211488067,0
+2840,10,0.211488067,0
+2841,10,0.211488067,0
+2842,10,0.211488067,0
+2843,10,0.211488067,0
+2844,10,0.211488067,0
+2845,10,0.211488067,0
+2846,10,0.211488067,0
+2847,10,0.211488067,0
+2848,10,0.211488067,0
+2849,10,0.211488067,0
+2850,10,0.211488067,0
+2851,10,0.211488067,0
+2852,10,0.211488067,0
+2853,10,0.211488067,0
+2854,10,0.211488067,0
+2855,10,0.211488067,0
+2856,10,0.211488067,0
+2857,10,0.211488067,0
+2858,10,0.211488067,0
+2859,10,0.32163078,0
+2860,10,0.32163078,0
+2861,10,0.32163078,0
+2862,10,0.32163078,0
+2863,10,0.32163078,0
+2864,10,0.32163078,0
+2865,10,0.32163078,0
+2866,10,0.32163078,0
+2867,10,0.32163078,0
+2868,10,0.32163078,0
+2869,10,0.32163078,0
+2870,10,0.32163078,0
+2871,10,0.32163078,0
+2872,10,0.32163078,0
+2873,10,0.32163078,0
+2874,10,0.32163078,0
+2875,10,0.32163078,0
+2876,10,0.32163078,0
+2877,10,0.32163078,0
+2878,10,0.32163078,0
+2879,10,0.431773494,0
+2880,10,0.431773494,0
+2881,10,0.431773494,0
+2882,10,0.431773494,0
+2883,10,0.431773494,0
+2884,10,0.431773494,0
+2885,10,0.431773494,0
+2886,10,0.431773494,0
+2887,10,0.431773494,0
+2888,10,0.431773494,0
+2889,10,0.431773494,0
+2890,10,0.431773494,0
+2891,10,0.431773494,0
+2892,10,0.431773494,0
+2893,10,0.431773494,0
+2894,10,0.431773494,0
+2895,10,0.431773494,0
+2896,10,0.431773494,0
+2897,10,0.431773494,0
+2898,10,0.431773494,0
+2899,10,0.541916208,0
+2900,10,0.541916208,0
+2901,10,0.541916208,0
+2902,10,0.541916208,0
+2903,10,0.541916208,0
+2904,10,0.541916208,0
+2905,10,0.541916208,0
+2906,10,0.541916208,0
+2907,10,0.541916208,0
+2908,10,0.541916208,0
+2909,10,0.541916208,0
+2910,10,0.541916208,0
+2911,10,0.541916208,0
+2912,10,0.541916208,0
+2913,10,0.541916208,0
+2914,10,0.541916208,0
+2915,10,0.541916208,0
+2916,10,0.541916208,0
+2917,10,0.541916208,0
+2918,10,0.541916208,0
+2919,10,0.652058921,0
+2920,10,0.652058921,0
+2921,10,0.652058921,0
+2922,10,0.652058921,0
+2923,10,0.652058921,0
+2924,10,0.652058921,0
+2925,10,0.652058921,0
+2926,10,0.652058921,0
+2927,10,0.652058921,0
+2928,10,0.652058921,0
+2929,10,0.652058921,0
+2930,10,0.652058921,0
+2931,10,0.652058921,0
+2932,10,0.652058921,0
+2933,10,0.652058921,0
+2934,10,0.652058921,0
+2935,10,0.652058921,0
+2936,10,0.652058921,0
+2937,10,0.652058921,0
+2938,10,0.652058921,0
+2939,10,0.762201635,0
+2940,10,0.762201635,0
+2941,10,0.762201635,0
+2942,10,0.762201635,0
+2943,10,0.762201635,0
+2944,10,0.762201635,0
+2945,10,0.762201635,0
+2946,10,0.762201635,0
+2947,10,0.762201635,0
+2948,10,0.762201635,0
+2949,10,0.762201635,0
+2950,10,0.762201635,0
+2951,10,0.762201635,0
+2952,10,0.762201635,0
+2953,10,0.762201635,0
+2954,10,0.762201635,0
+2955,10,0.762201635,0
+2956,10,0.762201635,0
+2957,10,0.762201635,0
+2958,10,0.762201635,0
+2959,10,0.872344348,0
+2960,10,0.872344348,0
+2961,10,0.872344348,0
+2962,10,0.872344348,0
+2963,10,0.872344348,0
+2964,10,0.872344348,0
+2965,10,0.872344348,0
+2966,10,0.872344348,0
+2967,10,0.872344348,0
+2968,10,0.872344348,0
+2969,10,0.872344348,0
+2970,10,0.872344348,0
+2971,10,0.872344348,0
+2972,10,0.872344348,0
+2973,10,0.872344348,0
+2974,10,0.872344348,0
+2975,10,0.872344348,0
+2976,10,0.872344348,0
+2977,10,0.872344348,0
+2978,10,0.872344348,0
+2979,10,0.872344348,0
+2980,10,0.872344348,0
+2981,10,0.872344348,0
+2982,10,0.872344348,0
+2983,10,0.872344348,0
+2984,10,0.872344348,0
+2985,10,0.872344348,0
+2986,10,0.872344348,0
+2987,10,0.872344348,0
+2988,10,0.872344348,0
+2989,10,0.872344348,0
+2990,10,0.872344348,0
+2991,10,0.872344348,0
+2992,10,0.872344348,0
+2993,10,0.872344348,0
+2994,10,0.872344348,0
+2995,10,0.872344348,0
+2996,10,0.872344348,0
+2997,10,0.872344348,0
+2998,10,0.872344348,0
+2999,10,0.872344348,0
+3000,10,0.872344348,0
+3001,10,0.872344348,0
+3002,10,0.872344348,0
+3003,10,0.872344348,0
+3004,10,0.872344348,0
+3005,10,0.872344348,0
+3006,10,0.872344348,0
+3007,10,0.872344348,0
+3008,10,0.872344348,0
+3009,10,0.872344348,0
+3010,10,0.872344348,0
+3011,10,0.872344348,0
+3012,10,0.872344348,0
+3013,10,0.872344348,0
+3014,10,0.872344348,0
+3015,10,0.872344348,0
+3016,10,0.872344348,0
+3017,10,0.872344348,0
+3018,10,0.872344348,0
+3019,10,0.872344348,0
+3020,10,0.872344348,0
+3021,10,0.872344348,0
+3022,10,0.872344348,0
+3023,10,0.872344348,0
+3024,10,0.872344348,0
+3025,10,0.872344348,0
+3026,10,0.872344348,0
+3027,10,0.872344348,0
+3028,10,0.872344348,0
+3029,10,0.872344348,0
+3030,10,0.872344348,0
+3031,10,0.872344348,0
+3032,10,0.872344348,0
+3033,10,0.872344348,0
+3034,10,0.872344348,0
+3035,10,0.872344348,0
+3036,10,0.872344348,0
+3037,10,0.872344348,0
+3038,10,0.872344348,0
+3039,10,0.872344348,0
+3040,10,0.872344348,0
+3041,10,0.872344348,0
+3042,10,0.872344348,0
+3043,10,0.872344348,0
+3044,10,0.872344348,0
+3045,10,0.872344348,0
+3046,10,0.872344348,0
+3047,10,0.872344348,0
+3048,10,0.872344348,0
+3049,10,0.872344348,0
+3050,10,0.872344348,0
+3051,10,0.872344348,0
+3052,10,0.872344348,0
+3053,10,0.872344348,0
+3054,10,0.872344348,0
+3055,10,0.872344348,0
+3056,10,0.872344348,0
+3057,10,0.872344348,0
+3058,10,0.872344348,0
+3059,10,0.872344348,0
+3060,10,0.872344348,0
+3061,10,0.872344348,0
+3062,10,0.872344348,0
+3063,10,0.872344348,0
+3064,10,0.872344348,0
+3065,10,0.872344348,0
+3066,10,0.872344348,0
+3067,10,0.872344348,0
+3068,10,0.872344348,0
+3069,10,0.872344348,0
+3070,10,0.872344348,0
+3071,10,0.872344348,0
+3072,10,0.872344348,0
+3073,10,0.872344348,0
+3074,10,0.872344348,0
+3075,10,0.872344348,0
+3076,10,0.872344348,0
+3077,10,0.872344348,0
+3078,10,0.872344348,0
+3079,10,0.872344348,0
+3080,10,0.872344348,0
+3081,10,0.872344348,0
+3082,10,0.872344348,0
+3083,10,0.872344348,0
+3084,10,0.872344348,0
+3085,10,0.872344348,0
+3086,10,0.872344348,0
+3087,10,0.872344348,0
+3088,10,0.872344348,0
+3089,10,0.872344348,0
+3090,10,0.872344348,0
+3091,10,0.872344348,0
+3092,10,0.872344348,0
+3093,10,0.872344348,0
+3094,10,0.872344348,0
+3095,10,0.872344348,0
+3096,10,0.872344348,0
+3097,10,0.872344348,0
+3098,10,0.872344348,0
+3099,10,0.872344348,0
+3100,10,0.872344348,0
+3101,10,0.872344348,0
+3102,10,0.872344348,0
+3103,10,0.872344348,0
+3104,10,0.872344348,0
+3105,10,0.872344348,0
+3106,10,0.872344348,0
+3107,10,0.872344348,0
+3108,10,0.872344348,0
+3109,10,0.872344348,0
+3110,10,0.872344348,0
+3111,10,0.872344348,0
+3112,10,0.872344348,0
+3113,10,0.872344348,0
+3114,10,0.872344348,0
+3115,10,0.872344348,0
+3116,10,0.872344348,0
+3117,10,0.872344348,0
+3118,10,0.872344348,0
+3119,10,0.872344348,0
+3120,10,0.872344348,0
+3121,10,0.872344348,0
+3122,10,0.872344348,0
+3123,10,0.872344348,0
+3124,10,0.872344348,0
+3125,10,0.872344348,0
+3126,10,0.872344348,0
+3127,10,0.872344348,0
+3128,10,0.872344348,0
+3129,10,0.872344348,0
+3130,10,0.872344348,0
+3131,10,0.872344348,0
+3132,10,0.872344348,0
+3133,10,0.872344348,0
+3134,10,0.872344348,0
+3135,10,0.872344348,0
+3136,10,0.872344348,0
+3137,10,0.872344348,0
+3138,10,0.872344348,0
+3139,10,0.986617414,0
+3140,10,0.986617414,0
+3141,10,0.986617414,0
+3142,10,0.986617414,0
+3143,10,0.986617414,0
+3144,10,0.986617414,0
+3145,10,0.986617414,0
+3146,10,0.986617414,0
+3147,10,0.986617414,0
+3148,10,0.986617414,0
+3149,10,0.986617414,0
+3150,10,0.986617414,0
+3151,10,0.986617414,0
+3152,10,0.986617414,0
+3153,10,0.986617414,0
+3154,10,0.986617414,0
+3155,10,0.986617414,0
+3156,10,0.986617414,0
+3157,10,0.986617414,0
+3158,10,0.986617414,0
+3159,10,0.986617414,0
+3160,10,0.986617414,0
+3161,10,0.986617414,0
+3162,10,0.986617414,0
+3163,10,0.986617414,0
+3164,10,0.986617414,0
+3165,10,0.986617414,0
+3166,10,0.986617414,0
+3167,10,0.986617414,0
+3168,10,0.986617414,0
+3169,10,1.131179725,0
+3170,10,1.131179725,0
+3171,10,1.131179725,0
+3172,10,1.131179725,0
+3173,10,1.131179725,0
+3174,10,1.131179725,0
+3175,10,1.131179725,0
+3176,10,1.131179725,0
+3177,10,1.131179725,0
+3178,10,1.131179725,0
+3179,10,1.131179725,0
+3180,10,1.131179725,0
+3181,10,1.131179725,0
+3182,10,1.131179725,0
+3183,10,1.131179725,0
+3184,10,1.131179725,0
+3185,10,1.131179725,0
+3186,10,1.131179725,0
+3187,10,1.131179725,0
+3188,10,1.131179725,0
+3189,10,1.131179725,0
+3190,10,1.131179725,0
+3191,10,1.131179725,0
+3192,10,1.131179725,0
+3193,10,1.131179725,0
+3194,10,1.131179725,0
+3195,10,1.131179725,0
+3196,10,1.131179725,0
+3197,10,1.131179725,0
+3198,10,1.131179725,0
+3199,10,1.268350881,0
+3200,10,1.268350881,0
+3201,10,1.268350881,0
+3202,10,1.268350881,0
+3203,10,1.268350881,0
+3204,10,1.268350881,0
+3205,10,1.268350881,0
+3206,10,1.268350881,0
+3207,10,1.268350881,0
+3208,10,1.268350881,0
+3209,10,1.268350881,0
+3210,10,1.268350881,0
+3211,10,1.268350881,0
+3212,10,1.268350881,0
+3213,10,1.268350881,0
+3214,10,1.268350881,0
+3215,10,1.268350881,0
+3216,10,1.268350881,0
+3217,10,1.268350881,0
+3218,10,1.268350881,0
+3219,10,1.268350881,0
+3220,10,1.268350881,0
+3221,10,1.268350881,0
+3222,10,1.268350881,0
+3223,10,1.268350881,0
+3224,10,1.268350881,0
+3225,10,1.268350881,0
+3226,10,1.268350881,0
+3227,10,1.268350881,0
+3228,10,1.268350881,0
+3229,10,1.268350881,0
+3230,10,1.268350881,0
+3231,10,1.268350881,0
+3232,10,1.268350881,0
+3233,10,1.268350881,0
+3234,10,1.268350881,0
+3235,10,1.268350881,0
+3236,10,1.268350881,0
+3237,10,1.268350881,0
+3238,10,1.268350881,0
+3239,10,1.165454399,0
+3240,10,1.165454399,0
+3241,10,1.165454399,0
+3242,10,1.165454399,0
+3243,10,1.165454399,0
+3244,10,1.165454399,0
+3245,10,1.165454399,0
+3246,10,1.165454399,0
+3247,10,1.165454399,0
+3248,10,1.165454399,0
+3249,10,1.165454399,0
+3250,10,1.165454399,0
+3251,10,1.165454399,0
+3252,10,1.165454399,0
+3253,10,1.165454399,0
+3254,10,1.165454399,0
+3255,10,1.165454399,0
+3256,10,1.165454399,0
+3257,10,1.165454399,0
+3258,10,1.165454399,0
+3259,10,1.165454399,0
+3260,10,1.165454399,0
+3261,10,1.165454399,0
+3262,10,1.165454399,0
+3263,10,1.165454399,0
+3264,10,1.165454399,0
+3265,10,1.165454399,0
+3266,10,1.165454399,0
+3267,10,1.165454399,0
+3268,10,1.165454399,0
+3269,10,1.165454399,0
+3270,10,1.165454399,0
+3271,10,1.165454399,0
+3272,10,1.165454399,0
+3273,10,1.165454399,0
+3274,10,1.165454399,0
+3275,10,1.165454399,0
+3276,10,1.165454399,0
+3277,10,1.165454399,0
+3278,10,1.165454399,0
+3279,10,1.062557916,0
+3280,10,1.062557916,0
+3281,10,1.062557916,0
+3282,10,1.062557916,0
+3283,10,1.062557916,0
+3284,10,1.062557916,0
+3285,10,1.062557916,0
+3286,10,1.062557916,0
+3287,10,1.062557916,0
+3288,10,1.062557916,0
+3289,10,1.062557916,0
+3290,10,1.062557916,0
+3291,10,1.062557916,0
+3292,10,1.062557916,0
+3293,10,1.062557916,0
+3294,10,1.062557916,0
+3295,10,1.062557916,0
+3296,10,1.062557916,0
+3297,10,1.062557916,0
+3298,10,1.062557916,0
+3299,10,1.062557916,0
+3300,10,1.062557916,0
+3301,10,1.062557916,0
+3302,10,1.062557916,0
+3303,10,1.062557916,0
+3304,10,1.062557916,0
+3305,10,1.062557916,0
+3306,10,1.062557916,0
+3307,10,1.062557916,0
+3308,10,1.062557916,0
+3309,10,1.062557916,0
+3310,10,1.062557916,0
+3311,10,1.062557916,0
+3312,10,1.062557916,0
+3313,10,1.062557916,0
+3314,10,1.062557916,0
+3315,10,1.062557916,0
+3316,10,1.062557916,0
+3317,10,1.062557916,0
+3318,10,1.062557916,0
+3319,10,0.959661434,0
+3320,10,0.959661434,0
+3321,10,0.959661434,0
+3322,10,0.959661434,0
+3323,10,0.959661434,0
+3324,10,0.959661434,0
+3325,10,0.959661434,0
+3326,10,0.959661434,0
+3327,10,0.959661434,0
+3328,10,0.959661434,0
+3329,10,0.959661434,0
+3330,10,0.959661434,0
+3331,10,0.959661434,0
+3332,10,0.959661434,0
+3333,10,0.959661434,0
+3334,10,0.959661434,0
+3335,10,0.959661434,0
+3336,10,0.959661434,0
+3337,10,0.959661434,0
+3338,10,0.959661434,0
+3339,10,0.816657062,0
+3340,10,0.816657062,0
+3341,10,0.816657062,0
+3342,10,0.816657062,0
+3343,10,0.816657062,0
+3344,10,0.816657062,0
+3345,10,0.816657062,0
+3346,10,0.816657062,0
+3347,10,0.816657062,0
+3348,10,0.816657062,0
+3349,10,0.816657062,0
+3350,10,0.816657062,0
+3351,10,0.816657062,0
+3352,10,0.816657062,0
+3353,10,0.816657062,0
+3354,10,0.816657062,0
+3355,10,0.816657062,0
+3356,10,0.816657062,0
+3357,10,0.816657062,0
+3358,10,0.816657062,0
+3359,10,0.668833946,0
+3360,10,0.668833946,0
+3361,10,0.668833946,0
+3362,10,0.668833946,0
+3363,10,0.668833946,0
+3364,10,0.668833946,0
+3365,10,0.668833946,0
+3366,10,0.668833946,0
+3367,10,0.668833946,0
+3368,10,0.668833946,0
+3369,10,0.668833946,0
+3370,10,0.668833946,0
+3371,10,0.668833946,0
+3372,10,0.668833946,0
+3373,10,0.668833946,0
+3374,10,0.668833946,0
+3375,10,0.668833946,0
+3376,10,0.668833946,0
+3377,10,0.668833946,0
+3378,10,0.668833946,0
+3379,10,0.521010831,0
+3380,10,0.521010831,0
+3381,10,0.521010831,0
+3382,10,0.521010831,0
+3383,10,0.521010831,0
+3384,10,0.521010831,0
+3385,10,0.521010831,0
+3386,10,0.521010831,0
+3387,10,0.521010831,0
+3388,10,0.521010831,0
+3389,10,0.521010831,0
+3390,10,0.521010831,0
+3391,10,0.521010831,0
+3392,10,0.521010831,0
+3393,10,0.521010831,0
+3394,10,0.521010831,0
+3395,10,0.521010831,0
+3396,10,0.521010831,0
+3397,10,0.521010831,0
+3398,10,0.521010831,0
+3399,10,0.387970027,0
+3400,10,0.387970027,0
+3401,10,0.387970027,0
+3402,10,0.387970027,0
+3403,10,0.387970027,0
+3404,10,0.387970027,0
+3405,10,0.387970027,0
+3406,10,0.387970027,0
+3407,10,0.387970027,0
+3408,10,0.387970027,0
+3409,10,0.387970027,0
+3410,10,0.387970027,0
+3411,10,0.387970027,0
+3412,10,0.387970027,0
+3413,10,0.387970027,0
+3414,10,0.387970027,0
+3415,10,0.387970027,0
+3416,10,0.387970027,0
+3417,10,0.387970027,0
+3418,10,0.387970027,0
+3419,10,0.387970027,0
+3420,10,0.387970027,0
+3421,10,0.387970027,0
+3422,10,0.387970027,0
+3423,10,0.387970027,0
+3424,10,0.387970027,0
+3425,10,0.387970027,0
+3426,10,0.387970027,0
+3427,10,0.387970027,0
+3428,10,0.387970027,0
+3429,10,0.387970027,0
+3430,10,0.387970027,0
+3431,10,0.387970027,0
+3432,10,0.387970027,0
+3433,10,0.387970027,0
+3434,10,0.387970027,0
+3435,10,0.387970027,0
+3436,10,0.387970027,0
+3437,10,0.387970027,0
+3438,10,0.387970027,0
+3439,10,0.387970027,0
+3440,10,0.387970027,0
+3441,10,0.387970027,0
+3442,10,0.387970027,0
+3443,10,0.387970027,0
+3444,10,0.387970027,0
+3445,10,0.387970027,0
+3446,10,0.387970027,0
+3447,10,0.387970027,0
+3448,10,0.387970027,0
+3449,10,0.387970027,0
+3450,10,0.387970027,0
+3451,10,0.387970027,0
+3452,10,0.387970027,0
+3453,10,0.387970027,0
+3454,10,0.387970027,0
+3455,10,0.387970027,0
+3456,10,0.387970027,0
+3457,10,0.387970027,0
+3458,10,0.387970027,0
+3459,10,0.387970027,0
+3460,10,0.387970027,0
+3461,10,0.387970027,0
+3462,10,0.387970027,0
+3463,10,0.387970027,0
+3464,10,0.387970027,0
+3465,10,0.387970027,0
+3466,10,0.387970027,0
+3467,10,0.387970027,0
+3468,10,0.387970027,0
+3469,10,0.526590429,0
+3470,10,0.526590429,0
+3471,10,0.526590429,0
+3472,10,0.526590429,0
+3473,10,0.526590429,0
+3474,10,0.526590429,0
+3475,10,0.526590429,0
+3476,10,0.526590429,0
+3477,10,0.526590429,0
+3478,10,0.526590429,0
+3479,10,0.526590429,0
+3480,10,0.526590429,0
+3481,10,0.526590429,0
+3482,10,0.526590429,0
+3483,10,0.526590429,0
+3484,10,0.526590429,0
+3485,10,0.526590429,0
+3486,10,0.526590429,0
+3487,10,0.526590429,0
+3488,10,0.526590429,0
+3489,10,0.724619574,0
+3490,10,0.724619574,0
+3491,10,0.724619574,0
+3492,10,0.724619574,0
+3493,10,0.724619574,0
+3494,10,0.724619574,0
+3495,10,0.724619574,0
+3496,10,0.724619574,0
+3497,10,0.724619574,0
+3498,10,0.724619574,0
+3499,10,0.724619574,0
+3500,10,0.724619574,0
+3501,10,0.724619574,0
+3502,10,0.724619574,0
+3503,10,0.724619574,0
+3504,10,0.724619574,0
+3505,10,0.724619574,0
+3506,10,0.724619574,0
+3507,10,0.724619574,0
+3508,10,0.724619574,0
+3509,10,0.92264872,0
+3510,10,0.92264872,0
+3511,10,0.92264872,0
+3512,10,0.92264872,0
+3513,10,0.92264872,0
+3514,10,0.92264872,0
+3515,10,0.92264872,0
+3516,10,0.92264872,0
+3517,10,0.92264872,0
+3518,10,0.92264872,0
+3519,10,0.92264872,0
+3520,10,0.92264872,0
+3521,10,0.92264872,0
+3522,10,0.92264872,0
+3523,10,0.92264872,0
+3524,10,0.92264872,0
+3525,10,0.92264872,0
+3526,10,0.92264872,0
+3527,10,0.92264872,0
+3528,10,0.92264872,0
+3529,10,1.120677866,0
+3530,10,1.120677866,0
+3531,10,1.120677866,0
+3532,10,1.120677866,0
+3533,10,1.120677866,0
+3534,10,1.120677866,0
+3535,10,1.120677866,0
+3536,10,1.120677866,0
+3537,10,1.120677866,0
+3538,10,1.120677866,0
+3539,10,1.120677866,0
+3540,10,1.120677866,0
+3541,10,1.120677866,0
+3542,10,1.120677866,0
+3543,10,1.120677866,0
+3544,10,1.120677866,0
+3545,10,1.120677866,0
+3546,10,1.120677866,0
+3547,10,1.120677866,0
+3548,10,1.120677866,0
+3549,10,1.318707012,0
+3550,10,1.318707012,0
+3551,10,1.318707012,0
+3552,10,1.318707012,0
+3553,10,1.318707012,0
+3554,10,1.318707012,0
+3555,10,1.318707012,0
+3556,10,1.318707012,0
+3557,10,1.318707012,0
+3558,10,1.318707012,0
+3559,10,1.318707012,0
+3560,10,1.318707012,0
+3561,10,1.318707012,0
+3562,10,1.318707012,0
+3563,10,1.318707012,0
+3564,10,1.318707012,0
+3565,10,1.318707012,0
+3566,10,1.318707012,0
+3567,10,1.318707012,0
+3568,10,1.318707012,0
+3569,10,1.516736157,0
+3570,10,1.516736157,0
+3571,10,1.516736157,0
+3572,10,1.516736157,0
+3573,10,1.516736157,0
+3574,10,1.516736157,0
+3575,10,1.516736157,0
+3576,10,1.516736157,0
+3577,10,1.516736157,0
+3578,10,1.516736157,0
+3579,10,1.516736157,0
+3580,10,1.516736157,0
+3581,10,1.516736157,0
+3582,10,1.516736157,0
+3583,10,1.516736157,0
+3584,10,1.516736157,0
+3585,10,1.516736157,0
+3586,10,1.516736157,0
+3587,10,1.516736157,0
+3588,10,1.516736157,0
+3589,10,1.714765303,0
+3590,10,1.714765303,0
+3591,10,1.714765303,0
+3592,10,1.714765303,0
+3593,10,1.714765303,0
+3594,10,1.714765303,0
+3595,10,1.714765303,0
+3596,10,1.714765303,0
+3597,10,1.714765303,0
+3598,10,1.714765303,0
+3599,10,1.714765303,0
+3600,10,1.714765303,0
+3601,10,1.714765303,0
+3602,10,1.714765303,0
+3603,10,1.714765303,0
+3604,10,1.714765303,0
+3605,10,1.714765303,0
+3606,10,1.714765303,0
+3607,10,1.714765303,0
+3608,10,1.714765303,0
+3609,10,1.912794449,0
+3610,10,1.912794449,0
+3611,10,1.912794449,0
+3612,10,1.912794449,0
+3613,10,1.912794449,0
+3614,10,1.912794449,0
+3615,10,1.912794449,0
+3616,10,1.912794449,0
+3617,10,1.912794449,0
+3618,10,1.912794449,0
+3619,10,1.912794449,0
+3620,10,1.912794449,0
+3621,10,1.912794449,0
+3622,10,1.912794449,0
+3623,10,1.912794449,0
+3624,10,1.912794449,0
+3625,10,1.912794449,0
+3626,10,1.912794449,0
+3627,10,1.912794449,0
+3628,10,1.912794449,0
+3629,10,2.108194248,0
+3630,10,2.108194248,0
+3631,10,2.108194248,0
+3632,10,2.108194248,0
+3633,10,2.108194248,0
+3634,10,2.108194248,0
+3635,10,2.108194248,0
+3636,10,2.108194248,0
+3637,10,2.108194248,0
+3638,10,2.108194248,0
+3639,10,2.108194248,0
+3640,10,2.108194248,0
+3641,10,2.108194248,0
+3642,10,2.108194248,0
+3643,10,2.108194248,0
+3644,10,2.108194248,0
+3645,10,2.108194248,0
+3646,10,2.108194248,0
+3647,10,2.108194248,0
+3648,10,2.108194248,0
+3649,10,2.253636459,0
+3650,10,2.253636459,0
+3651,10,2.253636459,0
+3652,10,2.253636459,0
+3653,10,2.253636459,0
+3654,10,2.253636459,0
+3655,10,2.253636459,0
+3656,10,2.253636459,0
+3657,10,2.253636459,0
+3658,10,2.253636459,0
+3659,10,2.253636459,0
+3660,10,2.253636459,0
+3661,10,2.253636459,0
+3662,10,2.253636459,0
+3663,10,2.253636459,0
+3664,10,2.253636459,0
+3665,10,2.253636459,0
+3666,10,2.253636459,0
+3667,10,2.253636459,0
+3668,10,2.253636459,0
+3669,10,2.253636459,0
+3670,10,2.253636459,0
+3671,10,2.253636459,0
+3672,10,2.253636459,0
+3673,10,2.253636459,0
+3674,10,2.253636459,0
+3675,10,2.253636459,0
+3676,10,2.253636459,0
+3677,10,2.253636459,0
+3678,10,2.253636459,0
+3679,10,2.253636459,0
+3680,10,2.253636459,0
+3681,10,2.253636459,0
+3682,10,2.253636459,0
+3683,10,2.253636459,0
+3684,10,2.253636459,0
+3685,10,2.253636459,0
+3686,10,2.253636459,0
+3687,10,2.253636459,0
+3688,10,2.253636459,0
+3689,10,2.253636459,0
+3690,10,2.253636459,0
+3691,10,2.253636459,0
+3692,10,2.253636459,0
+3693,10,2.253636459,0
+3694,10,2.253636459,0
+3695,10,2.253636459,0
+3696,10,2.253636459,0
+3697,10,2.253636459,0
+3698,10,2.253636459,0
+3699,10,2.253636459,0
+3700,10,2.253636459,0
+3701,10,2.253636459,0
+3702,10,2.253636459,0
+3703,10,2.253636459,0
+3704,10,2.253636459,0
+3705,10,2.253636459,0
+3706,10,2.253636459,0
+3707,10,2.253636459,0
+3708,10,2.253636459,0
+3709,10,2.145382941,0
+3710,10,2.145382941,0
+3711,10,2.145382941,0
+3712,10,2.145382941,0
+3713,10,2.145382941,0
+3714,10,2.145382941,0
+3715,10,2.145382941,0
+3716,10,2.145382941,0
+3717,10,2.145382941,0
+3718,10,2.145382941,0
+3719,10,2.145382941,0
+3720,10,2.145382941,0
+3721,10,2.145382941,0
+3722,10,2.145382941,0
+3723,10,2.145382941,0
+3724,10,2.145382941,0
+3725,10,2.145382941,0
+3726,10,2.145382941,0
+3727,10,2.145382941,0
+3728,10,2.145382941,0
+3729,10,2.145382941,0
+3730,10,2.145382941,0
+3731,10,2.145382941,0
+3732,10,2.145382941,0
+3733,10,2.145382941,0
+3734,10,2.145382941,0
+3735,10,2.145382941,0
+3736,10,2.145382941,0
+3737,10,2.145382941,0
+3738,10,2.145382941,0
+3739,10,2.145382941,0
+3740,10,2.145382941,0
+3741,10,2.145382941,0
+3742,10,2.145382941,0
+3743,10,2.145382941,0
+3744,10,2.145382941,0
+3745,10,2.145382941,0
+3746,10,2.145382941,0
+3747,10,2.145382941,0
+3748,10,2.145382941,0
+3749,10,2.145382941,0
+3750,10,2.145382941,0
+3751,10,2.145382941,0
+3752,10,2.145382941,0
+3753,10,2.145382941,0
+3754,10,2.145382941,0
+3755,10,2.145382941,0
+3756,10,2.145382941,0
+3757,10,2.145382941,0
+3758,10,2.145382941,0
+3759,10,2.145382941,0
+3760,10,2.145382941,0
+3761,10,2.145382941,0
+3762,10,2.145382941,0
+3763,10,2.145382941,0
+3764,10,2.145382941,0
+3765,10,2.145382941,0
+3766,10,2.145382941,0
+3767,10,2.145382941,0
+3768,10,2.145382941,0
+3769,10,2.145382941,0
+3770,10,2.145382941,0
+3771,10,2.145382941,0
+3772,10,2.145382941,0
+3773,10,2.145382941,0
+3774,10,2.145382941,0
+3775,10,2.145382941,0
+3776,10,2.145382941,0
+3777,10,2.145382941,0
+3778,10,2.145382941,0
+3779,10,2.145382941,0
+3780,10,2.145382941,0
+3781,10,2.145382941,0
+3782,10,2.145382941,0
+3783,10,2.145382941,0
+3784,10,2.145382941,0
+3785,10,2.145382941,0
+3786,10,2.145382941,0
+3787,10,2.145382941,0
+3788,10,2.145382941,0
+3789,10,2.145382941,0
+3790,10,2.145382941,0
+3791,10,2.145382941,0
+3792,10,2.145382941,0
+3793,10,2.145382941,0
+3794,10,2.145382941,0
+3795,10,2.145382941,0
+3796,10,2.145382941,0
+3797,10,2.145382941,0
+3798,10,2.145382941,0
+3799,10,2.145382941,0
+3800,10,2.145382941,0
+3801,10,2.145382941,0
+3802,10,2.145382941,0
+3803,10,2.145382941,0
+3804,10,2.145382941,0
+3805,10,2.145382941,0
+3806,10,2.145382941,0
+3807,10,2.145382941,0
+3808,10,2.145382941,0
+3809,10,2.145382941,0
+3810,10,2.145382941,0
+3811,10,2.145382941,0
+3812,10,2.145382941,0
+3813,10,2.145382941,0
+3814,10,2.145382941,0
+3815,10,2.145382941,0
+3816,10,2.145382941,0
+3817,10,2.145382941,0
+3818,10,2.145382941,0
+3819,10,2.145382941,0
+3820,10,2.145382941,0
+3821,10,2.145382941,0
+3822,10,2.145382941,0
+3823,10,2.145382941,0
+3824,10,2.145382941,0
+3825,10,2.145382941,0
+3826,10,2.145382941,0
+3827,10,2.145382941,0
+3828,10,2.145382941,0
+3829,10,2.245639725,0
+3830,10,2.245639725,0
+3831,10,2.245639725,0
+3832,10,2.245639725,0
+3833,10,2.245639725,0
+3834,10,2.245639725,0
+3835,10,2.245639725,0
+3836,10,2.245639725,0
+3837,10,2.245639725,0
+3838,10,2.245639725,0
+3839,10,2.245639725,0
+3840,10,2.245639725,0
+3841,10,2.245639725,0
+3842,10,2.245639725,0
+3843,10,2.245639725,0
+3844,10,2.245639725,0
+3845,10,2.245639725,0
+3846,10,2.245639725,0
+3847,10,2.245639725,0
+3848,10,2.245639725,0
+3849,10,2.245639725,0
+3850,10,2.245639725,0
+3851,10,2.245639725,0
+3852,10,2.245639725,0
+3853,10,2.245639725,0
+3854,10,2.245639725,0
+3855,10,2.245639725,0
+3856,10,2.245639725,0
+3857,10,2.245639725,0
+3858,10,2.245639725,0
+3859,10,2.366910579,0
+3860,10,2.366910579,0
+3861,10,2.366910579,0
+3862,10,2.366910579,0
+3863,10,2.366910579,0
+3864,10,2.366910579,0
+3865,10,2.366910579,0
+3866,10,2.366910579,0
+3867,10,2.366910579,0
+3868,10,2.366910579,0
+3869,10,2.366910579,0
+3870,10,2.366910579,0
+3871,10,2.366910579,0
+3872,10,2.366910579,0
+3873,10,2.366910579,0
+3874,10,2.366910579,0
+3875,10,2.366910579,0
+3876,10,2.366910579,0
+3877,10,2.366910579,0
+3878,10,2.366910579,0
+3879,10,2.366910579,0
+3880,10,2.366910579,0
+3881,10,2.366910579,0
+3882,10,2.366910579,0
+3883,10,2.366910579,0
+3884,10,2.366910579,0
+3885,10,2.366910579,0
+3886,10,2.366910579,0
+3887,10,2.366910579,0
+3888,10,2.366910579,0
+3889,10,2.488181434,0
+3890,10,2.488181434,0
+3891,10,2.488181434,0
+3892,10,2.488181434,0
+3893,10,2.488181434,0
+3894,10,2.488181434,0
+3895,10,2.488181434,0
+3896,10,2.488181434,0
+3897,10,2.488181434,0
+3898,10,2.488181434,0
+3899,10,2.488181434,0
+3900,10,2.488181434,0
+3901,10,2.488181434,0
+3902,10,2.488181434,0
+3903,10,2.488181434,0
+3904,10,2.488181434,0
+3905,10,2.488181434,0
+3906,10,2.488181434,0
+3907,10,2.488181434,0
+3908,10,2.488181434,0
+3909,10,2.488181434,0
+3910,10,2.488181434,0
+3911,10,2.488181434,0
+3912,10,2.488181434,0
+3913,10,2.488181434,0
+3914,10,2.488181434,0
+3915,10,2.488181434,0
+3916,10,2.488181434,0
+3917,10,2.488181434,0
+3918,10,2.488181434,0
+3919,10,2.609452288,0
+3920,10,2.609452288,0
+3921,10,2.609452288,0
+3922,10,2.609452288,0
+3923,10,2.609452288,0
+3924,10,2.609452288,0
+3925,10,2.609452288,0
+3926,10,2.609452288,0
+3927,10,2.609452288,0
+3928,10,2.609452288,0
+3929,10,2.609452288,0
+3930,10,2.609452288,0
+3931,10,2.609452288,0
+3932,10,2.609452288,0
+3933,10,2.609452288,0
+3934,10,2.609452288,0
+3935,10,2.609452288,0
+3936,10,2.609452288,0
+3937,10,2.609452288,0
+3938,10,2.609452288,0
+3939,10,2.609452288,0
+3940,10,2.609452288,0
+3941,10,2.609452288,0
+3942,10,2.609452288,0
+3943,10,2.609452288,0
+3944,10,2.609452288,0
+3945,10,2.609452288,0
+3946,10,2.609452288,0
+3947,10,2.609452288,0
+3948,10,2.609452288,0
+3949,10,2.609452288,0
+3950,10,2.609452288,0
+3951,10,2.609452288,0
+3952,10,2.609452288,0
+3953,10,2.609452288,0
+3954,10,2.609452288,0
+3955,10,2.609452288,0
+3956,10,2.609452288,0
+3957,10,2.609452288,0
+3958,10,2.609452288,0
+3959,10,2.609452288,0
+3960,10,2.609452288,0
+3961,10,2.609452288,0
+3962,10,2.609452288,0
+3963,10,2.609452288,0
+3964,10,2.609452288,0
+3965,10,2.609452288,0
+3966,10,2.609452288,0
+3967,10,2.609452288,0
+3968,10,2.609452288,0
+3969,10,2.609452288,0
+3970,10,2.609452288,0
+3971,10,2.609452288,0
+3972,10,2.609452288,0
+3973,10,2.609452288,0
+3974,10,2.609452288,0
+3975,10,2.609452288,0
+3976,10,2.609452288,0
+3977,10,2.609452288,0
+3978,10,2.609452288,0
+3979,10,2.609452288,0
+3980,10,2.609452288,0
+3981,10,2.609452288,0
+3982,10,2.609452288,0
+3983,10,2.609452288,0
+3984,10,2.609452288,0
+3985,10,2.609452288,0
+3986,10,2.609452288,0
+3987,10,2.609452288,0
+3988,10,2.609452288,0
+3989,10,2.609452288,0
+3990,10,2.609452288,0
+3991,10,2.609452288,0
+3992,10,2.609452288,0
+3993,10,2.609452288,0
+3994,10,2.609452288,0
+3995,10,2.609452288,0
+3996,10,2.609452288,0
+3997,10,2.609452288,0
+3998,10,2.609452288,0
+3999,10,2.609452288,0
+4000,10,2.609452288,0
+4001,10,2.609452288,0
+4002,10,2.609452288,0
+4003,10,2.609452288,0
+4004,10,2.609452288,0
+4005,10,2.609452288,0
+4006,10,2.609452288,0
+4007,10,2.609452288,0
+4008,10,2.609452288,0
+4009,10,2.609452288,0
+4010,10,2.609452288,0
+4011,10,2.609452288,0
+4012,10,2.609452288,0
+4013,10,2.609452288,0
+4014,10,2.609452288,0
+4015,10,2.609452288,0
+4016,10,2.609452288,0
+4017,10,2.609452288,0
+4018,10,2.609452288,0
+4019,10,2.609452288,0
+4020,10,2.609452288,0
+4021,10,2.609452288,0
+4022,10,2.609452288,0
+4023,10,2.609452288,0
+4024,10,2.609452288,0
+4025,10,2.609452288,0
+4026,10,2.609452288,0
+4027,10,2.609452288,0
+4028,10,2.609452288,0
+4029,10,2.609452288,0
+4030,10,2.609452288,0
+4031,10,2.609452288,0
+4032,10,2.609452288,0
+4033,10,2.609452288,0
+4034,10,2.609452288,0
+4035,10,2.609452288,0
+4036,10,2.609452288,0
+4037,10,2.609452288,0
+4038,10,2.609452288,0
+4039,10,2.609452288,0
+4040,10,2.609452288,0
+4041,10,2.609452288,0
+4042,10,2.609452288,0
+4043,10,2.609452288,0
+4044,10,2.609452288,0
+4045,10,2.609452288,0
+4046,10,2.609452288,0
+4047,10,2.609452288,0
+4048,10,2.609452288,0
+4049,10,2.609452288,0
+4050,10,2.609452288,0
+4051,10,2.609452288,0
+4052,10,2.609452288,0
+4053,10,2.609452288,0
+4054,10,2.609452288,0
+4055,10,2.609452288,0
+4056,10,2.609452288,0
+4057,10,2.609452288,0
+4058,10,2.609452288,0
+4059,10,2.609452288,0
+4060,10,2.609452288,0
+4061,10,2.609452288,0
+4062,10,2.609452288,0
+4063,10,2.609452288,0
+4064,10,2.609452288,0
+4065,10,2.609452288,0
+4066,10,2.609452288,0
+4067,10,2.609452288,0
+4068,10,2.609452288,0
+4069,10,2.609452288,0
+4070,10,2.609452288,0
+4071,10,2.609452288,0
+4072,10,2.609452288,0
+4073,10,2.609452288,0
+4074,10,2.609452288,0
+4075,10,2.609452288,0
+4076,10,2.609452288,0
+4077,10,2.609452288,0
+4078,10,2.609452288,0
+4079,10,2.609452288,0
+4080,10,2.609452288,0
+4081,10,2.609452288,0
+4082,10,2.609452288,0
+4083,10,2.609452288,0
+4084,10,2.609452288,0
+4085,10,2.609452288,0
+4086,10,2.609452288,0
+4087,10,2.609452288,0
+4088,10,2.609452288,0
+4089,10,2.609452288,0
+4090,10,2.609452288,0
+4091,10,2.609452288,0
+4092,10,2.609452288,0
+4093,10,2.609452288,0
+4094,10,2.609452288,0
+4095,10,2.609452288,0
+4096,10,2.609452288,0
+4097,10,2.609452288,0
+4098,10,2.609452288,0
+4099,10,2.609452288,0
+4100,10,2.609452288,0
+4101,10,2.609452288,0
+4102,10,2.609452288,0
+4103,10,2.609452288,0
+4104,10,2.609452288,0
+4105,10,2.609452288,0
+4106,10,2.609452288,0
+4107,10,2.609452288,0
+4108,10,2.609452288,0
+4109,10,2.609452288,0
+4110,10,2.609452288,0
+4111,10,2.609452288,0
+4112,10,2.609452288,0
+4113,10,2.609452288,0
+4114,10,2.609452288,0
+4115,10,2.609452288,0
+4116,10,2.609452288,0
+4117,10,2.609452288,0
+4118,10,2.609452288,0
+4119,10,2.609452288,0
+4120,10,2.609452288,0
+4121,10,2.609452288,0
+4122,10,2.609452288,0
+4123,10,2.609452288,0
+4124,10,2.609452288,0
+4125,10,2.609452288,0
+4126,10,2.609452288,0
+4127,10,2.609452288,0
+4128,10,2.609452288,0
+4129,10,2.609452288,0
+4130,10,2.609452288,0
+4131,10,2.609452288,0
+4132,10,2.609452288,0
+4133,10,2.609452288,0
+4134,10,2.609452288,0
+4135,10,2.609452288,0
+4136,10,2.609452288,0
+4137,10,2.609452288,0
+4138,10,2.609452288,0
+4139,10,2.609452288,0
+4140,10,2.609452288,0
+4141,10,2.609452288,0
+4142,10,2.609452288,0
+4143,10,2.609452288,0
+4144,10,2.609452288,0
+4145,10,2.609452288,0
+4146,10,2.609452288,0
+4147,10,2.609452288,0
+4148,10,2.609452288,0
+4149,10,2.609452288,0
+4150,10,2.609452288,0
+4151,10,2.609452288,0
+4152,10,2.609452288,0
+4153,10,2.609452288,0
+4154,10,2.609452288,0
+4155,10,2.609452288,0
+4156,10,2.609452288,0
+4157,10,2.609452288,0
+4158,10,2.609452288,0
+4159,10,2.609452288,0
+4160,10,2.609452288,0
+4161,10,2.609452288,0
+4162,10,2.609452288,0
+4163,10,2.609452288,0
+4164,10,2.609452288,0
+4165,10,2.609452288,0
+4166,10,2.609452288,0
+4167,10,2.609452288,0
+4168,10,2.609452288,0
+4169,10,2.609452288,0
+4170,10,2.609452288,0
+4171,10,2.609452288,0
+4172,10,2.609452288,0
+4173,10,2.609452288,0
+4174,10,2.609452288,0
+4175,10,2.609452288,0
+4176,10,2.609452288,0
+4177,10,2.609452288,0
+4178,10,2.609452288,0
+4179,10,2.609452288,0
+4180,10,2.609452288,0
+4181,10,2.609452288,0
+4182,10,2.609452288,0
+4183,10,2.609452288,0
+4184,10,2.609452288,0
+4185,10,2.609452288,0
+4186,10,2.609452288,0
+4187,10,2.609452288,0
+4188,10,2.609452288,0
+4189,10,2.609452288,0
+4190,10,2.609452288,0
+4191,10,2.609452288,0
+4192,10,2.609452288,0
+4193,10,2.609452288,0
+4194,10,2.609452288,0
+4195,10,2.609452288,0
+4196,10,2.609452288,0
+4197,10,2.609452288,0
+4198,10,2.609452288,0
+4199,10,2.609452288,0
+4200,10,2.609452288,0
+4201,10,2.609452288,0
+4202,10,2.609452288,0
+4203,10,2.609452288,0
+4204,10,2.609452288,0
+4205,10,2.609452288,0
+4206,10,2.609452288,0
+4207,10,2.609452288,0
+4208,10,2.609452288,0
+4209,10,2.609452288,0
+4210,10,2.609452288,0
+4211,10,2.609452288,0
+4212,10,2.609452288,0
+4213,10,2.609452288,0
+4214,10,2.609452288,0
+4215,10,2.609452288,0
+4216,10,2.609452288,0
+4217,10,2.609452288,0
+4218,10,2.609452288,0
+4219,10,2.609452288,0
+4220,10,2.609452288,0
+4221,10,2.609452288,0
+4222,10,2.609452288,0
+4223,10,2.609452288,0
+4224,10,2.609452288,0
+4225,10,2.609452288,0
+4226,10,2.609452288,0
+4227,10,2.609452288,0
+4228,10,2.609452288,0
+4229,10,2.609452288,0
+4230,10,2.609452288,0
+4231,10,2.609452288,0
+4232,10,2.609452288,0
+4233,10,2.609452288,0
+4234,10,2.609452288,0
+4235,10,2.609452288,0
+4236,10,2.609452288,0
+4237,10,2.609452288,0
+4238,10,2.609452288,0
+4239,10,2.609452288,0
+4240,10,2.609452288,0
+4241,10,2.609452288,0
+4242,10,2.609452288,0
+4243,10,2.609452288,0
+4244,10,2.609452288,0
+4245,10,2.609452288,0
+4246,10,2.609452288,0
+4247,10,2.609452288,0
+4248,10,2.609452288,0
+4249,10,2.609452288,0
+4250,10,2.609452288,0
+4251,10,2.609452288,0
+4252,10,2.609452288,0
+4253,10,2.609452288,0
+4254,10,2.609452288,0
+4255,10,2.609452288,0
+4256,10,2.609452288,0
+4257,10,2.609452288,0
+4258,10,2.609452288,0
+4259,10,2.462007012,0
+4260,10,2.462007012,0
+4261,10,2.462007012,0
+4262,10,2.462007012,0
+4263,10,2.462007012,0
+4264,10,2.462007012,0
+4265,10,2.462007012,0
+4266,10,2.462007012,0
+4267,10,2.462007012,0
+4268,10,2.462007012,0
+4269,10,2.462007012,0
+4270,10,2.462007012,0
+4271,10,2.462007012,0
+4272,10,2.462007012,0
+4273,10,2.462007012,0
+4274,10,2.462007012,0
+4275,10,2.462007012,0
+4276,10,2.462007012,0
+4277,10,2.462007012,0
+4278,10,2.462007012,0
+4279,10,2.361491434,0
+4280,10,2.361491434,0
+4281,10,2.361491434,0
+4282,10,2.361491434,0
+4283,10,2.361491434,0
+4284,10,2.361491434,0
+4285,10,2.361491434,0
+4286,10,2.361491434,0
+4287,10,2.361491434,0
+4288,10,2.361491434,0
+4289,10,2.361491434,0
+4290,10,2.361491434,0
+4291,10,2.361491434,0
+4292,10,2.361491434,0
+4293,10,2.361491434,0
+4294,10,2.361491434,0
+4295,10,2.361491434,0
+4296,10,2.361491434,0
+4297,10,2.361491434,0
+4298,10,2.361491434,0
+4299,10,2.260975856,0
+4300,10,2.260975856,0
+4301,10,2.260975856,0
+4302,10,2.260975856,0
+4303,10,2.260975856,0
+4304,10,2.260975856,0
+4305,10,2.260975856,0
+4306,10,2.260975856,0
+4307,10,2.260975856,0
+4308,10,2.260975856,0
+4309,10,2.260975856,0
+4310,10,2.260975856,0
+4311,10,2.260975856,0
+4312,10,2.260975856,0
+4313,10,2.260975856,0
+4314,10,2.260975856,0
+4315,10,2.260975856,0
+4316,10,2.260975856,0
+4317,10,2.260975856,0
+4318,10,2.260975856,0
+4319,10,2.160460278,0
+4320,10,2.160460278,0
+4321,10,2.160460278,0
+4322,10,2.160460278,0
+4323,10,2.160460278,0
+4324,10,2.160460278,0
+4325,10,2.160460278,0
+4326,10,2.160460278,0
+4327,10,2.160460278,0
+4328,10,2.160460278,0
+4329,10,2.160460278,0
+4330,10,2.160460278,0
+4331,10,2.160460278,0
+4332,10,2.160460278,0
+4333,10,2.160460278,0
+4334,10,2.160460278,0
+4335,10,2.160460278,0
+4336,10,2.160460278,0
+4337,10,2.160460278,0
+4338,10,2.160460278,0
+4339,10,2.0599447,0
+4340,10,2.0599447,0
+4341,10,2.0599447,0
+4342,10,2.0599447,0
+4343,10,2.0599447,0
+4344,10,2.0599447,0
+4345,10,2.0599447,0
+4346,10,2.0599447,0
+4347,10,2.0599447,0
+4348,10,2.0599447,0
+4349,10,2.0599447,0
+4350,10,2.0599447,0
+4351,10,2.0599447,0
+4352,10,2.0599447,0
+4353,10,2.0599447,0
+4354,10,2.0599447,0
+4355,10,2.0599447,0
+4356,10,2.0599447,0
+4357,10,2.0599447,0
+4358,10,2.0599447,0
+4359,10,1.95935666,0
+4360,10,1.95935666,0
+4361,10,1.95935666,0
+4362,10,1.95935666,0
+4363,10,1.95935666,0
+4364,10,1.95935666,0
+4365,10,1.95935666,0
+4366,10,1.95935666,0
+4367,10,1.95935666,0
+4368,10,1.95935666,0
+4369,10,1.95935666,0
+4370,10,1.95935666,0
+4371,10,1.95935666,0
+4372,10,1.95935666,0
+4373,10,1.95935666,0
+4374,10,1.95935666,0
+4375,10,1.95935666,0
+4376,10,1.95935666,0
+4377,10,1.95935666,0
+4378,10,1.95935666,0
+4379,10,1.858116459,0
+4380,10,1.858116459,0
+4381,10,1.858116459,0
+4382,10,1.858116459,0
+4383,10,1.858116459,0
+4384,10,1.858116459,0
+4385,10,1.858116459,0
+4386,10,1.858116459,0
+4387,10,1.858116459,0
+4388,10,1.858116459,0
+4389,10,1.858116459,0
+4390,10,1.858116459,0
+4391,10,1.858116459,0
+4392,10,1.858116459,0
+4393,10,1.858116459,0
+4394,10,1.858116459,0
+4395,10,1.858116459,0
+4396,10,1.858116459,0
+4397,10,1.858116459,0
+4398,10,1.858116459,0
+4399,10,1.756876258,0
+4400,10,1.756876258,0
+4401,10,1.756876258,0
+4402,10,1.756876258,0
+4403,10,1.756876258,0
+4404,10,1.756876258,0
+4405,10,1.756876258,0
+4406,10,1.756876258,0
+4407,10,1.756876258,0
+4408,10,1.756876258,0
+4409,10,1.756876258,0
+4410,10,1.756876258,0
+4411,10,1.756876258,0
+4412,10,1.756876258,0
+4413,10,1.756876258,0
+4414,10,1.756876258,0
+4415,10,1.756876258,0
+4416,10,1.756876258,0
+4417,10,1.756876258,0
+4418,10,1.756876258,0
+4419,10,1.655636057,0
+4420,10,1.655636057,0
+4421,10,1.655636057,0
+4422,10,1.655636057,0
+4423,10,1.655636057,0
+4424,10,1.655636057,0
+4425,10,1.655636057,0
+4426,10,1.655636057,0
+4427,10,1.655636057,0
+4428,10,1.655636057,0
+4429,10,1.655636057,0
+4430,10,1.655636057,0
+4431,10,1.655636057,0
+4432,10,1.655636057,0
+4433,10,1.655636057,0
+4434,10,1.655636057,0
+4435,10,1.655636057,0
+4436,10,1.655636057,0
+4437,10,1.655636057,0
+4438,10,1.655636057,0
+4439,10,1.655636057,0
+4440,10,1.655636057,0
+4441,10,1.655636057,0
+4442,10,1.655636057,0
+4443,10,1.655636057,0
+4444,10,1.655636057,0
+4445,10,1.655636057,0
+4446,10,1.655636057,0
+4447,10,1.655636057,0
+4448,10,1.655636057,0
+4449,10,1.655636057,0
+4450,10,1.655636057,0
+4451,10,1.655636057,0
+4452,10,1.655636057,0
+4453,10,1.655636057,0
+4454,10,1.655636057,0
+4455,10,1.655636057,0
+4456,10,1.655636057,0
+4457,10,1.655636057,0
+4458,10,1.655636057,0
+4459,10,1.655636057,0
+4460,10,1.655636057,0
+4461,10,1.655636057,0
+4462,10,1.655636057,0
+4463,10,1.655636057,0
+4464,10,1.655636057,0
+4465,10,1.655636057,0
+4466,10,1.655636057,0
+4467,10,1.655636057,0
+4468,10,1.655636057,0
+4469,10,1.894037062,0
+4470,10,1.894037062,0
+4471,10,1.894037062,0
+4472,10,1.894037062,0
+4473,10,1.894037062,0
+4474,10,1.894037062,0
+4475,10,1.894037062,0
+4476,10,1.894037062,0
+4477,10,1.894037062,0
+4478,10,1.894037062,0
+4479,10,2.043205906,0
+4480,10,2.043205906,0
+4481,10,2.043205906,0
+4482,10,2.043205906,0
+4483,10,2.043205906,0
+4484,10,2.043205906,0
+4485,10,2.043205906,0
+4486,10,2.043205906,0
+4487,10,2.043205906,0
+4488,10,2.043205906,0
+4489,10,2.19237475,0
+4490,10,2.19237475,0
+4491,10,2.19237475,0
+4492,10,2.19237475,0
+4493,10,2.19237475,0
+4494,10,2.19237475,0
+4495,10,2.19237475,0
+4496,10,2.19237475,0
+4497,10,2.19237475,0
+4498,10,2.19237475,0
+4499,10,2.341543595,0
+4500,10,2.341543595,0
+4501,10,2.341543595,0
+4502,10,2.341543595,0
+4503,10,2.341543595,0
+4504,10,2.341543595,0
+4505,10,2.341543595,0
+4506,10,2.341543595,0
+4507,10,2.341543595,0
+4508,10,2.341543595,0
+4509,10,2.490712439,0
+4510,10,2.490712439,0
+4511,10,2.490712439,0
+4512,10,2.490712439,0
+4513,10,2.490712439,0
+4514,10,2.490712439,0
+4515,10,2.490712439,0
+4516,10,2.490712439,0
+4517,10,2.490712439,0
+4518,10,2.490712439,0
+4519,10,2.639881283,0
+4520,10,2.639881283,0
+4521,10,2.639881283,0
+4522,10,2.639881283,0
+4523,10,2.639881283,0
+4524,10,2.639881283,0
+4525,10,2.639881283,0
+4526,10,2.639881283,0
+4527,10,2.639881283,0
+4528,10,2.639881283,0
+4529,10,2.789050127,0
+4530,10,2.789050127,0
+4531,10,2.789050127,0
+4532,10,2.789050127,0
+4533,10,2.789050127,0
+4534,10,2.789050127,0
+4535,10,2.789050127,0
+4536,10,2.789050127,0
+4537,10,2.789050127,0
+4538,10,2.789050127,0
+4539,10,2.938218971,0
+4540,10,2.938218971,0
+4541,10,2.938218971,0
+4542,10,2.938218971,0
+4543,10,2.938218971,0
+4544,10,2.938218971,0
+4545,10,2.938218971,0
+4546,10,2.938218971,0
+4547,10,2.938218971,0
+4548,10,2.938218971,0
+4549,10,3.087387816,0
+4550,10,3.087387816,0
+4551,10,3.087387816,0
+4552,10,3.087387816,0
+4553,10,3.087387816,0
+4554,10,3.087387816,0
+4555,10,3.087387816,0
+4556,10,3.087387816,0
+4557,10,3.087387816,0
+4558,10,3.087387816,0
+4559,10,3.23655666,0
+4560,10,3.23655666,0
+4561,10,3.23655666,0
+4562,10,3.23655666,0
+4563,10,3.23655666,0
+4564,10,3.23655666,0
+4565,10,3.23655666,0
+4566,10,3.23655666,0
+4567,10,3.23655666,0
+4568,10,3.23655666,0
+4569,10,3.385725504,0
+4570,10,3.385725504,0
+4571,10,3.385725504,0
+4572,10,3.385725504,0
+4573,10,3.385725504,0
+4574,10,3.385725504,0
+4575,10,3.385725504,0
+4576,10,3.385725504,0
+4577,10,3.385725504,0
+4578,10,3.385725504,0
+4579,10,3.534894348,0
+4580,10,3.534894348,0
+4581,10,3.534894348,0
+4582,10,3.534894348,0
+4583,10,3.534894348,0
+4584,10,3.534894348,0
+4585,10,3.534894348,0
+4586,10,3.534894348,0
+4587,10,3.534894348,0
+4588,10,3.534894348,0
+4589,10,3.684063193,0
+4590,10,3.684063193,0
+4591,10,3.684063193,0
+4592,10,3.684063193,0
+4593,10,3.684063193,0
+4594,10,3.684063193,0
+4595,10,3.684063193,0
+4596,10,3.684063193,0
+4597,10,3.684063193,0
+4598,10,3.684063193,0
+4599,10,3.822083193,0
+4600,10,3.822083193,0
+4601,10,3.822083193,0
+4602,10,3.822083193,0
+4603,10,3.822083193,0
+4604,10,3.822083193,0
+4605,10,3.822083193,0
+4606,10,3.822083193,0
+4607,10,3.822083193,0
+4608,10,3.822083193,0
+4609,10,3.95267063,0
+4610,10,3.95267063,0
+4611,10,3.95267063,0
+4612,10,3.95267063,0
+4613,10,3.95267063,0
+4614,10,3.95267063,0
+4615,10,3.95267063,0
+4616,10,3.95267063,0
+4617,10,3.95267063,0
+4618,10,3.95267063,0
+4619,10,4.083258067,0
+4620,10,4.083258067,0
+4621,10,4.083258067,0
+4622,10,4.083258067,0
+4623,10,4.083258067,0
+4624,10,4.083258067,0
+4625,10,4.083258067,0
+4626,10,4.083258067,0
+4627,10,4.083258067,0
+4628,10,4.083258067,0
+4629,10,4.213845504,0
+4630,10,4.213845504,0
+4631,10,4.213845504,0
+4632,10,4.213845504,0
+4633,10,4.213845504,0
+4634,10,4.213845504,0
+4635,10,4.213845504,0
+4636,10,4.213845504,0
+4637,10,4.213845504,0
+4638,10,4.213845504,0
+4639,10,4.344432941,0
+4640,10,4.344432941,0
+4641,10,4.344432941,0
+4642,10,4.344432941,0
+4643,10,4.344432941,0
+4644,10,4.344432941,0
+4645,10,4.344432941,0
+4646,10,4.344432941,0
+4647,10,4.344432941,0
+4648,10,4.344432941,0
+4649,10,4.475020378,0
+4650,10,4.475020378,0
+4651,10,4.475020378,0
+4652,10,4.475020378,0
+4653,10,4.475020378,0
+4654,10,4.475020378,0
+4655,10,4.475020378,0
+4656,10,4.475020378,0
+4657,10,4.475020378,0
+4658,10,4.475020378,0
+4659,10,4.475020378,0
+4660,10,4.475020378,0
+4661,10,4.475020378,0
+4662,10,4.475020378,0
+4663,10,4.475020378,0
+4664,10,4.475020378,0
+4665,10,4.475020378,0
+4666,10,4.475020378,0
+4667,10,4.475020378,0
+4668,10,4.475020378,0
+4669,10,4.475020378,0
+4670,10,4.475020378,0
+4671,10,4.475020378,0
+4672,10,4.475020378,0
+4673,10,4.475020378,0
+4674,10,4.475020378,0
+4675,10,4.475020378,0
+4676,10,4.475020378,0
+4677,10,4.475020378,0
+4678,10,4.475020378,0
+4679,10,4.475020378,0
+4680,10,4.475020378,0
+4681,10,4.475020378,0
+4682,10,4.475020378,0
+4683,10,4.475020378,0
+4684,10,4.475020378,0
+4685,10,4.475020378,0
+4686,10,4.475020378,0
+4687,10,4.475020378,0
+4688,10,4.475020378,0
+4689,10,4.475020378,0
+4690,10,4.475020378,0
+4691,10,4.475020378,0
+4692,10,4.475020378,0
+4693,10,4.475020378,0
+4694,10,4.475020378,0
+4695,10,4.475020378,0
+4696,10,4.475020378,0
+4697,10,4.475020378,0
+4698,10,4.475020378,0
+4699,10,4.475020378,0
+4700,10,4.475020378,0
+4701,10,4.475020378,0
+4702,10,4.475020378,0
+4703,10,4.475020378,0
+4704,10,4.475020378,0
+4705,10,4.475020378,0
+4706,10,4.475020378,0
+4707,10,4.475020378,0
+4708,10,4.475020378,0
+4709,10,4.475020378,0
+4710,10,4.475020378,0
+4711,10,4.475020378,0
+4712,10,4.475020378,0
+4713,10,4.475020378,0
+4714,10,4.475020378,0
+4715,10,4.475020378,0
+4716,10,4.475020378,0
+4717,10,4.475020378,0
+4718,10,4.475020378,0
+4719,10,4.374867112,0
+4720,10,4.374867112,0
+4721,10,4.374867112,0
+4722,10,4.374867112,0
+4723,10,4.374867112,0
+4724,10,4.374867112,0
+4725,10,4.374867112,0
+4726,10,4.374867112,0
+4727,10,4.374867112,0
+4728,10,4.374867112,0
+4729,10,4.374867112,0
+4730,10,4.374867112,0
+4731,10,4.374867112,0
+4732,10,4.374867112,0
+4733,10,4.374867112,0
+4734,10,4.374867112,0
+4735,10,4.374867112,0
+4736,10,4.374867112,0
+4737,10,4.374867112,0
+4738,10,4.374867112,0
+4739,10,4.374867112,0
+4740,10,4.374867112,0
+4741,10,4.374867112,0
+4742,10,4.374867112,0
+4743,10,4.374867112,0
+4744,10,4.374867112,0
+4745,10,4.374867112,0
+4746,10,4.374867112,0
+4747,10,4.374867112,0
+4748,10,4.374867112,0
+4749,10,4.374867112,0
+4750,10,4.374867112,0
+4751,10,4.374867112,0
+4752,10,4.374867112,0
+4753,10,4.374867112,0
+4754,10,4.374867112,0
+4755,10,4.374867112,0
+4756,10,4.374867112,0
+4757,10,4.374867112,0
+4758,10,4.374867112,0
+4759,10,4.374867112,0
+4760,10,4.374867112,0
+4761,10,4.374867112,0
+4762,10,4.374867112,0
+4763,10,4.374867112,0
+4764,10,4.374867112,0
+4765,10,4.374867112,0
+4766,10,4.374867112,0
+4767,10,4.374867112,0
+4768,10,4.374867112,0
+4769,10,4.374867112,0
+4770,10,4.374867112,0
+4771,10,4.374867112,0
+4772,10,4.374867112,0
+4773,10,4.374867112,0
+4774,10,4.374867112,0
+4775,10,4.374867112,0
+4776,10,4.374867112,0
+4777,10,4.374867112,0
+4778,10,4.374867112,0
+4779,10,4.263689223,0
+4780,10,4.263689223,0
+4781,10,4.263689223,0
+4782,10,4.263689223,0
+4783,10,4.263689223,0
+4784,10,4.263689223,0
+4785,10,4.263689223,0
+4786,10,4.263689223,0
+4787,10,4.263689223,0
+4788,10,4.263689223,0
+4789,10,4.263689223,0
+4790,10,4.263689223,0
+4791,10,4.263689223,0
+4792,10,4.263689223,0
+4793,10,4.263689223,0
+4794,10,4.263689223,0
+4795,10,4.263689223,0
+4796,10,4.263689223,0
+4797,10,4.263689223,0
+4798,10,4.263689223,0
+4799,10,4.263689223,0
+4800,10,4.263689223,0
+4801,10,4.263689223,0
+4802,10,4.263689223,0
+4803,10,4.263689223,0
+4804,10,4.263689223,0
+4805,10,4.263689223,0
+4806,10,4.263689223,0
+4807,10,4.263689223,0
+4808,10,4.263689223,0
+4809,10,4.263689223,0
+4810,10,4.263689223,0
+4811,10,4.263689223,0
+4812,10,4.263689223,0
+4813,10,4.263689223,0
+4814,10,4.263689223,0
+4815,10,4.263689223,0
+4816,10,4.263689223,0
+4817,10,4.263689223,0
+4818,10,4.263689223,0
+4819,10,4.263689223,0
+4820,10,4.263689223,0
+4821,10,4.263689223,0
+4822,10,4.263689223,0
+4823,10,4.263689223,0
+4824,10,4.263689223,0
+4825,10,4.263689223,0
+4826,10,4.263689223,0
+4827,10,4.263689223,0
+4828,10,4.263689223,0
+4829,10,4.263689223,0
+4830,10,4.263689223,0
+4831,10,4.263689223,0
+4832,10,4.263689223,0
+4833,10,4.263689223,0
+4834,10,4.263689223,0
+4835,10,4.263689223,0
+4836,10,4.263689223,0
+4837,10,4.263689223,0
+4838,10,4.263689223,0
+4839,10,4.263689223,0
+4840,10,4.263689223,0
+4841,10,4.263689223,0
+4842,10,4.263689223,0
+4843,10,4.263689223,0
+4844,10,4.263689223,0
+4845,10,4.263689223,0
+4846,10,4.263689223,0
+4847,10,4.263689223,0
+4848,10,4.263689223,0
+4849,10,4.263689223,0
+4850,10,4.263689223,0
+4851,10,4.263689223,0
+4852,10,4.263689223,0
+4853,10,4.263689223,0
+4854,10,4.263689223,0
+4855,10,4.263689223,0
+4856,10,4.263689223,0
+4857,10,4.263689223,0
+4858,10,4.263689223,0
+4859,10,4.263689223,0
+4860,10,4.263689223,0
+4861,10,4.263689223,0
+4862,10,4.263689223,0
+4863,10,4.263689223,0
+4864,10,4.263689223,0
+4865,10,4.263689223,0
+4866,10,4.263689223,0
+4867,10,4.263689223,0
+4868,10,4.263689223,0
+4869,10,4.263689223,0
+4870,10,4.263689223,0
+4871,10,4.263689223,0
+4872,10,4.263689223,0
+4873,10,4.263689223,0
+4874,10,4.263689223,0
+4875,10,4.263689223,0
+4876,10,4.263689223,0
+4877,10,4.263689223,0
+4878,10,4.263689223,0
+4879,10,4.263689223,0
+4880,10,4.263689223,0
+4881,10,4.263689223,0
+4882,10,4.263689223,0
+4883,10,4.263689223,0
+4884,10,4.263689223,0
+4885,10,4.263689223,0
+4886,10,4.263689223,0
+4887,10,4.263689223,0
+4888,10,4.263689223,0
+4889,10,4.263689223,0
+4890,10,4.263689223,0
+4891,10,4.263689223,0
+4892,10,4.263689223,0
+4893,10,4.263689223,0
+4894,10,4.263689223,0
+4895,10,4.263689223,0
+4896,10,4.263689223,0
+4897,10,4.263689223,0
+4898,10,4.263689223,0
+4899,10,4.162775102,0
+4900,10,4.162775102,0
+4901,10,4.162775102,0
+4902,10,4.162775102,0
+4903,10,4.162775102,0
+4904,10,4.162775102,0
+4905,10,4.162775102,0
+4906,10,4.162775102,0
+4907,10,4.162775102,0
+4908,10,4.162775102,0
+4909,10,4.162775102,0
+4910,10,4.162775102,0
+4911,10,4.162775102,0
+4912,10,4.162775102,0
+4913,10,4.162775102,0
+4914,10,4.162775102,0
+4915,10,4.162775102,0
+4916,10,4.162775102,0
+4917,10,4.162775102,0
+4918,10,4.162775102,0
+4919,10,4.014035856,0
+4920,10,4.014035856,0
+4921,10,4.014035856,0
+4922,10,4.014035856,0
+4923,10,4.014035856,0
+4924,10,4.014035856,0
+4925,10,4.014035856,0
+4926,10,4.014035856,0
+4927,10,4.014035856,0
+4928,10,4.014035856,0
+4929,10,4.014035856,0
+4930,10,4.014035856,0
+4931,10,4.014035856,0
+4932,10,4.014035856,0
+4933,10,4.014035856,0
+4934,10,4.014035856,0
+4935,10,4.014035856,0
+4936,10,4.014035856,0
+4937,10,4.014035856,0
+4938,10,4.014035856,0
+4939,10,3.865281082,0
+4940,10,3.865281082,0
+4941,10,3.865281082,0
+4942,10,3.865281082,0
+4943,10,3.865281082,0
+4944,10,3.865281082,0
+4945,10,3.865281082,0
+4946,10,3.865281082,0
+4947,10,3.865281082,0
+4948,10,3.865281082,0
+4949,10,3.865281082,0
+4950,10,3.865281082,0
+4951,10,3.865281082,0
+4952,10,3.865281082,0
+4953,10,3.865281082,0
+4954,10,3.865281082,0
+4955,10,3.865281082,0
+4956,10,3.865281082,0
+4957,10,3.865281082,0
+4958,10,3.865281082,0
+4959,10,3.716526308,0
+4960,10,3.716526308,0
+4961,10,3.716526308,0
+4962,10,3.716526308,0
+4963,10,3.716526308,0
+4964,10,3.716526308,0
+4965,10,3.716526308,0
+4966,10,3.716526308,0
+4967,10,3.716526308,0
+4968,10,3.716526308,0
+4969,10,3.716526308,0
+4970,10,3.716526308,0
+4971,10,3.716526308,0
+4972,10,3.716526308,0
+4973,10,3.716526308,0
+4974,10,3.716526308,0
+4975,10,3.716526308,0
+4976,10,3.716526308,0
+4977,10,3.716526308,0
+4978,10,3.716526308,0
+4979,10,3.567957866,0
+4980,10,3.567957866,0
+4981,10,3.567957866,0
+4982,10,3.567957866,0
+4983,10,3.567957866,0
+4984,10,3.567957866,0
+4985,10,3.567957866,0
+4986,10,3.567957866,0
+4987,10,3.567957866,0
+4988,10,3.567957866,0
+4989,10,3.567957866,0
+4990,10,3.567957866,0
+4991,10,3.567957866,0
+4992,10,3.567957866,0
+4993,10,3.567957866,0
+4994,10,3.567957866,0
+4995,10,3.567957866,0
+4996,10,3.567957866,0
+4997,10,3.567957866,0
+4998,10,3.567957866,0
+4999,10,3.419513645,0
+5000,10,3.419513645,0
+5001,10,3.419513645,0
+5002,10,3.419513645,0
+5003,10,3.419513645,0
+5004,10,3.419513645,0
+5005,10,3.419513645,0
+5006,10,3.419513645,0
+5007,10,3.419513645,0
+5008,10,3.419513645,0
+5009,10,3.419513645,0
+5010,10,3.419513645,0
+5011,10,3.419513645,0
+5012,10,3.419513645,0
+5013,10,3.419513645,0
+5014,10,3.419513645,0
+5015,10,3.419513645,0
+5016,10,3.419513645,0
+5017,10,3.419513645,0
+5018,10,3.419513645,0
+5019,10,3.271069424,0
+5020,10,3.271069424,0
+5021,10,3.271069424,0
+5022,10,3.271069424,0
+5023,10,3.271069424,0
+5024,10,3.271069424,0
+5025,10,3.271069424,0
+5026,10,3.271069424,0
+5027,10,3.271069424,0
+5028,10,3.271069424,0
+5029,10,3.271069424,0
+5030,10,3.271069424,0
+5031,10,3.271069424,0
+5032,10,3.271069424,0
+5033,10,3.271069424,0
+5034,10,3.271069424,0
+5035,10,3.271069424,0
+5036,10,3.271069424,0
+5037,10,3.271069424,0
+5038,10,3.271069424,0
+5039,10,3.123091032,0
+5040,10,3.123091032,0
+5041,10,3.123091032,0
+5042,10,3.123091032,0
+5043,10,3.123091032,0
+5044,10,3.123091032,0
+5045,10,3.123091032,0
+5046,10,3.123091032,0
+5047,10,3.123091032,0
+5048,10,3.123091032,0
+5049,10,3.123091032,0
+5050,10,3.123091032,0
+5051,10,3.123091032,0
+5052,10,3.123091032,0
+5053,10,3.123091032,0
+5054,10,3.123091032,0
+5055,10,3.123091032,0
+5056,10,3.123091032,0
+5057,10,3.123091032,0
+5058,10,3.123091032,0
+5059,10,2.975681987,0
+5060,10,2.975681987,0
+5061,10,2.975681987,0
+5062,10,2.975681987,0
+5063,10,2.975681987,0
+5064,10,2.975681987,0
+5065,10,2.975681987,0
+5066,10,2.975681987,0
+5067,10,2.975681987,0
+5068,10,2.975681987,0
+5069,10,2.975681987,0
+5070,10,2.975681987,0
+5071,10,2.975681987,0
+5072,10,2.975681987,0
+5073,10,2.975681987,0
+5074,10,2.975681987,0
+5075,10,2.975681987,0
+5076,10,2.975681987,0
+5077,10,2.975681987,0
+5078,10,2.975681987,0
+5079,10,2.828272941,0
+5080,10,2.828272941,0
+5081,10,2.828272941,0
+5082,10,2.828272941,0
+5083,10,2.828272941,0
+5084,10,2.828272941,0
+5085,10,2.828272941,0
+5086,10,2.828272941,0
+5087,10,2.828272941,0
+5088,10,2.828272941,0
+5089,10,2.828272941,0
+5090,10,2.828272941,0
+5091,10,2.828272941,0
+5092,10,2.828272941,0
+5093,10,2.828272941,0
+5094,10,2.828272941,0
+5095,10,2.828272941,0
+5096,10,2.828272941,0
+5097,10,2.828272941,0
+5098,10,2.828272941,0
+5099,10,2.828272941,0
+5100,10,2.828272941,0
+5101,10,2.828272941,0
+5102,10,2.828272941,0
+5103,10,2.828272941,0
+5104,10,2.828272941,0
+5105,10,2.828272941,0
+5106,10,2.828272941,0
+5107,10,2.828272941,0
+5108,10,2.828272941,0
+5109,10,2.828272941,0
+5110,10,2.828272941,0
+5111,10,2.828272941,0
+5112,10,2.828272941,0
+5113,10,2.828272941,0
+5114,10,2.828272941,0
+5115,10,2.828272941,0
+5116,10,2.828272941,0
+5117,10,2.828272941,0
+5118,10,2.828272941,0
+5119,10,2.828272941,0
+5120,10,2.828272941,0
+5121,10,2.828272941,0
+5122,10,2.828272941,0
+5123,10,2.828272941,0
+5124,10,2.828272941,0
+5125,10,2.828272941,0
+5126,10,2.828272941,0
+5127,10,2.828272941,0
+5128,10,2.828272941,0
+5129,10,2.679823544,0
+5130,10,2.679823544,0
+5131,10,2.679823544,0
+5132,10,2.679823544,0
+5133,10,2.679823544,0
+5134,10,2.679823544,0
+5135,10,2.679823544,0
+5136,10,2.679823544,0
+5137,10,2.679823544,0
+5138,10,2.679823544,0
+5139,10,2.679823544,0
+5140,10,2.679823544,0
+5141,10,2.679823544,0
+5142,10,2.679823544,0
+5143,10,2.679823544,0
+5144,10,2.679823544,0
+5145,10,2.679823544,0
+5146,10,2.679823544,0
+5147,10,2.679823544,0
+5148,10,2.679823544,0
+5149,10,2.561917012,0
+5150,10,2.561917012,0
+5151,10,2.561917012,0
+5152,10,2.561917012,0
+5153,10,2.561917012,0
+5154,10,2.561917012,0
+5155,10,2.561917012,0
+5156,10,2.561917012,0
+5157,10,2.561917012,0
+5158,10,2.561917012,0
+5159,10,2.561917012,0
+5160,10,2.561917012,0
+5161,10,2.561917012,0
+5162,10,2.561917012,0
+5163,10,2.561917012,0
+5164,10,2.561917012,0
+5165,10,2.561917012,0
+5166,10,2.561917012,0
+5167,10,2.561917012,0
+5168,10,2.561917012,0
+5169,10,2.443963896,0
+5170,10,2.443963896,0
+5171,10,2.443963896,0
+5172,10,2.443963896,0
+5173,10,2.443963896,0
+5174,10,2.443963896,0
+5175,10,2.443963896,0
+5176,10,2.443963896,0
+5177,10,2.443963896,0
+5178,10,2.443963896,0
+5179,10,2.443963896,0
+5180,10,2.443963896,0
+5181,10,2.443963896,0
+5182,10,2.443963896,0
+5183,10,2.443963896,0
+5184,10,2.443963896,0
+5185,10,2.443963896,0
+5186,10,2.443963896,0
+5187,10,2.443963896,0
+5188,10,2.443963896,0
+5189,10,2.325746811,0
+5190,10,2.325746811,0
+5191,10,2.325746811,0
+5192,10,2.325746811,0
+5193,10,2.325746811,0
+5194,10,2.325746811,0
+5195,10,2.325746811,0
+5196,10,2.325746811,0
+5197,10,2.325746811,0
+5198,10,2.325746811,0
+5199,10,2.325746811,0
+5200,10,2.325746811,0
+5201,10,2.325746811,0
+5202,10,2.325746811,0
+5203,10,2.325746811,0
+5204,10,2.325746811,0
+5205,10,2.325746811,0
+5206,10,2.325746811,0
+5207,10,2.325746811,0
+5208,10,2.325746811,0
+5209,10,2.207529725,0
+5210,10,2.207529725,0
+5211,10,2.207529725,0
+5212,10,2.207529725,0
+5213,10,2.207529725,0
+5214,10,2.207529725,0
+5215,10,2.207529725,0
+5216,10,2.207529725,0
+5217,10,2.207529725,0
+5218,10,2.207529725,0
+5219,10,2.207529725,0
+5220,10,2.207529725,0
+5221,10,2.207529725,0
+5222,10,2.207529725,0
+5223,10,2.207529725,0
+5224,10,2.207529725,0
+5225,10,2.207529725,0
+5226,10,2.207529725,0
+5227,10,2.207529725,0
+5228,10,2.207529725,0
+5229,10,2.08931264,0
+5230,10,2.08931264,0
+5231,10,2.08931264,0
+5232,10,2.08931264,0
+5233,10,2.08931264,0
+5234,10,2.08931264,0
+5235,10,2.08931264,0
+5236,10,2.08931264,0
+5237,10,2.08931264,0
+5238,10,2.08931264,0
+5239,10,2.08931264,0
+5240,10,2.08931264,0
+5241,10,2.08931264,0
+5242,10,2.08931264,0
+5243,10,2.08931264,0
+5244,10,2.08931264,0
+5245,10,2.08931264,0
+5246,10,2.08931264,0
+5247,10,2.08931264,0
+5248,10,2.08931264,0
+5249,10,1.971095554,0
+5250,10,1.971095554,0
+5251,10,1.971095554,0
+5252,10,1.971095554,0
+5253,10,1.971095554,0
+5254,10,1.971095554,0
+5255,10,1.971095554,0
+5256,10,1.971095554,0
+5257,10,1.971095554,0
+5258,10,1.971095554,0
+5259,10,1.971095554,0
+5260,10,1.971095554,0
+5261,10,1.971095554,0
+5262,10,1.971095554,0
+5263,10,1.971095554,0
+5264,10,1.971095554,0
+5265,10,1.971095554,0
+5266,10,1.971095554,0
+5267,10,1.971095554,0
+5268,10,1.971095554,0
+5269,10,1.852878469,0
+5270,10,1.852878469,0
+5271,10,1.852878469,0
+5272,10,1.852878469,0
+5273,10,1.852878469,0
+5274,10,1.852878469,0
+5275,10,1.852878469,0
+5276,10,1.852878469,0
+5277,10,1.852878469,0
+5278,10,1.852878469,0
+5279,10,1.852878469,0
+5280,10,1.852878469,0
+5281,10,1.852878469,0
+5282,10,1.852878469,0
+5283,10,1.852878469,0
+5284,10,1.852878469,0
+5285,10,1.852878469,0
+5286,10,1.852878469,0
+5287,10,1.852878469,0
+5288,10,1.852878469,0
+5289,10,1.734661384,0
+5290,10,1.734661384,0
+5291,10,1.734661384,0
+5292,10,1.734661384,0
+5293,10,1.734661384,0
+5294,10,1.734661384,0
+5295,10,1.734661384,0
+5296,10,1.734661384,0
+5297,10,1.734661384,0
+5298,10,1.734661384,0
+5299,10,1.734661384,0
+5300,10,1.734661384,0
+5301,10,1.734661384,0
+5302,10,1.734661384,0
+5303,10,1.734661384,0
+5304,10,1.734661384,0
+5305,10,1.734661384,0
+5306,10,1.734661384,0
+5307,10,1.734661384,0
+5308,10,1.734661384,0
+5309,10,1.550063645,0
+5310,10,1.550063645,0
+5311,10,1.550063645,0
+5312,10,1.550063645,0
+5313,10,1.550063645,0
+5314,10,1.550063645,0
+5315,10,1.550063645,0
+5316,10,1.550063645,0
+5317,10,1.550063645,0
+5318,10,1.550063645,0
+5319,10,1.550063645,0
+5320,10,1.550063645,0
+5321,10,1.550063645,0
+5322,10,1.550063645,0
+5323,10,1.550063645,0
+5324,10,1.550063645,0
+5325,10,1.550063645,0
+5326,10,1.550063645,0
+5327,10,1.550063645,0
+5328,10,1.550063645,0
+5329,10,1.432001836,0
+5330,10,1.432001836,0
+5331,10,1.432001836,0
+5332,10,1.432001836,0
+5333,10,1.432001836,0
+5334,10,1.432001836,0
+5335,10,1.432001836,0
+5336,10,1.432001836,0
+5337,10,1.432001836,0
+5338,10,1.432001836,0
+5339,10,1.432001836,0
+5340,10,1.432001836,0
+5341,10,1.432001836,0
+5342,10,1.432001836,0
+5343,10,1.432001836,0
+5344,10,1.432001836,0
+5345,10,1.432001836,0
+5346,10,1.432001836,0
+5347,10,1.432001836,0
+5348,10,1.432001836,0
+5349,10,1.432001836,0
+5350,10,1.432001836,0
+5351,10,1.432001836,0
+5352,10,1.432001836,0
+5353,10,1.432001836,0
+5354,10,1.432001836,0
+5355,10,1.432001836,0
+5356,10,1.432001836,0
+5357,10,1.432001836,0
+5358,10,1.432001836,0
+5359,10,1.299240529,0
+5360,10,1.299240529,0
+5361,10,1.299240529,0
+5362,10,1.299240529,0
+5363,10,1.299240529,0
+5364,10,1.299240529,0
+5365,10,1.299240529,0
+5366,10,1.299240529,0
+5367,10,1.299240529,0
+5368,10,1.299240529,0
+5369,10,1.299240529,0
+5370,10,1.299240529,0
+5371,10,1.299240529,0
+5372,10,1.299240529,0
+5373,10,1.299240529,0
+5374,10,1.299240529,0
+5375,10,1.299240529,0
+5376,10,1.299240529,0
+5377,10,1.299240529,0
+5378,10,1.299240529,0
+5379,10,1.299240529,0
+5380,10,1.299240529,0
+5381,10,1.299240529,0
+5382,10,1.299240529,0
+5383,10,1.299240529,0
+5384,10,1.299240529,0
+5385,10,1.299240529,0
+5386,10,1.299240529,0
+5387,10,1.299240529,0
+5388,10,1.299240529,0
+5389,10,1.166479223,0
+5390,10,1.166479223,0
+5391,10,1.166479223,0
+5392,10,1.166479223,0
+5393,10,1.166479223,0
+5394,10,1.166479223,0
+5395,10,1.166479223,0
+5396,10,1.166479223,0
+5397,10,1.166479223,0
+5398,10,1.166479223,0
+5399,10,1.166479223,0
+5400,10,1.166479223,0
+5401,10,1.166479223,0
+5402,10,1.166479223,0
+5403,10,1.166479223,0
+5404,10,1.166479223,0
+5405,10,1.166479223,0
+5406,10,1.166479223,0
+5407,10,1.166479223,0
+5408,10,1.166479223,0
+5409,10,1.166479223,0
+5410,10,1.166479223,0
+5411,10,1.166479223,0
+5412,10,1.166479223,0
+5413,10,1.166479223,0
+5414,10,1.166479223,0
+5415,10,1.166479223,0
+5416,10,1.166479223,0
+5417,10,1.166479223,0
+5418,10,1.166479223,0
+5419,10,1.033717916,0
+5420,10,1.033717916,0
+5421,10,1.033717916,0
+5422,10,1.033717916,0
+5423,10,1.033717916,0
+5424,10,1.033717916,0
+5425,10,1.033717916,0
+5426,10,1.033717916,0
+5427,10,1.033717916,0
+5428,10,1.033717916,0
+5429,10,1.033717916,0
+5430,10,1.033717916,0
+5431,10,1.033717916,0
+5432,10,1.033717916,0
+5433,10,1.033717916,0
+5434,10,1.033717916,0
+5435,10,1.033717916,0
+5436,10,1.033717916,0
+5437,10,1.033717916,0
+5438,10,1.033717916,0
+5439,10,1.033717916,0
+5440,10,1.033717916,0
+5441,10,1.033717916,0
+5442,10,1.033717916,0
+5443,10,1.033717916,0
+5444,10,1.033717916,0
+5445,10,1.033717916,0
+5446,10,1.033717916,0
+5447,10,1.033717916,0
+5448,10,1.033717916,0
+5449,10,0.90095661,0
+5450,10,0.90095661,0
+5451,10,0.90095661,0
+5452,10,0.90095661,0
+5453,10,0.90095661,0
+5454,10,0.90095661,0
+5455,10,0.90095661,0
+5456,10,0.90095661,0
+5457,10,0.90095661,0
+5458,10,0.90095661,0
+5459,10,0.90095661,0
+5460,10,0.90095661,0
+5461,10,0.90095661,0
+5462,10,0.90095661,0
+5463,10,0.90095661,0
+5464,10,0.90095661,0
+5465,10,0.90095661,0
+5466,10,0.90095661,0
+5467,10,0.90095661,0
+5468,10,0.90095661,0
+5469,10,0.90095661,0
+5470,10,0.90095661,0
+5471,10,0.90095661,0
+5472,10,0.90095661,0
+5473,10,0.90095661,0
+5474,10,0.90095661,0
+5475,10,0.90095661,0
+5476,10,0.90095661,0
+5477,10,0.90095661,0
+5478,10,0.90095661,0
+5479,10,0.768195303,0
+5480,10,0.768195303,0
+5481,10,0.768195303,0
+5482,10,0.768195303,0
+5483,10,0.768195303,0
+5484,10,0.768195303,0
+5485,10,0.768195303,0
+5486,10,0.768195303,0
+5487,10,0.768195303,0
+5488,10,0.768195303,0
+5489,10,0.768195303,0
+5490,10,0.768195303,0
+5491,10,0.768195303,0
+5492,10,0.768195303,0
+5493,10,0.768195303,0
+5494,10,0.768195303,0
+5495,10,0.768195303,0
+5496,10,0.768195303,0
+5497,10,0.768195303,0
+5498,10,0.768195303,0
+5499,10,0.768195303,0
+5500,10,0.768195303,0
+5501,10,0.768195303,0
+5502,10,0.768195303,0
+5503,10,0.768195303,0
+5504,10,0.768195303,0
+5505,10,0.768195303,0
+5506,10,0.768195303,0
+5507,10,0.768195303,0
+5508,10,0.768195303,0
+5509,10,0.768195303,0
+5510,10,0.768195303,0
+5511,10,0.768195303,0
+5512,10,0.768195303,0
+5513,10,0.768195303,0
+5514,10,0.768195303,0
+5515,10,0.768195303,0
+5516,10,0.768195303,0
+5517,10,0.768195303,0
+5518,10,0.768195303,0
+5519,10,0.768195303,0
+5520,10,0.768195303,0
+5521,10,0.768195303,0
+5522,10,0.768195303,0
+5523,10,0.768195303,0
+5524,10,0.768195303,0
+5525,10,0.768195303,0
+5526,10,0.768195303,0
+5527,10,0.768195303,0
+5528,10,0.768195303,0
+5529,10,0.768195303,0
+5530,10,0.768195303,0
+5531,10,0.768195303,0
+5532,10,0.768195303,0
+5533,10,0.768195303,0
+5534,10,0.768195303,0
+5535,10,0.768195303,0
+5536,10,0.768195303,0
+5537,10,0.768195303,0
+5538,10,0.768195303,0
+5539,10,0.768195303,0
+5540,10,0.768195303,0
+5541,10,0.768195303,0
+5542,10,0.768195303,0
+5543,10,0.768195303,0
+5544,10,0.768195303,0
+5545,10,0.768195303,0
+5546,10,0.768195303,0
+5547,10,0.768195303,0
+5548,10,0.768195303,0
+5549,10,0.768195303,0
+5550,10,0.768195303,0
+5551,10,0.768195303,0
+5552,10,0.768195303,0
+5553,10,0.768195303,0
+5554,10,0.768195303,0
+5555,10,0.768195303,0
+5556,10,0.768195303,0
+5557,10,0.768195303,0
+5558,10,0.768195303,0
+5559,10,0.768195303,0
+5560,10,0.768195303,0
+5561,10,0.768195303,0
+5562,10,0.768195303,0
+5563,10,0.768195303,0
+5564,10,0.768195303,0
+5565,10,0.768195303,0
+5566,10,0.768195303,0
+5567,10,0.768195303,0
+5568,10,0.768195303,0
+5569,10,0.768195303,0
+5570,10,0.768195303,0
+5571,10,0.768195303,0
+5572,10,0.768195303,0
+5573,10,0.768195303,0
+5574,10,0.768195303,0
+5575,10,0.768195303,0
+5576,10,0.768195303,0
+5577,10,0.768195303,0
+5578,10,0.768195303,0
+5579,10,0.768195303,0
+5580,10,0.768195303,0
+5581,10,0.768195303,0
+5582,10,0.768195303,0
+5583,10,0.768195303,0
+5584,10,0.768195303,0
+5585,10,0.768195303,0
+5586,10,0.768195303,0
+5587,10,0.768195303,0
+5588,10,0.768195303,0
+5589,10,0.768195303,0
+5590,10,0.768195303,0
+5591,10,0.768195303,0
+5592,10,0.768195303,0
+5593,10,0.768195303,0
+5594,10,0.768195303,0
+5595,10,0.768195303,0
+5596,10,0.768195303,0
+5597,10,0.768195303,0
+5598,10,0.768195303,0
+5599,10,0.768195303,0
+5600,10,0.768195303,0
+5601,10,0.768195303,0
+5602,10,0.768195303,0
+5603,10,0.768195303,0
+5604,10,0.768195303,0
+5605,10,0.768195303,0
+5606,10,0.768195303,0
+5607,10,0.768195303,0
+5608,10,0.768195303,0
+5609,10,0.768195303,0
+5610,10,0.768195303,0
+5611,10,0.768195303,0
+5612,10,0.768195303,0
+5613,10,0.768195303,0
+5614,10,0.768195303,0
+5615,10,0.768195303,0
+5616,10,0.768195303,0
+5617,10,0.768195303,0
+5618,10,0.768195303,0
+5619,10,0.768195303,0
+5620,10,0.768195303,0
+5621,10,0.768195303,0
+5622,10,0.768195303,0
+5623,10,0.768195303,0
+5624,10,0.768195303,0
+5625,10,0.768195303,0
+5626,10,0.768195303,0
+5627,10,0.768195303,0
+5628,10,0.768195303,0
+5629,10,0.768195303,0
+5630,10,0.768195303,0
+5631,10,0.768195303,0
+5632,10,0.768195303,0
+5633,10,0.768195303,0
+5634,10,0.768195303,0
+5635,10,0.768195303,0
+5636,10,0.768195303,0
+5637,10,0.768195303,0
+5638,10,0.768195303,0
+5639,10,0.768195303,0
+5640,10,0.768195303,0
+5641,10,0.768195303,0
+5642,10,0.768195303,0
+5643,10,0.768195303,0
+5644,10,0.768195303,0
+5645,10,0.768195303,0
+5646,10,0.768195303,0
+5647,10,0.768195303,0
+5648,10,0.768195303,0
+5649,10,0.768195303,0
+5650,10,0.768195303,0
+5651,10,0.768195303,0
+5652,10,0.768195303,0
+5653,10,0.768195303,0
+5654,10,0.768195303,0
+5655,10,0.768195303,0
+5656,10,0.768195303,0
+5657,10,0.768195303,0
+5658,10,0.768195303,0
+5659,10,0.768195303,0
+5660,10,0.768195303,0
+5661,10,0.768195303,0
+5662,10,0.768195303,0
+5663,10,0.768195303,0
+5664,10,0.768195303,0
+5665,10,0.768195303,0
+5666,10,0.768195303,0
+5667,10,0.768195303,0
+5668,10,0.768195303,0
+5669,10,0.768195303,0
+5670,10,0.768195303,0
+5671,10,0.768195303,0
+5672,10,0.768195303,0
+5673,10,0.768195303,0
+5674,10,0.768195303,0
+5675,10,0.768195303,0
+5676,10,0.768195303,0
+5677,10,0.768195303,0
+5678,10,0.768195303,0
+5679,10,0.768195303,0
+5680,10,0.768195303,0
+5681,10,0.768195303,0
+5682,10,0.768195303,0
+5683,10,0.768195303,0
+5684,10,0.768195303,0
+5685,10,0.768195303,0
+5686,10,0.768195303,0
+5687,10,0.768195303,0
+5688,10,0.768195303,0
+5689,10,0.768195303,0
+5690,10,0.768195303,0
+5691,10,0.768195303,0
+5692,10,0.768195303,0
+5693,10,0.768195303,0
+5694,10,0.768195303,0
+5695,10,0.768195303,0
+5696,10,0.768195303,0
+5697,10,0.768195303,0
+5698,10,0.768195303,0
+5699,10,0.768195303,0
+5700,10,0.768195303,0
+5701,10,0.768195303,0
+5702,10,0.768195303,0
+5703,10,0.768195303,0
+5704,10,0.768195303,0
+5705,10,0.768195303,0
+5706,10,0.768195303,0
+5707,10,0.768195303,0
+5708,10,0.768195303,0
+5709,10,0.768195303,0
+5710,10,0.768195303,0
+5711,10,0.768195303,0
+5712,10,0.768195303,0
+5713,10,0.768195303,0
+5714,10,0.768195303,0
+5715,10,0.768195303,0
+5716,10,0.768195303,0
+5717,10,0.768195303,0
+5718,10,0.768195303,0
+5719,10,0.768195303,0
+5720,10,0.768195303,0
+5721,10,0.768195303,0
+5722,10,0.768195303,0
+5723,10,0.768195303,0
+5724,10,0.768195303,0
+5725,10,0.768195303,0
+5726,10,0.768195303,0
+5727,10,0.768195303,0
+5728,10,0.768195303,0
+5729,10,0.768195303,0
+5730,10,0.768195303,0
+5731,10,0.768195303,0
+5732,10,0.768195303,0
+5733,10,0.768195303,0
+5734,10,0.768195303,0
+5735,10,0.768195303,0
+5736,10,0.768195303,0
+5737,10,0.768195303,0
+5738,10,0.768195303,0
+5739,10,0.768195303,0
+5740,10,0.768195303,0
+5741,10,0.768195303,0
+5742,10,0.768195303,0
+5743,10,0.768195303,0
+5744,10,0.768195303,0
+5745,10,0.768195303,0
+5746,10,0.768195303,0
+5747,10,0.768195303,0
+5748,10,0.768195303,0
+5749,10,0.768195303,0
+5750,10,0.768195303,0
+5751,10,0.768195303,0
+5752,10,0.768195303,0
+5753,10,0.768195303,0
+5754,10,0.768195303,0
+5755,10,0.768195303,0
+5756,10,0.768195303,0
+5757,10,0.768195303,0
+5758,10,0.768195303,0
+5759,10,0.768195303,0
+5760,10,0.768195303,0
+5761,10,0.768195303,0
+5762,10,0.768195303,0
+5763,10,0.768195303,0
+5764,10,0.768195303,0
+5765,10,0.768195303,0
+5766,10,0.768195303,0
+5767,10,0.768195303,0
+5768,10,0.768195303,0
+5769,10,0.768195303,0
+5770,10,0.768195303,0
+5771,10,0.768195303,0
+5772,10,0.768195303,0
+5773,10,0.768195303,0
+5774,10,0.768195303,0
+5775,10,0.768195303,0
+5776,10,0.768195303,0
+5777,10,0.768195303,0
+5778,10,0.768195303,0
+5779,10,0.768195303,0
+5780,10,0.768195303,0
+5781,10,0.768195303,0
+5782,10,0.768195303,0
+5783,10,0.768195303,0
+5784,10,0.768195303,0
+5785,10,0.768195303,0
+5786,10,0.768195303,0
+5787,10,0.768195303,0
+5788,10,0.768195303,0
+5789,10,0.768195303,0
+5790,10,0.768195303,0
+5791,10,0.768195303,0
+5792,10,0.768195303,0
+5793,10,0.768195303,0
+5794,10,0.768195303,0
+5795,10,0.768195303,0
+5796,10,0.768195303,0
+5797,10,0.768195303,0
+5798,10,0.768195303,0
+5799,10,0.768195303,0
+5800,10,0.768195303,0
+5801,10,0.768195303,0
+5802,10,0.768195303,0
+5803,10,0.768195303,0
+5804,10,0.768195303,0
+5805,10,0.768195303,0
+5806,10,0.768195303,0
+5807,10,0.768195303,0
+5808,10,0.768195303,0
+5809,10,0.768195303,0
+5810,10,0.768195303,0
+5811,10,0.768195303,0
+5812,10,0.768195303,0
+5813,10,0.768195303,0
+5814,10,0.768195303,0
+5815,10,0.768195303,0
+5816,10,0.768195303,0
+5817,10,0.768195303,0
+5818,10,0.768195303,0
+5819,10,0.768195303,0
+5820,10,0.768195303,0
+5821,10,0.768195303,0
+5822,10,0.768195303,0
+5823,10,0.768195303,0
+5824,10,0.768195303,0
+5825,10,0.768195303,0
+5826,10,0.768195303,0
+5827,10,0.768195303,0
+5828,10,0.768195303,0
+5829,10,0.768195303,0
+5830,10,0.768195303,0
+5831,10,0.768195303,0
+5832,10,0.768195303,0
+5833,10,0.768195303,0
+5834,10,0.768195303,0
+5835,10,0.768195303,0
+5836,10,0.768195303,0
+5837,10,0.768195303,0
+5838,10,0.768195303,0
+5839,10,0.768195303,0
+5840,10,0.768195303,0
+5841,10,0.768195303,0
+5842,10,0.768195303,0
+5843,10,0.768195303,0
+5844,10,0.768195303,0
+5845,10,0.768195303,0
+5846,10,0.768195303,0
+5847,10,0.768195303,0
+5848,10,0.768195303,0
+5849,10,0.768195303,0
+5850,10,0.768195303,0
+5851,10,0.768195303,0
+5852,10,0.768195303,0
+5853,10,0.768195303,0
+5854,10,0.768195303,0
+5855,10,0.768195303,0
+5856,10,0.768195303,0
+5857,10,0.768195303,0
+5858,10,0.768195303,0
+5859,10,0.768195303,0
+5860,10,0.768195303,0
+5861,10,0.768195303,0
+5862,10,0.768195303,0
+5863,10,0.768195303,0
+5864,10,0.768195303,0
+5865,10,0.768195303,0
+5866,10,0.768195303,0
+5867,10,0.768195303,0
+5868,10,0.768195303,0
+5869,10,0.768195303,0
+5870,10,0.768195303,0
+5871,10,0.768195303,0
+5872,10,0.768195303,0
+5873,10,0.768195303,0
+5874,10,0.768195303,0
+5875,10,0.768195303,0
+5876,10,0.768195303,0
+5877,10,0.768195303,0
+5878,10,0.768195303,0
+5879,10,0.768195303,0
+5880,10,0.768195303,0
+5881,10,0.768195303,0
+5882,10,0.768195303,0
+5883,10,0.768195303,0
+5884,10,0.768195303,0
+5885,10,0.768195303,0
+5886,10,0.768195303,0
+5887,10,0.768195303,0
+5888,10,0.768195303,0
+5889,10,0.768195303,0
+5890,10,0.768195303,0
+5891,10,0.768195303,0
+5892,10,0.768195303,0
+5893,10,0.768195303,0
+5894,10,0.768195303,0
+5895,10,0.768195303,0
+5896,10,0.768195303,0
+5897,10,0.768195303,0
+5898,10,0.768195303,0
+5899,10,0.768195303,0
+5900,10,0.768195303,0
+5901,10,0.768195303,0
+5902,10,0.768195303,0
+5903,10,0.768195303,0
+5904,10,0.768195303,0
+5905,10,0.768195303,0
+5906,10,0.768195303,0
+5907,10,0.768195303,0
+5908,10,0.768195303,0
+5909,10,0.659444901,0
+5910,10,0.659444901,0
+5911,10,0.659444901,0
+5912,10,0.659444901,0
+5913,10,0.659444901,0
+5914,10,0.659444901,0
+5915,10,0.659444901,0
+5916,10,0.659444901,0
+5917,10,0.659444901,0
+5918,10,0.659444901,0
+5919,10,0.659444901,0
+5920,10,0.659444901,0
+5921,10,0.659444901,0
+5922,10,0.659444901,0
+5923,10,0.659444901,0
+5924,10,0.659444901,0
+5925,10,0.659444901,0
+5926,10,0.659444901,0
+5927,10,0.659444901,0
+5928,10,0.659444901,0
+5929,10,0.659444901,0
+5930,10,0.659444901,0
+5931,10,0.659444901,0
+5932,10,0.659444901,0
+5933,10,0.659444901,0
+5934,10,0.659444901,0
+5935,10,0.659444901,0
+5936,10,0.659444901,0
+5937,10,0.659444901,0
+5938,10,0.659444901,0
+5939,10,0.659444901,0
+5940,10,0.659444901,0
+5941,10,0.659444901,0
+5942,10,0.659444901,0
+5943,10,0.659444901,0
+5944,10,0.659444901,0
+5945,10,0.659444901,0
+5946,10,0.659444901,0
+5947,10,0.659444901,0
+5948,10,0.659444901,0
+5949,10,0.659444901,0
+5950,10,0.659444901,0
+5951,10,0.659444901,0
+5952,10,0.659444901,0
+5953,10,0.659444901,0
+5954,10,0.659444901,0
+5955,10,0.659444901,0
+5956,10,0.659444901,0
+5957,10,0.659444901,0
+5958,10,0.659444901,0
+5959,10,0.659444901,0
+5960,10,0.659444901,0
+5961,10,0.659444901,0
+5962,10,0.659444901,0
+5963,10,0.659444901,0
+5964,10,0.659444901,0
+5965,10,0.659444901,0
+5966,10,0.659444901,0
+5967,10,0.659444901,0
+5968,10,0.659444901,0
+5969,10,0.659444901,0
+5970,10,0.659444901,0
+5971,10,0.659444901,0
+5972,10,0.659444901,0
+5973,10,0.659444901,0
+5974,10,0.659444901,0
+5975,10,0.659444901,0
+5976,10,0.659444901,0
+5977,10,0.659444901,0
+5978,10,0.659444901,0
+5979,10,0.659444901,0
+5980,10,0.659444901,0
+5981,10,0.659444901,0
+5982,10,0.659444901,0
+5983,10,0.659444901,0
+5984,10,0.659444901,0
+5985,10,0.659444901,0
+5986,10,0.659444901,0
+5987,10,0.659444901,0
+5988,10,0.659444901,0
+5989,10,0.659444901,0
+5990,10,0.659444901,0
+5991,10,0.659444901,0
+5992,10,0.659444901,0
+5993,10,0.659444901,0
+5994,10,0.659444901,0
+5995,10,0.659444901,0
+5996,10,0.659444901,0
+5997,10,0.659444901,0
+5998,10,0.659444901,0
+5999,10,0.659444901,0
+6000,10,0.659444901,0
+6001,10,0.659444901,0
+6002,10,0.659444901,0
+6003,10,0.659444901,0
+6004,10,0.659444901,0
+6005,10,0.659444901,0
+6006,10,0.659444901,0
+6007,10,0.659444901,0
+6008,10,0.659444901,0
+6009,10,0.659444901,0
+6010,10,0.659444901,0
+6011,10,0.659444901,0
+6012,10,0.659444901,0
+6013,10,0.659444901,0
+6014,10,0.659444901,0
+6015,10,0.659444901,0
+6016,10,0.659444901,0
+6017,10,0.659444901,0
+6018,10,0.659444901,0
+6019,10,0.659444901,0
+6020,10,0.659444901,0
+6021,10,0.659444901,0
+6022,10,0.659444901,0
+6023,10,0.659444901,0
+6024,10,0.659444901,0
+6025,10,0.659444901,0
+6026,10,0.659444901,0
+6027,10,0.659444901,0
+6028,10,0.659444901,0
+6029,10,0.553235856,0
+6030,10,0.553235856,0
+6031,10,0.553235856,0
+6032,10,0.553235856,0
+6033,10,0.553235856,0
+6034,10,0.553235856,0
+6035,10,0.553235856,0
+6036,10,0.553235856,0
+6037,10,0.553235856,0
+6038,10,0.553235856,0
+6039,10,0.553235856,0
+6040,10,0.553235856,0
+6041,10,0.553235856,0
+6042,10,0.553235856,0
+6043,10,0.553235856,0
+6044,10,0.553235856,0
+6045,10,0.553235856,0
+6046,10,0.553235856,0
+6047,10,0.553235856,0
+6048,10,0.553235856,0
+6049,10,0.553235856,0
+6050,10,0.553235856,0
+6051,10,0.553235856,0
+6052,10,0.553235856,0
+6053,10,0.553235856,0
+6054,10,0.553235856,0
+6055,10,0.553235856,0
+6056,10,0.553235856,0
+6057,10,0.553235856,0
+6058,10,0.553235856,0
+6059,10,0.553235856,0
+6060,10,0.553235856,0
+6061,10,0.553235856,0
+6062,10,0.553235856,0
+6063,10,0.553235856,0
+6064,10,0.553235856,0
+6065,10,0.553235856,0
+6066,10,0.553235856,0
+6067,10,0.553235856,0
+6068,10,0.553235856,0
+6069,10,0.553235856,0
+6070,10,0.553235856,0
+6071,10,0.553235856,0
+6072,10,0.553235856,0
+6073,10,0.553235856,0
+6074,10,0.553235856,0
+6075,10,0.553235856,0
+6076,10,0.553235856,0
+6077,10,0.553235856,0
+6078,10,0.553235856,0
+6079,10,0.553235856,0
+6080,10,0.553235856,0
+6081,10,0.553235856,0
+6082,10,0.553235856,0
+6083,10,0.553235856,0
+6084,10,0.553235856,0
+6085,10,0.553235856,0
+6086,10,0.553235856,0
+6087,10,0.553235856,0
+6088,10,0.553235856,0
+6089,10,0.553235856,0
+6090,10,0.553235856,0
+6091,10,0.553235856,0
+6092,10,0.553235856,0
+6093,10,0.553235856,0
+6094,10,0.553235856,0
+6095,10,0.553235856,0
+6096,10,0.553235856,0
+6097,10,0.553235856,0
+6098,10,0.553235856,0
+6099,10,0.553235856,0
+6100,10,0.553235856,0
+6101,10,0.553235856,0
+6102,10,0.553235856,0
+6103,10,0.553235856,0
+6104,10,0.553235856,0
+6105,10,0.553235856,0
+6106,10,0.553235856,0
+6107,10,0.553235856,0
+6108,10,0.553235856,0
+6109,10,0.851024901,0
+6110,10,0.851024901,0
+6111,10,0.851024901,0
+6112,10,0.851024901,0
+6113,10,0.851024901,0
+6114,10,0.851024901,0
+6115,10,0.851024901,0
+6116,10,0.851024901,0
+6117,10,0.851024901,0
+6118,10,0.851024901,0
+6119,10,1.056041484,0
+6120,10,1.056041484,0
+6121,10,1.056041484,0
+6122,10,1.056041484,0
+6123,10,1.056041484,0
+6124,10,1.056041484,0
+6125,10,1.056041484,0
+6126,10,1.056041484,0
+6127,10,1.056041484,0
+6128,10,1.056041484,0
+6129,10,1.261058067,0
+6130,10,1.261058067,0
+6131,10,1.261058067,0
+6132,10,1.261058067,0
+6133,10,1.261058067,0
+6134,10,1.261058067,0
+6135,10,1.261058067,0
+6136,10,1.261058067,0
+6137,10,1.261058067,0
+6138,10,1.261058067,0
+6139,10,1.46607465,0
+6140,10,1.46607465,0
+6141,10,1.46607465,0
+6142,10,1.46607465,0
+6143,10,1.46607465,0
+6144,10,1.46607465,0
+6145,10,1.46607465,0
+6146,10,1.46607465,0
+6147,10,1.46607465,0
+6148,10,1.46607465,0
+6149,10,1.671091233,0
+6150,10,1.671091233,0
+6151,10,1.671091233,0
+6152,10,1.671091233,0
+6153,10,1.671091233,0
+6154,10,1.671091233,0
+6155,10,1.671091233,0
+6156,10,1.671091233,0
+6157,10,1.671091233,0
+6158,10,1.671091233,0
+6159,10,1.876107816,0
+6160,10,1.876107816,0
+6161,10,1.876107816,0
+6162,10,1.876107816,0
+6163,10,1.876107816,0
+6164,10,1.876107816,0
+6165,10,1.876107816,0
+6166,10,1.876107816,0
+6167,10,1.876107816,0
+6168,10,1.876107816,0
+6169,10,2.081124399,0
+6170,10,2.081124399,0
+6171,10,2.081124399,0
+6172,10,2.081124399,0
+6173,10,2.081124399,0
+6174,10,2.081124399,0
+6175,10,2.081124399,0
+6176,10,2.081124399,0
+6177,10,2.081124399,0
+6178,10,2.081124399,0
+6179,10,2.286140982,0
+6180,10,2.286140982,0
+6181,10,2.286140982,0
+6182,10,2.286140982,0
+6183,10,2.286140982,0
+6184,10,2.286140982,0
+6185,10,2.286140982,0
+6186,10,2.286140982,0
+6187,10,2.286140982,0
+6188,10,2.286140982,0
+6189,10,2.491157564,0
+6190,10,2.491157564,0
+6191,10,2.491157564,0
+6192,10,2.491157564,0
+6193,10,2.491157564,0
+6194,10,2.491157564,0
+6195,10,2.491157564,0
+6196,10,2.491157564,0
+6197,10,2.491157564,0
+6198,10,2.491157564,0
+6199,10,2.691878167,0
+6200,10,2.691878167,0
+6201,10,2.691878167,0
+6202,10,2.691878167,0
+6203,10,2.691878167,0
+6204,10,2.691878167,0
+6205,10,2.691878167,0
+6206,10,2.691878167,0
+6207,10,2.691878167,0
+6208,10,2.691878167,0
+6209,10,2.875414851,0
+6210,10,2.875414851,0
+6211,10,2.875414851,0
+6212,10,2.875414851,0
+6213,10,2.875414851,0
+6214,10,2.875414851,0
+6215,10,2.875414851,0
+6216,10,2.875414851,0
+6217,10,2.875414851,0
+6218,10,2.875414851,0
+6219,10,3.058951534,0
+6220,10,3.058951534,0
+6221,10,3.058951534,0
+6222,10,3.058951534,0
+6223,10,3.058951534,0
+6224,10,3.058951534,0
+6225,10,3.058951534,0
+6226,10,3.058951534,0
+6227,10,3.058951534,0
+6228,10,3.058951534,0
+6229,10,3.242488218,0
+6230,10,3.242488218,0
+6231,10,3.242488218,0
+6232,10,3.242488218,0
+6233,10,3.242488218,0
+6234,10,3.242488218,0
+6235,10,3.242488218,0
+6236,10,3.242488218,0
+6237,10,3.242488218,0
+6238,10,3.242488218,0
+6239,10,3.426024901,0
+6240,10,3.426024901,0
+6241,10,3.426024901,0
+6242,10,3.426024901,0
+6243,10,3.426024901,0
+6244,10,3.426024901,0
+6245,10,3.426024901,0
+6246,10,3.426024901,0
+6247,10,3.426024901,0
+6248,10,3.426024901,0
+6249,10,3.609561585,0
+6250,10,3.609561585,0
+6251,10,3.609561585,0
+6252,10,3.609561585,0
+6253,10,3.609561585,0
+6254,10,3.609561585,0
+6255,10,3.609561585,0
+6256,10,3.609561585,0
+6257,10,3.609561585,0
+6258,10,3.609561585,0
+6259,10,3.793098268,0
+6260,10,3.793098268,0
+6261,10,3.793098268,0
+6262,10,3.793098268,0
+6263,10,3.793098268,0
+6264,10,3.793098268,0
+6265,10,3.793098268,0
+6266,10,3.793098268,0
+6267,10,3.793098268,0
+6268,10,3.793098268,0
+6269,10,3.976634951,0
+6270,10,3.976634951,0
+6271,10,3.976634951,0
+6272,10,3.976634951,0
+6273,10,3.976634951,0
+6274,10,3.976634951,0
+6275,10,3.976634951,0
+6276,10,3.976634951,0
+6277,10,3.976634951,0
+6278,10,3.976634951,0
+6279,10,4.160171635,0
+6280,10,4.160171635,0
+6281,10,4.160171635,0
+6282,10,4.160171635,0
+6283,10,4.160171635,0
+6284,10,4.160171635,0
+6285,10,4.160171635,0
+6286,10,4.160171635,0
+6287,10,4.160171635,0
+6288,10,4.160171635,0
+6289,10,4.343708318,0
+6290,10,4.343708318,0
+6291,10,4.343708318,0
+6292,10,4.343708318,0
+6293,10,4.343708318,0
+6294,10,4.343708318,0
+6295,10,4.343708318,0
+6296,10,4.343708318,0
+6297,10,4.343708318,0
+6298,10,4.343708318,0
+6299,10,4.343708318,0
+6300,10,4.343708318,0
+6301,10,4.343708318,0
+6302,10,4.343708318,0
+6303,10,4.343708318,0
+6304,10,4.343708318,0
+6305,10,4.343708318,0
+6306,10,4.343708318,0
+6307,10,4.343708318,0
+6308,10,4.343708318,0
+6309,10,4.343708318,0
+6310,10,4.343708318,0
+6311,10,4.343708318,0
+6312,10,4.343708318,0
+6313,10,4.343708318,0
+6314,10,4.343708318,0
+6315,10,4.343708318,0
+6316,10,4.343708318,0
+6317,10,4.343708318,0
+6318,10,4.343708318,0
+6319,10,4.343708318,0
+6320,10,4.343708318,0
+6321,10,4.343708318,0
+6322,10,4.343708318,0
+6323,10,4.343708318,0
+6324,10,4.343708318,0
+6325,10,4.343708318,0
+6326,10,4.343708318,0
+6327,10,4.343708318,0
+6328,10,4.343708318,0
+6329,10,4.343708318,0
+6330,10,4.343708318,0
+6331,10,4.343708318,0
+6332,10,4.343708318,0
+6333,10,4.343708318,0
+6334,10,4.343708318,0
+6335,10,4.343708318,0
+6336,10,4.343708318,0
+6337,10,4.343708318,0
+6338,10,4.343708318,0
+6339,10,4.343708318,0
+6340,10,4.343708318,0
+6341,10,4.343708318,0
+6342,10,4.343708318,0
+6343,10,4.343708318,0
+6344,10,4.343708318,0
+6345,10,4.343708318,0
+6346,10,4.343708318,0
+6347,10,4.343708318,0
+6348,10,4.343708318,0
+6349,10,4.343708318,0
+6350,10,4.343708318,0
+6351,10,4.343708318,0
+6352,10,4.343708318,0
+6353,10,4.343708318,0
+6354,10,4.343708318,0
+6355,10,4.343708318,0
+6356,10,4.343708318,0
+6357,10,4.343708318,0
+6358,10,4.343708318,0
+6359,10,4.343708318,0
+6360,10,4.343708318,0
+6361,10,4.343708318,0
+6362,10,4.343708318,0
+6363,10,4.343708318,0
+6364,10,4.343708318,0
+6365,10,4.343708318,0
+6366,10,4.343708318,0
+6367,10,4.343708318,0
+6368,10,4.343708318,0
+6369,10,4.343708318,0
+6370,10,4.343708318,0
+6371,10,4.343708318,0
+6372,10,4.343708318,0
+6373,10,4.343708318,0
+6374,10,4.343708318,0
+6375,10,4.343708318,0
+6376,10,4.343708318,0
+6377,10,4.343708318,0
+6378,10,4.343708318,0
+6379,10,4.232447615,0
+6380,10,4.232447615,0
+6381,10,4.232447615,0
+6382,10,4.232447615,0
+6383,10,4.232447615,0
+6384,10,4.232447615,0
+6385,10,4.232447615,0
+6386,10,4.232447615,0
+6387,10,4.232447615,0
+6388,10,4.232447615,0
+6389,10,4.232447615,0
+6390,10,4.232447615,0
+6391,10,4.232447615,0
+6392,10,4.232447615,0
+6393,10,4.232447615,0
+6394,10,4.232447615,0
+6395,10,4.232447615,0
+6396,10,4.232447615,0
+6397,10,4.232447615,0
+6398,10,4.232447615,0
+6399,10,4.232447615,0
+6400,10,4.232447615,0
+6401,10,4.232447615,0
+6402,10,4.232447615,0
+6403,10,4.232447615,0
+6404,10,4.232447615,0
+6405,10,4.232447615,0
+6406,10,4.232447615,0
+6407,10,4.232447615,0
+6408,10,4.232447615,0
+6409,10,4.232447615,0
+6410,10,4.232447615,0
+6411,10,4.232447615,0
+6412,10,4.232447615,0
+6413,10,4.232447615,0
+6414,10,4.232447615,0
+6415,10,4.232447615,0
+6416,10,4.232447615,0
+6417,10,4.232447615,0
+6418,10,4.232447615,0
+6419,10,4.232447615,0
+6420,10,4.232447615,0
+6421,10,4.232447615,0
+6422,10,4.232447615,0
+6423,10,4.232447615,0
+6424,10,4.232447615,0
+6425,10,4.232447615,0
+6426,10,4.232447615,0
+6427,10,4.232447615,0
+6428,10,4.232447615,0
+6429,10,4.232447615,0
+6430,10,4.232447615,0
+6431,10,4.232447615,0
+6432,10,4.232447615,0
+6433,10,4.232447615,0
+6434,10,4.232447615,0
+6435,10,4.232447615,0
+6436,10,4.232447615,0
+6437,10,4.232447615,0
+6438,10,4.232447615,0
+6439,10,4.232447615,0
+6440,10,4.232447615,0
+6441,10,4.232447615,0
+6442,10,4.232447615,0
+6443,10,4.232447615,0
+6444,10,4.232447615,0
+6445,10,4.232447615,0
+6446,10,4.232447615,0
+6447,10,4.232447615,0
+6448,10,4.232447615,0
+6449,10,4.232447615,0
+6450,10,4.232447615,0
+6451,10,4.232447615,0
+6452,10,4.232447615,0
+6453,10,4.232447615,0
+6454,10,4.232447615,0
+6455,10,4.232447615,0
+6456,10,4.232447615,0
+6457,10,4.232447615,0
+6458,10,4.232447615,0
+6459,10,4.232447615,0
+6460,10,4.232447615,0
+6461,10,4.232447615,0
+6462,10,4.232447615,0
+6463,10,4.232447615,0
+6464,10,4.232447615,0
+6465,10,4.232447615,0
+6466,10,4.232447615,0
+6467,10,4.232447615,0
+6468,10,4.232447615,0
+6469,20,4.232447615,0
+6470,20,4.232447615,0
+6471,20,4.232447615,0
+6472,20,4.232447615,0
+6473,20,4.232447615,0
+6474,20,4.232447615,0
+6475,20,4.232447615,0
+6476,20,4.232447615,0
+6477,20,4.232447615,0
+6478,20,4.232447615,0
+6479,20,4.232447615,0
+6480,20,4.232447615,0
+6481,20,4.232447615,0
+6482,20,4.232447615,0
+6483,20,4.232447615,0
+6484,20,4.232447615,0
+6485,20,4.232447615,0
+6486,20,4.232447615,0
+6487,20,4.232447615,0
+6488,20,4.232447615,0
+6489,20,4.232447615,0
+6490,20,4.232447615,0
+6491,20,4.232447615,0
+6492,20,4.232447615,0
+6493,20,4.232447615,0
+6494,20,4.232447615,0
+6495,20,4.232447615,0
+6496,20,4.232447615,0
+6497,20,4.232447615,0
+6498,20,4.232447615,0
+6499,20,4.232447615,0
+6500,20,4.232447615,0
+6501,20,4.232447615,0
+6502,20,4.232447615,0
+6503,20,4.232447615,0
+6504,20,4.232447615,0
+6505,20,4.232447615,0
+6506,20,4.232447615,0
+6507,20,4.232447615,0
+6508,20,4.232447615,0
+6509,20,4.232447615,0
+6510,20,4.232447615,0
+6511,20,4.232447615,0
+6512,20,4.232447615,0
+6513,20,4.232447615,0
+6514,20,4.232447615,0
+6515,20,4.232447615,0
+6516,20,4.232447615,0
+6517,20,4.232447615,0
+6518,20,4.232447615,0
+6519,20,4.232447615,0
+6520,20,4.232447615,0
+6521,20,4.232447615,0
+6522,20,4.232447615,0
+6523,20,4.232447615,0
+6524,20,4.232447615,0
+6525,20,4.232447615,0
+6526,20,4.232447615,0
+6527,20,4.232447615,0
+6528,20,4.232447615,0
+6529,20,4.232447615,0
+6530,20,4.232447615,0
+6531,20,4.232447615,0
+6532,20,4.232447615,0
+6533,20,4.232447615,0
+6534,20,4.232447615,0
+6535,20,4.232447615,0
+6536,20,4.232447615,0
+6537,20,4.232447615,0
+6538,20,4.232447615,0
+6539,20,4.232447615,0
+6540,20,4.232447615,0
+6541,20,4.232447615,0
+6542,20,4.232447615,0
+6543,20,4.232447615,0
+6544,20,4.232447615,0
+6545,20,4.232447615,0
+6546,20,4.232447615,0
+6547,20,4.232447615,0
+6548,20,4.232447615,0
+6549,20,4.232447615,0
+6550,20,4.232447615,0
+6551,20,4.232447615,0
+6552,20,4.232447615,0
+6553,20,4.232447615,0
+6554,20,4.232447615,0
+6555,20,4.232447615,0
+6556,20,4.232447615,0
+6557,20,4.232447615,0
+6558,20,4.232447615,0
+6559,20,4.232447615,0
+6560,20,4.232447615,0
+6561,20,4.232447615,0
+6562,20,4.232447615,0
+6563,20,4.232447615,0
+6564,20,4.232447615,0
+6565,20,4.232447615,0
+6566,20,4.232447615,0
+6567,20,4.232447615,0
+6568,20,4.232447615,0
+6569,20,4.232447615,0
+6570,20,4.232447615,0
+6571,20,4.232447615,0
+6572,20,4.232447615,0
+6573,20,4.232447615,0
+6574,20,4.232447615,0
+6575,20,4.232447615,0
+6576,20,4.232447615,0
+6577,20,4.232447615,0
+6578,20,4.232447615,0
+6579,20,4.232447615,0
+6580,20,4.232447615,0
+6581,20,4.232447615,0
+6582,20,4.232447615,0
+6583,20,4.232447615,0
+6584,20,4.232447615,0
+6585,20,4.232447615,0
+6586,20,4.232447615,0
+6587,20,4.232447615,0
+6588,20,4.232447615,0
+6589,20,4.232447615,0
+6590,20,4.232447615,0
+6591,20,4.232447615,0
+6592,20,4.232447615,0
+6593,20,4.232447615,0
+6594,20,4.232447615,0
+6595,20,4.232447615,0
+6596,20,4.232447615,0
+6597,20,4.232447615,0
+6598,20,4.232447615,0
+6599,20,4.232447615,0
+6600,20,4.232447615,0
+6601,20,4.232447615,0
+6602,20,4.232447615,0
+6603,20,4.232447615,0
+6604,20,4.232447615,0
+6605,20,4.232447615,0
+6606,20,4.232447615,0
+6607,20,4.232447615,0
+6608,20,4.232447615,0
+6609,20,4.232447615,0
+6610,20,4.232447615,0
+6611,20,4.232447615,0
+6612,20,4.232447615,0
+6613,20,4.232447615,0
+6614,20,4.232447615,0
+6615,20,4.232447615,0
+6616,20,4.232447615,0
+6617,20,4.232447615,0
+6618,20,4.232447615,0
+6619,20,4.232447615,0
+6620,20,4.232447615,0
+6621,20,4.232447615,0
+6622,20,4.232447615,0
+6623,20,4.232447615,0
+6624,20,4.232447615,0
+6625,20,4.232447615,0
+6626,20,4.232447615,0
+6627,20,4.232447615,0
+6628,20,4.232447615,0
+6629,20,4.232447615,0
+6630,20,4.232447615,0
+6631,20,4.232447615,0
+6632,20,4.232447615,0
+6633,20,4.232447615,0
+6634,20,4.232447615,0
+6635,20,4.232447615,0
+6636,20,4.232447615,0
+6637,20,4.232447615,0
+6638,20,4.232447615,0
+6639,20,4.232447615,0
+6640,20,4.232447615,0
+6641,20,4.232447615,0
+6642,20,4.232447615,0
+6643,20,4.232447615,0
+6644,20,4.232447615,0
+6645,20,4.232447615,0
+6646,20,4.232447615,0
+6647,20,4.232447615,0
+6648,20,4.232447615,0
+6649,20,4.232447615,0
+6650,20,4.232447615,0
+6651,20,4.232447615,0
+6652,20,4.232447615,0
+6653,20,4.232447615,0
+6654,20,4.232447615,0
+6655,20,4.232447615,0
+6656,20,4.232447615,0
+6657,20,4.232447615,0
+6658,20,4.232447615,0
+6659,20,4.232447615,0
+6660,20,4.232447615,0
+6661,20,4.232447615,0
+6662,20,4.232447615,0
+6663,20,4.232447615,0
+6664,20,4.232447615,0
+6665,20,4.232447615,0
+6666,20,4.232447615,0
+6667,20,4.232447615,0
+6668,20,4.232447615,0
+6669,20,4.232447615,0
+6670,20,4.232447615,0
+6671,20,4.232447615,0
+6672,20,4.232447615,0
+6673,20,4.232447615,0
+6674,20,4.232447615,0
+6675,20,4.232447615,0
+6676,20,4.232447615,0
+6677,20,4.232447615,0
+6678,20,4.232447615,0
+6679,20,4.232447615,0
+6680,20,4.232447615,0
+6681,20,4.232447615,0
+6682,20,4.232447615,0
+6683,20,4.232447615,0
+6684,20,4.232447615,0
+6685,20,4.232447615,0
+6686,20,4.232447615,0
+6687,20,4.232447615,0
+6688,20,4.232447615,0
+6689,20,4.232447615,0
+6690,20,4.232447615,0
+6691,20,4.232447615,0
+6692,20,4.232447615,0
+6693,20,4.232447615,0
+6694,20,4.232447615,0
+6695,20,4.232447615,0
+6696,20,4.232447615,0
+6697,20,4.232447615,0
+6698,20,4.232447615,0
+6699,20,4.232447615,0
+6700,20,4.232447615,0
+6701,20,4.232447615,0
+6702,20,4.232447615,0
+6703,20,4.232447615,0
+6704,20,4.232447615,0
+6705,20,4.232447615,0
+6706,20,4.232447615,0
+6707,20,4.232447615,0
+6708,20,4.232447615,0
+6709,20,4.120834951,0
+6710,20,4.120834951,0
+6711,20,4.120834951,0
+6712,20,4.120834951,0
+6713,20,4.120834951,0
+6714,20,4.120834951,0
+6715,20,4.120834951,0
+6716,20,4.120834951,0
+6717,20,4.120834951,0
+6718,20,4.120834951,0
+6719,20,4.120834951,0
+6720,20,4.120834951,0
+6721,20,4.120834951,0
+6722,20,4.120834951,0
+6723,20,4.120834951,0
+6724,20,4.120834951,0
+6725,20,4.120834951,0
+6726,20,4.120834951,0
+6727,20,4.120834951,0
+6728,20,4.120834951,0
+6729,20,4.120834951,0
+6730,20,4.120834951,0
+6731,20,4.120834951,0
+6732,20,4.120834951,0
+6733,20,4.120834951,0
+6734,20,4.120834951,0
+6735,20,4.120834951,0
+6736,20,4.120834951,0
+6737,20,4.120834951,0
+6738,20,4.120834951,0
+6739,20,4.120834951,0
+6740,20,4.120834951,0
+6741,20,4.120834951,0
+6742,20,4.120834951,0
+6743,20,4.120834951,0
+6744,20,4.120834951,0
+6745,20,4.120834951,0
+6746,20,4.120834951,0
+6747,20,4.120834951,0
+6748,20,4.120834951,0
+6749,20,4.120834951,0
+6750,20,4.120834951,0
+6751,20,4.120834951,0
+6752,20,4.120834951,0
+6753,20,4.120834951,0
+6754,20,4.120834951,0
+6755,20,4.120834951,0
+6756,20,4.120834951,0
+6757,20,4.120834951,0
+6758,20,4.120834951,0
+6759,20,3.997297062,0
+6760,20,3.997297062,0
+6761,20,3.997297062,0
+6762,20,3.997297062,0
+6763,20,3.997297062,0
+6764,20,3.997297062,0
+6765,20,3.997297062,0
+6766,20,3.997297062,0
+6767,20,3.997297062,0
+6768,20,3.997297062,0
+6769,20,3.997297062,0
+6770,20,3.997297062,0
+6771,20,3.997297062,0
+6772,20,3.997297062,0
+6773,20,3.997297062,0
+6774,20,3.997297062,0
+6775,20,3.997297062,0
+6776,20,3.997297062,0
+6777,20,3.997297062,0
+6778,20,3.997297062,0
+6779,20,3.997297062,0
+6780,20,3.997297062,0
+6781,20,3.997297062,0
+6782,20,3.997297062,0
+6783,20,3.997297062,0
+6784,20,3.997297062,0
+6785,20,3.997297062,0
+6786,20,3.997297062,0
+6787,20,3.997297062,0
+6788,20,3.997297062,0
+6789,20,3.997297062,0
+6790,20,3.997297062,0
+6791,20,3.997297062,0
+6792,20,3.997297062,0
+6793,20,3.997297062,0
+6794,20,3.997297062,0
+6795,20,3.997297062,0
+6796,20,3.997297062,0
+6797,20,3.997297062,0
+6798,20,3.997297062,0
+6799,20,3.997297062,0
+6800,20,3.997297062,0
+6801,20,3.997297062,0
+6802,20,3.997297062,0
+6803,20,3.997297062,0
+6804,20,3.997297062,0
+6805,20,3.997297062,0
+6806,20,3.997297062,0
+6807,20,3.997297062,0
+6808,20,3.997297062,0
+6809,20,3.87462872,0
+6810,20,3.87462872,0
+6811,20,3.87462872,0
+6812,20,3.87462872,0
+6813,20,3.87462872,0
+6814,20,3.87462872,0
+6815,20,3.87462872,0
+6816,20,3.87462872,0
+6817,20,3.87462872,0
+6818,20,3.87462872,0
+6819,20,3.87462872,0
+6820,20,3.87462872,0
+6821,20,3.87462872,0
+6822,20,3.87462872,0
+6823,20,3.87462872,0
+6824,20,3.87462872,0
+6825,20,3.87462872,0
+6826,20,3.87462872,0
+6827,20,3.87462872,0
+6828,20,3.87462872,0
+6829,20,3.87462872,0
+6830,20,3.87462872,0
+6831,20,3.87462872,0
+6832,20,3.87462872,0
+6833,20,3.87462872,0
+6834,20,3.87462872,0
+6835,20,3.87462872,0
+6836,20,3.87462872,0
+6837,20,3.87462872,0
+6838,20,3.87462872,0
+6839,20,3.87462872,0
+6840,20,3.87462872,0
+6841,20,3.87462872,0
+6842,20,3.87462872,0
+6843,20,3.87462872,0
+6844,20,3.87462872,0
+6845,20,3.87462872,0
+6846,20,3.87462872,0
+6847,20,3.87462872,0
+6848,20,3.87462872,0
+6849,20,3.87462872,0
+6850,20,3.87462872,0
+6851,20,3.87462872,0
+6852,20,3.87462872,0
+6853,20,3.87462872,0
+6854,20,3.87462872,0
+6855,20,3.87462872,0
+6856,20,3.87462872,0
+6857,20,3.87462872,0
+6858,20,3.87462872,0
+6859,20,3.751711936,0
+6860,20,3.751711936,0
+6861,20,3.751711936,0
+6862,20,3.751711936,0
+6863,20,3.751711936,0
+6864,20,3.751711936,0
+6865,20,3.751711936,0
+6866,20,3.751711936,0
+6867,20,3.751711936,0
+6868,20,3.751711936,0
+6869,20,3.751711936,0
+6870,20,3.751711936,0
+6871,20,3.751711936,0
+6872,20,3.751711936,0
+6873,20,3.751711936,0
+6874,20,3.751711936,0
+6875,20,3.751711936,0
+6876,20,3.751711936,0
+6877,20,3.751711936,0
+6878,20,3.751711936,0
+6879,20,3.751711936,0
+6880,20,3.751711936,0
+6881,20,3.751711936,0
+6882,20,3.751711936,0
+6883,20,3.751711936,0
+6884,20,3.751711936,0
+6885,20,3.751711936,0
+6886,20,3.751711936,0
+6887,20,3.751711936,0
+6888,20,3.751711936,0
+6889,20,3.751711936,0
+6890,20,3.751711936,0
+6891,20,3.751711936,0
+6892,20,3.751711936,0
+6893,20,3.751711936,0
+6894,20,3.751711936,0
+6895,20,3.751711936,0
+6896,20,3.751711936,0
+6897,20,3.751711936,0
+6898,20,3.751711936,0
+6899,20,3.751711936,0
+6900,20,3.751711936,0
+6901,20,3.751711936,0
+6902,20,3.751711936,0
+6903,20,3.751711936,0
+6904,20,3.751711936,0
+6905,20,3.751711936,0
+6906,20,3.751711936,0
+6907,20,3.751711936,0
+6908,20,3.751711936,0
+6909,20,3.751711936,0
+6910,20,3.751711936,0
+6911,20,3.751711936,0
+6912,20,3.751711936,0
+6913,20,3.751711936,0
+6914,20,3.751711936,0
+6915,20,3.751711936,0
+6916,20,3.751711936,0
+6917,20,3.751711936,0
+6918,20,3.751711936,0
+6919,20,3.751711936,0
+6920,20,3.751711936,0
+6921,20,3.751711936,0
+6922,20,3.751711936,0
+6923,20,3.751711936,0
+6924,20,3.751711936,0
+6925,20,3.751711936,0
+6926,20,3.751711936,0
+6927,20,3.751711936,0
+6928,20,3.751711936,0
+6929,20,3.751711936,0
+6930,20,3.751711936,0
+6931,20,3.751711936,0
+6932,20,3.751711936,0
+6933,20,3.751711936,0
+6934,20,3.751711936,0
+6935,20,3.751711936,0
+6936,20,3.751711936,0
+6937,20,3.751711936,0
+6938,20,3.751711936,0
+6939,20,3.751711936,0
+6940,20,3.751711936,0
+6941,20,3.751711936,0
+6942,20,3.751711936,0
+6943,20,3.751711936,0
+6944,20,3.751711936,0
+6945,20,3.751711936,0
+6946,20,3.751711936,0
+6947,20,3.751711936,0
+6948,20,3.751711936,0
+6949,20,3.751711936,0
+6950,20,3.751711936,0
+6951,20,3.751711936,0
+6952,20,3.751711936,0
+6953,20,3.751711936,0
+6954,20,3.751711936,0
+6955,20,3.751711936,0
+6956,20,3.751711936,0
+6957,20,3.751711936,0
+6958,20,3.751711936,0
+6959,20,3.751711936,0
+6960,20,3.751711936,0
+6961,20,3.751711936,0
+6962,20,3.751711936,0
+6963,20,3.751711936,0
+6964,20,3.751711936,0
+6965,20,3.751711936,0
+6966,20,3.751711936,0
+6967,20,3.751711936,0
+6968,20,3.751711936,0
+6969,20,3.751711936,0
+6970,20,3.751711936,0
+6971,20,3.751711936,0
+6972,20,3.751711936,0
+6973,20,3.751711936,0
+6974,20,3.751711936,0
+6975,20,3.751711936,0
+6976,20,3.751711936,0
+6977,20,3.751711936,0
+6978,20,3.751711936,0
+6979,20,3.751711936,0
+6980,20,3.751711936,0
+6981,20,3.751711936,0
+6982,20,3.751711936,0
+6983,20,3.751711936,0
+6984,20,3.751711936,0
+6985,20,3.751711936,0
+6986,20,3.751711936,0
+6987,20,3.751711936,0
+6988,20,3.751711936,0
+6989,20,3.751711936,0
+6990,20,3.751711936,0
+6991,20,3.751711936,0
+6992,20,3.751711936,0
+6993,20,3.751711936,0
+6994,20,3.751711936,0
+6995,20,3.751711936,0
+6996,20,3.751711936,0
+6997,20,3.751711936,0
+6998,20,3.751711936,0
+6999,20,3.751711936,0
+7000,20,3.751711936,0
+7001,20,3.751711936,0
+7002,20,3.751711936,0
+7003,20,3.751711936,0
+7004,20,3.751711936,0
+7005,20,3.751711936,0
+7006,20,3.751711936,0
+7007,20,3.751711936,0
+7008,20,3.751711936,0
+7009,20,3.479729826,0
+7010,20,3.479729826,0
+7011,20,3.479729826,0
+7012,20,3.479729826,0
+7013,20,3.479729826,0
+7014,20,3.479729826,0
+7015,20,3.479729826,0
+7016,20,3.479729826,0
+7017,20,3.479729826,0
+7018,20,3.479729826,0
+7019,20,3.305613243,0
+7020,20,3.305613243,0
+7021,20,3.305613243,0
+7022,20,3.305613243,0
+7023,20,3.305613243,0
+7024,20,3.305613243,0
+7025,20,3.305613243,0
+7026,20,3.305613243,0
+7027,20,3.305613243,0
+7028,20,3.305613243,0
+7029,20,3.13149666,0
+7030,20,3.13149666,0
+7031,20,3.13149666,0
+7032,20,3.13149666,0
+7033,20,3.13149666,0
+7034,20,3.13149666,0
+7035,20,3.13149666,0
+7036,20,3.13149666,0
+7037,20,3.13149666,0
+7038,20,3.13149666,0
+7039,20,2.957380077,0
+7040,20,2.957380077,0
+7041,20,2.957380077,0
+7042,20,2.957380077,0
+7043,20,2.957380077,0
+7044,20,2.957380077,0
+7045,20,2.957380077,0
+7046,20,2.957380077,0
+7047,20,2.957380077,0
+7048,20,2.957380077,0
+7049,20,2.783263494,0
+7050,20,2.783263494,0
+7051,20,2.783263494,0
+7052,20,2.783263494,0
+7053,20,2.783263494,0
+7054,20,2.783263494,0
+7055,20,2.783263494,0
+7056,20,2.783263494,0
+7057,20,2.783263494,0
+7058,20,2.783263494,0
+7059,20,2.609146911,0
+7060,20,2.609146911,0
+7061,20,2.609146911,0
+7062,20,2.609146911,0
+7063,20,2.609146911,0
+7064,20,2.609146911,0
+7065,20,2.609146911,0
+7066,20,2.609146911,0
+7067,20,2.609146911,0
+7068,20,2.609146911,0
+7069,20,2.435030328,0
+7070,20,2.435030328,0
+7071,20,2.435030328,0
+7072,20,2.435030328,0
+7073,20,2.435030328,0
+7074,20,2.435030328,0
+7075,20,2.435030328,0
+7076,20,2.435030328,0
+7077,20,2.435030328,0
+7078,20,2.435030328,0
+7079,20,2.260913745,0
+7080,20,2.260913745,0
+7081,20,2.260913745,0
+7082,20,2.260913745,0
+7083,20,2.260913745,0
+7084,20,2.260913745,0
+7085,20,2.260913745,0
+7086,20,2.260913745,0
+7087,20,2.260913745,0
+7088,20,2.260913745,0
+7089,20,2.086797162,0
+7090,20,2.086797162,0
+7091,20,2.086797162,0
+7092,20,2.086797162,0
+7093,20,2.086797162,0
+7094,20,2.086797162,0
+7095,20,2.086797162,0
+7096,20,2.086797162,0
+7097,20,2.086797162,0
+7098,20,2.086797162,0
+7099,20,1.912680579,0
+7100,20,1.912680579,0
+7101,20,1.912680579,0
+7102,20,1.912680579,0
+7103,20,1.912680579,0
+7104,20,1.912680579,0
+7105,20,1.912680579,0
+7106,20,1.912680579,0
+7107,20,1.912680579,0
+7108,20,1.912680579,0
+7109,20,1.738563997,0
+7110,20,1.738563997,0
+7111,20,1.738563997,0
+7112,20,1.738563997,0
+7113,20,1.738563997,0
+7114,20,1.738563997,0
+7115,20,1.738563997,0
+7116,20,1.738563997,0
+7117,20,1.738563997,0
+7118,20,1.738563997,0
+7119,20,1.564447414,0
+7120,20,1.564447414,0
+7121,20,1.564447414,0
+7122,20,1.564447414,0
+7123,20,1.564447414,0
+7124,20,1.564447414,0
+7125,20,1.564447414,0
+7126,20,1.564447414,0
+7127,20,1.564447414,0
+7128,20,1.564447414,0
+7129,20,1.390330831,0
+7130,20,1.390330831,0
+7131,20,1.390330831,0
+7132,20,1.390330831,0
+7133,20,1.390330831,0
+7134,20,1.390330831,0
+7135,20,1.390330831,0
+7136,20,1.390330831,0
+7137,20,1.390330831,0
+7138,20,1.390330831,0
+7139,20,1.216214248,0
+7140,20,1.216214248,0
+7141,20,1.216214248,0
+7142,20,1.216214248,0
+7143,20,1.216214248,0
+7144,20,1.216214248,0
+7145,20,1.216214248,0
+7146,20,1.216214248,0
+7147,20,1.216214248,0
+7148,20,1.216214248,0
+7149,20,1.042097665,0
+7150,20,1.042097665,0
+7151,20,1.042097665,0
+7152,20,1.042097665,0
+7153,20,1.042097665,0
+7154,20,1.042097665,0
+7155,20,1.042097665,0
+7156,20,1.042097665,0
+7157,20,1.042097665,0
+7158,20,1.042097665,0
+7159,20,0.868353745,0
+7160,20,0.868353745,0
+7161,20,0.868353745,0
+7162,20,0.868353745,0
+7163,20,0.868353745,0
+7164,20,0.868353745,0
+7165,20,0.868353745,0
+7166,20,0.868353745,0
+7167,20,0.868353745,0
+7168,20,0.868353745,0
+7169,20,0.694858268,0
+7170,20,0.694858268,0
+7171,20,0.694858268,0
+7172,20,0.694858268,0
+7173,20,0.694858268,0
+7174,20,0.694858268,0
+7175,20,0.694858268,0
+7176,20,0.694858268,0
+7177,20,0.694858268,0
+7178,20,0.694858268,0
+7179,20,0.521362791,0
+7180,20,0.521362791,0
+7181,20,0.521362791,0
+7182,20,0.521362791,0
+7183,20,0.521362791,0
+7184,20,0.521362791,0
+7185,20,0.521362791,0
+7186,20,0.521362791,0
+7187,20,0.521362791,0
+7188,20,0.521362791,0
+7189,20,0.347867313,0
+7190,20,0.347867313,0
+7191,20,0.347867313,0
+7192,20,0.347867313,0
+7193,20,0.347867313,0
+7194,20,0.347867313,0
+7195,20,0.347867313,0
+7196,20,0.347867313,0
+7197,20,0.347867313,0
+7198,20,0.347867313,0
+7199,20,0.243770027,0
+7200,20,0.243770027,0
+7201,20,0.243770027,0
+7202,20,0.243770027,0
+7203,20,0.243770027,0
+7204,20,0.243770027,0
+7205,20,0.243770027,0
+7206,20,0.243770027,0
+7207,20,0.243770027,0
+7208,20,0.243770027,0
+7209,20,0.243770027,0
+7210,20,0.243770027,0
+7211,20,0.243770027,0
+7212,20,0.243770027,0
+7213,20,0.243770027,0
+7214,20,0.243770027,0
+7215,20,0.243770027,0
+7216,20,0.243770027,0
+7217,20,0.243770027,0
+7218,20,0.243770027,0
+7219,20,0.243770027,0
+7220,20,0.243770027,0
+7221,20,0.243770027,0
+7222,20,0.243770027,0
+7223,20,0.243770027,0
+7224,20,0.243770027,0
+7225,20,0.243770027,0
+7226,20,0.243770027,0
+7227,20,0.243770027,0
+7228,20,0.243770027,0
+7229,20,0.243770027,0
+7230,20,0.243770027,0
+7231,20,0.243770027,0
+7232,20,0.243770027,0
+7233,20,0.243770027,0
+7234,20,0.243770027,0
+7235,20,0.243770027,0
+7236,20,0.243770027,0
+7237,20,0.243770027,0
+7238,20,0.243770027,0
+7239,20,0.243770027,0
+7240,20,0.243770027,0
+7241,20,0.243770027,0
+7242,20,0.243770027,0
+7243,20,0.243770027,0
+7244,20,0.243770027,0
+7245,20,0.243770027,0
+7246,20,0.243770027,0
+7247,20,0.243770027,0
+7248,20,0.243770027,0
+7249,20,0.243770027,0
+7250,20,0.243770027,0
+7251,20,0.243770027,0
+7252,20,0.243770027,0
+7253,20,0.243770027,0
+7254,20,0.243770027,0
+7255,20,0.243770027,0
+7256,20,0.243770027,0
+7257,20,0.243770027,0
+7258,20,0.243770027,0
+7259,20,0.243770027,0
+7260,20,0.243770027,0
+7261,20,0.243770027,0
+7262,20,0.243770027,0
+7263,20,0.243770027,0
+7264,20,0.243770027,0
+7265,20,0.243770027,0
+7266,20,0.243770027,0
+7267,20,0.243770027,0
+7268,20,0.243770027,0
+7269,20,0.243770027,0
+7270,20,0.243770027,0
+7271,20,0.243770027,0
+7272,20,0.243770027,0
+7273,20,0.243770027,0
+7274,20,0.243770027,0
+7275,20,0.243770027,0
+7276,20,0.243770027,0
+7277,20,0.243770027,0
+7278,20,0.243770027,0
+7279,20,0.243770027,0
+7280,20,0.243770027,0
+7281,20,0.243770027,0
+7282,20,0.243770027,0
+7283,20,0.243770027,0
+7284,20,0.243770027,0
+7285,20,0.243770027,0
+7286,20,0.243770027,0
+7287,20,0.243770027,0
+7288,20,0.243770027,0
+7289,20,0.243770027,0
+7290,20,0.243770027,0
+7291,20,0.243770027,0
+7292,20,0.243770027,0
+7293,20,0.243770027,0
+7294,20,0.243770027,0
+7295,20,0.243770027,0
+7296,20,0.243770027,0
+7297,20,0.243770027,0
+7298,20,0.243770027,0
+7299,20,0.243770027,0
+7300,20,0.243770027,0
+7301,20,0.243770027,0
+7302,20,0.243770027,0
+7303,20,0.243770027,0
+7304,20,0.243770027,0
+7305,20,0.243770027,0
+7306,20,0.243770027,0
+7307,20,0.243770027,0
+7308,20,0.243770027,0
+7309,20,0.243770027,0
+7310,20,0.243770027,0
+7311,20,0.243770027,0
+7312,20,0.243770027,0
+7313,20,0.243770027,0
+7314,20,0.243770027,0
+7315,20,0.243770027,0
+7316,20,0.243770027,0
+7317,20,0.243770027,0
+7318,20,0.243770027,0
+7319,20,0.243770027,0
+7320,20,0.243770027,0
+7321,20,0.243770027,0
+7322,20,0.243770027,0
+7323,20,0.243770027,0
+7324,20,0.243770027,0
+7325,20,0.243770027,0
+7326,20,0.243770027,0
+7327,20,0.243770027,0
+7328,20,0.243770027,0
+7329,20,0.243770027,0
+7330,20,0.243770027,0
+7331,20,0.243770027,0
+7332,20,0.243770027,0
+7333,20,0.243770027,0
+7334,20,0.243770027,0
+7335,20,0.243770027,0
+7336,20,0.243770027,0
+7337,20,0.243770027,0
+7338,20,0.243770027,0
+7339,20,0.243770027,0
+7340,20,0.243770027,0
+7341,20,0.243770027,0
+7342,20,0.243770027,0
+7343,20,0.243770027,0
+7344,20,0.243770027,0
+7345,20,0.243770027,0
+7346,20,0.243770027,0
+7347,20,0.243770027,0
+7348,20,0.243770027,0
+7349,20,0.243770027,0
+7350,20,0.243770027,0
+7351,20,0.243770027,0
+7352,20,0.243770027,0
+7353,20,0.243770027,0
+7354,20,0.243770027,0
+7355,20,0.243770027,0
+7356,20,0.243770027,0
+7357,20,0.243770027,0
+7358,20,0.243770027,0
+7359,20,0.243770027,0
+7360,20,0.243770027,0
+7361,20,0.243770027,0
+7362,20,0.243770027,0
+7363,20,0.243770027,0
+7364,20,0.243770027,0
+7365,20,0.243770027,0
+7366,20,0.243770027,0
+7367,20,0.243770027,0
+7368,20,0.243770027,0
+7369,20,0.243770027,0
+7370,20,0.243770027,0
+7371,20,0.243770027,0
+7372,20,0.243770027,0
+7373,20,0.243770027,0
+7374,20,0.243770027,0
+7375,20,0.243770027,0
+7376,20,0.243770027,0
+7377,20,0.243770027,0
+7378,20,0.243770027,0
+7379,20,0.243770027,0
+7380,20,0.243770027,0
+7381,20,0.243770027,0
+7382,20,0.243770027,0
+7383,20,0.243770027,0
+7384,20,0.243770027,0
+7385,20,0.243770027,0
+7386,20,0.243770027,0
+7387,20,0.243770027,0
+7388,20,0.243770027,0
+7389,20,0.243770027,0
+7390,20,0.243770027,0
+7391,20,0.243770027,0
+7392,20,0.243770027,0
+7393,20,0.243770027,0
+7394,20,0.243770027,0
+7395,20,0.243770027,0
+7396,20,0.243770027,0
+7397,20,0.243770027,0
+7398,20,0.243770027,0
+7399,20,0.243770027,0
+7400,20,0.243770027,0
+7401,20,0.243770027,0
+7402,20,0.243770027,0
+7403,20,0.243770027,0
+7404,20,0.243770027,0
+7405,20,0.243770027,0
+7406,20,0.243770027,0
+7407,20,0.243770027,0
+7408,20,0.243770027,0
+7409,20,0.243770027,0
+7410,20,0.243770027,0
+7411,20,0.243770027,0
+7412,20,0.243770027,0
+7413,20,0.243770027,0
+7414,20,0.243770027,0
+7415,20,0.243770027,0
+7416,20,0.243770027,0
+7417,20,0.243770027,0
+7418,20,0.243770027,0
+7419,20,0.243770027,0
+7420,20,0.243770027,0
+7421,20,0.243770027,0
+7422,20,0.243770027,0
+7423,20,0.243770027,0
+7424,20,0.243770027,0
+7425,20,0.243770027,0
+7426,20,0.243770027,0
+7427,20,0.243770027,0
+7428,20,0.243770027,0
+7429,20,0.123555052,0
+7430,20,0.123555052,0
+7431,20,0.123555052,0
+7432,20,0.123555052,0
+7433,20,0.123555052,0
+7434,20,0.123555052,0
+7435,20,0.123555052,0
+7436,20,0.123555052,0
+7437,20,0.123555052,0
+7438,20,0.123555052,0
+7439,20,0.123555052,0
+7440,20,0.123555052,0
+7441,20,0.123555052,0
+7442,20,0.123555052,0
+7443,20,0.123555052,0
+7444,20,0.123555052,0
+7445,20,0.123555052,0
+7446,20,0.123555052,0
+7447,20,0.123555052,0
+7448,20,0.123555052,0
+7449,20,9.06E-03,0
+7450,20,9.06E-03,0
+7451,20,9.06E-03,0
+7452,20,9.06E-03,0
+7453,20,9.06E-03,0
+7454,20,9.06E-03,0
+7455,20,9.06E-03,0
+7456,20,9.06E-03,0
+7457,20,9.06E-03,0
+7458,20,9.06E-03,0
+7459,20,9.06E-03,0
+7460,20,9.06E-03,0
+7461,20,9.06E-03,0
+7462,20,9.06E-03,0
+7463,20,9.06E-03,0
+7464,20,9.06E-03,0
+7465,20,9.06E-03,0
+7466,20,9.06E-03,0
+7467,20,9.06E-03,0
+7468,20,9.06E-03,0
+7469,20,-0.105425853,0
+7470,20,-0.105425853,0
+7471,20,-0.105425853,0
+7472,20,-0.105425853,0
+7473,20,-0.105425853,0
+7474,20,-0.105425853,0
+7475,20,-0.105425853,0
+7476,20,-0.105425853,0
+7477,20,-0.105425853,0
+7478,20,-0.105425853,0
+7479,20,-0.105425853,0
+7480,20,-0.105425853,0
+7481,20,-0.105425853,0
+7482,20,-0.105425853,0
+7483,20,-0.105425853,0
+7484,20,-0.105425853,0
+7485,20,-0.105425853,0
+7486,20,-0.105425853,0
+7487,20,-0.105425853,0
+7488,20,-0.105425853,0
+7489,20,-0.219916305,0
+7490,20,-0.219916305,0
+7491,20,-0.219916305,0
+7492,20,-0.219916305,0
+7493,20,-0.219916305,0
+7494,20,-0.219916305,0
+7495,20,-0.219916305,0
+7496,20,-0.219916305,0
+7497,20,-0.219916305,0
+7498,20,-0.219916305,0
+7499,20,-0.219916305,0
+7500,20,-0.219916305,0
+7501,20,-0.219916305,0
+7502,20,-0.219916305,0
+7503,20,-0.219916305,0
+7504,20,-0.219916305,0
+7505,20,-0.219916305,0
+7506,20,-0.219916305,0
+7507,20,-0.219916305,0
+7508,20,-0.219916305,0
+7509,20,-0.334406757,0
+7510,20,-0.334406757,0
+7511,20,-0.334406757,0
+7512,20,-0.334406757,0
+7513,20,-0.334406757,0
+7514,20,-0.334406757,0
+7515,20,-0.334406757,0
+7516,20,-0.334406757,0
+7517,20,-0.334406757,0
+7518,20,-0.334406757,0
+7519,20,-0.334406757,0
+7520,20,-0.334406757,0
+7521,20,-0.334406757,0
+7522,20,-0.334406757,0
+7523,20,-0.334406757,0
+7524,20,-0.334406757,0
+7525,20,-0.334406757,0
+7526,20,-0.334406757,0
+7527,20,-0.334406757,0
+7528,20,-0.334406757,0
+7529,20,-0.448897209,0
+7530,20,-0.448897209,0
+7531,20,-0.448897209,0
+7532,20,-0.448897209,0
+7533,20,-0.448897209,0
+7534,20,-0.448897209,0
+7535,20,-0.448897209,0
+7536,20,-0.448897209,0
+7537,20,-0.448897209,0
+7538,20,-0.448897209,0
+7539,20,-0.448897209,0
+7540,20,-0.448897209,0
+7541,20,-0.448897209,0
+7542,20,-0.448897209,0
+7543,20,-0.448897209,0
+7544,20,-0.448897209,0
+7545,20,-0.448897209,0
+7546,20,-0.448897209,0
+7547,20,-0.448897209,0
+7548,20,-0.448897209,0
+7549,20,-0.563387662,0
+7550,20,-0.563387662,0
+7551,20,-0.563387662,0
+7552,20,-0.563387662,0
+7553,20,-0.563387662,0
+7554,20,-0.563387662,0
+7555,20,-0.563387662,0
+7556,20,-0.563387662,0
+7557,20,-0.563387662,0
+7558,20,-0.563387662,0
+7559,20,-0.563387662,0
+7560,20,-0.563387662,0
+7561,20,-0.563387662,0
+7562,20,-0.563387662,0
+7563,20,-0.563387662,0
+7564,20,-0.563387662,0
+7565,20,-0.563387662,0
+7566,20,-0.563387662,0
+7567,20,-0.563387662,0
+7568,20,-0.563387662,0
+7569,20,-0.677878114,0
+7570,20,-0.677878114,0
+7571,20,-0.677878114,0
+7572,20,-0.677878114,0
+7573,20,-0.677878114,0
+7574,20,-0.677878114,0
+7575,20,-0.677878114,0
+7576,20,-0.677878114,0
+7577,20,-0.677878114,0
+7578,20,-0.677878114,0
+7579,20,-0.677878114,0
+7580,20,-0.677878114,0
+7581,20,-0.677878114,0
+7582,20,-0.677878114,0
+7583,20,-0.677878114,0
+7584,20,-0.677878114,0
+7585,20,-0.677878114,0
+7586,20,-0.677878114,0
+7587,20,-0.677878114,0
+7588,20,-0.677878114,0
+7589,20,-0.792368566,0
+7590,20,-0.792368566,0
+7591,20,-0.792368566,0
+7592,20,-0.792368566,0
+7593,20,-0.792368566,0
+7594,20,-0.792368566,0
+7595,20,-0.792368566,0
+7596,20,-0.792368566,0
+7597,20,-0.792368566,0
+7598,20,-0.792368566,0
+7599,20,-0.792368566,0
+7600,20,-0.792368566,0
+7601,20,-0.792368566,0
+7602,20,-0.792368566,0
+7603,20,-0.792368566,0
+7604,20,-0.792368566,0
+7605,20,-0.792368566,0
+7606,20,-0.792368566,0
+7607,20,-0.792368566,0
+7608,20,-0.792368566,0
+7609,20,-0.895409973,0
+7610,20,-0.895409973,0
+7611,20,-0.895409973,0
+7612,20,-0.895409973,0
+7613,20,-0.895409973,0
+7614,20,-0.895409973,0
+7615,20,-0.895409973,0
+7616,20,-0.895409973,0
+7617,20,-0.895409973,0
+7618,20,-0.895409973,0
+7619,20,-0.895409973,0
+7620,20,-0.895409973,0
+7621,20,-0.895409973,0
+7622,20,-0.895409973,0
+7623,20,-0.895409973,0
+7624,20,-0.895409973,0
+7625,20,-0.895409973,0
+7626,20,-0.895409973,0
+7627,20,-0.895409973,0
+7628,20,-0.895409973,0
+7629,20,-0.895409973,0
+7630,20,-0.895409973,0
+7631,20,-0.895409973,0
+7632,20,-0.895409973,0
+7633,20,-0.895409973,0
+7634,20,-0.895409973,0
+7635,20,-0.895409973,0
+7636,20,-0.895409973,0
+7637,20,-0.895409973,0
+7638,20,-0.895409973,0
+7639,20,-0.895409973,0
+7640,20,-0.895409973,0
+7641,20,-0.895409973,0
+7642,20,-0.895409973,0
+7643,20,-0.895409973,0
+7644,20,-0.895409973,0
+7645,20,-0.895409973,0
+7646,20,-0.895409973,0
+7647,20,-0.895409973,0
+7648,20,-0.895409973,0
+7649,20,-0.895409973,0
+7650,20,-0.895409973,0
+7651,20,-0.895409973,0
+7652,20,-0.895409973,0
+7653,20,-0.895409973,0
+7654,20,-0.895409973,0
+7655,20,-0.895409973,0
+7656,20,-0.895409973,0
+7657,20,-0.895409973,0
+7658,20,-0.895409973,0
+7659,20,-0.895409973,0
+7660,20,-0.895409973,0
+7661,20,-0.895409973,0
+7662,20,-0.895409973,0
+7663,20,-0.895409973,0
+7664,20,-0.895409973,0
+7665,20,-0.895409973,0
+7666,20,-0.895409973,0
+7667,20,-0.895409973,0
+7668,20,-0.895409973,0
+7669,20,-0.895409973,0
+7670,20,-0.895409973,0
+7671,20,-0.895409973,0
+7672,20,-0.895409973,0
+7673,20,-0.895409973,0
+7674,20,-0.895409973,0
+7675,20,-0.895409973,0
+7676,20,-0.895409973,0
+7677,20,-0.895409973,0
+7678,20,-0.895409973,0
+7679,20,-0.895409973,0
+7680,20,-0.895409973,0
+7681,20,-0.895409973,0
+7682,20,-0.895409973,0
+7683,20,-0.895409973,0
+7684,20,-0.895409973,0
+7685,20,-0.895409973,0
+7686,20,-0.895409973,0
+7687,20,-0.895409973,0
+7688,20,-0.895409973,0
+7689,20,-0.895409973,0
+7690,20,-0.895409973,0
+7691,20,-0.895409973,0
+7692,20,-0.895409973,0
+7693,20,-0.895409973,0
+7694,20,-0.895409973,0
+7695,20,-0.895409973,0
+7696,20,-0.895409973,0
+7697,20,-0.895409973,0
+7698,20,-0.895409973,0
+7699,20,-0.895409973,0
+7700,20,-0.895409973,0
+7701,20,-0.895409973,0
+7702,20,-0.895409973,0
+7703,20,-0.895409973,0
+7704,20,-0.895409973,0
+7705,20,-0.895409973,0
+7706,20,-0.895409973,0
+7707,20,-0.895409973,0
+7708,20,-0.895409973,0
+7709,20,-0.895409973,0
+7710,20,-0.895409973,0
+7711,20,-0.895409973,0
+7712,20,-0.895409973,0
+7713,20,-0.895409973,0
+7714,20,-0.895409973,0
+7715,20,-0.895409973,0
+7716,20,-0.895409973,0
+7717,20,-0.895409973,0
+7718,20,-0.895409973,0
+7719,20,-0.895409973,0
+7720,20,-0.895409973,0
+7721,20,-0.895409973,0
+7722,20,-0.895409973,0
+7723,20,-0.895409973,0
+7724,20,-0.895409973,0
+7725,20,-0.895409973,0
+7726,20,-0.895409973,0
+7727,20,-0.895409973,0
+7728,20,-0.895409973,0
+7729,20,-0.895409973,0
+7730,20,-0.895409973,0
+7731,20,-0.895409973,0
+7732,20,-0.895409973,0
+7733,20,-0.895409973,0
+7734,20,-0.895409973,0
+7735,20,-0.895409973,0
+7736,20,-0.895409973,0
+7737,20,-0.895409973,0
+7738,20,-0.895409973,0
+7739,20,-0.895409973,0
+7740,20,-0.895409973,0
+7741,20,-0.895409973,0
+7742,20,-0.895409973,0
+7743,20,-0.895409973,0
+7744,20,-0.895409973,0
+7745,20,-0.895409973,0
+7746,20,-0.895409973,0
+7747,20,-0.895409973,0
+7748,20,-0.895409973,0
+7749,20,-0.895409973,0
+7750,20,-0.895409973,0
+7751,20,-0.895409973,0
+7752,20,-0.895409973,0
+7753,20,-0.895409973,0
+7754,20,-0.895409973,0
+7755,20,-0.895409973,0
+7756,20,-0.895409973,0
+7757,20,-0.895409973,0
+7758,20,-0.895409973,0
+7759,20,-0.784144094,0
+7760,20,-0.784144094,0
+7761,20,-0.784144094,0
+7762,20,-0.784144094,0
+7763,20,-0.784144094,0
+7764,20,-0.784144094,0
+7765,20,-0.784144094,0
+7766,20,-0.784144094,0
+7767,20,-0.784144094,0
+7768,20,-0.784144094,0
+7769,20,-0.784144094,0
+7770,20,-0.784144094,0
+7771,20,-0.784144094,0
+7772,20,-0.784144094,0
+7773,20,-0.784144094,0
+7774,20,-0.784144094,0
+7775,20,-0.784144094,0
+7776,20,-0.784144094,0
+7777,20,-0.784144094,0
+7778,20,-0.784144094,0
+7779,20,-0.784144094,0
+7780,20,-0.784144094,0
+7781,20,-0.784144094,0
+7782,20,-0.784144094,0
+7783,20,-0.784144094,0
+7784,20,-0.784144094,0
+7785,20,-0.784144094,0
+7786,20,-0.784144094,0
+7787,20,-0.784144094,0
+7788,20,-0.784144094,0
+7789,20,-0.784144094,0
+7790,20,-0.784144094,0
+7791,20,-0.784144094,0
+7792,20,-0.784144094,0
+7793,20,-0.784144094,0
+7794,20,-0.784144094,0
+7795,20,-0.784144094,0
+7796,20,-0.784144094,0
+7797,20,-0.784144094,0
+7798,20,-0.784144094,0
+7799,20,-0.663856657,0
+7800,20,-0.663856657,0
+7801,20,-0.663856657,0
+7802,20,-0.663856657,0
+7803,20,-0.663856657,0
+7804,20,-0.663856657,0
+7805,20,-0.663856657,0
+7806,20,-0.663856657,0
+7807,20,-0.663856657,0
+7808,20,-0.663856657,0
+7809,20,-0.663856657,0
+7810,20,-0.663856657,0
+7811,20,-0.663856657,0
+7812,20,-0.663856657,0
+7813,20,-0.663856657,0
+7814,20,-0.663856657,0
+7815,20,-0.663856657,0
+7816,20,-0.663856657,0
+7817,20,-0.663856657,0
+7818,20,-0.663856657,0
+7819,20,-0.663856657,0
+7820,20,-0.663856657,0
+7821,20,-0.663856657,0
+7822,20,-0.663856657,0
+7823,20,-0.663856657,0
+7824,20,-0.663856657,0
+7825,20,-0.663856657,0
+7826,20,-0.663856657,0
+7827,20,-0.663856657,0
+7828,20,-0.663856657,0
+7829,20,-0.663856657,0
+7830,20,-0.663856657,0
+7831,20,-0.663856657,0
+7832,20,-0.663856657,0
+7833,20,-0.663856657,0
+7834,20,-0.663856657,0
+7835,20,-0.663856657,0
+7836,20,-0.663856657,0
+7837,20,-0.663856657,0
+7838,20,-0.663856657,0
+7839,20,-0.54356922,0
+7840,20,-0.54356922,0
+7841,20,-0.54356922,0
+7842,20,-0.54356922,0
+7843,20,-0.54356922,0
+7844,20,-0.54356922,0
+7845,20,-0.54356922,0
+7846,20,-0.54356922,0
+7847,20,-0.54356922,0
+7848,20,-0.54356922,0
+7849,20,-0.54356922,0
+7850,20,-0.54356922,0
+7851,20,-0.54356922,0
+7852,20,-0.54356922,0
+7853,20,-0.54356922,0
+7854,20,-0.54356922,0
+7855,20,-0.54356922,0
+7856,20,-0.54356922,0
+7857,20,-0.54356922,0
+7858,20,-0.54356922,0
+7859,20,-0.54356922,0
+7860,20,-0.54356922,0
+7861,20,-0.54356922,0
+7862,20,-0.54356922,0
+7863,20,-0.54356922,0
+7864,20,-0.54356922,0
+7865,20,-0.54356922,0
+7866,20,-0.54356922,0
+7867,20,-0.54356922,0
+7868,20,-0.54356922,0
+7869,20,-0.54356922,0
+7870,20,-0.54356922,0
+7871,20,-0.54356922,0
+7872,20,-0.54356922,0
+7873,20,-0.54356922,0
+7874,20,-0.54356922,0
+7875,20,-0.54356922,0
+7876,20,-0.54356922,0
+7877,20,-0.54356922,0
+7878,20,-0.54356922,0
+7879,20,-0.423281782,0
+7880,20,-0.423281782,0
+7881,20,-0.423281782,0
+7882,20,-0.423281782,0
+7883,20,-0.423281782,0
+7884,20,-0.423281782,0
+7885,20,-0.423281782,0
+7886,20,-0.423281782,0
+7887,20,-0.423281782,0
+7888,20,-0.423281782,0
+7889,20,-0.423281782,0
+7890,20,-0.423281782,0
+7891,20,-0.423281782,0
+7892,20,-0.423281782,0
+7893,20,-0.423281782,0
+7894,20,-0.423281782,0
+7895,20,-0.423281782,0
+7896,20,-0.423281782,0
+7897,20,-0.423281782,0
+7898,20,-0.423281782,0
+7899,20,-0.423281782,0
+7900,20,-0.423281782,0
+7901,20,-0.423281782,0
+7902,20,-0.423281782,0
+7903,20,-0.423281782,0
+7904,20,-0.423281782,0
+7905,20,-0.423281782,0
+7906,20,-0.423281782,0
+7907,20,-0.423281782,0
+7908,20,-0.423281782,0
+7909,20,-0.423281782,0
+7910,20,-0.423281782,0
+7911,20,-0.423281782,0
+7912,20,-0.423281782,0
+7913,20,-0.423281782,0
+7914,20,-0.423281782,0
+7915,20,-0.423281782,0
+7916,20,-0.423281782,0
+7917,20,-0.423281782,0
+7918,20,-0.423281782,0
+7919,20,-0.302994345,0
+7920,20,-0.302994345,0
+7921,20,-0.302994345,0
+7922,20,-0.302994345,0
+7923,20,-0.302994345,0
+7924,20,-0.302994345,0
+7925,20,-0.302994345,0
+7926,20,-0.302994345,0
+7927,20,-0.302994345,0
+7928,20,-0.302994345,0
+7929,20,-0.302994345,0
+7930,20,-0.302994345,0
+7931,20,-0.302994345,0
+7932,20,-0.302994345,0
+7933,20,-0.302994345,0
+7934,20,-0.302994345,0
+7935,20,-0.302994345,0
+7936,20,-0.302994345,0
+7937,20,-0.302994345,0
+7938,20,-0.302994345,0
+7939,20,-0.302994345,0
+7940,20,-0.302994345,0
+7941,20,-0.302994345,0
+7942,20,-0.302994345,0
+7943,20,-0.302994345,0
+7944,20,-0.302994345,0
+7945,20,-0.302994345,0
+7946,20,-0.302994345,0
+7947,20,-0.302994345,0
+7948,20,-0.302994345,0
+7949,20,-0.302994345,0
+7950,20,-0.302994345,0
+7951,20,-0.302994345,0
+7952,20,-0.302994345,0
+7953,20,-0.302994345,0
+7954,20,-0.302994345,0
+7955,20,-0.302994345,0
+7956,20,-0.302994345,0
+7957,20,-0.302994345,0
+7958,20,-0.302994345,0
+7959,20,-0.302994345,0
+7960,20,-0.302994345,0
+7961,20,-0.302994345,0
+7962,20,-0.302994345,0
+7963,20,-0.302994345,0
+7964,20,-0.302994345,0
+7965,20,-0.302994345,0
+7966,20,-0.302994345,0
+7967,20,-0.302994345,0
+7968,20,-0.302994345,0
+7969,20,-0.302994345,0
+7970,20,-0.302994345,0
+7971,20,-0.302994345,0
+7972,20,-0.302994345,0
+7973,20,-0.302994345,0
+7974,20,-0.302994345,0
+7975,20,-0.302994345,0
+7976,20,-0.302994345,0
+7977,20,-0.302994345,0
+7978,20,-0.302994345,0
+7979,20,-0.302994345,0
+7980,20,-0.302994345,0
+7981,20,-0.302994345,0
+7982,20,-0.302994345,0
+7983,20,-0.302994345,0
+7984,20,-0.302994345,0
+7985,20,-0.302994345,0
+7986,20,-0.302994345,0
+7987,20,-0.302994345,0
+7988,20,-0.302994345,0
+7989,20,-0.302994345,0
+7990,20,-0.302994345,0
+7991,20,-0.302994345,0
+7992,20,-0.302994345,0
+7993,20,-0.302994345,0
+7994,20,-0.302994345,0
+7995,20,-0.302994345,0
+7996,20,-0.302994345,0
+7997,20,-0.302994345,0
+7998,20,-0.302994345,0
+7999,20,-0.302994345,0
+8000,20,-0.302994345,0
+8001,20,-0.302994345,0
+8002,20,-0.302994345,0
+8003,20,-0.302994345,0
+8004,20,-0.302994345,0
+8005,20,-0.302994345,0
+8006,20,-0.302994345,0
+8007,20,-0.302994345,0
+8008,20,-0.302994345,0
+8009,20,-0.302994345,0
+8010,20,-0.302994345,0
+8011,20,-0.302994345,0
+8012,20,-0.302994345,0
+8013,20,-0.302994345,0
+8014,20,-0.302994345,0
+8015,20,-0.302994345,0
+8016,20,-0.302994345,0
+8017,20,-0.302994345,0
+8018,20,-0.302994345,0
+8019,20,-0.302994345,0
+8020,20,-0.302994345,0
+8021,20,-0.302994345,0
+8022,20,-0.302994345,0
+8023,20,-0.302994345,0
+8024,20,-0.302994345,0
+8025,20,-0.302994345,0
+8026,20,-0.302994345,0
+8027,20,-0.302994345,0
+8028,20,-0.302994345,0
+8029,20,-0.302994345,0
+8030,20,-0.302994345,0
+8031,20,-0.302994345,0
+8032,20,-0.302994345,0
+8033,20,-0.302994345,0
+8034,20,-0.302994345,0
+8035,20,-0.302994345,0
+8036,20,-0.302994345,0
+8037,20,-0.302994345,0
+8038,20,-0.302994345,0
+8039,20,-0.302994345,0
+8040,20,-0.302994345,0
+8041,20,-0.302994345,0
+8042,20,-0.302994345,0
+8043,20,-0.302994345,0
+8044,20,-0.302994345,0
+8045,20,-0.302994345,0
+8046,20,-0.302994345,0
+8047,20,-0.302994345,0
+8048,20,-0.302994345,0
+8049,20,-0.302994345,0
+8050,20,-0.302994345,0
+8051,20,-0.302994345,0
+8052,20,-0.302994345,0
+8053,20,-0.302994345,0
+8054,20,-0.302994345,0
+8055,20,-0.302994345,0
+8056,20,-0.302994345,0
+8057,20,-0.302994345,0
+8058,20,-0.302994345,0
+8059,20,-0.302994345,0
+8060,20,-0.302994345,0
+8061,20,-0.302994345,0
+8062,20,-0.302994345,0
+8063,20,-0.302994345,0
+8064,20,-0.302994345,0
+8065,20,-0.302994345,0
+8066,20,-0.302994345,0
+8067,20,-0.302994345,0
+8068,20,-0.302994345,0
+8069,20,-0.302994345,0
+8070,20,-0.302994345,0
+8071,20,-0.302994345,0
+8072,20,-0.302994345,0
+8073,20,-0.302994345,0
+8074,20,-0.302994345,0
+8075,20,-0.302994345,0
+8076,20,-0.302994345,0
+8077,20,-0.302994345,0
+8078,20,-0.302994345,0
+8079,20,-0.302994345,0
+8080,20,-0.302994345,0
+8081,20,-0.302994345,0
+8082,20,-0.302994345,0
+8083,20,-0.302994345,0
+8084,20,-0.302994345,0
+8085,20,-0.302994345,0
+8086,20,-0.302994345,0
+8087,20,-0.302994345,0
+8088,20,-0.302994345,0
+8089,20,-0.302994345,0
+8090,20,-0.302994345,0
+8091,20,-0.302994345,0
+8092,20,-0.302994345,0
+8093,20,-0.302994345,0
+8094,20,-0.302994345,0
+8095,20,-0.302994345,0
+8096,20,-0.302994345,0
+8097,20,-0.302994345,0
+8098,20,-0.302994345,0
+8099,20,-0.302994345,0
+8100,20,-0.302994345,0
+8101,20,-0.302994345,0
+8102,20,-0.302994345,0
+8103,20,-0.302994345,0
+8104,20,-0.302994345,0
+8105,20,-0.302994345,0
+8106,20,-0.302994345,0
+8107,20,-0.302994345,0
+8108,20,-0.302994345,0
+8109,20,-0.302994345,0
+8110,20,-0.302994345,0
+8111,20,-0.302994345,0
+8112,20,-0.302994345,0
+8113,20,-0.302994345,0
+8114,20,-0.302994345,0
+8115,20,-0.302994345,0
+8116,20,-0.302994345,0
+8117,20,-0.302994345,0
+8118,20,-0.302994345,0
+8119,20,-0.302994345,0
+8120,20,-0.302994345,0
+8121,20,-0.302994345,0
+8122,20,-0.302994345,0
+8123,20,-0.302994345,0
+8124,20,-0.302994345,0
+8125,20,-0.302994345,0
+8126,20,-0.302994345,0
+8127,20,-0.302994345,0
+8128,20,-0.302994345,0
+8129,20,-0.302994345,0
+8130,20,-0.302994345,0
+8131,20,-0.302994345,0
+8132,20,-0.302994345,0
+8133,20,-0.302994345,0
+8134,20,-0.302994345,0
+8135,20,-0.302994345,0
+8136,20,-0.302994345,0
+8137,20,-0.302994345,0
+8138,20,-0.302994345,0
+8139,20,-0.302994345,0
+8140,20,-0.302994345,0
+8141,20,-0.302994345,0
+8142,20,-0.302994345,0
+8143,20,-0.302994345,0
+8144,20,-0.302994345,0
+8145,20,-0.302994345,0
+8146,20,-0.302994345,0
+8147,20,-0.302994345,0
+8148,20,-0.302994345,0
+8149,20,-0.302994345,0
+8150,20,-0.302994345,0
+8151,20,-0.302994345,0
+8152,20,-0.302994345,0
+8153,20,-0.302994345,0
+8154,20,-0.302994345,0
+8155,20,-0.302994345,0
+8156,20,-0.302994345,0
+8157,20,-0.302994345,0
+8158,20,-0.302994345,0
+8159,20,-0.302994345,0
+8160,20,-0.302994345,0
+8161,20,-0.302994345,0
+8162,20,-0.302994345,0
+8163,20,-0.302994345,0
+8164,20,-0.302994345,0
+8165,20,-0.302994345,0
+8166,20,-0.302994345,0
+8167,20,-0.302994345,0
+8168,20,-0.302994345,0
+8169,20,-0.302994345,0
+8170,20,-0.302994345,0
+8171,20,-0.302994345,0
+8172,20,-0.302994345,0
+8173,20,-0.302994345,0
+8174,20,-0.302994345,0
+8175,20,-0.302994345,0
+8176,20,-0.302994345,0
+8177,20,-0.302994345,0
+8178,20,-0.302994345,0
+8179,20,-0.194171481,0
+8180,20,-0.194171481,0
+8181,20,-0.194171481,0
+8182,20,-0.194171481,0
+8183,20,-0.194171481,0
+8184,20,-0.194171481,0
+8185,20,-0.194171481,0
+8186,20,-0.194171481,0
+8187,20,-0.194171481,0
+8188,20,-0.194171481,0
+8189,20,-7.99E-02,0
+8190,20,-7.99E-02,0
+8191,20,-7.99E-02,0
+8192,20,-7.99E-02,0
+8193,20,-7.99E-02,0
+8194,20,-7.99E-02,0
+8195,20,-7.99E-02,0
+8196,20,-7.99E-02,0
+8197,20,-7.99E-02,0
+8198,20,-7.99E-02,0
+8199,20,3.43E-02,0
+8200,20,3.43E-02,0
+8201,20,3.43E-02,0
+8202,20,3.43E-02,0
+8203,20,3.43E-02,0
+8204,20,3.43E-02,0
+8205,20,3.43E-02,0
+8206,20,3.43E-02,0
+8207,20,3.43E-02,0
+8208,20,3.43E-02,0
+8209,20,0.148523494,0
+8210,20,0.148523494,0
+8211,20,0.148523494,0
+8212,20,0.148523494,0
+8213,20,0.148523494,0
+8214,20,0.148523494,0
+8215,20,0.148523494,0
+8216,20,0.148523494,0
+8217,20,0.148523494,0
+8218,20,0.148523494,0
+8219,20,0.262755152,0
+8220,20,0.262755152,0
+8221,20,0.262755152,0
+8222,20,0.262755152,0
+8223,20,0.262755152,0
+8224,20,0.262755152,0
+8225,20,0.262755152,0
+8226,20,0.262755152,0
+8227,20,0.262755152,0
+8228,20,0.262755152,0
+8229,20,0.376986811,0
+8230,20,0.376986811,0
+8231,20,0.376986811,0
+8232,20,0.376986811,0
+8233,20,0.376986811,0
+8234,20,0.376986811,0
+8235,20,0.376986811,0
+8236,20,0.376986811,0
+8237,20,0.376986811,0
+8238,20,0.376986811,0
+8239,20,0.491218469,0
+8240,20,0.491218469,0
+8241,20,0.491218469,0
+8242,20,0.491218469,0
+8243,20,0.491218469,0
+8244,20,0.491218469,0
+8245,20,0.491218469,0
+8246,20,0.491218469,0
+8247,20,0.491218469,0
+8248,20,0.491218469,0
+8249,20,0.605450127,0
+8250,20,0.605450127,0
+8251,20,0.605450127,0
+8252,20,0.605450127,0
+8253,20,0.605450127,0
+8254,20,0.605450127,0
+8255,20,0.605450127,0
+8256,20,0.605450127,0
+8257,20,0.605450127,0
+8258,20,0.605450127,0
+8259,20,0.719681786,0
+8260,20,0.719681786,0
+8261,20,0.719681786,0
+8262,20,0.719681786,0
+8263,20,0.719681786,0
+8264,20,0.719681786,0
+8265,20,0.719681786,0
+8266,20,0.719681786,0
+8267,20,0.719681786,0
+8268,20,0.719681786,0
+8269,20,0.833913444,0
+8270,20,0.833913444,0
+8271,20,0.833913444,0
+8272,20,0.833913444,0
+8273,20,0.833913444,0
+8274,20,0.833913444,0
+8275,20,0.833913444,0
+8276,20,0.833913444,0
+8277,20,0.833913444,0
+8278,20,0.833913444,0
+8279,20,0.948145102,0
+8280,20,0.948145102,0
+8281,20,0.948145102,0
+8282,20,0.948145102,0
+8283,20,0.948145102,0
+8284,20,0.948145102,0
+8285,20,0.948145102,0
+8286,20,0.948145102,0
+8287,20,0.948145102,0
+8288,20,0.948145102,0
+8289,20,1.06237676,0
+8290,20,1.06237676,0
+8291,20,1.06237676,0
+8292,20,1.06237676,0
+8293,20,1.06237676,0
+8294,20,1.06237676,0
+8295,20,1.06237676,0
+8296,20,1.06237676,0
+8297,20,1.06237676,0
+8298,20,1.06237676,0
+8299,20,1.176608419,0
+8300,20,1.176608419,0
+8301,20,1.176608419,0
+8302,20,1.176608419,0
+8303,20,1.176608419,0
+8304,20,1.176608419,0
+8305,20,1.176608419,0
+8306,20,1.176608419,0
+8307,20,1.176608419,0
+8308,20,1.176608419,0
+8309,20,1.290840077,0
+8310,20,1.290840077,0
+8311,20,1.290840077,0
+8312,20,1.290840077,0
+8313,20,1.290840077,0
+8314,20,1.290840077,0
+8315,20,1.290840077,0
+8316,20,1.290840077,0
+8317,20,1.290840077,0
+8318,20,1.290840077,0
+8319,20,1.405071735,0
+8320,20,1.405071735,0
+8321,20,1.405071735,0
+8322,20,1.405071735,0
+8323,20,1.405071735,0
+8324,20,1.405071735,0
+8325,20,1.405071735,0
+8326,20,1.405071735,0
+8327,20,1.405071735,0
+8328,20,1.405071735,0
+8329,20,1.519303394,0
+8330,20,1.519303394,0
+8331,20,1.519303394,0
+8332,20,1.519303394,0
+8333,20,1.519303394,0
+8334,20,1.519303394,0
+8335,20,1.519303394,0
+8336,20,1.519303394,0
+8337,20,1.519303394,0
+8338,20,1.519303394,0
+8339,20,1.633535052,0
+8340,20,1.633535052,0
+8341,20,1.633535052,0
+8342,20,1.633535052,0
+8343,20,1.633535052,0
+8344,20,1.633535052,0
+8345,20,1.633535052,0
+8346,20,1.633535052,0
+8347,20,1.633535052,0
+8348,20,1.633535052,0
+8349,20,1.74776671,0
+8350,20,1.74776671,0
+8351,20,1.74776671,0
+8352,20,1.74776671,0
+8353,20,1.74776671,0
+8354,20,1.74776671,0
+8355,20,1.74776671,0
+8356,20,1.74776671,0
+8357,20,1.74776671,0
+8358,20,1.74776671,0
+8359,20,1.861998368,0
+8360,20,1.861998368,0
+8361,20,1.861998368,0
+8362,20,1.861998368,0
+8363,20,1.861998368,0
+8364,20,1.861998368,0
+8365,20,1.861998368,0
+8366,20,1.861998368,0
+8367,20,1.861998368,0
+8368,20,1.861998368,0
+8369,20,1.976230027,0
+8370,20,1.976230027,0
+8371,20,1.976230027,0
+8372,20,1.976230027,0
+8373,20,1.976230027,0
+8374,20,1.976230027,0
+8375,20,1.976230027,0
+8376,20,1.976230027,0
+8377,20,1.976230027,0
+8378,20,1.976230027,0
+8379,20,1.976230027,0
+8380,20,1.976230027,0
+8381,20,1.976230027,0
+8382,20,1.976230027,0
+8383,20,1.976230027,0
+8384,20,1.976230027,0
+8385,20,1.976230027,0
+8386,20,1.976230027,0
+8387,20,1.976230027,0
+8388,20,1.976230027,0
+8389,20,1.976230027,0
+8390,20,1.976230027,0
+8391,20,1.976230027,0
+8392,20,1.976230027,0
+8393,20,1.976230027,0
+8394,20,1.976230027,0
+8395,20,1.976230027,0
+8396,20,1.976230027,0
+8397,20,1.976230027,0
+8398,20,1.976230027,0
+8399,20,1.976230027,0
+8400,20,1.976230027,0
+8401,20,1.976230027,0
+8402,20,1.976230027,0
+8403,20,1.976230027,0
+8404,20,1.976230027,0
+8405,20,1.976230027,0
+8406,20,1.976230027,0
+8407,20,1.976230027,0
+8408,20,1.976230027,0
+8409,20,1.976230027,0
+8410,20,1.976230027,0
+8411,20,1.976230027,0
+8412,20,1.976230027,0
+8413,20,1.976230027,0
+8414,20,1.976230027,0
+8415,20,1.976230027,0
+8416,20,1.976230027,0
+8417,20,1.976230027,0
+8418,20,1.976230027,0
+8419,20,1.856097866,0
+8420,20,1.856097866,0
+8421,20,1.856097866,0
+8422,20,1.856097866,0
+8423,20,1.856097866,0
+8424,20,1.856097866,0
+8425,20,1.856097866,0
+8426,20,1.856097866,0
+8427,20,1.856097866,0
+8428,20,1.856097866,0
+8429,20,1.856097866,0
+8430,20,1.856097866,0
+8431,20,1.856097866,0
+8432,20,1.856097866,0
+8433,20,1.856097866,0
+8434,20,1.856097866,0
+8435,20,1.856097866,0
+8436,20,1.856097866,0
+8437,20,1.856097866,0
+8438,20,1.856097866,0
+8439,20,1.746886811,0
+8440,20,1.746886811,0
+8441,20,1.746886811,0
+8442,20,1.746886811,0
+8443,20,1.746886811,0
+8444,20,1.746886811,0
+8445,20,1.746886811,0
+8446,20,1.746886811,0
+8447,20,1.746886811,0
+8448,20,1.746886811,0
+8449,20,1.746886811,0
+8450,20,1.746886811,0
+8451,20,1.746886811,0
+8452,20,1.746886811,0
+8453,20,1.746886811,0
+8454,20,1.746886811,0
+8455,20,1.746886811,0
+8456,20,1.746886811,0
+8457,20,1.746886811,0
+8458,20,1.746886811,0
+8459,20,1.637675755,0
+8460,20,1.637675755,0
+8461,20,1.637675755,0
+8462,20,1.637675755,0
+8463,20,1.637675755,0
+8464,20,1.637675755,0
+8465,20,1.637675755,0
+8466,20,1.637675755,0
+8467,20,1.637675755,0
+8468,20,1.637675755,0
+8469,20,1.637675755,0
+8470,20,1.637675755,0
+8471,20,1.637675755,0
+8472,20,1.637675755,0
+8473,20,1.637675755,0
+8474,20,1.637675755,0
+8475,20,1.637675755,0
+8476,20,1.637675755,0
+8477,20,1.637675755,0
+8478,20,1.637675755,0
+8479,20,1.5284647,0
+8480,20,1.5284647,0
+8481,20,1.5284647,0
+8482,20,1.5284647,0
+8483,20,1.5284647,0
+8484,20,1.5284647,0
+8485,20,1.5284647,0
+8486,20,1.5284647,0
+8487,20,1.5284647,0
+8488,20,1.5284647,0
+8489,20,1.5284647,0
+8490,20,1.5284647,0
+8491,20,1.5284647,0
+8492,20,1.5284647,0
+8493,20,1.5284647,0
+8494,20,1.5284647,0
+8495,20,1.5284647,0
+8496,20,1.5284647,0
+8497,20,1.5284647,0
+8498,20,1.5284647,0
+8499,20,1.419253645,0
+8500,20,1.419253645,0
+8501,20,1.419253645,0
+8502,20,1.419253645,0
+8503,20,1.419253645,0
+8504,20,1.419253645,0
+8505,20,1.419253645,0
+8506,20,1.419253645,0
+8507,20,1.419253645,0
+8508,20,1.419253645,0
+8509,20,1.419253645,0
+8510,20,1.419253645,0
+8511,20,1.419253645,0
+8512,20,1.419253645,0
+8513,20,1.419253645,0
+8514,20,1.419253645,0
+8515,20,1.419253645,0
+8516,20,1.419253645,0
+8517,20,1.419253645,0
+8518,20,1.419253645,0
+8519,20,1.31004259,0
+8520,20,1.31004259,0
+8521,20,1.31004259,0
+8522,20,1.31004259,0
+8523,20,1.31004259,0
+8524,20,1.31004259,0
+8525,20,1.31004259,0
+8526,20,1.31004259,0
+8527,20,1.31004259,0
+8528,20,1.31004259,0
+8529,20,1.31004259,0
+8530,20,1.31004259,0
+8531,20,1.31004259,0
+8532,20,1.31004259,0
+8533,20,1.31004259,0
+8534,20,1.31004259,0
+8535,20,1.31004259,0
+8536,20,1.31004259,0
+8537,20,1.31004259,0
+8538,20,1.31004259,0
+8539,20,1.200831534,0
+8540,20,1.200831534,0
+8541,20,1.200831534,0
+8542,20,1.200831534,0
+8543,20,1.200831534,0
+8544,20,1.200831534,0
+8545,20,1.200831534,0
+8546,20,1.200831534,0
+8547,20,1.200831534,0
+8548,20,1.200831534,0
+8549,20,1.200831534,0
+8550,20,1.200831534,0
+8551,20,1.200831534,0
+8552,20,1.200831534,0
+8553,20,1.200831534,0
+8554,20,1.200831534,0
+8555,20,1.200831534,0
+8556,20,1.200831534,0
+8557,20,1.200831534,0
+8558,20,1.200831534,0
+8559,20,1.091620479,0
+8560,20,1.091620479,0
+8561,20,1.091620479,0
+8562,20,1.091620479,0
+8563,20,1.091620479,0
+8564,20,1.091620479,0
+8565,20,1.091620479,0
+8566,20,1.091620479,0
+8567,20,1.091620479,0
+8568,20,1.091620479,0
+8569,20,1.091620479,0
+8570,20,1.091620479,0
+8571,20,1.091620479,0
+8572,20,1.091620479,0
+8573,20,1.091620479,0
+8574,20,1.091620479,0
+8575,20,1.091620479,0
+8576,20,1.091620479,0
+8577,20,1.091620479,0
+8578,20,1.091620479,0
+8579,20,0.982409424,0
+8580,20,0.982409424,0
+8581,20,0.982409424,0
+8582,20,0.982409424,0
+8583,20,0.982409424,0
+8584,20,0.982409424,0
+8585,20,0.982409424,0
+8586,20,0.982409424,0
+8587,20,0.982409424,0
+8588,20,0.982409424,0
+8589,20,0.982409424,0
+8590,20,0.982409424,0
+8591,20,0.982409424,0
+8592,20,0.982409424,0
+8593,20,0.982409424,0
+8594,20,0.982409424,0
+8595,20,0.982409424,0
+8596,20,0.982409424,0
+8597,20,0.982409424,0
+8598,20,0.982409424,0
+8599,20,0.982409424,0
+8600,20,0.982409424,0
+8601,20,0.982409424,0
+8602,20,0.982409424,0
+8603,20,0.982409424,0
+8604,20,0.982409424,0
+8605,20,0.982409424,0
+8606,20,0.982409424,0
+8607,20,0.982409424,0
+8608,20,0.982409424,0
+8609,20,0.982409424,0
+8610,20,0.982409424,0
+8611,20,0.982409424,0
+8612,20,0.982409424,0
+8613,20,0.982409424,0
+8614,20,0.982409424,0
+8615,20,0.982409424,0
+8616,20,0.982409424,0
+8617,20,0.982409424,0
+8618,20,0.982409424,0
+8619,20,0.982409424,0
+8620,20,0.982409424,0
+8621,20,0.982409424,0
+8622,20,0.982409424,0
+8623,20,0.982409424,0
+8624,20,0.982409424,0
+8625,20,0.982409424,0
+8626,20,0.982409424,0
+8627,20,0.982409424,0
+8628,20,0.982409424,0
+8629,20,0.982409424,0
+8630,20,0.982409424,0
+8631,20,0.982409424,0
+8632,20,0.982409424,0
+8633,20,0.982409424,0
+8634,20,0.982409424,0
+8635,20,0.982409424,0
+8636,20,0.982409424,0
+8637,20,0.982409424,0
+8638,20,0.982409424,0
+8639,20,0.982409424,0
+8640,20,0.982409424,0
+8641,20,0.982409424,0
+8642,20,0.982409424,0
+8643,20,0.982409424,0
+8644,20,0.982409424,0
+8645,20,0.982409424,0
+8646,20,0.982409424,0
+8647,20,0.982409424,0
+8648,20,0.982409424,0
+8649,20,0.982409424,0
+8650,20,0.982409424,0
+8651,20,0.982409424,0
+8652,20,0.982409424,0
+8653,20,0.982409424,0
+8654,20,0.982409424,0
+8655,20,0.982409424,0
+8656,20,0.982409424,0
+8657,20,0.982409424,0
+8658,20,0.982409424,0
+8659,20,0.982409424,0
+8660,20,0.982409424,0
+8661,20,0.982409424,0
+8662,20,0.982409424,0
+8663,20,0.982409424,0
+8664,20,0.982409424,0
+8665,20,0.982409424,0
+8666,20,0.982409424,0
+8667,20,0.982409424,0
+8668,20,0.982409424,0
+8669,20,0.982409424,0
+8670,20,0.982409424,0
+8671,20,0.982409424,0
+8672,20,0.982409424,0
+8673,20,0.982409424,0
+8674,20,0.982409424,0
+8675,20,0.982409424,0
+8676,20,0.982409424,0
+8677,20,0.982409424,0
+8678,20,0.982409424,0
+8679,20,0.881039826,0
+8680,20,0.881039826,0
+8681,20,0.881039826,0
+8682,20,0.881039826,0
+8683,20,0.881039826,0
+8684,20,0.881039826,0
+8685,20,0.881039826,0
+8686,20,0.881039826,0
+8687,20,0.881039826,0
+8688,20,0.881039826,0
+8689,20,0.881039826,0
+8690,20,0.881039826,0
+8691,20,0.881039826,0
+8692,20,0.881039826,0
+8693,20,0.881039826,0
+8694,20,0.881039826,0
+8695,20,0.881039826,0
+8696,20,0.881039826,0
+8697,20,0.881039826,0
+8698,20,0.881039826,0
+8699,20,0.881039826,0
+8700,20,0.881039826,0
+8701,20,0.881039826,0
+8702,20,0.881039826,0
+8703,20,0.881039826,0
+8704,20,0.881039826,0
+8705,20,0.881039826,0
+8706,20,0.881039826,0
+8707,20,0.881039826,0
+8708,20,0.881039826,0
+8709,20,0.881039826,0
+8710,20,0.881039826,0
+8711,20,0.881039826,0
+8712,20,0.881039826,0
+8713,20,0.881039826,0
+8714,20,0.881039826,0
+8715,20,0.881039826,0
+8716,20,0.881039826,0
+8717,20,0.881039826,0
+8718,20,0.881039826,0
+8719,20,0.881039826,0
+8720,20,0.881039826,0
+8721,20,0.881039826,0
+8722,20,0.881039826,0
+8723,20,0.881039826,0
+8724,20,0.881039826,0
+8725,20,0.881039826,0
+8726,20,0.881039826,0
+8727,20,0.881039826,0
+8728,20,0.881039826,0
+8729,20,0.881039826,0
+8730,20,0.881039826,0
+8731,20,0.881039826,0
+8732,20,0.881039826,0
+8733,20,0.881039826,0
+8734,20,0.881039826,0
+8735,20,0.881039826,0
+8736,20,0.881039826,0
+8737,20,0.881039826,0
+8738,20,0.881039826,0
+8739,20,0.881039826,0
+8740,20,0.881039826,0
+8741,20,0.881039826,0
+8742,20,0.881039826,0
+8743,20,0.881039826,0
+8744,20,0.881039826,0
+8745,20,0.881039826,0
+8746,20,0.881039826,0
+8747,20,0.881039826,0
+8748,20,0.881039826,0
+8749,20,0.881039826,0
+8750,20,0.881039826,0
+8751,20,0.881039826,0
+8752,20,0.881039826,0
+8753,20,0.881039826,0
+8754,20,0.881039826,0
+8755,20,0.881039826,0
+8756,20,0.881039826,0
+8757,20,0.881039826,0
+8758,20,0.881039826,0
+8759,20,0.881039826,0
+8760,20,0.881039826,0
+8761,20,0.881039826,0
+8762,20,0.881039826,0
+8763,20,0.881039826,0
+8764,20,0.881039826,0
+8765,20,0.881039826,0
+8766,20,0.881039826,0
+8767,20,0.881039826,0
+8768,20,0.881039826,0
+8769,20,0.881039826,0
+8770,20,0.881039826,0
+8771,20,0.881039826,0
+8772,20,0.881039826,0
+8773,20,0.881039826,0
+8774,20,0.881039826,0
+8775,20,0.881039826,0
+8776,20,0.881039826,0
+8777,20,0.881039826,0
+8778,20,0.881039826,0
+8779,20,0.881039826,0
+8780,20,0.881039826,0
+8781,20,0.881039826,0
+8782,20,0.881039826,0
+8783,20,0.881039826,0
+8784,20,0.881039826,0
+8785,20,0.881039826,0
+8786,20,0.881039826,0
+8787,20,0.881039826,0
+8788,20,0.881039826,0
+8789,20,0.881039826,0
+8790,20,0.881039826,0
+8791,20,0.881039826,0
+8792,20,0.881039826,0
+8793,20,0.881039826,0
+8794,20,0.881039826,0
+8795,20,0.881039826,0
+8796,20,0.881039826,0
+8797,20,0.881039826,0
+8798,20,0.881039826,0
+8799,20,0.881039826,0
+8800,20,0.881039826,0
+8801,20,0.881039826,0
+8802,20,0.881039826,0
+8803,20,0.881039826,0
+8804,20,0.881039826,0
+8805,20,0.881039826,0
+8806,20,0.881039826,0
+8807,20,0.881039826,0
+8808,20,0.881039826,0
+8809,20,0.881039826,0
+8810,20,0.881039826,0
+8811,20,0.881039826,0
+8812,20,0.881039826,0
+8813,20,0.881039826,0
+8814,20,0.881039826,0
+8815,20,0.881039826,0
+8816,20,0.881039826,0
+8817,20,0.881039826,0
+8818,20,0.881039826,0
+8819,20,0.881039826,0
+8820,20,0.881039826,0
+8821,20,0.881039826,0
+8822,20,0.881039826,0
+8823,20,0.881039826,0
+8824,20,0.881039826,0
+8825,20,0.881039826,0
+8826,20,0.881039826,0
+8827,20,0.881039826,0
+8828,20,0.881039826,0
+8829,20,0.881039826,0
+8830,20,0.881039826,0
+8831,20,0.881039826,0
+8832,20,0.881039826,0
+8833,20,0.881039826,0
+8834,20,0.881039826,0
+8835,20,0.881039826,0
+8836,20,0.881039826,0
+8837,20,0.881039826,0
+8838,20,0.881039826,0
+8839,20,0.881039826,0
+8840,20,0.881039826,0
+8841,20,0.881039826,0
+8842,20,0.881039826,0
+8843,20,0.881039826,0
+8844,20,0.881039826,0
+8845,20,0.881039826,0
+8846,20,0.881039826,0
+8847,20,0.881039826,0
+8848,20,0.881039826,0
+8849,20,0.881039826,0
+8850,20,0.881039826,0
+8851,20,0.881039826,0
+8852,20,0.881039826,0
+8853,20,0.881039826,0
+8854,20,0.881039826,0
+8855,20,0.881039826,0
+8856,20,0.881039826,0
+8857,20,0.881039826,0
+8858,20,0.881039826,0
+8859,20,0.881039826,0
+8860,20,0.881039826,0
+8861,20,0.881039826,0
+8862,20,0.881039826,0
+8863,20,0.881039826,0
+8864,20,0.881039826,0
+8865,20,0.881039826,0
+8866,20,0.881039826,0
+8867,20,0.881039826,0
+8868,20,0.881039826,0
+8869,20,0.881039826,0
+8870,20,0.881039826,0
+8871,20,0.881039826,0
+8872,20,0.881039826,0
+8873,20,0.881039826,0
+8874,20,0.881039826,0
+8875,20,0.881039826,0
+8876,20,0.881039826,0
+8877,20,0.881039826,0
+8878,20,0.881039826,0
+8879,20,0.881039826,0
+8880,20,0.881039826,0
+8881,20,0.881039826,0
+8882,20,0.881039826,0
+8883,20,0.881039826,0
+8884,20,0.881039826,0
+8885,20,0.881039826,0
+8886,20,0.881039826,0
+8887,20,0.881039826,0
+8888,20,0.881039826,0
+8889,20,0.881039826,0
+8890,20,0.881039826,0
+8891,20,0.881039826,0
+8892,20,0.881039826,0
+8893,20,0.881039826,0
+8894,20,0.881039826,0
+8895,20,0.881039826,0
+8896,20,0.881039826,0
+8897,20,0.881039826,0
+8898,20,0.881039826,0
+8899,20,0.881039826,0
+8900,20,0.881039826,0
+8901,20,0.881039826,0
+8902,20,0.881039826,0
+8903,20,0.881039826,0
+8904,20,0.881039826,0
+8905,20,0.881039826,0
+8906,20,0.881039826,0
+8907,20,0.881039826,0
+8908,20,0.881039826,0
+8909,20,0.881039826,0
+8910,20,0.881039826,0
+8911,20,0.881039826,0
+8912,20,0.881039826,0
+8913,20,0.881039826,0
+8914,20,0.881039826,0
+8915,20,0.881039826,0
+8916,20,0.881039826,0
+8917,20,0.881039826,0
+8918,20,0.881039826,0
+8919,20,0.881039826,0
+8920,20,0.881039826,0
+8921,20,0.881039826,0
+8922,20,0.881039826,0
+8923,20,0.881039826,0
+8924,20,0.881039826,0
+8925,20,0.881039826,0
+8926,20,0.881039826,0
+8927,20,0.881039826,0
+8928,20,0.881039826,0
+8929,20,0.881039826,0
+8930,20,0.881039826,0
+8931,20,0.881039826,0
+8932,20,0.881039826,0
+8933,20,0.881039826,0
+8934,20,0.881039826,0
+8935,20,0.881039826,0
+8936,20,0.881039826,0
+8937,20,0.881039826,0
+8938,20,0.881039826,0
+8939,20,0.881039826,0
+8940,20,0.881039826,0
+8941,20,0.881039826,0
+8942,20,0.881039826,0
+8943,20,0.881039826,0
+8944,20,0.881039826,0
+8945,20,0.881039826,0
+8946,20,0.881039826,0
+8947,20,0.881039826,0
+8948,20,0.881039826,0
+8949,20,0.779908318,0
+8950,20,0.779908318,0
+8951,20,0.779908318,0
+8952,20,0.779908318,0
+8953,20,0.779908318,0
+8954,20,0.779908318,0
+8955,20,0.779908318,0
+8956,20,0.779908318,0
+8957,20,0.779908318,0
+8958,20,0.779908318,0
+8959,20,0.779908318,0
+8960,20,0.779908318,0
+8961,20,0.779908318,0
+8962,20,0.779908318,0
+8963,20,0.779908318,0
+8964,20,0.779908318,0
+8965,20,0.779908318,0
+8966,20,0.779908318,0
+8967,20,0.779908318,0
+8968,20,0.779908318,0
+8969,20,0.779908318,0
+8970,20,0.779908318,0
+8971,20,0.779908318,0
+8972,20,0.779908318,0
+8973,20,0.779908318,0
+8974,20,0.779908318,0
+8975,20,0.779908318,0
+8976,20,0.779908318,0
+8977,20,0.779908318,0
+8978,20,0.779908318,0
+8979,20,0.779908318,0
+8980,20,0.779908318,0
+8981,20,0.779908318,0
+8982,20,0.779908318,0
+8983,20,0.779908318,0
+8984,20,0.779908318,0
+8985,20,0.779908318,0
+8986,20,0.779908318,0
+8987,20,0.779908318,0
+8988,20,0.779908318,0
+8989,20,0.779908318,0
+8990,20,0.779908318,0
+8991,20,0.779908318,0
+8992,20,0.779908318,0
+8993,20,0.779908318,0
+8994,20,0.779908318,0
+8995,20,0.779908318,0
+8996,20,0.779908318,0
+8997,20,0.779908318,0
+8998,20,0.779908318,0
+8999,20,0.779908318,0
+9000,20,0.779908318,0
+9001,20,0.779908318,0
+9002,20,0.779908318,0
+9003,20,0.779908318,0
+9004,20,0.779908318,0
+9005,20,0.779908318,0
+9006,20,0.779908318,0
+9007,20,0.779908318,0
+9008,20,0.779908318,0
+9009,20,0.671835956,0
+9010,20,0.671835956,0
+9011,20,0.671835956,0
+9012,20,0.671835956,0
+9013,20,0.671835956,0
+9014,20,0.671835956,0
+9015,20,0.671835956,0
+9016,20,0.671835956,0
+9017,20,0.671835956,0
+9018,20,0.671835956,0
+9019,20,0.671835956,0
+9020,20,0.671835956,0
+9021,20,0.671835956,0
+9022,20,0.671835956,0
+9023,20,0.671835956,0
+9024,20,0.671835956,0
+9025,20,0.671835956,0
+9026,20,0.671835956,0
+9027,20,0.671835956,0
+9028,20,0.671835956,0
+9029,20,0.671835956,0
+9030,20,0.671835956,0
+9031,20,0.671835956,0
+9032,20,0.671835956,0
+9033,20,0.671835956,0
+9034,20,0.671835956,0
+9035,20,0.671835956,0
+9036,20,0.671835956,0
+9037,20,0.671835956,0
+9038,20,0.671835956,0
+9039,20,0.671835956,0
+9040,20,0.671835956,0
+9041,20,0.671835956,0
+9042,20,0.671835956,0
+9043,20,0.671835956,0
+9044,20,0.671835956,0
+9045,20,0.671835956,0
+9046,20,0.671835956,0
+9047,20,0.671835956,0
+9048,20,0.671835956,0
+9049,20,0.671835956,0
+9050,20,0.671835956,0
+9051,20,0.671835956,0
+9052,20,0.671835956,0
+9053,20,0.671835956,0
+9054,20,0.671835956,0
+9055,20,0.671835956,0
+9056,20,0.671835956,0
+9057,20,0.671835956,0
+9058,20,0.671835956,0
+9059,20,0.671835956,0
+9060,20,0.671835956,0
+9061,20,0.671835956,0
+9062,20,0.671835956,0
+9063,20,0.671835956,0
+9064,20,0.671835956,0
+9065,20,0.671835956,0
+9066,20,0.671835956,0
+9067,20,0.671835956,0
+9068,20,0.671835956,0
+9069,20,0.563763595,0
+9070,20,0.563763595,0
+9071,20,0.563763595,0
+9072,20,0.563763595,0
+9073,20,0.563763595,0
+9074,20,0.563763595,0
+9075,20,0.563763595,0
+9076,20,0.563763595,0
+9077,20,0.563763595,0
+9078,20,0.563763595,0
+9079,20,0.563763595,0
+9080,20,0.563763595,0
+9081,20,0.563763595,0
+9082,20,0.563763595,0
+9083,20,0.563763595,0
+9084,20,0.563763595,0
+9085,20,0.563763595,0
+9086,20,0.563763595,0
+9087,20,0.563763595,0
+9088,20,0.563763595,0
+9089,20,0.563763595,0
+9090,20,0.563763595,0
+9091,20,0.563763595,0
+9092,20,0.563763595,0
+9093,20,0.563763595,0
+9094,20,0.563763595,0
+9095,20,0.563763595,0
+9096,20,0.563763595,0
+9097,20,0.563763595,0
+9098,20,0.563763595,0
+9099,20,0.563763595,0
+9100,20,0.563763595,0
+9101,20,0.563763595,0
+9102,20,0.563763595,0
+9103,20,0.563763595,0
+9104,20,0.563763595,0
+9105,20,0.563763595,0
+9106,20,0.563763595,0
+9107,20,0.563763595,0
+9108,20,0.563763595,0
+9109,20,0.563763595,0
+9110,20,0.563763595,0
+9111,20,0.563763595,0
+9112,20,0.563763595,0
+9113,20,0.563763595,0
+9114,20,0.563763595,0
+9115,20,0.563763595,0
+9116,20,0.563763595,0
+9117,20,0.563763595,0
+9118,20,0.563763595,0
+9119,20,0.563763595,0
+9120,20,0.563763595,0
+9121,20,0.563763595,0
+9122,20,0.563763595,0
+9123,20,0.563763595,0
+9124,20,0.563763595,0
+9125,20,0.563763595,0
+9126,20,0.563763595,0
+9127,20,0.563763595,0
+9128,20,0.563763595,0
+9129,20,0.455691233,0
+9130,20,0.455691233,0
+9131,20,0.455691233,0
+9132,20,0.455691233,0
+9133,20,0.455691233,0
+9134,20,0.455691233,0
+9135,20,0.455691233,0
+9136,20,0.455691233,0
+9137,20,0.455691233,0
+9138,20,0.455691233,0
+9139,20,0.455691233,0
+9140,20,0.455691233,0
+9141,20,0.455691233,0
+9142,20,0.455691233,0
+9143,20,0.455691233,0
+9144,20,0.455691233,0
+9145,20,0.455691233,0
+9146,20,0.455691233,0
+9147,20,0.455691233,0
+9148,20,0.455691233,0
+9149,20,0.455691233,0
+9150,20,0.455691233,0
+9151,20,0.455691233,0
+9152,20,0.455691233,0
+9153,20,0.455691233,0
+9154,20,0.455691233,0
+9155,20,0.455691233,0
+9156,20,0.455691233,0
+9157,20,0.455691233,0
+9158,20,0.455691233,0
+9159,20,0.455691233,0
+9160,20,0.455691233,0
+9161,20,0.455691233,0
+9162,20,0.455691233,0
+9163,20,0.455691233,0
+9164,20,0.455691233,0
+9165,20,0.455691233,0
+9166,20,0.455691233,0
+9167,20,0.455691233,0
+9168,20,0.455691233,0
+9169,20,0.455691233,0
+9170,20,0.455691233,0
+9171,20,0.455691233,0
+9172,20,0.455691233,0
+9173,20,0.455691233,0
+9174,20,0.455691233,0
+9175,20,0.455691233,0
+9176,20,0.455691233,0
+9177,20,0.455691233,0
+9178,20,0.455691233,0
+9179,20,0.455691233,0
+9180,20,0.455691233,0
+9181,20,0.455691233,0
+9182,20,0.455691233,0
+9183,20,0.455691233,0
+9184,20,0.455691233,0
+9185,20,0.455691233,0
+9186,20,0.455691233,0
+9187,20,0.455691233,0
+9188,20,0.455691233,0
+9189,20,0.455691233,0
+9190,20,0.455691233,0
+9191,20,0.455691233,0
+9192,20,0.455691233,0
+9193,20,0.455691233,0
+9194,20,0.455691233,0
+9195,20,0.455691233,0
+9196,20,0.455691233,0
+9197,20,0.455691233,0
+9198,20,0.455691233,0
+9199,20,0.455691233,0
+9200,20,0.455691233,0
+9201,20,0.455691233,0
+9202,20,0.455691233,0
+9203,20,0.455691233,0
+9204,20,0.455691233,0
+9205,20,0.455691233,0
+9206,20,0.455691233,0
+9207,20,0.455691233,0
+9208,20,0.455691233,0
+9209,20,0.455691233,0
+9210,20,0.455691233,0
+9211,20,0.455691233,0
+9212,20,0.455691233,0
+9213,20,0.455691233,0
+9214,20,0.455691233,0
+9215,20,0.455691233,0
+9216,20,0.455691233,0
+9217,20,0.455691233,0
+9218,20,0.455691233,0
+9219,20,0.455691233,0
+9220,20,0.455691233,0
+9221,20,0.455691233,0
+9222,20,0.455691233,0
+9223,20,0.455691233,0
+9224,20,0.455691233,0
+9225,20,0.455691233,0
+9226,20,0.455691233,0
+9227,20,0.455691233,0
+9228,20,0.455691233,0
+9229,20,0.455691233,0
+9230,20,0.455691233,0
+9231,20,0.455691233,0
+9232,20,0.455691233,0
+9233,20,0.455691233,0
+9234,20,0.455691233,0
+9235,20,0.455691233,0
+9236,20,0.455691233,0
+9237,20,0.455691233,0
+9238,20,0.455691233,0
+9239,20,0.455691233,0
+9240,20,0.455691233,0
+9241,20,0.455691233,0
+9242,20,0.455691233,0
+9243,20,0.455691233,0
+9244,20,0.455691233,0
+9245,20,0.455691233,0
+9246,20,0.455691233,0
+9247,20,0.455691233,0
+9248,20,0.455691233,0
+9249,20,0.455691233,0
+9250,20,0.455691233,0
+9251,20,0.455691233,0
+9252,20,0.455691233,0
+9253,20,0.455691233,0
+9254,20,0.455691233,0
+9255,20,0.455691233,0
+9256,20,0.455691233,0
+9257,20,0.455691233,0
+9258,20,0.455691233,0
+9259,20,0.455691233,0
+9260,20,0.455691233,0
+9261,20,0.455691233,0
+9262,20,0.455691233,0
+9263,20,0.455691233,0
+9264,20,0.455691233,0
+9265,20,0.455691233,0
+9266,20,0.455691233,0
+9267,20,0.455691233,0
+9268,20,0.455691233,0
+9269,20,0.455691233,0
+9270,20,0.455691233,0
+9271,20,0.455691233,0
+9272,20,0.455691233,0
+9273,20,0.455691233,0
+9274,20,0.455691233,0
+9275,20,0.455691233,0
+9276,20,0.455691233,0
+9277,20,0.455691233,0
+9278,20,0.455691233,0
+9279,20,0.455691233,0
+9280,20,0.455691233,0
+9281,20,0.455691233,0
+9282,20,0.455691233,0
+9283,20,0.455691233,0
+9284,20,0.455691233,0
+9285,20,0.455691233,0
+9286,20,0.455691233,0
+9287,20,0.455691233,0
+9288,20,0.455691233,0
+9289,20,0.455691233,0
+9290,20,0.455691233,0
+9291,20,0.455691233,0
+9292,20,0.455691233,0
+9293,20,0.455691233,0
+9294,20,0.455691233,0
+9295,20,0.455691233,0
+9296,20,0.455691233,0
+9297,20,0.455691233,0
+9298,20,0.455691233,0
+9299,20,0.455691233,0
+9300,20,0.455691233,0
+9301,20,0.455691233,0
+9302,20,0.455691233,0
+9303,20,0.455691233,0
+9304,20,0.455691233,0
+9305,20,0.455691233,0
+9306,20,0.455691233,0
+9307,20,0.455691233,0
+9308,20,0.455691233,0
+9309,20,0.455691233,0
+9310,20,0.455691233,0
+9311,20,0.455691233,0
+9312,20,0.455691233,0
+9313,20,0.455691233,0
+9314,20,0.455691233,0
+9315,20,0.455691233,0
+9316,20,0.455691233,0
+9317,20,0.455691233,0
+9318,20,0.455691233,0
+9319,20,0.455691233,0
+9320,20,0.455691233,0
+9321,20,0.455691233,0
+9322,20,0.455691233,0
+9323,20,0.455691233,0
+9324,20,0.455691233,0
+9325,20,0.455691233,0
+9326,20,0.455691233,0
+9327,20,0.455691233,0
+9328,20,0.455691233,0
+9329,20,0.455691233,0
+9330,20,0.455691233,0
+9331,20,0.455691233,0
+9332,20,0.455691233,0
+9333,20,0.455691233,0
+9334,20,0.455691233,0
+9335,20,0.455691233,0
+9336,20,0.455691233,0
+9337,20,0.455691233,0
+9338,20,0.455691233,0
+9339,20,0.455691233,0
+9340,20,0.455691233,0
+9341,20,0.455691233,0
+9342,20,0.455691233,0
+9343,20,0.455691233,0
+9344,20,0.455691233,0
+9345,20,0.455691233,0
+9346,20,0.455691233,0
+9347,20,0.455691233,0
+9348,20,0.455691233,0
+9349,20,0.455691233,0
+9350,20,0.455691233,0
+9351,20,0.455691233,0
+9352,20,0.455691233,0
+9353,20,0.455691233,0
+9354,20,0.455691233,0
+9355,20,0.455691233,0
+9356,20,0.455691233,0
+9357,20,0.455691233,0
+9358,20,0.455691233,0
+9359,20,0.455691233,0
+9360,20,0.455691233,0
+9361,20,0.455691233,0
+9362,20,0.455691233,0
+9363,20,0.455691233,0
+9364,20,0.455691233,0
+9365,20,0.455691233,0
+9366,20,0.455691233,0
+9367,20,0.455691233,0
+9368,20,0.455691233,0
+9369,20,0.455691233,0
+9370,20,0.455691233,0
+9371,20,0.455691233,0
+9372,20,0.455691233,0
+9373,20,0.455691233,0
+9374,20,0.455691233,0
+9375,20,0.455691233,0
+9376,20,0.455691233,0
+9377,20,0.455691233,0
+9378,20,0.455691233,0
+9379,20,0.455691233,0
+9380,20,0.455691233,0
+9381,20,0.455691233,0
+9382,20,0.455691233,0
+9383,20,0.455691233,0
+9384,20,0.455691233,0
+9385,20,0.455691233,0
+9386,20,0.455691233,0
+9387,20,0.455691233,0
+9388,20,0.455691233,0
+9389,20,0.455691233,0
+9390,20,0.455691233,0
+9391,20,0.455691233,0
+9392,20,0.455691233,0
+9393,20,0.455691233,0
+9394,20,0.455691233,0
+9395,20,0.455691233,0
+9396,20,0.455691233,0
+9397,20,0.455691233,0
+9398,20,0.455691233,0
+9399,20,0.455691233,0
+9400,20,0.455691233,0
+9401,20,0.455691233,0
+9402,20,0.455691233,0
+9403,20,0.455691233,0
+9404,20,0.455691233,0
+9405,20,0.455691233,0
+9406,20,0.455691233,0
+9407,20,0.455691233,0
+9408,20,0.455691233,0
+9409,20,0.455691233,0
+9410,20,0.455691233,0
+9411,20,0.455691233,0
+9412,20,0.455691233,0
+9413,20,0.455691233,0
+9414,20,0.455691233,0
+9415,20,0.455691233,0
+9416,20,0.455691233,0
+9417,20,0.455691233,0
+9418,20,0.455691233,0
+9419,20,0.455691233,0
+9420,20,0.455691233,0
+9421,20,0.455691233,0
+9422,20,0.455691233,0
+9423,20,0.455691233,0
+9424,20,0.455691233,0
+9425,20,0.455691233,0
+9426,20,0.455691233,0
+9427,20,0.455691233,0
+9428,20,0.455691233,0
+9429,20,0.455691233,0
+9430,20,0.455691233,0
+9431,20,0.455691233,0
+9432,20,0.455691233,0
+9433,20,0.455691233,0
+9434,20,0.455691233,0
+9435,20,0.455691233,0
+9436,20,0.455691233,0
+9437,20,0.455691233,0
+9438,20,0.455691233,0
+9439,20,0.455691233,0
+9440,20,0.455691233,0
+9441,20,0.455691233,0
+9442,20,0.455691233,0
+9443,20,0.455691233,0
+9444,20,0.455691233,0
+9445,20,0.455691233,0
+9446,20,0.455691233,0
+9447,20,0.455691233,0
+9448,20,0.455691233,0
+9449,20,0.455691233,0
+9450,20,0.455691233,0
+9451,20,0.455691233,0
+9452,20,0.455691233,0
+9453,20,0.455691233,0
+9454,20,0.455691233,0
+9455,20,0.455691233,0
+9456,20,0.455691233,0
+9457,20,0.455691233,0
+9458,20,0.455691233,0
+9459,20,0.455691233,0
+9460,20,0.455691233,0
+9461,20,0.455691233,0
+9462,20,0.455691233,0
+9463,20,0.455691233,0
+9464,20,0.455691233,0
+9465,20,0.455691233,0
+9466,20,0.455691233,0
+9467,20,0.455691233,0
+9468,20,0.455691233,0
+9469,20,0.455691233,0
+9470,20,0.455691233,0
+9471,20,0.455691233,0
+9472,20,0.455691233,0
+9473,20,0.455691233,0
+9474,20,0.455691233,0
+9475,20,0.455691233,0
+9476,20,0.455691233,0
+9477,20,0.455691233,0
+9478,20,0.455691233,0
+9479,20,0.455691233,0
+9480,20,0.455691233,0
+9481,20,0.455691233,0
+9482,20,0.455691233,0
+9483,20,0.455691233,0
+9484,20,0.455691233,0
+9485,20,0.455691233,0
+9486,20,0.455691233,0
+9487,20,0.455691233,0
+9488,20,0.455691233,0
+9489,20,0.455691233,0
+9490,20,0.455691233,0
+9491,20,0.455691233,0
+9492,20,0.455691233,0
+9493,20,0.455691233,0
+9494,20,0.455691233,0
+9495,20,0.455691233,0
+9496,20,0.455691233,0
+9497,20,0.455691233,0
+9498,20,0.455691233,0
+9499,20,0.455691233,0
+9500,20,0.455691233,0
+9501,20,0.455691233,0
+9502,20,0.455691233,0
+9503,20,0.455691233,0
+9504,20,0.455691233,0
+9505,20,0.455691233,0
+9506,20,0.455691233,0
+9507,20,0.455691233,0
+9508,20,0.455691233,0
+9509,20,0.455691233,0
+9510,20,0.455691233,0
+9511,20,0.455691233,0
+9512,20,0.455691233,0
+9513,20,0.455691233,0
+9514,20,0.455691233,0
+9515,20,0.455691233,0
+9516,20,0.455691233,0
+9517,20,0.455691233,0
+9518,20,0.455691233,0
+9519,20,0.455691233,0
+9520,20,0.455691233,0
+9521,20,0.455691233,0
+9522,20,0.455691233,0
+9523,20,0.455691233,0
+9524,20,0.455691233,0
+9525,20,0.455691233,0
+9526,20,0.455691233,0
+9527,20,0.455691233,0
+9528,20,0.455691233,0
+9529,20,0.455691233,0
+9530,20,0.455691233,0
+9531,20,0.455691233,0
+9532,20,0.455691233,0
+9533,20,0.455691233,0
+9534,20,0.455691233,0
+9535,20,0.455691233,0
+9536,20,0.455691233,0
+9537,20,0.455691233,0
+9538,20,0.455691233,0
+9539,20,0.455691233,0
+9540,20,0.455691233,0
+9541,20,0.455691233,0
+9542,20,0.455691233,0
+9543,20,0.455691233,0
+9544,20,0.455691233,0
+9545,20,0.455691233,0
+9546,20,0.455691233,0
+9547,20,0.455691233,0
+9548,20,0.455691233,0
+9549,20,0.455691233,0
+9550,20,0.455691233,0
+9551,20,0.455691233,0
+9552,20,0.455691233,0
+9553,20,0.455691233,0
+9554,20,0.455691233,0
+9555,20,0.455691233,0
+9556,20,0.455691233,0
+9557,20,0.455691233,0
+9558,20,0.455691233,0
+9559,20,0.455691233,0
+9560,20,0.455691233,0
+9561,20,0.455691233,0
+9562,20,0.455691233,0
+9563,20,0.455691233,0
+9564,20,0.455691233,0
+9565,20,0.455691233,0
+9566,20,0.455691233,0
+9567,20,0.455691233,0
+9568,20,0.455691233,0
+9569,20,0.455691233,0
+9570,20,0.455691233,0
+9571,20,0.455691233,0
+9572,20,0.455691233,0
+9573,20,0.455691233,0
+9574,20,0.455691233,0
+9575,20,0.455691233,0
+9576,20,0.455691233,0
+9577,20,0.455691233,0
+9578,20,0.455691233,0
+9579,20,0.455691233,0
+9580,20,0.455691233,0
+9581,20,0.455691233,0
+9582,20,0.455691233,0
+9583,20,0.455691233,0
+9584,20,0.455691233,0
+9585,20,0.455691233,0
+9586,20,0.455691233,0
+9587,20,0.455691233,0
+9588,20,0.455691233,0
+9589,20,0.455691233,0
+9590,20,0.455691233,0
+9591,20,0.455691233,0
+9592,20,0.455691233,0
+9593,20,0.455691233,0
+9594,20,0.455691233,0
+9595,20,0.455691233,0
+9596,20,0.455691233,0
+9597,20,0.455691233,0
+9598,20,0.455691233,0
+9599,20,0.455691233,0
+9600,20,0.455691233,0
+9601,20,0.455691233,0
+9602,20,0.455691233,0
+9603,20,0.455691233,0
+9604,20,0.455691233,0
+9605,20,0.455691233,0
+9606,20,0.455691233,0
+9607,20,0.455691233,0
+9608,20,0.455691233,0
+9609,20,0.455691233,0
+9610,20,0.455691233,0
+9611,20,0.455691233,0
+9612,20,0.455691233,0
+9613,20,0.455691233,0
+9614,20,0.455691233,0
+9615,20,0.455691233,0
+9616,20,0.455691233,0
+9617,20,0.455691233,0
+9618,20,0.455691233,0
+9619,20,0.455691233,0
+9620,20,0.455691233,0
+9621,20,0.455691233,0
+9622,20,0.455691233,0
+9623,20,0.455691233,0
+9624,20,0.455691233,0
+9625,20,0.455691233,0
+9626,20,0.455691233,0
+9627,20,0.455691233,0
+9628,20,0.455691233,0
+9629,20,0.455691233,0
+9630,20,0.455691233,0
+9631,20,0.455691233,0
+9632,20,0.455691233,0
+9633,20,0.455691233,0
+9634,20,0.455691233,0
+9635,20,0.455691233,0
+9636,20,0.455691233,0
+9637,20,0.455691233,0
+9638,20,0.455691233,0
+9639,20,0.455691233,0
+9640,20,0.455691233,0
+9641,20,0.455691233,0
+9642,20,0.455691233,0
+9643,20,0.455691233,0
+9644,20,0.455691233,0
+9645,20,0.455691233,0
+9646,20,0.455691233,0
+9647,20,0.455691233,0
+9648,20,0.455691233,0
+9649,20,0.302640479,0
+9650,20,0.302640479,0
+9651,20,0.302640479,0
+9652,20,0.302640479,0
+9653,20,0.302640479,0
+9654,20,0.302640479,0
+9655,20,0.302640479,0
+9656,20,0.302640479,0
+9657,20,0.302640479,0
+9658,20,0.302640479,0
+9659,20,0.302640479,0
+9660,20,0.302640479,0
+9661,20,0.302640479,0
+9662,20,0.302640479,0
+9663,20,0.302640479,0
+9664,20,0.302640479,0
+9665,20,0.302640479,0
+9666,20,0.302640479,0
+9667,20,0.302640479,0
+9668,20,0.302640479,0
+9669,20,0.143430429,0
+9670,20,0.143430429,0
+9671,20,0.143430429,0
+9672,20,0.143430429,0
+9673,20,0.143430429,0
+9674,20,0.143430429,0
+9675,20,0.143430429,0
+9676,20,0.143430429,0
+9677,20,0.143430429,0
+9678,20,0.143430429,0
+9679,20,0.143430429,0
+9680,20,0.143430429,0
+9681,20,0.143430429,0
+9682,20,0.143430429,0
+9683,20,0.143430429,0
+9684,20,0.143430429,0
+9685,20,0.143430429,0
+9686,20,0.143430429,0
+9687,20,0.143430429,0
+9688,20,0.143430429,0
+9689,20,-1.58E-02,0
+9690,20,-1.58E-02,0
+9691,20,-1.58E-02,0
+9692,20,-1.58E-02,0
+9693,20,-1.58E-02,0
+9694,20,-1.58E-02,0
+9695,20,-1.58E-02,0
+9696,20,-1.58E-02,0
+9697,20,-1.58E-02,0
+9698,20,-1.58E-02,0
+9699,20,-1.58E-02,0
+9700,20,-1.58E-02,0
+9701,20,-1.58E-02,0
+9702,20,-1.58E-02,0
+9703,20,-1.58E-02,0
+9704,20,-1.58E-02,0
+9705,20,-1.58E-02,0
+9706,20,-1.58E-02,0
+9707,20,-1.58E-02,0
+9708,20,-1.58E-02,0
+9709,20,-0.174989672,0
+9710,20,-0.174989672,0
+9711,20,-0.174989672,0
+9712,20,-0.174989672,0
+9713,20,-0.174989672,0
+9714,20,-0.174989672,0
+9715,20,-0.174989672,0
+9716,20,-0.174989672,0
+9717,20,-0.174989672,0
+9718,20,-0.174989672,0
+9719,20,-0.174989672,0
+9720,20,-0.174989672,0
+9721,20,-0.174989672,0
+9722,20,-0.174989672,0
+9723,20,-0.174989672,0
+9724,20,-0.174989672,0
+9725,20,-0.174989672,0
+9726,20,-0.174989672,0
+9727,20,-0.174989672,0
+9728,20,-0.174989672,0
+9729,20,-0.334199722,0
+9730,20,-0.334199722,0
+9731,20,-0.334199722,0
+9732,20,-0.334199722,0
+9733,20,-0.334199722,0
+9734,20,-0.334199722,0
+9735,20,-0.334199722,0
+9736,20,-0.334199722,0
+9737,20,-0.334199722,0
+9738,20,-0.334199722,0
+9739,20,-0.334199722,0
+9740,20,-0.334199722,0
+9741,20,-0.334199722,0
+9742,20,-0.334199722,0
+9743,20,-0.334199722,0
+9744,20,-0.334199722,0
+9745,20,-0.334199722,0
+9746,20,-0.334199722,0
+9747,20,-0.334199722,0
+9748,20,-0.334199722,0
+9749,20,-0.515127762,0
+9750,20,-0.515127762,0
+9751,20,-0.515127762,0
+9752,20,-0.515127762,0
+9753,20,-0.515127762,0
+9754,20,-0.515127762,0
+9755,20,-0.515127762,0
+9756,20,-0.515127762,0
+9757,20,-0.515127762,0
+9758,20,-0.515127762,0
+9759,20,-0.649027762,0
+9760,20,-0.649027762,0
+9761,20,-0.649027762,0
+9762,20,-0.649027762,0
+9763,20,-0.649027762,0
+9764,20,-0.649027762,0
+9765,20,-0.649027762,0
+9766,20,-0.649027762,0
+9767,20,-0.649027762,0
+9768,20,-0.649027762,0
+9769,20,-0.782927762,0
+9770,20,-0.782927762,0
+9771,20,-0.782927762,0
+9772,20,-0.782927762,0
+9773,20,-0.782927762,0
+9774,20,-0.782927762,0
+9775,20,-0.782927762,0
+9776,20,-0.782927762,0
+9777,20,-0.782927762,0
+9778,20,-0.782927762,0
+9779,20,-0.916827762,0
+9780,20,-0.916827762,0
+9781,20,-0.916827762,0
+9782,20,-0.916827762,0
+9783,20,-0.916827762,0
+9784,20,-0.916827762,0
+9785,20,-0.916827762,0
+9786,20,-0.916827762,0
+9787,20,-0.916827762,0
+9788,20,-0.916827762,0
+9789,20,-1.050727762,0
+9790,20,-1.050727762,0
+9791,20,-1.050727762,0
+9792,20,-1.050727762,0
+9793,20,-1.050727762,0
+9794,20,-1.050727762,0
+9795,20,-1.050727762,0
+9796,20,-1.050727762,0
+9797,20,-1.050727762,0
+9798,20,-1.050727762,0
+9799,20,-1.184627762,0
+9800,20,-1.184627762,0
+9801,20,-1.184627762,0
+9802,20,-1.184627762,0
+9803,20,-1.184627762,0
+9804,20,-1.184627762,0
+9805,20,-1.184627762,0
+9806,20,-1.184627762,0
+9807,20,-1.184627762,0
+9808,20,-1.184627762,0
+9809,20,-1.318527762,0
+9810,20,-1.318527762,0
+9811,20,-1.318527762,0
+9812,20,-1.318527762,0
+9813,20,-1.318527762,0
+9814,20,-1.318527762,0
+9815,20,-1.318527762,0
+9816,20,-1.318527762,0
+9817,20,-1.318527762,0
+9818,20,-1.318527762,0
+9819,20,-1.452427762,0
+9820,20,-1.452427762,0
+9821,20,-1.452427762,0
+9822,20,-1.452427762,0
+9823,20,-1.452427762,0
+9824,20,-1.452427762,0
+9825,20,-1.452427762,0
+9826,20,-1.452427762,0
+9827,20,-1.452427762,0
+9828,20,-1.452427762,0
+9829,20,-1.586327762,0
+9830,20,-1.586327762,0
+9831,20,-1.586327762,0
+9832,20,-1.586327762,0
+9833,20,-1.586327762,0
+9834,20,-1.586327762,0
+9835,20,-1.586327762,0
+9836,20,-1.586327762,0
+9837,20,-1.586327762,0
+9838,20,-1.586327762,0
+9839,20,-1.586327762,0
+9840,20,-1.586327762,0
+9841,20,-1.586327762,0
+9842,20,-1.586327762,0
+9843,20,-1.586327762,0
+9844,20,-1.586327762,0
+9845,20,-1.586327762,0
+9846,20,-1.586327762,0
+9847,20,-1.586327762,0
+9848,20,-1.586327762,0
+9849,20,-1.694917712,0
+9850,20,-1.694917712,0
+9851,20,-1.694917712,0
+9852,20,-1.694917712,0
+9853,20,-1.694917712,0
+9854,20,-1.694917712,0
+9855,20,-1.694917712,0
+9856,20,-1.694917712,0
+9857,20,-1.694917712,0
+9858,20,-1.694917712,0
+9859,20,-1.694917712,0
+9860,20,-1.694917712,0
+9861,20,-1.694917712,0
+9862,20,-1.694917712,0
+9863,20,-1.694917712,0
+9864,20,-1.694917712,0
+9865,20,-1.694917712,0
+9866,20,-1.694917712,0
+9867,20,-1.694917712,0
+9868,20,-1.694917712,0
+9869,20,-1.803507662,0
+9870,20,-1.803507662,0
+9871,20,-1.803507662,0
+9872,20,-1.803507662,0
+9873,20,-1.803507662,0
+9874,20,-1.803507662,0
+9875,20,-1.803507662,0
+9876,20,-1.803507662,0
+9877,20,-1.803507662,0
+9878,20,-1.803507662,0
+9879,20,-1.803507662,0
+9880,20,-1.803507662,0
+9881,20,-1.803507662,0
+9882,20,-1.803507662,0
+9883,20,-1.803507662,0
+9884,20,-1.803507662,0
+9885,20,-1.803507662,0
+9886,20,-1.803507662,0
+9887,20,-1.803507662,0
+9888,20,-1.803507662,0
+9889,20,-1.912097611,0
+9890,20,-1.912097611,0
+9891,20,-1.912097611,0
+9892,20,-1.912097611,0
+9893,20,-1.912097611,0
+9894,20,-1.912097611,0
+9895,20,-1.912097611,0
+9896,20,-1.912097611,0
+9897,20,-1.912097611,0
+9898,20,-1.912097611,0
+9899,20,-1.912097611,0
+9900,20,-1.912097611,0
+9901,20,-1.912097611,0
+9902,20,-1.912097611,0
+9903,20,-1.912097611,0
+9904,20,-1.912097611,0
+9905,20,-1.912097611,0
+9906,20,-1.912097611,0
+9907,20,-1.912097611,0
+9908,20,-1.912097611,0
+9909,20,-2.020687561,0
+9910,20,-2.020687561,0
+9911,20,-2.020687561,0
+9912,20,-2.020687561,0
+9913,20,-2.020687561,0
+9914,20,-2.020687561,0
+9915,20,-2.020687561,0
+9916,20,-2.020687561,0
+9917,20,-2.020687561,0
+9918,20,-2.020687561,0
+9919,20,-2.020687561,0
+9920,20,-2.020687561,0
+9921,20,-2.020687561,0
+9922,20,-2.020687561,0
+9923,20,-2.020687561,0
+9924,20,-2.020687561,0
+9925,20,-2.020687561,0
+9926,20,-2.020687561,0
+9927,20,-2.020687561,0
+9928,20,-2.020687561,0
+9929,20,-2.129277511,0
+9930,20,-2.129277511,0
+9931,20,-2.129277511,0
+9932,20,-2.129277511,0
+9933,20,-2.129277511,0
+9934,20,-2.129277511,0
+9935,20,-2.129277511,0
+9936,20,-2.129277511,0
+9937,20,-2.129277511,0
+9938,20,-2.129277511,0
+9939,20,-2.129277511,0
+9940,20,-2.129277511,0
+9941,20,-2.129277511,0
+9942,20,-2.129277511,0
+9943,20,-2.129277511,0
+9944,20,-2.129277511,0
+9945,20,-2.129277511,0
+9946,20,-2.129277511,0
+9947,20,-2.129277511,0
+9948,20,-2.129277511,0
+9949,20,-2.129277511,0
+9950,20,-2.129277511,0
+9951,20,-2.129277511,0
+9952,20,-2.129277511,0
+9953,20,-2.129277511,0
+9954,20,-2.129277511,0
+9955,20,-2.129277511,0
+9956,20,-2.129277511,0
+9957,20,-2.129277511,0
+9958,20,-2.129277511,0
+9959,20,-2.129277511,0
+9960,20,-2.129277511,0
+9961,20,-2.129277511,0
+9962,20,-2.129277511,0
+9963,20,-2.129277511,0
+9964,20,-2.129277511,0
+9965,20,-2.129277511,0
+9966,20,-2.129277511,0
+9967,20,-2.129277511,0
+9968,20,-2.129277511,0
+9969,20,-2.129277511,0
+9970,20,-2.129277511,0
+9971,20,-2.129277511,0
+9972,20,-2.129277511,0
+9973,20,-2.129277511,0
+9974,20,-2.129277511,0
+9975,20,-2.129277511,0
+9976,20,-2.129277511,0
+9977,20,-2.129277511,0
+9978,20,-2.129277511,0
+9979,20,-2.129277511,0
+9980,20,-2.129277511,0
+9981,20,-2.129277511,0
+9982,20,-2.129277511,0
+9983,20,-2.129277511,0
+9984,20,-2.129277511,0
+9985,20,-2.129277511,0
+9986,20,-2.129277511,0
+9987,20,-2.129277511,0
+9988,20,-2.129277511,0
+9989,20,-2.129277511,0
+9990,20,-2.129277511,0
+9991,20,-2.129277511,0
+9992,20,-2.129277511,0
+9993,20,-2.129277511,0
+9994,20,-2.129277511,0
+9995,20,-2.129277511,0
+9996,20,-2.129277511,0
+9997,20,-2.129277511,0
+9998,20,-2.129277511,0
+9999,20,-2.026624295,0
+10000,20,-2.026624295,0
+10001,20,-2.026624295,0
+10002,20,-2.026624295,0
+10003,20,-2.026624295,0
+10004,20,-2.026624295,0
+10005,20,-2.026624295,0
+10006,20,-2.026624295,0
+10007,20,-2.026624295,0
+10008,20,-2.026624295,0
+10009,20,-2.026624295,0
+10010,20,-2.026624295,0
+10011,20,-2.026624295,0
+10012,20,-2.026624295,0
+10013,20,-2.026624295,0
+10014,20,-2.026624295,0
+10015,20,-2.026624295,0
+10016,20,-2.026624295,0
+10017,20,-2.026624295,0
+10018,20,-2.026624295,0
+10019,20,-2.026624295,0
+10020,20,-2.026624295,0
+10021,20,-2.026624295,0
+10022,20,-2.026624295,0
+10023,20,-2.026624295,0
+10024,20,-2.026624295,0
+10025,20,-2.026624295,0
+10026,20,-2.026624295,0
+10027,20,-2.026624295,0
+10028,20,-2.026624295,0
+10029,20,-1.911564496,0
+10030,20,-1.911564496,0
+10031,20,-1.911564496,0
+10032,20,-1.911564496,0
+10033,20,-1.911564496,0
+10034,20,-1.911564496,0
+10035,20,-1.911564496,0
+10036,20,-1.911564496,0
+10037,20,-1.911564496,0
+10038,20,-1.911564496,0
+10039,20,-1.911564496,0
+10040,20,-1.911564496,0
+10041,20,-1.911564496,0
+10042,20,-1.911564496,0
+10043,20,-1.911564496,0
+10044,20,-1.911564496,0
+10045,20,-1.911564496,0
+10046,20,-1.911564496,0
+10047,20,-1.911564496,0
+10048,20,-1.911564496,0
+10049,20,-1.911564496,0
+10050,20,-1.911564496,0
+10051,20,-1.911564496,0
+10052,20,-1.911564496,0
+10053,20,-1.911564496,0
+10054,20,-1.911564496,0
+10055,20,-1.911564496,0
+10056,20,-1.911564496,0
+10057,20,-1.911564496,0
+10058,20,-1.911564496,0
+10059,20,-1.796504697,0
+10060,20,-1.796504697,0
+10061,20,-1.796504697,0
+10062,20,-1.796504697,0
+10063,20,-1.796504697,0
+10064,20,-1.796504697,0
+10065,20,-1.796504697,0
+10066,20,-1.796504697,0
+10067,20,-1.796504697,0
+10068,20,-1.796504697,0
+10069,20,-1.796504697,0
+10070,20,-1.796504697,0
+10071,20,-1.796504697,0
+10072,20,-1.796504697,0
+10073,20,-1.796504697,0
+10074,20,-1.796504697,0
+10075,20,-1.796504697,0
+10076,20,-1.796504697,0
+10077,20,-1.796504697,0
+10078,20,-1.796504697,0
+10079,20,-1.796504697,0
+10080,20,-1.796504697,0
+10081,20,-1.796504697,0
+10082,20,-1.796504697,0
+10083,20,-1.796504697,0
+10084,20,-1.796504697,0
+10085,20,-1.796504697,0
+10086,20,-1.796504697,0
+10087,20,-1.796504697,0
+10088,20,-1.796504697,0
+10089,20,-1.681444898,0
+10090,20,-1.681444898,0
+10091,20,-1.681444898,0
+10092,20,-1.681444898,0
+10093,20,-1.681444898,0
+10094,20,-1.681444898,0
+10095,20,-1.681444898,0
+10096,20,-1.681444898,0
+10097,20,-1.681444898,0
+10098,20,-1.681444898,0
+10099,20,-1.681444898,0
+10100,20,-1.681444898,0
+10101,20,-1.681444898,0
+10102,20,-1.681444898,0
+10103,20,-1.681444898,0
+10104,20,-1.681444898,0
+10105,20,-1.681444898,0
+10106,20,-1.681444898,0
+10107,20,-1.681444898,0
+10108,20,-1.681444898,0
+10109,20,-1.681444898,0
+10110,20,-1.681444898,0
+10111,20,-1.681444898,0
+10112,20,-1.681444898,0
+10113,20,-1.681444898,0
+10114,20,-1.681444898,0
+10115,20,-1.681444898,0
+10116,20,-1.681444898,0
+10117,20,-1.681444898,0
+10118,20,-1.681444898,0
+10119,20,-1.562699873,0
+10120,20,-1.562699873,0
+10121,20,-1.562699873,0
+10122,20,-1.562699873,0
+10123,20,-1.562699873,0
+10124,20,-1.562699873,0
+10125,20,-1.562699873,0
+10126,20,-1.562699873,0
+10127,20,-1.562699873,0
+10128,20,-1.562699873,0
+10129,20,-1.562699873,0
+10130,20,-1.562699873,0
+10131,20,-1.562699873,0
+10132,20,-1.562699873,0
+10133,20,-1.562699873,0
+10134,20,-1.562699873,0
+10135,20,-1.562699873,0
+10136,20,-1.562699873,0
+10137,20,-1.562699873,0
+10138,20,-1.562699873,0
+10139,20,-1.412288817,0
+10140,20,-1.412288817,0
+10141,20,-1.412288817,0
+10142,20,-1.412288817,0
+10143,20,-1.412288817,0
+10144,20,-1.412288817,0
+10145,20,-1.412288817,0
+10146,20,-1.412288817,0
+10147,20,-1.412288817,0
+10148,20,-1.412288817,0
+10149,20,-1.412288817,0
+10150,20,-1.412288817,0
+10151,20,-1.412288817,0
+10152,20,-1.412288817,0
+10153,20,-1.412288817,0
+10154,20,-1.412288817,0
+10155,20,-1.412288817,0
+10156,20,-1.412288817,0
+10157,20,-1.412288817,0
+10158,20,-1.412288817,0
+10159,20,-1.296395702,0
+10160,20,-1.296395702,0
+10161,20,-1.296395702,0
+10162,20,-1.296395702,0
+10163,20,-1.296395702,0
+10164,20,-1.296395702,0
+10165,20,-1.296395702,0
+10166,20,-1.296395702,0
+10167,20,-1.296395702,0
+10168,20,-1.296395702,0
+10169,20,-1.296395702,0
+10170,20,-1.296395702,0
+10171,20,-1.296395702,0
+10172,20,-1.296395702,0
+10173,20,-1.296395702,0
+10174,20,-1.296395702,0
+10175,20,-1.296395702,0
+10176,20,-1.296395702,0
+10177,20,-1.296395702,0
+10178,20,-1.296395702,0
+10179,20,-1.296395702,0
+10180,20,-1.296395702,0
+10181,20,-1.296395702,0
+10182,20,-1.296395702,0
+10183,20,-1.296395702,0
+10184,20,-1.296395702,0
+10185,20,-1.296395702,0
+10186,20,-1.296395702,0
+10187,20,-1.296395702,0
+10188,20,-1.296395702,0
+10189,20,-1.185838918,0
+10190,20,-1.185838918,0
+10191,20,-1.185838918,0
+10192,20,-1.185838918,0
+10193,20,-1.185838918,0
+10194,20,-1.185838918,0
+10195,20,-1.185838918,0
+10196,20,-1.185838918,0
+10197,20,-1.185838918,0
+10198,20,-1.185838918,0
+10199,20,-1.185838918,0
+10200,20,-1.185838918,0
+10201,20,-1.185838918,0
+10202,20,-1.185838918,0
+10203,20,-1.185838918,0
+10204,20,-1.185838918,0
+10205,20,-1.185838918,0
+10206,20,-1.185838918,0
+10207,20,-1.185838918,0
+10208,20,-1.185838918,0
+10209,20,-1.185838918,0
+10210,20,-1.185838918,0
+10211,20,-1.185838918,0
+10212,20,-1.185838918,0
+10213,20,-1.185838918,0
+10214,20,-1.185838918,0
+10215,20,-1.185838918,0
+10216,20,-1.185838918,0
+10217,20,-1.185838918,0
+10218,20,-1.185838918,0
+10219,20,-1.075282134,0
+10220,20,-1.075282134,0
+10221,20,-1.075282134,0
+10222,20,-1.075282134,0
+10223,20,-1.075282134,0
+10224,20,-1.075282134,0
+10225,20,-1.075282134,0
+10226,20,-1.075282134,0
+10227,20,-1.075282134,0
+10228,20,-1.075282134,0
+10229,20,-1.075282134,0
+10230,20,-1.075282134,0
+10231,20,-1.075282134,0
+10232,20,-1.075282134,0
+10233,20,-1.075282134,0
+10234,20,-1.075282134,0
+10235,20,-1.075282134,0
+10236,20,-1.075282134,0
+10237,20,-1.075282134,0
+10238,20,-1.075282134,0
+10239,20,-1.075282134,0
+10240,20,-1.075282134,0
+10241,20,-1.075282134,0
+10242,20,-1.075282134,0
+10243,20,-1.075282134,0
+10244,20,-1.075282134,0
+10245,20,-1.075282134,0
+10246,20,-1.075282134,0
+10247,20,-1.075282134,0
+10248,20,-1.075282134,0
+10249,20,-0.96472535,0
+10250,20,-0.96472535,0
+10251,20,-0.96472535,0
+10252,20,-0.96472535,0
+10253,20,-0.96472535,0
+10254,20,-0.96472535,0
+10255,20,-0.96472535,0
+10256,20,-0.96472535,0
+10257,20,-0.96472535,0
+10258,20,-0.96472535,0
+10259,20,-0.96472535,0
+10260,20,-0.96472535,0
+10261,20,-0.96472535,0
+10262,20,-0.96472535,0
+10263,20,-0.96472535,0
+10264,20,-0.96472535,0
+10265,20,-0.96472535,0
+10266,20,-0.96472535,0
+10267,20,-0.96472535,0
+10268,20,-0.96472535,0
+10269,20,-0.96472535,0
+10270,20,-0.96472535,0
+10271,20,-0.96472535,0
+10272,20,-0.96472535,0
+10273,20,-0.96472535,0
+10274,20,-0.96472535,0
+10275,20,-0.96472535,0
+10276,20,-0.96472535,0
+10277,20,-0.96472535,0
+10278,20,-0.96472535,0
+10279,20,-0.854168566,0
+10280,20,-0.854168566,0
+10281,20,-0.854168566,0
+10282,20,-0.854168566,0
+10283,20,-0.854168566,0
+10284,20,-0.854168566,0
+10285,20,-0.854168566,0
+10286,20,-0.854168566,0
+10287,20,-0.854168566,0
+10288,20,-0.854168566,0
+10289,20,-0.854168566,0
+10290,20,-0.854168566,0
+10291,20,-0.854168566,0
+10292,20,-0.854168566,0
+10293,20,-0.854168566,0
+10294,20,-0.854168566,0
+10295,20,-0.854168566,0
+10296,20,-0.854168566,0
+10297,20,-0.854168566,0
+10298,20,-0.854168566,0
+10299,20,-0.854168566,0
+10300,20,-0.854168566,0
+10301,20,-0.854168566,0
+10302,20,-0.854168566,0
+10303,20,-0.854168566,0
+10304,20,-0.854168566,0
+10305,20,-0.854168566,0
+10306,20,-0.854168566,0
+10307,20,-0.854168566,0
+10308,20,-0.854168566,0
+10309,20,-0.743611782,0
+10310,20,-0.743611782,0
+10311,20,-0.743611782,0
+10312,20,-0.743611782,0
+10313,20,-0.743611782,0
+10314,20,-0.743611782,0
+10315,20,-0.743611782,0
+10316,20,-0.743611782,0
+10317,20,-0.743611782,0
+10318,20,-0.743611782,0
+10319,20,-0.743611782,0
+10320,20,-0.743611782,0
+10321,20,-0.743611782,0
+10322,20,-0.743611782,0
+10323,20,-0.743611782,0
+10324,20,-0.743611782,0
+10325,20,-0.743611782,0
+10326,20,-0.743611782,0
+10327,20,-0.743611782,0
+10328,20,-0.743611782,0
+10329,20,-0.743611782,0
+10330,20,-0.743611782,0
+10331,20,-0.743611782,0
+10332,20,-0.743611782,0
+10333,20,-0.743611782,0
+10334,20,-0.743611782,0
+10335,20,-0.743611782,0
+10336,20,-0.743611782,0
+10337,20,-0.743611782,0
+10338,20,-0.743611782,0
+10339,20,-0.743611782,0
+10340,20,-0.743611782,0
+10341,20,-0.743611782,0
+10342,20,-0.743611782,0
+10343,20,-0.743611782,0
+10344,20,-0.743611782,0
+10345,20,-0.743611782,0
+10346,20,-0.743611782,0
+10347,20,-0.743611782,0
+10348,20,-0.743611782,0
+10349,20,-0.743611782,0
+10350,20,-0.743611782,0
+10351,20,-0.743611782,0
+10352,20,-0.743611782,0
+10353,20,-0.743611782,0
+10354,20,-0.743611782,0
+10355,20,-0.743611782,0
+10356,20,-0.743611782,0
+10357,20,-0.743611782,0
+10358,20,-0.743611782,0
+10359,20,-0.743611782,0
+10360,20,-0.743611782,0
+10361,20,-0.743611782,0
+10362,20,-0.743611782,0
+10363,20,-0.743611782,0
+10364,20,-0.743611782,0
+10365,20,-0.743611782,0
+10366,20,-0.743611782,0
+10367,20,-0.743611782,0
+10368,20,-0.743611782,0
+10369,20,-0.743611782,0
+10370,20,-0.743611782,0
+10371,20,-0.743611782,0
+10372,20,-0.743611782,0
+10373,20,-0.743611782,0
+10374,20,-0.743611782,0
+10375,20,-0.743611782,0
+10376,20,-0.743611782,0
+10377,20,-0.743611782,0
+10378,20,-0.743611782,0
+10379,20,-0.743611782,0
+10380,20,-0.743611782,0
+10381,20,-0.743611782,0
+10382,20,-0.743611782,0
+10383,20,-0.743611782,0
+10384,20,-0.743611782,0
+10385,20,-0.743611782,0
+10386,20,-0.743611782,0
+10387,20,-0.743611782,0
+10388,20,-0.743611782,0
+10389,20,-0.603169471,0
+10390,20,-0.603169471,0
+10391,20,-0.603169471,0
+10392,20,-0.603169471,0
+10393,20,-0.603169471,0
+10394,20,-0.603169471,0
+10395,20,-0.603169471,0
+10396,20,-0.603169471,0
+10397,20,-0.603169471,0
+10398,20,-0.603169471,0
+10399,20,-0.603169471,0
+10400,20,-0.603169471,0
+10401,20,-0.603169471,0
+10402,20,-0.603169471,0
+10403,20,-0.603169471,0
+10404,20,-0.603169471,0
+10405,20,-0.603169471,0
+10406,20,-0.603169471,0
+10407,20,-0.603169471,0
+10408,20,-0.603169471,0
+10409,20,-0.479880024,0
+10410,20,-0.479880024,0
+10411,20,-0.479880024,0
+10412,20,-0.479880024,0
+10413,20,-0.479880024,0
+10414,20,-0.479880024,0
+10415,20,-0.479880024,0
+10416,20,-0.479880024,0
+10417,20,-0.479880024,0
+10418,20,-0.479880024,0
+10419,20,-0.479880024,0
+10420,20,-0.479880024,0
+10421,20,-0.479880024,0
+10422,20,-0.479880024,0
+10423,20,-0.479880024,0
+10424,20,-0.479880024,0
+10425,20,-0.479880024,0
+10426,20,-0.479880024,0
+10427,20,-0.479880024,0
+10428,20,-0.479880024,0
+10429,20,-0.356590576,0
+10430,20,-0.356590576,0
+10431,20,-0.356590576,0
+10432,20,-0.356590576,0
+10433,20,-0.356590576,0
+10434,20,-0.356590576,0
+10435,20,-0.356590576,0
+10436,20,-0.356590576,0
+10437,20,-0.356590576,0
+10438,20,-0.356590576,0
+10439,20,-0.356590576,0
+10440,20,-0.356590576,0
+10441,20,-0.356590576,0
+10442,20,-0.356590576,0
+10443,20,-0.356590576,0
+10444,20,-0.356590576,0
+10445,20,-0.356590576,0
+10446,20,-0.356590576,0
+10447,20,-0.356590576,0
+10448,20,-0.356590576,0
+10449,20,-0.233301129,0
+10450,20,-0.233301129,0
+10451,20,-0.233301129,0
+10452,20,-0.233301129,0
+10453,20,-0.233301129,0
+10454,20,-0.233301129,0
+10455,20,-0.233301129,0
+10456,20,-0.233301129,0
+10457,20,-0.233301129,0
+10458,20,-0.233301129,0
+10459,20,-0.233301129,0
+10460,20,-0.233301129,0
+10461,20,-0.233301129,0
+10462,20,-0.233301129,0
+10463,20,-0.233301129,0
+10464,20,-0.233301129,0
+10465,20,-0.233301129,0
+10466,20,-0.233301129,0
+10467,20,-0.233301129,0
+10468,20,-0.233301129,0
+10469,20,-0.110011682,0
+10470,20,-0.110011682,0
+10471,20,-0.110011682,0
+10472,20,-0.110011682,0
+10473,20,-0.110011682,0
+10474,20,-0.110011682,0
+10475,20,-0.110011682,0
+10476,20,-0.110011682,0
+10477,20,-0.110011682,0
+10478,20,-0.110011682,0
+10479,20,-0.110011682,0
+10480,20,-0.110011682,0
+10481,20,-0.110011682,0
+10482,20,-0.110011682,0
+10483,20,-0.110011682,0
+10484,20,-0.110011682,0
+10485,20,-0.110011682,0
+10486,20,-0.110011682,0
+10487,20,-0.110011682,0
+10488,20,-0.110011682,0
+10489,20,1.33E-02,0
+10490,20,1.33E-02,0
+10491,20,1.33E-02,0
+10492,20,1.33E-02,0
+10493,20,1.33E-02,0
+10494,20,1.33E-02,0
+10495,20,1.33E-02,0
+10496,20,1.33E-02,0
+10497,20,1.33E-02,0
+10498,20,1.33E-02,0
+10499,20,1.33E-02,0
+10500,20,1.33E-02,0
+10501,20,1.33E-02,0
+10502,20,1.33E-02,0
+10503,20,1.33E-02,0
+10504,20,1.33E-02,0
+10505,20,1.33E-02,0
+10506,20,1.33E-02,0
+10507,20,1.33E-02,0
+10508,20,1.33E-02,0
+10509,20,0.136567213,0
+10510,20,0.136567213,0
+10511,20,0.136567213,0
+10512,20,0.136567213,0
+10513,20,0.136567213,0
+10514,20,0.136567213,0
+10515,20,0.136567213,0
+10516,20,0.136567213,0
+10517,20,0.136567213,0
+10518,20,0.136567213,0
+10519,20,0.136567213,0
+10520,20,0.136567213,0
+10521,20,0.136567213,0
+10522,20,0.136567213,0
+10523,20,0.136567213,0
+10524,20,0.136567213,0
+10525,20,0.136567213,0
+10526,20,0.136567213,0
+10527,20,0.136567213,0
+10528,20,0.136567213,0
+10529,20,0.25985666,0
+10530,20,0.25985666,0
+10531,20,0.25985666,0
+10532,20,0.25985666,0
+10533,20,0.25985666,0
+10534,20,0.25985666,0
+10535,20,0.25985666,0
+10536,20,0.25985666,0
+10537,20,0.25985666,0
+10538,20,0.25985666,0
+10539,20,0.25985666,0
+10540,20,0.25985666,0
+10541,20,0.25985666,0
+10542,20,0.25985666,0
+10543,20,0.25985666,0
+10544,20,0.25985666,0
+10545,20,0.25985666,0
+10546,20,0.25985666,0
+10547,20,0.25985666,0
+10548,20,0.25985666,0
+10549,20,0.383146107,0
+10550,20,0.383146107,0
+10551,20,0.383146107,0
+10552,20,0.383146107,0
+10553,20,0.383146107,0
+10554,20,0.383146107,0
+10555,20,0.383146107,0
+10556,20,0.383146107,0
+10557,20,0.383146107,0
+10558,20,0.383146107,0
+10559,20,0.383146107,0
+10560,20,0.383146107,0
+10561,20,0.383146107,0
+10562,20,0.383146107,0
+10563,20,0.383146107,0
+10564,20,0.383146107,0
+10565,20,0.383146107,0
+10566,20,0.383146107,0
+10567,20,0.383146107,0
+10568,20,0.383146107,0
+10569,20,0.506435554,0
+10570,20,0.506435554,0
+10571,20,0.506435554,0
+10572,20,0.506435554,0
+10573,20,0.506435554,0
+10574,20,0.506435554,0
+10575,20,0.506435554,0
+10576,20,0.506435554,0
+10577,20,0.506435554,0
+10578,20,0.506435554,0
+10579,20,0.506435554,0
+10580,20,0.506435554,0
+10581,20,0.506435554,0
+10582,20,0.506435554,0
+10583,20,0.506435554,0
+10584,20,0.506435554,0
+10585,20,0.506435554,0
+10586,20,0.506435554,0
+10587,20,0.506435554,0
+10588,20,0.506435554,0
+10589,20,0.506435554,0
+10590,20,0.506435554,0
+10591,20,0.506435554,0
+10592,20,0.506435554,0
+10593,20,0.506435554,0
+10594,20,0.506435554,0
+10595,20,0.506435554,0
+10596,20,0.506435554,0
+10597,20,0.506435554,0
+10598,20,0.506435554,0
+10599,20,0.506435554,0
+10600,20,0.506435554,0
+10601,20,0.506435554,0
+10602,20,0.506435554,0
+10603,20,0.506435554,0
+10604,20,0.506435554,0
+10605,20,0.506435554,0
+10606,20,0.506435554,0
+10607,20,0.506435554,0
+10608,20,0.506435554,0
+10609,20,0.506435554,0
+10610,20,0.506435554,0
+10611,20,0.506435554,0
+10612,20,0.506435554,0
+10613,20,0.506435554,0
+10614,20,0.506435554,0
+10615,20,0.506435554,0
+10616,20,0.506435554,0
+10617,20,0.506435554,0
+10618,20,0.506435554,0
+10619,20,0.506435554,0
+10620,20,0.506435554,0
+10621,20,0.506435554,0
+10622,20,0.506435554,0
+10623,20,0.506435554,0
+10624,20,0.506435554,0
+10625,20,0.506435554,0
+10626,20,0.506435554,0
+10627,20,0.506435554,0
+10628,20,0.506435554,0
+10629,20,0.506435554,0
+10630,20,0.506435554,0
+10631,20,0.506435554,0
+10632,20,0.506435554,0
+10633,20,0.506435554,0
+10634,20,0.506435554,0
+10635,20,0.506435554,0
+10636,20,0.506435554,0
+10637,20,0.506435554,0
+10638,20,0.506435554,0
+10639,20,0.506435554,0
+10640,20,0.506435554,0
+10641,20,0.506435554,0
+10642,20,0.506435554,0
+10643,20,0.506435554,0
+10644,20,0.506435554,0
+10645,20,0.506435554,0
+10646,20,0.506435554,0
+10647,20,0.506435554,0
+10648,20,0.506435554,0
+10649,20,0.506435554,0
+10650,20,0.506435554,0
+10651,20,0.506435554,0
+10652,20,0.506435554,0
+10653,20,0.506435554,0
+10654,20,0.506435554,0
+10655,20,0.506435554,0
+10656,20,0.506435554,0
+10657,20,0.506435554,0
+10658,20,0.506435554,0
+10659,20,0.506435554,0
+10660,20,0.506435554,0
+10661,20,0.506435554,0
+10662,20,0.506435554,0
+10663,20,0.506435554,0
+10664,20,0.506435554,0
+10665,20,0.506435554,0
+10666,20,0.506435554,0
+10667,20,0.506435554,0
+10668,20,0.506435554,0
+10669,20,0.506435554,0
+10670,20,0.506435554,0
+10671,20,0.506435554,0
+10672,20,0.506435554,0
+10673,20,0.506435554,0
+10674,20,0.506435554,0
+10675,20,0.506435554,0
+10676,20,0.506435554,0
+10677,20,0.506435554,0
+10678,20,0.506435554,0
+10679,20,0.506435554,0
+10680,20,0.506435554,0
+10681,20,0.506435554,0
+10682,20,0.506435554,0
+10683,20,0.506435554,0
+10684,20,0.506435554,0
+10685,20,0.506435554,0
+10686,20,0.506435554,0
+10687,20,0.506435554,0
+10688,20,0.506435554,0
+10689,20,0.506435554,0
+10690,20,0.506435554,0
+10691,20,0.506435554,0
+10692,20,0.506435554,0
+10693,20,0.506435554,0
+10694,20,0.506435554,0
+10695,20,0.506435554,0
+10696,20,0.506435554,0
+10697,20,0.506435554,0
+10698,20,0.506435554,0
+10699,20,0.506435554,0
+10700,20,0.506435554,0
+10701,20,0.506435554,0
+10702,20,0.506435554,0
+10703,20,0.506435554,0
+10704,20,0.506435554,0
+10705,20,0.506435554,0
+10706,20,0.506435554,0
+10707,20,0.506435554,0
+10708,20,0.506435554,0
+10709,20,0.506435554,0
+10710,20,0.506435554,0
+10711,20,0.506435554,0
+10712,20,0.506435554,0
+10713,20,0.506435554,0
+10714,20,0.506435554,0
+10715,20,0.506435554,0
+10716,20,0.506435554,0
+10717,20,0.506435554,0
+10718,20,0.506435554,0
+10719,20,0.506435554,0
+10720,20,0.506435554,0
+10721,20,0.506435554,0
+10722,20,0.506435554,0
+10723,20,0.506435554,0
+10724,20,0.506435554,0
+10725,20,0.506435554,0
+10726,20,0.506435554,0
+10727,20,0.506435554,0
+10728,20,0.506435554,0
+10729,20,0.506435554,0
+10730,20,0.506435554,0
+10731,20,0.506435554,0
+10732,20,0.506435554,0
+10733,20,0.506435554,0
+10734,20,0.506435554,0
+10735,20,0.506435554,0
+10736,20,0.506435554,0
+10737,20,0.506435554,0
+10738,20,0.506435554,0
+10739,20,0.506435554,0
+10740,20,0.506435554,0
+10741,20,0.506435554,0
+10742,20,0.506435554,0
+10743,20,0.506435554,0
+10744,20,0.506435554,0
+10745,20,0.506435554,0
+10746,20,0.506435554,0
+10747,20,0.506435554,0
+10748,20,0.506435554,0
+10749,20,0.506435554,0
+10750,20,0.506435554,0
+10751,20,0.506435554,0
+10752,20,0.506435554,0
+10753,20,0.506435554,0
+10754,20,0.506435554,0
+10755,20,0.506435554,0
+10756,20,0.506435554,0
+10757,20,0.506435554,0
+10758,20,0.506435554,0
+10759,20,0.506435554,0
+10760,20,0.506435554,0
+10761,20,0.506435554,0
+10762,20,0.506435554,0
+10763,20,0.506435554,0
+10764,20,0.506435554,0
+10765,20,0.506435554,0
+10766,20,0.506435554,0
+10767,20,0.506435554,0
+10768,20,0.506435554,0
+10769,20,0.506435554,0
+10770,20,0.506435554,0
+10771,20,0.506435554,0
+10772,20,0.506435554,0
+10773,20,0.506435554,0
+10774,20,0.506435554,0
+10775,20,0.506435554,0
+10776,20,0.506435554,0
+10777,20,0.506435554,0
+10778,20,0.506435554,0
+10779,20,0.506435554,0
+10780,20,0.506435554,0
+10781,20,0.506435554,0
+10782,20,0.506435554,0
+10783,20,0.506435554,0
+10784,20,0.506435554,0
+10785,20,0.506435554,0
+10786,20,0.506435554,0
+10787,20,0.506435554,0
+10788,20,0.506435554,0
+10789,20,0.506435554,0
+10790,20,0.506435554,0
+10791,20,0.506435554,0
+10792,20,0.506435554,0
+10793,20,0.506435554,0
+10794,20,0.506435554,0
+10795,20,0.506435554,0
+10796,20,0.506435554,0
+10797,20,0.506435554,0
+10798,20,0.506435554,0
+10799,20,0.506435554,0
+10800,20,0.506435554,0
+10801,20,0.506435554,0
+10802,20,0.506435554,0
+10803,20,0.506435554,0
+10804,20,0.506435554,0
+10805,20,0.506435554,0
+10806,20,0.506435554,0
+10807,20,0.506435554,0
+10808,20,0.506435554,0
+10809,20,0.506435554,0
+10810,20,0.506435554,0
+10811,20,0.506435554,0
+10812,20,0.506435554,0
+10813,20,0.506435554,0
+10814,20,0.506435554,0
+10815,20,0.506435554,0
+10816,20,0.506435554,0
+10817,20,0.506435554,0
+10818,20,0.506435554,0
+10819,20,0.506435554,0
+10820,20,0.506435554,0
+10821,20,0.506435554,0
+10822,20,0.506435554,0
+10823,20,0.506435554,0
+10824,20,0.506435554,0
+10825,20,0.506435554,0
+10826,20,0.506435554,0
+10827,20,0.506435554,0
+10828,20,0.506435554,0
+10829,20,0.506435554,0
+10830,20,0.506435554,0
+10831,20,0.506435554,0
+10832,20,0.506435554,0
+10833,20,0.506435554,0
+10834,20,0.506435554,0
+10835,20,0.506435554,0
+10836,20,0.506435554,0
+10837,20,0.506435554,0
+10838,20,0.506435554,0
+10839,20,0.506435554,0
+10840,20,0.506435554,0
+10841,20,0.506435554,0
+10842,20,0.506435554,0
+10843,20,0.506435554,0
+10844,20,0.506435554,0
+10845,20,0.506435554,0
+10846,20,0.506435554,0
+10847,20,0.506435554,0
+10848,20,0.506435554,0
+10849,20,0.506435554,0
+10850,20,0.506435554,0
+10851,20,0.506435554,0
+10852,20,0.506435554,0
+10853,20,0.506435554,0
+10854,20,0.506435554,0
+10855,20,0.506435554,0
+10856,20,0.506435554,0
+10857,20,0.506435554,0
+10858,20,0.506435554,0
+10859,20,0.506435554,0
+10860,20,0.506435554,0
+10861,20,0.506435554,0
+10862,20,0.506435554,0
+10863,20,0.506435554,0
+10864,20,0.506435554,0
+10865,20,0.506435554,0
+10866,20,0.506435554,0
+10867,20,0.506435554,0
+10868,20,0.506435554,0
+10869,20,0.506435554,0
+10870,20,0.506435554,0
+10871,20,0.506435554,0
+10872,20,0.506435554,0
+10873,20,0.506435554,0
+10874,20,0.506435554,0
+10875,20,0.506435554,0
+10876,20,0.506435554,0
+10877,20,0.506435554,0
+10878,20,0.506435554,0
+10879,20,0.506435554,0
+10880,20,0.506435554,0
+10881,20,0.506435554,0
+10882,20,0.506435554,0
+10883,20,0.506435554,0
+10884,20,0.506435554,0
+10885,20,0.506435554,0
+10886,20,0.506435554,0
+10887,20,0.506435554,0
+10888,20,0.506435554,0
+10889,20,0.506435554,0
+10890,20,0.506435554,0
+10891,20,0.506435554,0
+10892,20,0.506435554,0
+10893,20,0.506435554,0
+10894,20,0.506435554,0
+10895,20,0.506435554,0
+10896,20,0.506435554,0
+10897,20,0.506435554,0
+10898,20,0.506435554,0
+10899,20,0.506435554,0
+10900,20,0.506435554,0
+10901,20,0.506435554,0
+10902,20,0.506435554,0
+10903,20,0.506435554,0
+10904,20,0.506435554,0
+10905,20,0.506435554,0
+10906,20,0.506435554,0
+10907,20,0.506435554,0
+10908,20,0.506435554,0
+10909,20,0.506435554,0
+10910,20,0.506435554,0
+10911,20,0.506435554,0
+10912,20,0.506435554,0
+10913,20,0.506435554,0
+10914,20,0.506435554,0
+10915,20,0.506435554,0
+10916,20,0.506435554,0
+10917,20,0.506435554,0
+10918,20,0.506435554,0
+10919,20,0.506435554,0
+10920,20,0.506435554,0
+10921,20,0.506435554,0
+10922,20,0.506435554,0
+10923,20,0.506435554,0
+10924,20,0.506435554,0
+10925,20,0.506435554,0
+10926,20,0.506435554,0
+10927,20,0.506435554,0
+10928,20,0.506435554,0
+10929,20,0.506435554,0
+10930,20,0.506435554,0
+10931,20,0.506435554,0
+10932,20,0.506435554,0
+10933,20,0.506435554,0
+10934,20,0.506435554,0
+10935,20,0.506435554,0
+10936,20,0.506435554,0
+10937,20,0.506435554,0
+10938,20,0.506435554,0
+10939,20,0.506435554,0
+10940,20,0.506435554,0
+10941,20,0.506435554,0
+10942,20,0.506435554,0
+10943,20,0.506435554,0
+10944,20,0.506435554,0
+10945,20,0.506435554,0
+10946,20,0.506435554,0
+10947,20,0.506435554,0
+10948,20,0.506435554,0
+10949,20,0.379264198,0
+10950,20,0.379264198,0
+10951,20,0.379264198,0
+10952,20,0.379264198,0
+10953,20,0.379264198,0
+10954,20,0.379264198,0
+10955,20,0.379264198,0
+10956,20,0.379264198,0
+10957,20,0.379264198,0
+10958,20,0.379264198,0
+10959,20,0.379264198,0
+10960,20,0.379264198,0
+10961,20,0.379264198,0
+10962,20,0.379264198,0
+10963,20,0.379264198,0
+10964,20,0.379264198,0
+10965,20,0.379264198,0
+10966,20,0.379264198,0
+10967,20,0.379264198,0
+10968,20,0.379264198,0
+10969,20,0.201835052,0
+10970,20,0.201835052,0
+10971,20,0.201835052,0
+10972,20,0.201835052,0
+10973,20,0.201835052,0
+10974,20,0.201835052,0
+10975,20,0.201835052,0
+10976,20,0.201835052,0
+10977,20,0.201835052,0
+10978,20,0.201835052,0
+10979,20,0.201835052,0
+10980,20,0.201835052,0
+10981,20,0.201835052,0
+10982,20,0.201835052,0
+10983,20,0.201835052,0
+10984,20,0.201835052,0
+10985,20,0.201835052,0
+10986,20,0.201835052,0
+10987,20,0.201835052,0
+10988,20,0.201835052,0
+10989,20,2.44E-02,0
+10990,20,2.44E-02,0
+10991,20,2.44E-02,0
+10992,20,2.44E-02,0
+10993,20,2.44E-02,0
+10994,20,2.44E-02,0
+10995,20,2.44E-02,0
+10996,20,2.44E-02,0
+10997,20,2.44E-02,0
+10998,20,2.44E-02,0
+10999,20,2.44E-02,0
+11000,20,2.44E-02,0
+11001,20,2.44E-02,0
+11002,20,2.44E-02,0
+11003,20,2.44E-02,0
+11004,20,2.44E-02,0
+11005,20,2.44E-02,0
+11006,20,2.44E-02,0
+11007,20,2.44E-02,0
+11008,20,2.44E-02,0
+11009,20,-0.15302324,0
+11010,20,-0.15302324,0
+11011,20,-0.15302324,0
+11012,20,-0.15302324,0
+11013,20,-0.15302324,0
+11014,20,-0.15302324,0
+11015,20,-0.15302324,0
+11016,20,-0.15302324,0
+11017,20,-0.15302324,0
+11018,20,-0.15302324,0
+11019,20,-0.15302324,0
+11020,20,-0.15302324,0
+11021,20,-0.15302324,0
+11022,20,-0.15302324,0
+11023,20,-0.15302324,0
+11024,20,-0.15302324,0
+11025,20,-0.15302324,0
+11026,20,-0.15302324,0
+11027,20,-0.15302324,0
+11028,20,-0.15302324,0
+11029,20,-0.330452385,0
+11030,20,-0.330452385,0
+11031,20,-0.330452385,0
+11032,20,-0.330452385,0
+11033,20,-0.330452385,0
+11034,20,-0.330452385,0
+11035,20,-0.330452385,0
+11036,20,-0.330452385,0
+11037,20,-0.330452385,0
+11038,20,-0.330452385,0
+11039,20,-0.330452385,0
+11040,20,-0.330452385,0
+11041,20,-0.330452385,0
+11042,20,-0.330452385,0
+11043,20,-0.330452385,0
+11044,20,-0.330452385,0
+11045,20,-0.330452385,0
+11046,20,-0.330452385,0
+11047,20,-0.330452385,0
+11048,20,-0.330452385,0
+11049,20,-0.507881531,0
+11050,20,-0.507881531,0
+11051,20,-0.507881531,0
+11052,20,-0.507881531,0
+11053,20,-0.507881531,0
+11054,20,-0.507881531,0
+11055,20,-0.507881531,0
+11056,20,-0.507881531,0
+11057,20,-0.507881531,0
+11058,20,-0.507881531,0
+11059,20,-0.507881531,0
+11060,20,-0.507881531,0
+11061,20,-0.507881531,0
+11062,20,-0.507881531,0
+11063,20,-0.507881531,0
+11064,20,-0.507881531,0
+11065,20,-0.507881531,0
+11066,20,-0.507881531,0
+11067,20,-0.507881531,0
+11068,20,-0.507881531,0
+11069,20,-0.685310677,0
+11070,20,-0.685310677,0
+11071,20,-0.685310677,0
+11072,20,-0.685310677,0
+11073,20,-0.685310677,0
+11074,20,-0.685310677,0
+11075,20,-0.685310677,0
+11076,20,-0.685310677,0
+11077,20,-0.685310677,0
+11078,20,-0.685310677,0
+11079,20,-0.685310677,0
+11080,20,-0.685310677,0
+11081,20,-0.685310677,0
+11082,20,-0.685310677,0
+11083,20,-0.685310677,0
+11084,20,-0.685310677,0
+11085,20,-0.685310677,0
+11086,20,-0.685310677,0
+11087,20,-0.685310677,0
+11088,20,-0.685310677,0
+11089,20,-0.862739823,0
+11090,20,-0.862739823,0
+11091,20,-0.862739823,0
+11092,20,-0.862739823,0
+11093,20,-0.862739823,0
+11094,20,-0.862739823,0
+11095,20,-0.862739823,0
+11096,20,-0.862739823,0
+11097,20,-0.862739823,0
+11098,20,-0.862739823,0
+11099,20,-0.862739823,0
+11100,20,-0.862739823,0
+11101,20,-0.862739823,0
+11102,20,-0.862739823,0
+11103,20,-0.862739823,0
+11104,20,-0.862739823,0
+11105,20,-0.862739823,0
+11106,20,-0.862739823,0
+11107,20,-0.862739823,0
+11108,20,-0.862739823,0
+11109,20,-1.040168968,0
+11110,20,-1.040168968,0
+11111,20,-1.040168968,0
+11112,20,-1.040168968,0
+11113,20,-1.040168968,0
+11114,20,-1.040168968,0
+11115,20,-1.040168968,0
+11116,20,-1.040168968,0
+11117,20,-1.040168968,0
+11118,20,-1.040168968,0
+11119,20,-1.040168968,0
+11120,20,-1.040168968,0
+11121,20,-1.040168968,0
+11122,20,-1.040168968,0
+11123,20,-1.040168968,0
+11124,20,-1.040168968,0
+11125,20,-1.040168968,0
+11126,20,-1.040168968,0
+11127,20,-1.040168968,0
+11128,20,-1.040168968,0
+11129,20,-1.217598114,0
+11130,20,-1.217598114,0
+11131,20,-1.217598114,0
+11132,20,-1.217598114,0
+11133,20,-1.217598114,0
+11134,20,-1.217598114,0
+11135,20,-1.217598114,0
+11136,20,-1.217598114,0
+11137,20,-1.217598114,0
+11138,20,-1.217598114,0
+11139,20,-1.217598114,0
+11140,20,-1.217598114,0
+11141,20,-1.217598114,0
+11142,20,-1.217598114,0
+11143,20,-1.217598114,0
+11144,20,-1.217598114,0
+11145,20,-1.217598114,0
+11146,20,-1.217598114,0
+11147,20,-1.217598114,0
+11148,20,-1.217598114,0
+11149,20,-1.350669973,0
+11150,20,-1.350669973,0
+11151,20,-1.350669973,0
+11152,20,-1.350669973,0
+11153,20,-1.350669973,0
+11154,20,-1.350669973,0
+11155,20,-1.350669973,0
+11156,20,-1.350669973,0
+11157,20,-1.350669973,0
+11158,20,-1.350669973,0
+11159,20,-1.350669973,0
+11160,20,-1.350669973,0
+11161,20,-1.350669973,0
+11162,20,-1.350669973,0
+11163,20,-1.350669973,0
+11164,20,-1.350669973,0
+11165,20,-1.350669973,0
+11166,20,-1.350669973,0
+11167,20,-1.350669973,0
+11168,20,-1.350669973,0
+11169,20,-1.350669973,0
+11170,20,-1.350669973,0
+11171,20,-1.350669973,0
+11172,20,-1.350669973,0
+11173,20,-1.350669973,0
+11174,20,-1.350669973,0
+11175,20,-1.350669973,0
+11176,20,-1.350669973,0
+11177,20,-1.350669973,0
+11178,20,-1.350669973,0
+11179,20,-1.350669973,0
+11180,20,-1.350669973,0
+11181,20,-1.350669973,0
+11182,20,-1.350669973,0
+11183,20,-1.350669973,0
+11184,20,-1.350669973,0
+11185,20,-1.350669973,0
+11186,20,-1.350669973,0
+11187,20,-1.350669973,0
+11188,20,-1.350669973,0
+11189,20,-1.350669973,0
+11190,20,-1.350669973,0
+11191,20,-1.350669973,0
+11192,20,-1.350669973,0
+11193,20,-1.350669973,0
+11194,20,-1.350669973,0
+11195,20,-1.350669973,0
+11196,20,-1.350669973,0
+11197,20,-1.350669973,0
+11198,20,-1.350669973,0
+11199,20,-1.350669973,0
+11200,20,-1.350669973,0
+11201,20,-1.350669973,0
+11202,20,-1.350669973,0
+11203,20,-1.350669973,0
+11204,20,-1.350669973,0
+11205,20,-1.350669973,0
+11206,20,-1.350669973,0
+11207,20,-1.350669973,0
+11208,20,-1.350669973,0
+11209,20,-1.350669973,0
+11210,20,-1.350669973,0
+11211,20,-1.350669973,0
+11212,20,-1.350669973,0
+11213,20,-1.350669973,0
+11214,20,-1.350669973,0
+11215,20,-1.350669973,0
+11216,20,-1.350669973,0
+11217,20,-1.350669973,0
+11218,20,-1.350669973,0
+11219,20,-1.350669973,0
+11220,20,-1.350669973,0
+11221,20,-1.350669973,0
+11222,20,-1.350669973,0
+11223,20,-1.350669973,0
+11224,20,-1.350669973,0
+11225,20,-1.350669973,0
+11226,20,-1.350669973,0
+11227,20,-1.350669973,0
+11228,20,-1.350669973,0
+11229,20,-1.350669973,0
+11230,20,-1.350669973,0
+11231,20,-1.350669973,0
+11232,20,-1.350669973,0
+11233,20,-1.350669973,0
+11234,20,-1.350669973,0
+11235,20,-1.350669973,0
+11236,20,-1.350669973,0
+11237,20,-1.350669973,0
+11238,20,-1.350669973,0
+11239,20,-1.350669973,0
+11240,20,-1.350669973,0
+11241,20,-1.350669973,0
+11242,20,-1.350669973,0
+11243,20,-1.350669973,0
+11244,20,-1.350669973,0
+11245,20,-1.350669973,0
+11246,20,-1.350669973,0
+11247,20,-1.350669973,0
+11248,20,-1.350669973,0
+11249,20,-1.350669973,0
+11250,20,-1.350669973,0
+11251,20,-1.350669973,0
+11252,20,-1.350669973,0
+11253,20,-1.350669973,0
+11254,20,-1.350669973,0
+11255,20,-1.350669973,0
+11256,20,-1.350669973,0
+11257,20,-1.350669973,0
+11258,20,-1.350669973,0
+11259,20,-1.350669973,0
+11260,20,-1.350669973,0
+11261,20,-1.350669973,0
+11262,20,-1.350669973,0
+11263,20,-1.350669973,0
+11264,20,-1.350669973,0
+11265,20,-1.350669973,0
+11266,20,-1.350669973,0
+11267,20,-1.350669973,0
+11268,20,-1.350669973,0
+11269,20,-1.480434446,0
+11270,20,-1.480434446,0
+11271,20,-1.480434446,0
+11272,20,-1.480434446,0
+11273,20,-1.480434446,0
+11274,20,-1.480434446,0
+11275,20,-1.480434446,0
+11276,20,-1.480434446,0
+11277,20,-1.480434446,0
+11278,20,-1.480434446,0
+11279,20,-1.480434446,0
+11280,20,-1.480434446,0
+11281,20,-1.480434446,0
+11282,20,-1.480434446,0
+11283,20,-1.480434446,0
+11284,20,-1.480434446,0
+11285,20,-1.480434446,0
+11286,20,-1.480434446,0
+11287,20,-1.480434446,0
+11288,20,-1.480434446,0
+11289,20,-1.675151029,0
+11290,20,-1.675151029,0
+11291,20,-1.675151029,0
+11292,20,-1.675151029,0
+11293,20,-1.675151029,0
+11294,20,-1.675151029,0
+11295,20,-1.675151029,0
+11296,20,-1.675151029,0
+11297,20,-1.675151029,0
+11298,20,-1.675151029,0
+11299,20,-1.675151029,0
+11300,20,-1.675151029,0
+11301,20,-1.675151029,0
+11302,20,-1.675151029,0
+11303,20,-1.675151029,0
+11304,20,-1.675151029,0
+11305,20,-1.675151029,0
+11306,20,-1.675151029,0
+11307,20,-1.675151029,0
+11308,20,-1.675151029,0
+11309,20,-1.869867611,0
+11310,20,-1.869867611,0
+11311,20,-1.869867611,0
+11312,20,-1.869867611,0
+11313,20,-1.869867611,0
+11314,20,-1.869867611,0
+11315,20,-1.869867611,0
+11316,20,-1.869867611,0
+11317,20,-1.869867611,0
+11318,20,-1.869867611,0
+11319,20,-1.869867611,0
+11320,20,-1.869867611,0
+11321,20,-1.869867611,0
+11322,20,-1.869867611,0
+11323,20,-1.869867611,0
+11324,20,-1.869867611,0
+11325,20,-1.869867611,0
+11326,20,-1.869867611,0
+11327,20,-1.869867611,0
+11328,20,-1.869867611,0
+11329,20,-2.064584194,0
+11330,20,-2.064584194,0
+11331,20,-2.064584194,0
+11332,20,-2.064584194,0
+11333,20,-2.064584194,0
+11334,20,-2.064584194,0
+11335,20,-2.064584194,0
+11336,20,-2.064584194,0
+11337,20,-2.064584194,0
+11338,20,-2.064584194,0
+11339,20,-2.064584194,0
+11340,20,-2.064584194,0
+11341,20,-2.064584194,0
+11342,20,-2.064584194,0
+11343,20,-2.064584194,0
+11344,20,-2.064584194,0
+11345,20,-2.064584194,0
+11346,20,-2.064584194,0
+11347,20,-2.064584194,0
+11348,20,-2.064584194,0
+11349,20,-2.259300777,0
+11350,20,-2.259300777,0
+11351,20,-2.259300777,0
+11352,20,-2.259300777,0
+11353,20,-2.259300777,0
+11354,20,-2.259300777,0
+11355,20,-2.259300777,0
+11356,20,-2.259300777,0
+11357,20,-2.259300777,0
+11358,20,-2.259300777,0
+11359,20,-2.259300777,0
+11360,20,-2.259300777,0
+11361,20,-2.259300777,0
+11362,20,-2.259300777,0
+11363,20,-2.259300777,0
+11364,20,-2.259300777,0
+11365,20,-2.259300777,0
+11366,20,-2.259300777,0
+11367,20,-2.259300777,0
+11368,20,-2.259300777,0
+11369,20,-2.451450124,0
+11370,20,-2.451450124,0
+11371,20,-2.451450124,0
+11372,20,-2.451450124,0
+11373,20,-2.451450124,0
+11374,20,-2.451450124,0
+11375,20,-2.451450124,0
+11376,20,-2.451450124,0
+11377,20,-2.451450124,0
+11378,20,-2.451450124,0
+11379,20,-2.451450124,0
+11380,20,-2.451450124,0
+11381,20,-2.451450124,0
+11382,20,-2.451450124,0
+11383,20,-2.451450124,0
+11384,20,-2.451450124,0
+11385,20,-2.451450124,0
+11386,20,-2.451450124,0
+11387,20,-2.451450124,0
+11388,20,-2.451450124,0
+11389,20,-2.633268415,0
+11390,20,-2.633268415,0
+11391,20,-2.633268415,0
+11392,20,-2.633268415,0
+11393,20,-2.633268415,0
+11394,20,-2.633268415,0
+11395,20,-2.633268415,0
+11396,20,-2.633268415,0
+11397,20,-2.633268415,0
+11398,20,-2.633268415,0
+11399,20,-2.633268415,0
+11400,20,-2.633268415,0
+11401,20,-2.633268415,0
+11402,20,-2.633268415,0
+11403,20,-2.633268415,0
+11404,20,-2.633268415,0
+11405,20,-2.633268415,0
+11406,20,-2.633268415,0
+11407,20,-2.633268415,0
+11408,20,-2.633268415,0
+11409,20,-2.814838265,0
+11410,20,-2.814838265,0
+11411,20,-2.814838265,0
+11412,20,-2.814838265,0
+11413,20,-2.814838265,0
+11414,20,-2.814838265,0
+11415,20,-2.814838265,0
+11416,20,-2.814838265,0
+11417,20,-2.814838265,0
+11418,20,-2.814838265,0
+11419,20,-2.814838265,0
+11420,20,-2.814838265,0
+11421,20,-2.814838265,0
+11422,20,-2.814838265,0
+11423,20,-2.814838265,0
+11424,20,-2.814838265,0
+11425,20,-2.814838265,0
+11426,20,-2.814838265,0
+11427,20,-2.814838265,0
+11428,20,-2.814838265,0
+11429,20,-2.996408114,0
+11430,20,-2.996408114,0
+11431,20,-2.996408114,0
+11432,20,-2.996408114,0
+11433,20,-2.996408114,0
+11434,20,-2.996408114,0
+11435,20,-2.996408114,0
+11436,20,-2.996408114,0
+11437,20,-2.996408114,0
+11438,20,-2.996408114,0
+11439,20,-2.996408114,0
+11440,20,-2.996408114,0
+11441,20,-2.996408114,0
+11442,20,-2.996408114,0
+11443,20,-2.996408114,0
+11444,20,-2.996408114,0
+11445,20,-2.996408114,0
+11446,20,-2.996408114,0
+11447,20,-2.996408114,0
+11448,20,-2.996408114,0
+11449,20,-3.177977963,0
+11450,20,-3.177977963,0
+11451,20,-3.177977963,0
+11452,20,-3.177977963,0
+11453,20,-3.177977963,0
+11454,20,-3.177977963,0
+11455,20,-3.177977963,0
+11456,20,-3.177977963,0
+11457,20,-3.177977963,0
+11458,20,-3.177977963,0
+11459,20,-3.177977963,0
+11460,20,-3.177977963,0
+11461,20,-3.177977963,0
+11462,20,-3.177977963,0
+11463,20,-3.177977963,0
+11464,20,-3.177977963,0
+11465,20,-3.177977963,0
+11466,20,-3.177977963,0
+11467,20,-3.177977963,0
+11468,20,-3.177977963,0
+11469,20,-3.286795652,0
+11470,20,-3.286795652,0
+11471,20,-3.286795652,0
+11472,20,-3.286795652,0
+11473,20,-3.286795652,0
+11474,20,-3.286795652,0
+11475,20,-3.286795652,0
+11476,20,-3.286795652,0
+11477,20,-3.286795652,0
+11478,20,-3.286795652,0
+11479,20,-3.286795652,0
+11480,20,-3.286795652,0
+11481,20,-3.286795652,0
+11482,20,-3.286795652,0
+11483,20,-3.286795652,0
+11484,20,-3.286795652,0
+11485,20,-3.286795652,0
+11486,20,-3.286795652,0
+11487,20,-3.286795652,0
+11488,20,-3.286795652,0
+11489,20,-3.286795652,0
+11490,20,-3.286795652,0
+11491,20,-3.286795652,0
+11492,20,-3.286795652,0
+11493,20,-3.286795652,0
+11494,20,-3.286795652,0
+11495,20,-3.286795652,0
+11496,20,-3.286795652,0
+11497,20,-3.286795652,0
+11498,20,-3.286795652,0
+11499,20,-3.286795652,0
+11500,20,-3.286795652,0
+11501,20,-3.286795652,0
+11502,20,-3.286795652,0
+11503,20,-3.286795652,0
+11504,20,-3.286795652,0
+11505,20,-3.286795652,0
+11506,20,-3.286795652,0
+11507,20,-3.286795652,0
+11508,20,-3.286795652,0
+11509,20,-3.286795652,0
+11510,20,-3.286795652,0
+11511,20,-3.286795652,0
+11512,20,-3.286795652,0
+11513,20,-3.286795652,0
+11514,20,-3.286795652,0
+11515,20,-3.286795652,0
+11516,20,-3.286795652,0
+11517,20,-3.286795652,0
+11518,20,-3.286795652,0
+11519,20,-3.286795652,0
+11520,20,-3.286795652,0
+11521,20,-3.286795652,0
+11522,20,-3.286795652,0
+11523,20,-3.286795652,0
+11524,20,-3.286795652,0
+11525,20,-3.286795652,0
+11526,20,-3.286795652,0
+11527,20,-3.286795652,0
+11528,20,-3.286795652,0
+11529,20,-3.286795652,0
+11530,20,-3.286795652,0
+11531,20,-3.286795652,0
+11532,20,-3.286795652,0
+11533,20,-3.286795652,0
+11534,20,-3.286795652,0
+11535,20,-3.286795652,0
+11536,20,-3.286795652,0
+11537,20,-3.286795652,0
+11538,20,-3.286795652,0
+11539,20,-3.286795652,0
+11540,20,-3.286795652,0
+11541,20,-3.286795652,0
+11542,20,-3.286795652,0
+11543,20,-3.286795652,0
+11544,20,-3.286795652,0
+11545,20,-3.286795652,0
+11546,20,-3.286795652,0
+11547,20,-3.286795652,0
+11548,20,-3.286795652,0
+11549,20,-3.286795652,0
+11550,20,-3.286795652,0
+11551,20,-3.286795652,0
+11552,20,-3.286795652,0
+11553,20,-3.286795652,0
+11554,20,-3.286795652,0
+11555,20,-3.286795652,0
+11556,20,-3.286795652,0
+11557,20,-3.286795652,0
+11558,20,-3.286795652,0
+11559,20,-3.286795652,0
+11560,20,-3.286795652,0
+11561,20,-3.286795652,0
+11562,20,-3.286795652,0
+11563,20,-3.286795652,0
+11564,20,-3.286795652,0
+11565,20,-3.286795652,0
+11566,20,-3.286795652,0
+11567,20,-3.286795652,0
+11568,20,-3.286795652,0
+11569,20,-3.286795652,0
+11570,20,-3.286795652,0
+11571,20,-3.286795652,0
+11572,20,-3.286795652,0
+11573,20,-3.286795652,0
+11574,20,-3.286795652,0
+11575,20,-3.286795652,0
+11576,20,-3.286795652,0
+11577,20,-3.286795652,0
+11578,20,-3.286795652,0
+11579,20,-3.286795652,0
+11580,20,-3.286795652,0
+11581,20,-3.286795652,0
+11582,20,-3.286795652,0
+11583,20,-3.286795652,0
+11584,20,-3.286795652,0
+11585,20,-3.286795652,0
+11586,20,-3.286795652,0
+11587,20,-3.286795652,0
+11588,20,-3.286795652,0
+11589,20,-3.286795652,0
+11590,20,-3.286795652,0
+11591,20,-3.286795652,0
+11592,20,-3.286795652,0
+11593,20,-3.286795652,0
+11594,20,-3.286795652,0
+11595,20,-3.286795652,0
+11596,20,-3.286795652,0
+11597,20,-3.286795652,0
+11598,20,-3.286795652,0
+11599,20,-3.286795652,0
+11600,20,-3.286795652,0
+11601,20,-3.286795652,0
+11602,20,-3.286795652,0
+11603,20,-3.286795652,0
+11604,20,-3.286795652,0
+11605,20,-3.286795652,0
+11606,20,-3.286795652,0
+11607,20,-3.286795652,0
+11608,20,-3.286795652,0
+11609,20,-3.286795652,0
+11610,20,-3.286795652,0
+11611,20,-3.286795652,0
+11612,20,-3.286795652,0
+11613,20,-3.286795652,0
+11614,20,-3.286795652,0
+11615,20,-3.286795652,0
+11616,20,-3.286795652,0
+11617,20,-3.286795652,0
+11618,20,-3.286795652,0
+11619,20,-3.286795652,0
+11620,20,-3.286795652,0
+11621,20,-3.286795652,0
+11622,20,-3.286795652,0
+11623,20,-3.286795652,0
+11624,20,-3.286795652,0
+11625,20,-3.286795652,0
+11626,20,-3.286795652,0
+11627,20,-3.286795652,0
+11628,20,-3.286795652,0
+11629,20,-3.286795652,0
+11630,20,-3.286795652,0
+11631,20,-3.286795652,0
+11632,20,-3.286795652,0
+11633,20,-3.286795652,0
+11634,20,-3.286795652,0
+11635,20,-3.286795652,0
+11636,20,-3.286795652,0
+11637,20,-3.286795652,0
+11638,20,-3.286795652,0
+11639,20,-3.135116506,0
+11640,20,-3.135116506,0
+11641,20,-3.135116506,0
+11642,20,-3.135116506,0
+11643,20,-3.135116506,0
+11644,20,-3.135116506,0
+11645,20,-3.135116506,0
+11646,20,-3.135116506,0
+11647,20,-3.135116506,0
+11648,20,-3.135116506,0
+11649,20,-2.999404948,0
+11650,20,-2.999404948,0
+11651,20,-2.999404948,0
+11652,20,-2.999404948,0
+11653,20,-2.999404948,0
+11654,20,-2.999404948,0
+11655,20,-2.999404948,0
+11656,20,-2.999404948,0
+11657,20,-2.999404948,0
+11658,20,-2.999404948,0
+11659,20,-2.86369339,0
+11660,20,-2.86369339,0
+11661,20,-2.86369339,0
+11662,20,-2.86369339,0
+11663,20,-2.86369339,0
+11664,20,-2.86369339,0
+11665,20,-2.86369339,0
+11666,20,-2.86369339,0
+11667,20,-2.86369339,0
+11668,20,-2.86369339,0
+11669,20,-2.727981833,0
+11670,20,-2.727981833,0
+11671,20,-2.727981833,0
+11672,20,-2.727981833,0
+11673,20,-2.727981833,0
+11674,20,-2.727981833,0
+11675,20,-2.727981833,0
+11676,20,-2.727981833,0
+11677,20,-2.727981833,0
+11678,20,-2.727981833,0
+11679,20,-2.592270275,0
+11680,20,-2.592270275,0
+11681,20,-2.592270275,0
+11682,20,-2.592270275,0
+11683,20,-2.592270275,0
+11684,20,-2.592270275,0
+11685,20,-2.592270275,0
+11686,20,-2.592270275,0
+11687,20,-2.592270275,0
+11688,20,-2.592270275,0
+11689,20,-2.456558717,0
+11690,20,-2.456558717,0
+11691,20,-2.456558717,0
+11692,20,-2.456558717,0
+11693,20,-2.456558717,0
+11694,20,-2.456558717,0
+11695,20,-2.456558717,0
+11696,20,-2.456558717,0
+11697,20,-2.456558717,0
+11698,20,-2.456558717,0
+11699,20,-2.320847159,0
+11700,20,-2.320847159,0
+11701,20,-2.320847159,0
+11702,20,-2.320847159,0
+11703,20,-2.320847159,0
+11704,20,-2.320847159,0
+11705,20,-2.320847159,0
+11706,20,-2.320847159,0
+11707,20,-2.320847159,0
+11708,20,-2.320847159,0
+11709,20,-2.185135601,0
+11710,20,-2.185135601,0
+11711,20,-2.185135601,0
+11712,20,-2.185135601,0
+11713,20,-2.185135601,0
+11714,20,-2.185135601,0
+11715,20,-2.185135601,0
+11716,20,-2.185135601,0
+11717,20,-2.185135601,0
+11718,20,-2.185135601,0
+11719,20,-2.049424044,0
+11720,20,-2.049424044,0
+11721,20,-2.049424044,0
+11722,20,-2.049424044,0
+11723,20,-2.049424044,0
+11724,20,-2.049424044,0
+11725,20,-2.049424044,0
+11726,20,-2.049424044,0
+11727,20,-2.049424044,0
+11728,20,-2.049424044,0
+11729,20,-1.913712486,0
+11730,20,-1.913712486,0
+11731,20,-1.913712486,0
+11732,20,-1.913712486,0
+11733,20,-1.913712486,0
+11734,20,-1.913712486,0
+11735,20,-1.913712486,0
+11736,20,-1.913712486,0
+11737,20,-1.913712486,0
+11738,20,-1.913712486,0
+11739,20,-1.778000928,0
+11740,20,-1.778000928,0
+11741,20,-1.778000928,0
+11742,20,-1.778000928,0
+11743,20,-1.778000928,0
+11744,20,-1.778000928,0
+11745,20,-1.778000928,0
+11746,20,-1.778000928,0
+11747,20,-1.778000928,0
+11748,20,-1.778000928,0
+11749,20,-1.64228937,0
+11750,20,-1.64228937,0
+11751,20,-1.64228937,0
+11752,20,-1.64228937,0
+11753,20,-1.64228937,0
+11754,20,-1.64228937,0
+11755,20,-1.64228937,0
+11756,20,-1.64228937,0
+11757,20,-1.64228937,0
+11758,20,-1.64228937,0
+11759,20,-1.506577812,0
+11760,20,-1.506577812,0
+11761,20,-1.506577812,0
+11762,20,-1.506577812,0
+11763,20,-1.506577812,0
+11764,20,-1.506577812,0
+11765,20,-1.506577812,0
+11766,20,-1.506577812,0
+11767,20,-1.506577812,0
+11768,20,-1.506577812,0
+11769,20,-1.370876606,0
+11770,20,-1.370876606,0
+11771,20,-1.370876606,0
+11772,20,-1.370876606,0
+11773,20,-1.370876606,0
+11774,20,-1.370876606,0
+11775,20,-1.370876606,0
+11776,20,-1.370876606,0
+11777,20,-1.370876606,0
+11778,20,-1.370876606,0
+11779,20,-1.235268566,0
+11780,20,-1.235268566,0
+11781,20,-1.235268566,0
+11782,20,-1.235268566,0
+11783,20,-1.235268566,0
+11784,20,-1.235268566,0
+11785,20,-1.235268566,0
+11786,20,-1.235268566,0
+11787,20,-1.235268566,0
+11788,20,-1.235268566,0
+11789,20,-1.099660526,0
+11790,20,-1.099660526,0
+11791,20,-1.099660526,0
+11792,20,-1.099660526,0
+11793,20,-1.099660526,0
+11794,20,-1.099660526,0
+11795,20,-1.099660526,0
+11796,20,-1.099660526,0
+11797,20,-1.099660526,0
+11798,20,-1.099660526,0
+11799,20,-0.964052486,0
+11800,20,-0.964052486,0
+11801,20,-0.964052486,0
+11802,20,-0.964052486,0
+11803,20,-0.964052486,0
+11804,20,-0.964052486,0
+11805,20,-0.964052486,0
+11806,20,-0.964052486,0
+11807,20,-0.964052486,0
+11808,20,-0.964052486,0
+11809,20,-0.828444446,0
+11810,20,-0.828444446,0
+11811,20,-0.828444446,0
+11812,20,-0.828444446,0
+11813,20,-0.828444446,0
+11814,20,-0.828444446,0
+11815,20,-0.828444446,0
+11816,20,-0.828444446,0
+11817,20,-0.828444446,0
+11818,20,-0.828444446,0
+11819,20,-0.692836405,0
+11820,20,-0.692836405,0
+11821,20,-0.692836405,0
+11822,20,-0.692836405,0
+11823,20,-0.692836405,0
+11824,20,-0.692836405,0
+11825,20,-0.692836405,0
+11826,20,-0.692836405,0
+11827,20,-0.692836405,0
+11828,20,-0.692836405,0
+11829,20,-0.584349973,0
+11830,20,-0.584349973,0
+11831,20,-0.584349973,0
+11832,20,-0.584349973,0
+11833,20,-0.584349973,0
+11834,20,-0.584349973,0
+11835,20,-0.584349973,0
+11836,20,-0.584349973,0
+11837,20,-0.584349973,0
+11838,20,-0.584349973,0
+11839,20,-0.584349973,0
+11840,20,-0.584349973,0
+11841,20,-0.584349973,0
+11842,20,-0.584349973,0
+11843,20,-0.584349973,0
+11844,20,-0.584349973,0
+11845,20,-0.584349973,0
+11846,20,-0.584349973,0
+11847,20,-0.584349973,0
+11848,20,-0.584349973,0
+11849,20,-0.584349973,0
+11850,20,-0.584349973,0
+11851,20,-0.584349973,0
+11852,20,-0.584349973,0
+11853,20,-0.584349973,0
+11854,20,-0.584349973,0
+11855,20,-0.584349973,0
+11856,20,-0.584349973,0
+11857,20,-0.584349973,0
+11858,20,-0.584349973,0
+11859,20,-0.584349973,0
+11860,20,-0.584349973,0
+11861,20,-0.584349973,0
+11862,20,-0.584349973,0
+11863,20,-0.584349973,0
+11864,20,-0.584349973,0
+11865,20,-0.584349973,0
+11866,20,-0.584349973,0
+11867,20,-0.584349973,0
+11868,20,-0.584349973,0
+11869,20,-0.584349973,0
+11870,20,-0.584349973,0
+11871,20,-0.584349973,0
+11872,20,-0.584349973,0
+11873,20,-0.584349973,0
+11874,20,-0.584349973,0
+11875,20,-0.584349973,0
+11876,20,-0.584349973,0
+11877,20,-0.584349973,0
+11878,20,-0.584349973,0
+11879,20,-0.584349973,0
+11880,20,-0.584349973,0
+11881,20,-0.584349973,0
+11882,20,-0.584349973,0
+11883,20,-0.584349973,0
+11884,20,-0.584349973,0
+11885,20,-0.584349973,0
+11886,20,-0.584349973,0
+11887,20,-0.584349973,0
+11888,20,-0.584349973,0
+11889,20,-0.584349973,0
+11890,20,-0.584349973,0
+11891,20,-0.584349973,0
+11892,20,-0.584349973,0
+11893,20,-0.584349973,0
+11894,20,-0.584349973,0
+11895,20,-0.584349973,0
+11896,20,-0.584349973,0
+11897,20,-0.584349973,0
+11898,20,-0.584349973,0
+11899,20,-0.436345702,0
+11900,20,-0.436345702,0
+11901,20,-0.436345702,0
+11902,20,-0.436345702,0
+11903,20,-0.436345702,0
+11904,20,-0.436345702,0
+11905,20,-0.436345702,0
+11906,20,-0.436345702,0
+11907,20,-0.436345702,0
+11908,20,-0.436345702,0
+11909,20,-0.436345702,0
+11910,20,-0.436345702,0
+11911,20,-0.436345702,0
+11912,20,-0.436345702,0
+11913,20,-0.436345702,0
+11914,20,-0.436345702,0
+11915,20,-0.436345702,0
+11916,20,-0.436345702,0
+11917,20,-0.436345702,0
+11918,20,-0.436345702,0
+11919,20,-0.280551732,0
+11920,20,-0.280551732,0
+11921,20,-0.280551732,0
+11922,20,-0.280551732,0
+11923,20,-0.280551732,0
+11924,20,-0.280551732,0
+11925,20,-0.280551732,0
+11926,20,-0.280551732,0
+11927,20,-0.280551732,0
+11928,20,-0.280551732,0
+11929,20,-0.280551732,0
+11930,20,-0.280551732,0
+11931,20,-0.280551732,0
+11932,20,-0.280551732,0
+11933,20,-0.280551732,0
+11934,20,-0.280551732,0
+11935,20,-0.280551732,0
+11936,20,-0.280551732,0
+11937,20,-0.280551732,0
+11938,20,-0.280551732,0
+11939,20,-0.124757762,0
+11940,20,-0.124757762,0
+11941,20,-0.124757762,0
+11942,20,-0.124757762,0
+11943,20,-0.124757762,0
+11944,20,-0.124757762,0
+11945,20,-0.124757762,0
+11946,20,-0.124757762,0
+11947,20,-0.124757762,0
+11948,20,-0.124757762,0
+11949,20,-0.124757762,0
+11950,20,-0.124757762,0
+11951,20,-0.124757762,0
+11952,20,-0.124757762,0
+11953,20,-0.124757762,0
+11954,20,-0.124757762,0
+11955,20,-0.124757762,0
+11956,20,-0.124757762,0
+11957,20,-0.124757762,0
+11958,20,-0.124757762,0
+11959,20,3.10E-02,0
+11960,20,3.10E-02,0
+11961,20,3.10E-02,0
+11962,20,3.10E-02,0
+11963,20,3.10E-02,0
+11964,20,3.10E-02,0
+11965,20,3.10E-02,0
+11966,20,3.10E-02,0
+11967,20,3.10E-02,0
+11968,20,3.10E-02,0
+11969,20,3.10E-02,0
+11970,20,3.10E-02,0
+11971,20,3.10E-02,0
+11972,20,3.10E-02,0
+11973,20,3.10E-02,0
+11974,20,3.10E-02,0
+11975,20,3.10E-02,0
+11976,20,3.10E-02,0
+11977,20,3.10E-02,0
+11978,20,3.10E-02,0
+11979,20,0.186830177,0
+11980,20,0.186830177,0
+11981,20,0.186830177,0
+11982,20,0.186830177,0
+11983,20,0.186830177,0
+11984,20,0.186830177,0
+11985,20,0.186830177,0
+11986,20,0.186830177,0
+11987,20,0.186830177,0
+11988,20,0.186830177,0
+11989,20,0.186830177,0
+11990,20,0.186830177,0
+11991,20,0.186830177,0
+11992,20,0.186830177,0
+11993,20,0.186830177,0
+11994,20,0.186830177,0
+11995,20,0.186830177,0
+11996,20,0.186830177,0
+11997,20,0.186830177,0
+11998,20,0.186830177,0
+11999,20,0.342624147,0
+12000,20,0.342624147,0
+12001,20,0.342624147,0
+12002,20,0.342624147,0
+12003,20,0.342624147,0
+12004,20,0.342624147,0
+12005,20,0.342624147,0
+12006,20,0.342624147,0
+12007,20,0.342624147,0
+12008,20,0.342624147,0
+12009,20,0.342624147,0
+12010,20,0.342624147,0
+12011,20,0.342624147,0
+12012,20,0.342624147,0
+12013,20,0.342624147,0
+12014,20,0.342624147,0
+12015,20,0.342624147,0
+12016,20,0.342624147,0
+12017,20,0.342624147,0
+12018,20,0.342624147,0
+12019,20,0.498418117,0
+12020,20,0.498418117,0
+12021,20,0.498418117,0
+12022,20,0.498418117,0
+12023,20,0.498418117,0
+12024,20,0.498418117,0
+12025,20,0.498418117,0
+12026,20,0.498418117,0
+12027,20,0.498418117,0
+12028,20,0.498418117,0
+12029,20,0.498418117,0
+12030,20,0.498418117,0
+12031,20,0.498418117,0
+12032,20,0.498418117,0
+12033,20,0.498418117,0
+12034,20,0.498418117,0
+12035,20,0.498418117,0
+12036,20,0.498418117,0
+12037,20,0.498418117,0
+12038,20,0.498418117,0
+12039,20,0.654212087,0
+12040,20,0.654212087,0
+12041,20,0.654212087,0
+12042,20,0.654212087,0
+12043,20,0.654212087,0
+12044,20,0.654212087,0
+12045,20,0.654212087,0
+12046,20,0.654212087,0
+12047,20,0.654212087,0
+12048,20,0.654212087,0
+12049,20,0.654212087,0
+12050,20,0.654212087,0
+12051,20,0.654212087,0
+12052,20,0.654212087,0
+12053,20,0.654212087,0
+12054,20,0.654212087,0
+12055,20,0.654212087,0
+12056,20,0.654212087,0
+12057,20,0.654212087,0
+12058,20,0.654212087,0
+12059,20,0.810006057,0
+12060,20,0.810006057,0
+12061,20,0.810006057,0
+12062,20,0.810006057,0
+12063,20,0.810006057,0
+12064,20,0.810006057,0
+12065,20,0.810006057,0
+12066,20,0.810006057,0
+12067,20,0.810006057,0
+12068,20,0.810006057,0
+12069,20,0.810006057,0
+12070,20,0.810006057,0
+12071,20,0.810006057,0
+12072,20,0.810006057,0
+12073,20,0.810006057,0
+12074,20,0.810006057,0
+12075,20,0.810006057,0
+12076,20,0.810006057,0
+12077,20,0.810006057,0
+12078,20,0.810006057,0
+12079,20,0.985727162,0
+12080,20,0.985727162,0
+12081,20,0.985727162,0
+12082,20,0.985727162,0
+12083,20,0.985727162,0
+12084,20,0.985727162,0
+12085,20,0.985727162,0
+12086,20,0.985727162,0
+12087,20,0.985727162,0
+12088,20,0.985727162,0
+12089,20,0.985727162,0
+12090,20,0.985727162,0
+12091,20,0.985727162,0
+12092,20,0.985727162,0
+12093,20,0.985727162,0
+12094,20,0.985727162,0
+12095,20,0.985727162,0
+12096,20,0.985727162,0
+12097,20,0.985727162,0
+12098,20,0.985727162,0
+12099,20,0.985727162,0
+12100,20,0.985727162,0
+12101,20,0.985727162,0
+12102,20,0.985727162,0
+12103,20,0.985727162,0
+12104,20,0.985727162,0
+12105,20,0.985727162,0
+12106,20,0.985727162,0
+12107,20,0.985727162,0
+12108,20,0.985727162,0
+12109,20,0.985727162,0
+12110,20,0.985727162,0
+12111,20,0.985727162,0
+12112,20,0.985727162,0
+12113,20,0.985727162,0
+12114,20,0.985727162,0
+12115,20,0.985727162,0
+12116,20,0.985727162,0
+12117,20,0.985727162,0
+12118,20,0.985727162,0
+12119,20,0.985727162,0
+12120,20,0.985727162,0
+12121,20,0.985727162,0
+12122,20,0.985727162,0
+12123,20,0.985727162,0
+12124,20,0.985727162,0
+12125,20,0.985727162,0
+12126,20,0.985727162,0
+12127,20,0.985727162,0
+12128,20,0.985727162,0
+12129,20,0.985727162,0
+12130,20,0.985727162,0
+12131,20,0.985727162,0
+12132,20,0.985727162,0
+12133,20,0.985727162,0
+12134,20,0.985727162,0
+12135,20,0.985727162,0
+12136,20,0.985727162,0
+12137,20,0.985727162,0
+12138,20,0.985727162,0
+12139,20,1.105289976,0
+12140,20,1.105289976,0
+12141,20,1.105289976,0
+12142,20,1.105289976,0
+12143,20,1.105289976,0
+12144,20,1.105289976,0
+12145,20,1.105289976,0
+12146,20,1.105289976,0
+12147,20,1.105289976,0
+12148,20,1.105289976,0
+12149,20,1.105289976,0
+12150,20,1.105289976,0
+12151,20,1.105289976,0
+12152,20,1.105289976,0
+12153,20,1.105289976,0
+12154,20,1.105289976,0
+12155,20,1.105289976,0
+12156,20,1.105289976,0
+12157,20,1.105289976,0
+12158,20,1.105289976,0
+12159,20,1.105289976,0
+12160,20,1.105289976,0
+12161,20,1.105289976,0
+12162,20,1.105289976,0
+12163,20,1.105289976,0
+12164,20,1.105289976,0
+12165,20,1.105289976,0
+12166,20,1.105289976,0
+12167,20,1.105289976,0
+12168,20,1.105289976,0
+12169,20,1.105289976,0
+12170,20,1.105289976,0
+12171,20,1.105289976,0
+12172,20,1.105289976,0
+12173,20,1.105289976,0
+12174,20,1.105289976,0
+12175,20,1.105289976,0
+12176,20,1.105289976,0
+12177,20,1.105289976,0
+12178,20,1.105289976,0
+12179,20,1.105289976,0
+12180,20,1.105289976,0
+12181,20,1.105289976,0
+12182,20,1.105289976,0
+12183,20,1.105289976,0
+12184,20,1.105289976,0
+12185,20,1.105289976,0
+12186,20,1.105289976,0
+12187,20,1.105289976,0
+12188,20,1.105289976,0
+12189,20,1.105289976,0
+12190,20,1.105289976,0
+12191,20,1.105289976,0
+12192,20,1.105289976,0
+12193,20,1.105289976,0
+12194,20,1.105289976,0
+12195,20,1.105289976,0
+12196,20,1.105289976,0
+12197,20,1.105289976,0
+12198,20,1.105289976,0
+12199,20,1.105289976,0
+12200,20,1.105289976,0
+12201,20,1.105289976,0
+12202,20,1.105289976,0
+12203,20,1.105289976,0
+12204,20,1.105289976,0
+12205,20,1.105289976,0
+12206,20,1.105289976,0
+12207,20,1.105289976,0
+12208,20,1.105289976,0
+12209,20,1.105289976,0
+12210,20,1.105289976,0
+12211,20,1.105289976,0
+12212,20,1.105289976,0
+12213,20,1.105289976,0
+12214,20,1.105289976,0
+12215,20,1.105289976,0
+12216,20,1.105289976,0
+12217,20,1.105289976,0
+12218,20,1.105289976,0
+12219,20,1.105289976,0
+12220,20,1.105289976,0
+12221,20,1.105289976,0
+12222,20,1.105289976,0
+12223,20,1.105289976,0
+12224,20,1.105289976,0
+12225,20,1.105289976,0
+12226,20,1.105289976,0
+12227,20,1.105289976,0
+12228,20,1.105289976,0
+12229,20,1.105289976,0
+12230,20,1.105289976,0
+12231,20,1.105289976,0
+12232,20,1.105289976,0
+12233,20,1.105289976,0
+12234,20,1.105289976,0
+12235,20,1.105289976,0
+12236,20,1.105289976,0
+12237,20,1.105289976,0
+12238,20,1.105289976,0
+12239,20,1.105289976,0
+12240,20,1.105289976,0
+12241,20,1.105289976,0
+12242,20,1.105289976,0
+12243,20,1.105289976,0
+12244,20,1.105289976,0
+12245,20,1.105289976,0
+12246,20,1.105289976,0
+12247,20,1.105289976,0
+12248,20,1.105289976,0
+12249,20,1.105289976,0
+12250,20,1.105289976,0
+12251,20,1.105289976,0
+12252,20,1.105289976,0
+12253,20,1.105289976,0
+12254,20,1.105289976,0
+12255,20,1.105289976,0
+12256,20,1.105289976,0
+12257,20,1.105289976,0
+12258,20,1.105289976,0
+12259,20,1.105289976,0
+12260,20,1.105289976,0
+12261,20,1.105289976,0
+12262,20,1.105289976,0
+12263,20,1.105289976,0
+12264,20,1.105289976,0
+12265,20,1.105289976,0
+12266,20,1.105289976,0
+12267,20,1.105289976,0
+12268,20,1.105289976,0
+12269,20,1.105289976,0
+12270,20,1.105289976,0
+12271,20,1.105289976,0
+12272,20,1.105289976,0
+12273,20,1.105289976,0
+12274,20,1.105289976,0
+12275,20,1.105289976,0
+12276,20,1.105289976,0
+12277,20,1.105289976,0
+12278,20,1.105289976,0
+12279,20,1.105289976,0
+12280,20,1.105289976,0
+12281,20,1.105289976,0
+12282,20,1.105289976,0
+12283,20,1.105289976,0
+12284,20,1.105289976,0
+12285,20,1.105289976,0
+12286,20,1.105289976,0
+12287,20,1.105289976,0
+12288,20,1.105289976,0
+12289,20,1.105289976,0
+12290,20,1.105289976,0
+12291,20,1.105289976,0
+12292,20,1.105289976,0
+12293,20,1.105289976,0
+12294,20,1.105289976,0
+12295,20,1.105289976,0
+12296,20,1.105289976,0
+12297,20,1.105289976,0
+12298,20,1.105289976,0
+12299,20,0.996208318,0
+12300,20,0.996208318,0
+12301,20,0.996208318,0
+12302,20,0.996208318,0
+12303,20,0.996208318,0
+12304,20,0.996208318,0
+12305,20,0.996208318,0
+12306,20,0.996208318,0
+12307,20,0.996208318,0
+12308,20,0.996208318,0
+12309,20,0.996208318,0
+12310,20,0.996208318,0
+12311,20,0.996208318,0
+12312,20,0.996208318,0
+12313,20,0.996208318,0
+12314,20,0.996208318,0
+12315,20,0.996208318,0
+12316,20,0.996208318,0
+12317,20,0.996208318,0
+12318,20,0.996208318,0
+12319,20,0.996208318,0
+12320,20,0.996208318,0
+12321,20,0.996208318,0
+12322,20,0.996208318,0
+12323,20,0.996208318,0
+12324,20,0.996208318,0
+12325,20,0.996208318,0
+12326,20,0.996208318,0
+12327,20,0.996208318,0
+12328,20,0.996208318,0
+12329,20,0.996208318,0
+12330,20,0.996208318,0
+12331,20,0.996208318,0
+12332,20,0.996208318,0
+12333,20,0.996208318,0
+12334,20,0.996208318,0
+12335,20,0.996208318,0
+12336,20,0.996208318,0
+12337,20,0.996208318,0
+12338,20,0.996208318,0
+12339,20,0.887721886,0
+12340,20,0.887721886,0
+12341,20,0.887721886,0
+12342,20,0.887721886,0
+12343,20,0.887721886,0
+12344,20,0.887721886,0
+12345,20,0.887721886,0
+12346,20,0.887721886,0
+12347,20,0.887721886,0
+12348,20,0.887721886,0
+12349,20,0.887721886,0
+12350,20,0.887721886,0
+12351,20,0.887721886,0
+12352,20,0.887721886,0
+12353,20,0.887721886,0
+12354,20,0.887721886,0
+12355,20,0.887721886,0
+12356,20,0.887721886,0
+12357,20,0.887721886,0
+12358,20,0.887721886,0
+12359,20,0.887721886,0
+12360,20,0.887721886,0
+12361,20,0.887721886,0
+12362,20,0.887721886,0
+12363,20,0.887721886,0
+12364,20,0.887721886,0
+12365,20,0.887721886,0
+12366,20,0.887721886,0
+12367,20,0.887721886,0
+12368,20,0.887721886,0
+12369,20,0.887721886,0
+12370,20,0.887721886,0
+12371,20,0.887721886,0
+12372,20,0.887721886,0
+12373,20,0.887721886,0
+12374,20,0.887721886,0
+12375,20,0.887721886,0
+12376,20,0.887721886,0
+12377,20,0.887721886,0
+12378,20,0.887721886,0
+12379,20,0.887721886,0
+12380,20,0.887721886,0
+12381,20,0.887721886,0
+12382,20,0.887721886,0
+12383,20,0.887721886,0
+12384,20,0.887721886,0
+12385,20,0.887721886,0
+12386,20,0.887721886,0
+12387,20,0.887721886,0
+12388,20,0.887721886,0
+12389,20,0.887721886,0
+12390,20,0.887721886,0
+12391,20,0.887721886,0
+12392,20,0.887721886,0
+12393,20,0.887721886,0
+12394,20,0.887721886,0
+12395,20,0.887721886,0
+12396,20,0.887721886,0
+12397,20,0.887721886,0
+12398,20,0.887721886,0
+12399,20,0.887721886,0
+12400,20,0.887721886,0
+12401,20,0.887721886,0
+12402,20,0.887721886,0
+12403,20,0.887721886,0
+12404,20,0.887721886,0
+12405,20,0.887721886,0
+12406,20,0.887721886,0
+12407,20,0.887721886,0
+12408,20,0.887721886,0
+12409,20,0.715779172,0
+12410,20,0.715779172,0
+12411,20,0.715779172,0
+12412,20,0.715779172,0
+12413,20,0.715779172,0
+12414,20,0.715779172,0
+12415,20,0.715779172,0
+12416,20,0.715779172,0
+12417,20,0.715779172,0
+12418,20,0.715779172,0
+12419,20,0.715779172,0
+12420,20,0.715779172,0
+12421,20,0.715779172,0
+12422,20,0.715779172,0
+12423,20,0.715779172,0
+12424,20,0.715779172,0
+12425,20,0.715779172,0
+12426,20,0.715779172,0
+12427,20,0.715779172,0
+12428,20,0.715779172,0
+12429,20,0.551393243,0
+12430,20,0.551393243,0
+12431,20,0.551393243,0
+12432,20,0.551393243,0
+12433,20,0.551393243,0
+12434,20,0.551393243,0
+12435,20,0.551393243,0
+12436,20,0.551393243,0
+12437,20,0.551393243,0
+12438,20,0.551393243,0
+12439,20,0.551393243,0
+12440,20,0.551393243,0
+12441,20,0.551393243,0
+12442,20,0.551393243,0
+12443,20,0.551393243,0
+12444,20,0.551393243,0
+12445,20,0.551393243,0
+12446,20,0.551393243,0
+12447,20,0.551393243,0
+12448,20,0.551393243,0
+12449,20,0.387007313,0
+12450,20,0.387007313,0
+12451,20,0.387007313,0
+12452,20,0.387007313,0
+12453,20,0.387007313,0
+12454,20,0.387007313,0
+12455,20,0.387007313,0
+12456,20,0.387007313,0
+12457,20,0.387007313,0
+12458,20,0.387007313,0
+12459,20,0.387007313,0
+12460,20,0.387007313,0
+12461,20,0.387007313,0
+12462,20,0.387007313,0
+12463,20,0.387007313,0
+12464,20,0.387007313,0
+12465,20,0.387007313,0
+12466,20,0.387007313,0
+12467,20,0.387007313,0
+12468,20,0.387007313,0
+12469,20,0.222621384,0
+12470,20,0.222621384,0
+12471,20,0.222621384,0
+12472,20,0.222621384,0
+12473,20,0.222621384,0
+12474,20,0.222621384,0
+12475,20,0.222621384,0
+12476,20,0.222621384,0
+12477,20,0.222621384,0
+12478,20,0.222621384,0
+12479,20,0.222621384,0
+12480,20,0.222621384,0
+12481,20,0.222621384,0
+12482,20,0.222621384,0
+12483,20,0.222621384,0
+12484,20,0.222621384,0
+12485,20,0.222621384,0
+12486,20,0.222621384,0
+12487,20,0.222621384,0
+12488,20,0.222621384,0
+12489,20,5.82E-02,0
+12490,20,5.82E-02,0
+12491,20,5.82E-02,0
+12492,20,5.82E-02,0
+12493,20,5.82E-02,0
+12494,20,5.82E-02,0
+12495,20,5.82E-02,0
+12496,20,5.82E-02,0
+12497,20,5.82E-02,0
+12498,20,5.82E-02,0
+12499,20,5.82E-02,0
+12500,20,5.82E-02,0
+12501,20,5.82E-02,0
+12502,20,5.82E-02,0
+12503,20,5.82E-02,0
+12504,20,5.82E-02,0
+12505,20,5.82E-02,0
+12506,20,5.82E-02,0
+12507,20,5.82E-02,0
+12508,20,5.82E-02,0
+12509,20,-0.106150476,0
+12510,20,-0.106150476,0
+12511,20,-0.106150476,0
+12512,20,-0.106150476,0
+12513,20,-0.106150476,0
+12514,20,-0.106150476,0
+12515,20,-0.106150476,0
+12516,20,-0.106150476,0
+12517,20,-0.106150476,0
+12518,20,-0.106150476,0
+12519,20,-0.106150476,0
+12520,20,-0.106150476,0
+12521,20,-0.106150476,0
+12522,20,-0.106150476,0
+12523,20,-0.106150476,0
+12524,20,-0.106150476,0
+12525,20,-0.106150476,0
+12526,20,-0.106150476,0
+12527,20,-0.106150476,0
+12528,20,-0.106150476,0
+12529,20,-0.270536405,0
+12530,20,-0.270536405,0
+12531,20,-0.270536405,0
+12532,20,-0.270536405,0
+12533,20,-0.270536405,0
+12534,20,-0.270536405,0
+12535,20,-0.270536405,0
+12536,20,-0.270536405,0
+12537,20,-0.270536405,0
+12538,20,-0.270536405,0
+12539,20,-0.270536405,0
+12540,20,-0.270536405,0
+12541,20,-0.270536405,0
+12542,20,-0.270536405,0
+12543,20,-0.270536405,0
+12544,20,-0.270536405,0
+12545,20,-0.270536405,0
+12546,20,-0.270536405,0
+12547,20,-0.270536405,0
+12548,20,-0.270536405,0
+12549,20,-0.434922335,0
+12550,20,-0.434922335,0
+12551,20,-0.434922335,0
+12552,20,-0.434922335,0
+12553,20,-0.434922335,0
+12554,20,-0.434922335,0
+12555,20,-0.434922335,0
+12556,20,-0.434922335,0
+12557,20,-0.434922335,0
+12558,20,-0.434922335,0
+12559,20,-0.434922335,0
+12560,20,-0.434922335,0
+12561,20,-0.434922335,0
+12562,20,-0.434922335,0
+12563,20,-0.434922335,0
+12564,20,-0.434922335,0
+12565,20,-0.434922335,0
+12566,20,-0.434922335,0
+12567,20,-0.434922335,0
+12568,20,-0.434922335,0
+12569,20,-0.599308265,0
+12570,20,-0.599308265,0
+12571,20,-0.599308265,0
+12572,20,-0.599308265,0
+12573,20,-0.599308265,0
+12574,20,-0.599308265,0
+12575,20,-0.599308265,0
+12576,20,-0.599308265,0
+12577,20,-0.599308265,0
+12578,20,-0.599308265,0
+12579,20,-0.599308265,0
+12580,20,-0.599308265,0
+12581,20,-0.599308265,0
+12582,20,-0.599308265,0
+12583,20,-0.599308265,0
+12584,20,-0.599308265,0
+12585,20,-0.599308265,0
+12586,20,-0.599308265,0
+12587,20,-0.599308265,0
+12588,20,-0.599308265,0
+12589,20,-0.763694194,0
+12590,20,-0.763694194,0
+12591,20,-0.763694194,0
+12592,20,-0.763694194,0
+12593,20,-0.763694194,0
+12594,20,-0.763694194,0
+12595,20,-0.763694194,0
+12596,20,-0.763694194,0
+12597,20,-0.763694194,0
+12598,20,-0.763694194,0
+12599,20,-0.763694194,0
+12600,20,-0.763694194,0
+12601,20,-0.763694194,0
+12602,20,-0.763694194,0
+12603,20,-0.763694194,0
+12604,20,-0.763694194,0
+12605,20,-0.763694194,0
+12606,20,-0.763694194,0
+12607,20,-0.763694194,0
+12608,20,-0.763694194,0
+12609,20,-0.763694194,0
+12610,20,-0.763694194,0
+12611,20,-0.763694194,0
+12612,20,-0.763694194,0
+12613,20,-0.763694194,0
+12614,20,-0.763694194,0
+12615,20,-0.763694194,0
+12616,20,-0.763694194,0
+12617,20,-0.763694194,0
+12618,20,-0.763694194,0
+12619,20,-0.763694194,0
+12620,20,-0.763694194,0
+12621,20,-0.763694194,0
+12622,20,-0.763694194,0
+12623,20,-0.763694194,0
+12624,20,-0.763694194,0
+12625,20,-0.763694194,0
+12626,20,-0.763694194,0
+12627,20,-0.763694194,0
+12628,20,-0.763694194,0
+12629,20,-0.763694194,0
+12630,20,-0.763694194,0
+12631,20,-0.763694194,0
+12632,20,-0.763694194,0
+12633,20,-0.763694194,0
+12634,20,-0.763694194,0
+12635,20,-0.763694194,0
+12636,20,-0.763694194,0
+12637,20,-0.763694194,0
+12638,20,-0.763694194,0
+12639,20,-0.763694194,0
+12640,20,-0.763694194,0
+12641,20,-0.763694194,0
+12642,20,-0.763694194,0
+12643,20,-0.763694194,0
+12644,20,-0.763694194,0
+12645,20,-0.763694194,0
+12646,20,-0.763694194,0
+12647,20,-0.763694194,0
+12648,20,-0.763694194,0
+12649,20,-0.874033591,0
+12650,20,-0.874033591,0
+12651,20,-0.874033591,0
+12652,20,-0.874033591,0
+12653,20,-0.874033591,0
+12654,20,-0.874033591,0
+12655,20,-0.874033591,0
+12656,20,-0.874033591,0
+12657,20,-0.874033591,0
+12658,20,-0.874033591,0
+12659,20,-0.975739622,0
+12660,20,-0.975739622,0
+12661,20,-0.975739622,0
+12662,20,-0.975739622,0
+12663,20,-0.975739622,0
+12664,20,-0.975739622,0
+12665,20,-0.975739622,0
+12666,20,-0.975739622,0
+12667,20,-0.975739622,0
+12668,20,-0.975739622,0
+12669,20,-1.077445652,0
+12670,20,-1.077445652,0
+12671,20,-1.077445652,0
+12672,20,-1.077445652,0
+12673,20,-1.077445652,0
+12674,20,-1.077445652,0
+12675,20,-1.077445652,0
+12676,20,-1.077445652,0
+12677,20,-1.077445652,0
+12678,20,-1.077445652,0
+12679,20,-1.179151682,0
+12680,20,-1.179151682,0
+12681,20,-1.179151682,0
+12682,20,-1.179151682,0
+12683,20,-1.179151682,0
+12684,20,-1.179151682,0
+12685,20,-1.179151682,0
+12686,20,-1.179151682,0
+12687,20,-1.179151682,0
+12688,20,-1.179151682,0
+12689,20,-1.280857712,0
+12690,20,-1.280857712,0
+12691,20,-1.280857712,0
+12692,20,-1.280857712,0
+12693,20,-1.280857712,0
+12694,20,-1.280857712,0
+12695,20,-1.280857712,0
+12696,20,-1.280857712,0
+12697,20,-1.280857712,0
+12698,20,-1.280857712,0
+12699,20,-1.382563742,0
+12700,20,-1.382563742,0
+12701,20,-1.382563742,0
+12702,20,-1.382563742,0
+12703,20,-1.382563742,0
+12704,20,-1.382563742,0
+12705,20,-1.382563742,0
+12706,20,-1.382563742,0
+12707,20,-1.382563742,0
+12708,20,-1.382563742,0
+12709,20,-1.484269772,0
+12710,20,-1.484269772,0
+12711,20,-1.484269772,0
+12712,20,-1.484269772,0
+12713,20,-1.484269772,0
+12714,20,-1.484269772,0
+12715,20,-1.484269772,0
+12716,20,-1.484269772,0
+12717,20,-1.484269772,0
+12718,20,-1.484269772,0
+12719,20,-1.585975802,0
+12720,20,-1.585975802,0
+12721,20,-1.585975802,0
+12722,20,-1.585975802,0
+12723,20,-1.585975802,0
+12724,20,-1.585975802,0
+12725,20,-1.585975802,0
+12726,20,-1.585975802,0
+12727,20,-1.585975802,0
+12728,20,-1.585975802,0
+12729,20,-1.687681833,0
+12730,20,-1.687681833,0
+12731,20,-1.687681833,0
+12732,20,-1.687681833,0
+12733,20,-1.687681833,0
+12734,20,-1.687681833,0
+12735,20,-1.687681833,0
+12736,20,-1.687681833,0
+12737,20,-1.687681833,0
+12738,20,-1.687681833,0
+12739,20,-1.789387863,0
+12740,20,-1.789387863,0
+12741,20,-1.789387863,0
+12742,20,-1.789387863,0
+12743,20,-1.789387863,0
+12744,20,-1.789387863,0
+12745,20,-1.789387863,0
+12746,20,-1.789387863,0
+12747,20,-1.789387863,0
+12748,20,-1.789387863,0
+12749,20,-1.891093893,0
+12750,20,-1.891093893,0
+12751,20,-1.891093893,0
+12752,20,-1.891093893,0
+12753,20,-1.891093893,0
+12754,20,-1.891093893,0
+12755,20,-1.891093893,0
+12756,20,-1.891093893,0
+12757,20,-1.891093893,0
+12758,20,-1.891093893,0
+12759,20,-1.992799923,0
+12760,20,-1.992799923,0
+12761,20,-1.992799923,0
+12762,20,-1.992799923,0
+12763,20,-1.992799923,0
+12764,20,-1.992799923,0
+12765,20,-1.992799923,0
+12766,20,-1.992799923,0
+12767,20,-1.992799923,0
+12768,20,-1.992799923,0
+12769,20,-2.094505953,0
+12770,20,-2.094505953,0
+12771,20,-2.094505953,0
+12772,20,-2.094505953,0
+12773,20,-2.094505953,0
+12774,20,-2.094505953,0
+12775,20,-2.094505953,0
+12776,20,-2.094505953,0
+12777,20,-2.094505953,0
+12778,20,-2.094505953,0
+12779,20,-2.196211983,0
+12780,20,-2.196211983,0
+12781,20,-2.196211983,0
+12782,20,-2.196211983,0
+12783,20,-2.196211983,0
+12784,20,-2.196211983,0
+12785,20,-2.196211983,0
+12786,20,-2.196211983,0
+12787,20,-2.196211983,0
+12788,20,-2.196211983,0
+12789,20,-2.297918013,0
+12790,20,-2.297918013,0
+12791,20,-2.297918013,0
+12792,20,-2.297918013,0
+12793,20,-2.297918013,0
+12794,20,-2.297918013,0
+12795,20,-2.297918013,0
+12796,20,-2.297918013,0
+12797,20,-2.297918013,0
+12798,20,-2.297918013,0
+12799,20,-2.399624044,0
+12800,20,-2.399624044,0
+12801,20,-2.399624044,0
+12802,20,-2.399624044,0
+12803,20,-2.399624044,0
+12804,20,-2.399624044,0
+12805,20,-2.399624044,0
+12806,20,-2.399624044,0
+12807,20,-2.399624044,0
+12808,20,-2.399624044,0
+12809,20,-2.501330074,0
+12810,20,-2.501330074,0
+12811,20,-2.501330074,0
+12812,20,-2.501330074,0
+12813,20,-2.501330074,0
+12814,20,-2.501330074,0
+12815,20,-2.501330074,0
+12816,20,-2.501330074,0
+12817,20,-2.501330074,0
+12818,20,-2.501330074,0
+12819,20,-2.603036104,0
+12820,20,-2.603036104,0
+12821,20,-2.603036104,0
+12822,20,-2.603036104,0
+12823,20,-2.603036104,0
+12824,20,-2.603036104,0
+12825,20,-2.603036104,0
+12826,20,-2.603036104,0
+12827,20,-2.603036104,0
+12828,20,-2.603036104,0
+12829,20,-2.704742134,0
+12830,20,-2.704742134,0
+12831,20,-2.704742134,0
+12832,20,-2.704742134,0
+12833,20,-2.704742134,0
+12834,20,-2.704742134,0
+12835,20,-2.704742134,0
+12836,20,-2.704742134,0
+12837,20,-2.704742134,0
+12838,20,-2.704742134,0
+12839,20,-2.806448164,0
+12840,20,-2.806448164,0
+12841,20,-2.806448164,0
+12842,20,-2.806448164,0
+12843,20,-2.806448164,0
+12844,20,-2.806448164,0
+12845,20,-2.806448164,0
+12846,20,-2.806448164,0
+12847,20,-2.806448164,0
+12848,20,-2.806448164,0
+12849,20,-2.806448164,0
+12850,20,-2.806448164,0
+12851,20,-2.806448164,0
+12852,20,-2.806448164,0
+12853,20,-2.806448164,0
+12854,20,-2.806448164,0
+12855,20,-2.806448164,0
+12856,20,-2.806448164,0
+12857,20,-2.806448164,0
+12858,20,-2.806448164,0
+12859,20,-2.806448164,0
+12860,20,-2.806448164,0
+12861,20,-2.806448164,0
+12862,20,-2.806448164,0
+12863,20,-2.806448164,0
+12864,20,-2.806448164,0
+12865,20,-2.806448164,0
+12866,20,-2.806448164,0
+12867,20,-2.806448164,0
+12868,20,-2.806448164,0
+12869,20,-2.806448164,0
+12870,20,-2.806448164,0
+12871,20,-2.806448164,0
+12872,20,-2.806448164,0
+12873,20,-2.806448164,0
+12874,20,-2.806448164,0
+12875,20,-2.806448164,0
+12876,20,-2.806448164,0
+12877,20,-2.806448164,0
+12878,20,-2.806448164,0
+12879,20,-2.806448164,0
+12880,20,-2.806448164,0
+12881,20,-2.806448164,0
+12882,20,-2.806448164,0
+12883,20,-2.806448164,0
+12884,20,-2.806448164,0
+12885,20,-2.806448164,0
+12886,20,-2.806448164,0
+12887,20,-2.806448164,0
+12888,20,-2.806448164,0
+12889,20,-2.806448164,0
+12890,20,-2.806448164,0
+12891,20,-2.806448164,0
+12892,20,-2.806448164,0
+12893,20,-2.806448164,0
+12894,20,-2.806448164,0
+12895,20,-2.806448164,0
+12896,20,-2.806448164,0
+12897,20,-2.806448164,0
+12898,20,-2.806448164,0
+12899,20,-2.806448164,0
+12900,20,-2.806448164,0
+12901,20,-2.806448164,0
+12902,20,-2.806448164,0
+12903,20,-2.806448164,0
+12904,20,-2.806448164,0
+12905,20,-2.806448164,0
+12906,20,-2.806448164,0
+12907,20,-2.806448164,0
+12908,20,-2.806448164,0
+12909,20,-2.806448164,0
+12910,20,-2.806448164,0
+12911,20,-2.806448164,0
+12912,20,-2.806448164,0
+12913,20,-2.806448164,0
+12914,20,-2.806448164,0
+12915,20,-2.806448164,0
+12916,20,-2.806448164,0
+12917,20,-2.806448164,0
+12918,20,-2.806448164,0
+12919,20,-2.911678968,0
+12920,20,-2.911678968,0
+12921,20,-2.911678968,0
+12922,20,-2.911678968,0
+12923,20,-2.911678968,0
+12924,20,-2.911678968,0
+12925,20,-2.911678968,0
+12926,20,-2.911678968,0
+12927,20,-2.911678968,0
+12928,20,-2.911678968,0
+12929,20,-3.022391029,0
+12930,20,-3.022391029,0
+12931,20,-3.022391029,0
+12932,20,-3.022391029,0
+12933,20,-3.022391029,0
+12934,20,-3.022391029,0
+12935,20,-3.022391029,0
+12936,20,-3.022391029,0
+12937,20,-3.022391029,0
+12938,20,-3.022391029,0
+12939,20,-3.133103089,0
+12940,20,-3.133103089,0
+12941,20,-3.133103089,0
+12942,20,-3.133103089,0
+12943,20,-3.133103089,0
+12944,20,-3.133103089,0
+12945,20,-3.133103089,0
+12946,20,-3.133103089,0
+12947,20,-3.133103089,0
+12948,20,-3.133103089,0
+12949,20,-3.243815149,0
+12950,20,-3.243815149,0
+12951,20,-3.243815149,0
+12952,20,-3.243815149,0
+12953,20,-3.243815149,0
+12954,20,-3.243815149,0
+12955,20,-3.243815149,0
+12956,20,-3.243815149,0
+12957,20,-3.243815149,0
+12958,20,-3.243815149,0
+12959,20,-3.354527209,0
+12960,20,-3.354527209,0
+12961,20,-3.354527209,0
+12962,20,-3.354527209,0
+12963,20,-3.354527209,0
+12964,20,-3.354527209,0
+12965,20,-3.354527209,0
+12966,20,-3.354527209,0
+12967,20,-3.354527209,0
+12968,20,-3.354527209,0
+12969,20,-3.46523927,0
+12970,20,-3.46523927,0
+12971,20,-3.46523927,0
+12972,20,-3.46523927,0
+12973,20,-3.46523927,0
+12974,20,-3.46523927,0
+12975,20,-3.46523927,0
+12976,20,-3.46523927,0
+12977,20,-3.46523927,0
+12978,20,-3.46523927,0
+12979,20,-3.57595133,0
+12980,20,-3.57595133,0
+12981,20,-3.57595133,0
+12982,20,-3.57595133,0
+12983,20,-3.57595133,0
+12984,20,-3.57595133,0
+12985,20,-3.57595133,0
+12986,20,-3.57595133,0
+12987,20,-3.57595133,0
+12988,20,-3.57595133,0
+12989,20,-3.68666339,0
+12990,20,-3.68666339,0
+12991,20,-3.68666339,0
+12992,20,-3.68666339,0
+12993,20,-3.68666339,0
+12994,20,-3.68666339,0
+12995,20,-3.68666339,0
+12996,20,-3.68666339,0
+12997,20,-3.68666339,0
+12998,20,-3.68666339,0
+12999,20,-3.797375451,0
+13000,20,-3.797375451,0
+13001,20,-3.797375451,0
+13002,20,-3.797375451,0
+13003,20,-3.797375451,0
+13004,20,-3.797375451,0
+13005,20,-3.797375451,0
+13006,20,-3.797375451,0
+13007,20,-3.797375451,0
+13008,20,-3.797375451,0
+13009,20,-3.908087511,0
+13010,20,-3.908087511,0
+13011,20,-3.908087511,0
+13012,20,-3.908087511,0
+13013,20,-3.908087511,0
+13014,20,-3.908087511,0
+13015,20,-3.908087511,0
+13016,20,-3.908087511,0
+13017,20,-3.908087511,0
+13018,20,-3.908087511,0
+13019,20,-4.018799571,0
+13020,20,-4.018799571,0
+13021,20,-4.018799571,0
+13022,20,-4.018799571,0
+13023,20,-4.018799571,0
+13024,20,-4.018799571,0
+13025,20,-4.018799571,0
+13026,20,-4.018799571,0
+13027,20,-4.018799571,0
+13028,20,-4.018799571,0
+13029,20,-4.129449521,0
+13030,20,-4.129449521,0
+13031,20,-4.129449521,0
+13032,20,-4.129449521,0
+13033,20,-4.129449521,0
+13034,20,-4.129449521,0
+13035,20,-4.129449521,0
+13036,20,-4.129449521,0
+13037,20,-4.129449521,0
+13038,20,-4.129449521,0
+13039,20,-4.240006305,0
+13040,20,-4.240006305,0
+13041,20,-4.240006305,0
+13042,20,-4.240006305,0
+13043,20,-4.240006305,0
+13044,20,-4.240006305,0
+13045,20,-4.240006305,0
+13046,20,-4.240006305,0
+13047,20,-4.240006305,0
+13048,20,-4.240006305,0
+13049,20,-4.351743189,0
+13050,20,-4.351743189,0
+13051,20,-4.351743189,0
+13052,20,-4.351743189,0
+13053,20,-4.351743189,0
+13054,20,-4.351743189,0
+13055,20,-4.351743189,0
+13056,20,-4.351743189,0
+13057,20,-4.351743189,0
+13058,20,-4.351743189,0
+13059,20,-4.468200476,0
+13060,20,-4.468200476,0
+13061,20,-4.468200476,0
+13062,20,-4.468200476,0
+13063,20,-4.468200476,0
+13064,20,-4.468200476,0
+13065,20,-4.468200476,0
+13066,20,-4.468200476,0
+13067,20,-4.468200476,0
+13068,20,-4.468200476,0
+13069,20,-4.584657762,0
+13070,20,-4.584657762,0
+13071,20,-4.584657762,0
+13072,20,-4.584657762,0
+13073,20,-4.584657762,0
+13074,20,-4.584657762,0
+13075,20,-4.584657762,0
+13076,20,-4.584657762,0
+13077,20,-4.584657762,0
+13078,20,-4.584657762,0
+13079,20,-4.721114647,0
+13080,20,-4.721114647,0
+13081,20,-4.721114647,0
+13082,20,-4.721114647,0
+13083,20,-4.721114647,0
+13084,20,-4.721114647,0
+13085,20,-4.721114647,0
+13086,20,-4.721114647,0
+13087,20,-4.721114647,0
+13088,20,-4.721114647,0
+13089,20,-4.862571431,0
+13090,20,-4.862571431,0
+13091,20,-4.862571431,0
+13092,20,-4.862571431,0
+13093,20,-4.862571431,0
+13094,20,-4.862571431,0
+13095,20,-4.862571431,0
+13096,20,-4.862571431,0
+13097,20,-4.862571431,0
+13098,20,-4.862571431,0
+13099,20,-5.004028214,0
+13100,20,-5.004028214,0
+13101,20,-5.004028214,0
+13102,20,-5.004028214,0
+13103,20,-5.004028214,0
+13104,20,-5.004028214,0
+13105,20,-5.004028214,0
+13106,20,-5.004028214,0
+13107,20,-5.004028214,0
+13108,20,-5.004028214,0
+13109,20,-5.133823742,0
+13110,20,-5.133823742,0
+13111,20,-5.133823742,0
+13112,20,-5.133823742,0
+13113,20,-5.133823742,0
+13114,20,-5.133823742,0
+13115,20,-5.133823742,0
+13116,20,-5.133823742,0
+13117,20,-5.133823742,0
+13118,20,-5.133823742,0
+13119,20,-5.133823742,0
+13120,20,-5.133823742,0
+13121,20,-5.133823742,0
+13122,20,-5.133823742,0
+13123,20,-5.133823742,0
+13124,20,-5.133823742,0
+13125,20,-5.133823742,0
+13126,20,-5.133823742,0
+13127,20,-5.133823742,0
+13128,20,-5.133823742,0
+13129,20,-5.133823742,0
+13130,20,-5.133823742,0
+13131,20,-5.133823742,0
+13132,20,-5.133823742,0
+13133,20,-5.133823742,0
+13134,20,-5.133823742,0
+13135,20,-5.133823742,0
+13136,20,-5.133823742,0
+13137,20,-5.133823742,0
+13138,20,-5.133823742,0
+13139,20,-5.133823742,0
+13140,20,-5.133823742,0
+13141,20,-5.133823742,0
+13142,20,-5.133823742,0
+13143,20,-5.133823742,0
+13144,20,-5.133823742,0
+13145,20,-5.133823742,0
+13146,20,-5.133823742,0
+13147,20,-5.133823742,0
+13148,20,-5.133823742,0
+13149,20,-5.133823742,0
+13150,20,-5.133823742,0
+13151,20,-5.133823742,0
+13152,20,-5.133823742,0
+13153,20,-5.133823742,0
+13154,20,-5.133823742,0
+13155,20,-5.133823742,0
+13156,20,-5.133823742,0
+13157,20,-5.133823742,0
+13158,20,-5.133823742,0
+13159,20,-5.258044848,0
+13160,20,-5.258044848,0
+13161,20,-5.258044848,0
+13162,20,-5.258044848,0
+13163,20,-5.258044848,0
+13164,20,-5.258044848,0
+13165,20,-5.258044848,0
+13166,20,-5.258044848,0
+13167,20,-5.258044848,0
+13168,20,-5.258044848,0
+13169,20,-5.258044848,0
+13170,20,-5.258044848,0
+13171,20,-5.258044848,0
+13172,20,-5.258044848,0
+13173,20,-5.258044848,0
+13174,20,-5.258044848,0
+13175,20,-5.258044848,0
+13176,20,-5.258044848,0
+13177,20,-5.258044848,0
+13178,20,-5.258044848,0
+13179,20,-5.258044848,0
+13180,20,-5.258044848,0
+13181,20,-5.258044848,0
+13182,20,-5.258044848,0
+13183,20,-5.258044848,0
+13184,20,-5.258044848,0
+13185,20,-5.258044848,0
+13186,20,-5.258044848,0
+13187,20,-5.258044848,0
+13188,20,-5.258044848,0
+13189,20,-5.258044848,0
+13190,20,-5.258044848,0
+13191,20,-5.258044848,0
+13192,20,-5.258044848,0
+13193,20,-5.258044848,0
+13194,20,-5.258044848,0
+13195,20,-5.258044848,0
+13196,20,-5.258044848,0
+13197,20,-5.258044848,0
+13198,20,-5.258044848,0
+13199,20,-5.258044848,0
+13200,20,-5.258044848,0
+13201,20,-5.258044848,0
+13202,20,-5.258044848,0
+13203,20,-5.258044848,0
+13204,20,-5.258044848,0
+13205,20,-5.258044848,0
+13206,20,-5.258044848,0
+13207,20,-5.258044848,0
+13208,20,-5.258044848,0
+13209,20,-5.382265953,0
+13210,20,-5.382265953,0
+13211,20,-5.382265953,0
+13212,20,-5.382265953,0
+13213,20,-5.382265953,0
+13214,20,-5.382265953,0
+13215,20,-5.382265953,0
+13216,20,-5.382265953,0
+13217,20,-5.382265953,0
+13218,20,-5.382265953,0
+13219,20,-5.382265953,0
+13220,20,-5.382265953,0
+13221,20,-5.382265953,0
+13222,20,-5.382265953,0
+13223,20,-5.382265953,0
+13224,20,-5.382265953,0
+13225,20,-5.382265953,0
+13226,20,-5.382265953,0
+13227,20,-5.382265953,0
+13228,20,-5.382265953,0
+13229,20,-5.382265953,0
+13230,20,-5.382265953,0
+13231,20,-5.382265953,0
+13232,20,-5.382265953,0
+13233,20,-5.382265953,0
+13234,20,-5.382265953,0
+13235,20,-5.382265953,0
+13236,20,-5.382265953,0
+13237,20,-5.382265953,0
+13238,20,-5.382265953,0
+13239,20,-5.382265953,0
+13240,20,-5.382265953,0
+13241,20,-5.382265953,0
+13242,20,-5.382265953,0
+13243,20,-5.382265953,0
+13244,20,-5.382265953,0
+13245,20,-5.382265953,0
+13246,20,-5.382265953,0
+13247,20,-5.382265953,0
+13248,20,-5.382265953,0
+13249,20,-5.482859169,0
+13250,20,-5.482859169,0
+13251,20,-5.482859169,0
+13252,20,-5.482859169,0
+13253,20,-5.482859169,0
+13254,20,-5.482859169,0
+13255,20,-5.482859169,0
+13256,20,-5.482859169,0
+13257,20,-5.482859169,0
+13258,20,-5.482859169,0
+13259,20,-5.482859169,0
+13260,20,-5.482859169,0
+13261,20,-5.482859169,0
+13262,20,-5.482859169,0
+13263,20,-5.482859169,0
+13264,20,-5.482859169,0
+13265,20,-5.482859169,0
+13266,20,-5.482859169,0
+13267,20,-5.482859169,0
+13268,20,-5.482859169,0
+13269,20,-5.482859169,0
+13270,20,-5.482859169,0
+13271,20,-5.482859169,0
+13272,20,-5.482859169,0
+13273,20,-5.482859169,0
+13274,20,-5.482859169,0
+13275,20,-5.482859169,0
+13276,20,-5.482859169,0
+13277,20,-5.482859169,0
+13278,20,-5.482859169,0
+13279,20,-5.482859169,0
+13280,20,-5.482859169,0
+13281,20,-5.482859169,0
+13282,20,-5.482859169,0
+13283,20,-5.482859169,0
+13284,20,-5.482859169,0
+13285,20,-5.482859169,0
+13286,20,-5.482859169,0
+13287,20,-5.482859169,0
+13288,20,-5.482859169,0
+13289,20,-5.482859169,0
+13290,20,-5.482859169,0
+13291,20,-5.482859169,0
+13292,20,-5.482859169,0
+13293,20,-5.482859169,0
+13294,20,-5.482859169,0
+13295,20,-5.482859169,0
+13296,20,-5.482859169,0
+13297,20,-5.482859169,0
+13298,20,-5.482859169,0
+13299,20,-5.482859169,0
+13300,20,-5.482859169,0
+13301,20,-5.482859169,0
+13302,20,-5.482859169,0
+13303,20,-5.482859169,0
+13304,20,-5.482859169,0
+13305,20,-5.482859169,0
+13306,20,-5.482859169,0
+13307,20,-5.482859169,0
+13308,20,-5.482859169,0
+13309,20,-5.482859169,0
+13310,20,-5.482859169,0
+13311,20,-5.482859169,0
+13312,20,-5.482859169,0
+13313,20,-5.482859169,0
+13314,20,-5.482859169,0
+13315,20,-5.482859169,0
+13316,20,-5.482859169,0
+13317,20,-5.482859169,0
+13318,20,-5.482859169,0
+13319,20,-5.482859169,0
+13320,20,-5.482859169,0
+13321,20,-5.482859169,0
+13322,20,-5.482859169,0
+13323,20,-5.482859169,0
+13324,20,-5.482859169,0
+13325,20,-5.482859169,0
+13326,20,-5.482859169,0
+13327,20,-5.482859169,0
+13328,20,-5.482859169,0
+13329,20,-5.362442335,0
+13330,20,-5.362442335,0
+13331,20,-5.362442335,0
+13332,20,-5.362442335,0
+13333,20,-5.362442335,0
+13334,20,-5.362442335,0
+13335,20,-5.362442335,0
+13336,20,-5.362442335,0
+13337,20,-5.362442335,0
+13338,20,-5.362442335,0
+13339,20,-5.362442335,0
+13340,20,-5.362442335,0
+13341,20,-5.362442335,0
+13342,20,-5.362442335,0
+13343,20,-5.362442335,0
+13344,20,-5.362442335,0
+13345,20,-5.362442335,0
+13346,20,-5.362442335,0
+13347,20,-5.362442335,0
+13348,20,-5.362442335,0
+13349,20,-5.362442335,0
+13350,20,-5.362442335,0
+13351,20,-5.362442335,0
+13352,20,-5.362442335,0
+13353,20,-5.362442335,0
+13354,20,-5.362442335,0
+13355,20,-5.362442335,0
+13356,20,-5.362442335,0
+13357,20,-5.362442335,0
+13358,20,-5.362442335,0
+13359,20,-5.362442335,0
+13360,20,-5.362442335,0
+13361,20,-5.362442335,0
+13362,20,-5.362442335,0
+13363,20,-5.362442335,0
+13364,20,-5.362442335,0
+13365,20,-5.362442335,0
+13366,20,-5.362442335,0
+13367,20,-5.362442335,0
+13368,20,-5.362442335,0
+13369,20,-5.253541833,0
+13370,20,-5.253541833,0
+13371,20,-5.253541833,0
+13372,20,-5.253541833,0
+13373,20,-5.253541833,0
+13374,20,-5.253541833,0
+13375,20,-5.253541833,0
+13376,20,-5.253541833,0
+13377,20,-5.253541833,0
+13378,20,-5.253541833,0
+13379,20,-5.253541833,0
+13380,20,-5.253541833,0
+13381,20,-5.253541833,0
+13382,20,-5.253541833,0
+13383,20,-5.253541833,0
+13384,20,-5.253541833,0
+13385,20,-5.253541833,0
+13386,20,-5.253541833,0
+13387,20,-5.253541833,0
+13388,20,-5.253541833,0
+13389,20,-5.253541833,0
+13390,20,-5.253541833,0
+13391,20,-5.253541833,0
+13392,20,-5.253541833,0
+13393,20,-5.253541833,0
+13394,20,-5.253541833,0
+13395,20,-5.253541833,0
+13396,20,-5.253541833,0
+13397,20,-5.253541833,0
+13398,20,-5.253541833,0
+13399,20,-5.253541833,0
+13400,20,-5.253541833,0
+13401,20,-5.253541833,0
+13402,20,-5.253541833,0
+13403,20,-5.253541833,0
+13404,20,-5.253541833,0
+13405,20,-5.253541833,0
+13406,20,-5.253541833,0
+13407,20,-5.253541833,0
+13408,20,-5.253541833,0
+13409,20,-5.14464133,0
+13410,20,-5.14464133,0
+13411,20,-5.14464133,0
+13412,20,-5.14464133,0
+13413,20,-5.14464133,0
+13414,20,-5.14464133,0
+13415,20,-5.14464133,0
+13416,20,-5.14464133,0
+13417,20,-5.14464133,0
+13418,20,-5.14464133,0
+13419,20,-5.14464133,0
+13420,20,-5.14464133,0
+13421,20,-5.14464133,0
+13422,20,-5.14464133,0
+13423,20,-5.14464133,0
+13424,20,-5.14464133,0
+13425,20,-5.14464133,0
+13426,20,-5.14464133,0
+13427,20,-5.14464133,0
+13428,20,-5.14464133,0
+13429,20,-5.14464133,0
+13430,20,-5.14464133,0
+13431,20,-5.14464133,0
+13432,20,-5.14464133,0
+13433,20,-5.14464133,0
+13434,20,-5.14464133,0
+13435,20,-5.14464133,0
+13436,20,-5.14464133,0
+13437,20,-5.14464133,0
+13438,20,-5.14464133,0
+13439,20,-5.14464133,0
+13440,20,-5.14464133,0
+13441,20,-5.14464133,0
+13442,20,-5.14464133,0
+13443,20,-5.14464133,0
+13444,20,-5.14464133,0
+13445,20,-5.14464133,0
+13446,20,-5.14464133,0
+13447,20,-5.14464133,0
+13448,20,-5.14464133,0
+13449,20,-5.034829873,0
+13450,20,-5.034829873,0
+13451,20,-5.034829873,0
+13452,20,-5.034829873,0
+13453,20,-5.034829873,0
+13454,20,-5.034829873,0
+13455,20,-5.034829873,0
+13456,20,-5.034829873,0
+13457,20,-5.034829873,0
+13458,20,-5.034829873,0
+13459,20,-5.034829873,0
+13460,20,-5.034829873,0
+13461,20,-5.034829873,0
+13462,20,-5.034829873,0
+13463,20,-5.034829873,0
+13464,20,-5.034829873,0
+13465,20,-5.034829873,0
+13466,20,-5.034829873,0
+13467,20,-5.034829873,0
+13468,20,-5.034829873,0
+13469,20,-5.034829873,0
+13470,20,-5.034829873,0
+13471,20,-5.034829873,0
+13472,20,-5.034829873,0
+13473,20,-5.034829873,0
+13474,20,-5.034829873,0
+13475,20,-5.034829873,0
+13476,20,-5.034829873,0
+13477,20,-5.034829873,0
+13478,20,-5.034829873,0
+13479,20,-5.034829873,0
+13480,20,-5.034829873,0
+13481,20,-5.034829873,0
+13482,20,-5.034829873,0
+13483,20,-5.034829873,0
+13484,20,-5.034829873,0
+13485,20,-5.034829873,0
+13486,20,-5.034829873,0
+13487,20,-5.034829873,0
+13488,20,-5.034829873,0
+13489,20,-5.034829873,0
+13490,20,-5.034829873,0
+13491,20,-5.034829873,0
+13492,20,-5.034829873,0
+13493,20,-5.034829873,0
+13494,20,-5.034829873,0
+13495,20,-5.034829873,0
+13496,20,-5.034829873,0
+13497,20,-5.034829873,0
+13498,20,-5.034829873,0
+13499,20,-5.034829873,0
+13500,20,-5.034829873,0
+13501,20,-5.034829873,0
+13502,20,-5.034829873,0
+13503,20,-5.034829873,0
+13504,20,-5.034829873,0
+13505,20,-5.034829873,0
+13506,20,-5.034829873,0
+13507,20,-5.034829873,0
+13508,20,-5.034829873,0
+13509,20,-5.034829873,0
+13510,20,-5.034829873,0
+13511,20,-5.034829873,0
+13512,20,-5.034829873,0
+13513,20,-5.034829873,0
+13514,20,-5.034829873,0
+13515,20,-5.034829873,0
+13516,20,-5.034829873,0
+13517,20,-5.034829873,0
+13518,20,-5.034829873,0
+13519,20,-5.034829873,0
+13520,20,-5.034829873,0
+13521,20,-5.034829873,0
+13522,20,-5.034829873,0
+13523,20,-5.034829873,0
+13524,20,-5.034829873,0
+13525,20,-5.034829873,0
+13526,20,-5.034829873,0
+13527,20,-5.034829873,0
+13528,20,-5.034829873,0
+13529,20,-5.034829873,0
+13530,20,-5.034829873,0
+13531,20,-5.034829873,0
+13532,20,-5.034829873,0
+13533,20,-5.034829873,0
+13534,20,-5.034829873,0
+13535,20,-5.034829873,0
+13536,20,-5.034829873,0
+13537,20,-5.034829873,0
+13538,20,-5.034829873,0
+13539,20,-5.034829873,0
+13540,20,-5.034829873,0
+13541,20,-5.034829873,0
+13542,20,-5.034829873,0
+13543,20,-5.034829873,0
+13544,20,-5.034829873,0
+13545,20,-5.034829873,0
+13546,20,-5.034829873,0
+13547,20,-5.034829873,0
+13548,20,-5.034829873,0
+13549,20,-5.034829873,0
+13550,20,-5.034829873,0
+13551,20,-5.034829873,0
+13552,20,-5.034829873,0
+13553,20,-5.034829873,0
+13554,20,-5.034829873,0
+13555,20,-5.034829873,0
+13556,20,-5.034829873,0
+13557,20,-5.034829873,0
+13558,20,-5.034829873,0
+13559,20,-5.034829873,0
+13560,20,-5.034829873,0
+13561,20,-5.034829873,0
+13562,20,-5.034829873,0
+13563,20,-5.034829873,0
+13564,20,-5.034829873,0
+13565,20,-5.034829873,0
+13566,20,-5.034829873,0
+13567,20,-5.034829873,0
+13568,20,-5.034829873,0
+13569,20,-5.034829873,0
+13570,20,-5.034829873,0
+13571,20,-5.034829873,0
+13572,20,-5.034829873,0
+13573,20,-5.034829873,0
+13574,20,-5.034829873,0
+13575,20,-5.034829873,0
+13576,20,-5.034829873,0
+13577,20,-5.034829873,0
+13578,20,-5.034829873,0
+13579,20,-5.034829873,0
+13580,20,-5.034829873,0
+13581,20,-5.034829873,0
+13582,20,-5.034829873,0
+13583,20,-5.034829873,0
+13584,20,-5.034829873,0
+13585,20,-5.034829873,0
+13586,20,-5.034829873,0
+13587,20,-5.034829873,0
+13588,20,-5.034829873,0
+13589,20,-5.034829873,0
+13590,20,-5.034829873,0
+13591,20,-5.034829873,0
+13592,20,-5.034829873,0
+13593,20,-5.034829873,0
+13594,20,-5.034829873,0
+13595,20,-5.034829873,0
+13596,20,-5.034829873,0
+13597,20,-5.034829873,0
+13598,20,-5.034829873,0
+13599,20,-5.034829873,0
+13600,20,-5.034829873,0
+13601,20,-5.034829873,0
+13602,20,-5.034829873,0
+13603,20,-5.034829873,0
+13604,20,-5.034829873,0
+13605,20,-5.034829873,0
+13606,20,-5.034829873,0
+13607,20,-5.034829873,0
+13608,20,-5.034829873,0
+13609,20,-5.034829873,0
+13610,20,-5.034829873,0
+13611,20,-5.034829873,0
+13612,20,-5.034829873,0
+13613,20,-5.034829873,0
+13614,20,-5.034829873,0
+13615,20,-5.034829873,0
+13616,20,-5.034829873,0
+13617,20,-5.034829873,0
+13618,20,-5.034829873,0
+13619,20,-5.034829873,0
+13620,20,-5.034829873,0
+13621,20,-5.034829873,0
+13622,20,-5.034829873,0
+13623,20,-5.034829873,0
+13624,20,-5.034829873,0
+13625,20,-5.034829873,0
+13626,20,-5.034829873,0
+13627,20,-5.034829873,0
+13628,20,-5.034829873,0
+13629,20,-5.034829873,0
+13630,20,-5.034829873,0
+13631,20,-5.034829873,0
+13632,20,-5.034829873,0
+13633,20,-5.034829873,0
+13634,20,-5.034829873,0
+13635,20,-5.034829873,0
+13636,20,-5.034829873,0
+13637,20,-5.034829873,0
+13638,20,-5.034829873,0
+13639,20,-5.034829873,0
+13640,20,-5.034829873,0
+13641,20,-5.034829873,0
+13642,20,-5.034829873,0
+13643,20,-5.034829873,0
+13644,20,-5.034829873,0
+13645,20,-5.034829873,0
+13646,20,-5.034829873,0
+13647,20,-5.034829873,0
+13648,20,-5.034829873,0
+13649,20,-5.034829873,0
+13650,20,-5.034829873,0
+13651,20,-5.034829873,0
+13652,20,-5.034829873,0
+13653,20,-5.034829873,0
+13654,20,-5.034829873,0
+13655,20,-5.034829873,0
+13656,20,-5.034829873,0
+13657,20,-5.034829873,0
+13658,20,-5.034829873,0
+13659,20,-5.034829873,0
+13660,20,-5.034829873,0
+13661,20,-5.034829873,0
+13662,20,-5.034829873,0
+13663,20,-5.034829873,0
+13664,20,-5.034829873,0
+13665,20,-5.034829873,0
+13666,20,-5.034829873,0
+13667,20,-5.034829873,0
+13668,20,-5.034829873,0
+13669,20,-5.034829873,0
+13670,20,-5.034829873,0
+13671,20,-5.034829873,0
+13672,20,-5.034829873,0
+13673,20,-5.034829873,0
+13674,20,-5.034829873,0
+13675,20,-5.034829873,0
+13676,20,-5.034829873,0
+13677,20,-5.034829873,0
+13678,20,-5.034829873,0
+13679,20,-5.034829873,0
+13680,20,-5.034829873,0
+13681,20,-5.034829873,0
+13682,20,-5.034829873,0
+13683,20,-5.034829873,0
+13684,20,-5.034829873,0
+13685,20,-5.034829873,0
+13686,20,-5.034829873,0
+13687,20,-5.034829873,0
+13688,20,-5.034829873,0
+13689,20,-5.034829873,0
+13690,20,-5.034829873,0
+13691,20,-5.034829873,0
+13692,20,-5.034829873,0
+13693,20,-5.034829873,0
+13694,20,-5.034829873,0
+13695,20,-5.034829873,0
+13696,20,-5.034829873,0
+13697,20,-5.034829873,0
+13698,20,-5.034829873,0
+13699,20,-5.034829873,0
+13700,20,-5.034829873,0
+13701,20,-5.034829873,0
+13702,20,-5.034829873,0
+13703,20,-5.034829873,0
+13704,20,-5.034829873,0
+13705,20,-5.034829873,0
+13706,20,-5.034829873,0
+13707,20,-5.034829873,0
+13708,20,-5.034829873,0
+13709,20,-5.034829873,0
+13710,20,-5.034829873,0
+13711,20,-5.034829873,0
+13712,20,-5.034829873,0
+13713,20,-5.034829873,0
+13714,20,-5.034829873,0
+13715,20,-5.034829873,0
+13716,20,-5.034829873,0
+13717,20,-5.034829873,0
+13718,20,-5.034829873,0
+13719,20,-5.034829873,0
+13720,20,-5.034829873,0
+13721,20,-5.034829873,0
+13722,20,-5.034829873,0
+13723,20,-5.034829873,0
+13724,20,-5.034829873,0
+13725,20,-5.034829873,0
+13726,20,-5.034829873,0
+13727,20,-5.034829873,0
+13728,20,-5.034829873,0
+13729,20,-5.034829873,0
+13730,20,-5.034829873,0
+13731,20,-5.034829873,0
+13732,20,-5.034829873,0
+13733,20,-5.034829873,0
+13734,20,-5.034829873,0
+13735,20,-5.034829873,0
+13736,20,-5.034829873,0
+13737,20,-5.034829873,0
+13738,20,-5.034829873,0
+13739,20,-5.034829873,0
+13740,20,-5.034829873,0
+13741,20,-5.034829873,0
+13742,20,-5.034829873,0
+13743,20,-5.034829873,0
+13744,20,-5.034829873,0
+13745,20,-5.034829873,0
+13746,20,-5.034829873,0
+13747,20,-5.034829873,0
+13748,20,-5.034829873,0
+13749,20,-5.034829873,0
+13750,20,-5.034829873,0
+13751,20,-5.034829873,0
+13752,20,-5.034829873,0
+13753,20,-5.034829873,0
+13754,20,-5.034829873,0
+13755,20,-5.034829873,0
+13756,20,-5.034829873,0
+13757,20,-5.034829873,0
+13758,20,-5.034829873,0
+13759,20,-5.034829873,0
+13760,20,-5.034829873,0
+13761,20,-5.034829873,0
+13762,20,-5.034829873,0
+13763,20,-5.034829873,0
+13764,20,-5.034829873,0
+13765,20,-5.034829873,0
+13766,20,-5.034829873,0
+13767,20,-5.034829873,0
+13768,20,-5.034829873,0
+13769,20,-5.034829873,0
+13770,20,-5.034829873,0
+13771,20,-5.034829873,0
+13772,20,-5.034829873,0
+13773,20,-5.034829873,0
+13774,20,-5.034829873,0
+13775,20,-5.034829873,0
+13776,20,-5.034829873,0
+13777,20,-5.034829873,0
+13778,20,-5.034829873,0
+13779,20,-5.034829873,0
+13780,20,-5.034829873,0
+13781,20,-5.034829873,0
+13782,20,-5.034829873,0
+13783,20,-5.034829873,0
+13784,20,-5.034829873,0
+13785,20,-5.034829873,0
+13786,20,-5.034829873,0
+13787,20,-5.034829873,0
+13788,20,-5.034829873,0
+13789,20,-5.034829873,0
+13790,20,-5.034829873,0
+13791,20,-5.034829873,0
+13792,20,-5.034829873,0
+13793,20,-5.034829873,0
+13794,20,-5.034829873,0
+13795,20,-5.034829873,0
+13796,20,-5.034829873,0
+13797,20,-5.034829873,0
+13798,20,-5.034829873,0
+13799,20,-5.034829873,0
+13800,20,-5.034829873,0
+13801,20,-5.034829873,0
+13802,20,-5.034829873,0
+13803,20,-5.034829873,0
+13804,20,-5.034829873,0
+13805,20,-5.034829873,0
+13806,20,-5.034829873,0
+13807,20,-5.034829873,0
+13808,20,-5.034829873,0
+13809,20,-5.034829873,0
+13810,20,-5.034829873,0
+13811,20,-5.034829873,0
+13812,20,-5.034829873,0
+13813,20,-5.034829873,0
+13814,20,-5.034829873,0
+13815,20,-5.034829873,0
+13816,20,-5.034829873,0
+13817,20,-5.034829873,0
+13818,20,-5.034829873,0
+13819,20,-5.034829873,0
+13820,20,-5.034829873,0
+13821,20,-5.034829873,0
+13822,20,-5.034829873,0
+13823,20,-5.034829873,0
+13824,20,-5.034829873,0
+13825,20,-5.034829873,0
+13826,20,-5.034829873,0
+13827,20,-5.034829873,0
+13828,20,-5.034829873,0
+13829,20,-5.034829873,0
+13830,20,-5.034829873,0
+13831,20,-5.034829873,0
+13832,20,-5.034829873,0
+13833,20,-5.034829873,0
+13834,20,-5.034829873,0
+13835,20,-5.034829873,0
+13836,20,-5.034829873,0
+13837,20,-5.034829873,0
+13838,20,-5.034829873,0
+13839,20,-5.034829873,0
+13840,20,-5.034829873,0
+13841,20,-5.034829873,0
+13842,20,-5.034829873,0
+13843,20,-5.034829873,0
+13844,20,-5.034829873,0
+13845,20,-5.034829873,0
+13846,20,-5.034829873,0
+13847,20,-5.034829873,0
+13848,20,-5.034829873,0
+13849,20,-5.034829873,0
+13850,20,-5.034829873,0
+13851,20,-5.034829873,0
+13852,20,-5.034829873,0
+13853,20,-5.034829873,0
+13854,20,-5.034829873,0
+13855,20,-5.034829873,0
+13856,20,-5.034829873,0
+13857,20,-5.034829873,0
+13858,20,-5.034829873,0
+13859,20,-5.034829873,0
+13860,20,-5.034829873,0
+13861,20,-5.034829873,0
+13862,20,-5.034829873,0
+13863,20,-5.034829873,0
+13864,20,-5.034829873,0
+13865,20,-5.034829873,0
+13866,20,-5.034829873,0
+13867,20,-5.034829873,0
+13868,20,-5.034829873,0
+13869,20,-5.034829873,0
+13870,20,-5.034829873,0
+13871,20,-5.034829873,0
+13872,20,-5.034829873,0
+13873,20,-5.034829873,0
+13874,20,-5.034829873,0
+13875,20,-5.034829873,0
+13876,20,-5.034829873,0
+13877,20,-5.034829873,0
+13878,20,-5.034829873,0
+13879,20,-5.034829873,0
+13880,20,-5.034829873,0
+13881,20,-5.034829873,0
+13882,20,-5.034829873,0
+13883,20,-5.034829873,0
+13884,20,-5.034829873,0
+13885,20,-5.034829873,0
+13886,20,-5.034829873,0
+13887,20,-5.034829873,0
+13888,20,-5.034829873,0
+13889,20,-5.034829873,0
+13890,20,-5.034829873,0
+13891,20,-5.034829873,0
+13892,20,-5.034829873,0
+13893,20,-5.034829873,0
+13894,20,-5.034829873,0
+13895,20,-5.034829873,0
+13896,20,-5.034829873,0
+13897,20,-5.034829873,0
+13898,20,-5.034829873,0
+13899,20,-5.034829873,0
+13900,20,-5.034829873,0
+13901,20,-5.034829873,0
+13902,20,-5.034829873,0
+13903,20,-5.034829873,0
+13904,20,-5.034829873,0
+13905,20,-5.034829873,0
+13906,20,-5.034829873,0
+13907,20,-5.034829873,0
+13908,20,-5.034829873,0
+13909,20,-5.034829873,0
+13910,20,-5.034829873,0
+13911,20,-5.034829873,0
+13912,20,-5.034829873,0
+13913,20,-5.034829873,0
+13914,20,-5.034829873,0
+13915,20,-5.034829873,0
+13916,20,-5.034829873,0
+13917,20,-5.034829873,0
+13918,20,-5.034829873,0
+13919,20,-5.034829873,0
+13920,20,-5.034829873,0
+13921,20,-5.034829873,0
+13922,20,-5.034829873,0
+13923,20,-5.034829873,0
+13924,20,-5.034829873,0
+13925,20,-5.034829873,0
+13926,20,-5.034829873,0
+13927,20,-5.034829873,0
+13928,20,-5.034829873,0
+13929,20,-5.034829873,0
+13930,20,-5.034829873,0
+13931,20,-5.034829873,0
+13932,20,-5.034829873,0
+13933,20,-5.034829873,0
+13934,20,-5.034829873,0
+13935,20,-5.034829873,0
+13936,20,-5.034829873,0
+13937,20,-5.034829873,0
+13938,20,-5.034829873,0
+13939,20,-5.034829873,0
+13940,20,-5.034829873,0
+13941,20,-5.034829873,0
+13942,20,-5.034829873,0
+13943,20,-5.034829873,0
+13944,20,-5.034829873,0
+13945,20,-5.034829873,0
+13946,20,-5.034829873,0
+13947,20,-5.034829873,0
+13948,20,-5.034829873,0
+13949,20,-5.034829873,0
+13950,20,-5.034829873,0
+13951,20,-5.034829873,0
+13952,20,-5.034829873,0
+13953,20,-5.034829873,0
+13954,20,-5.034829873,0
+13955,20,-5.034829873,0
+13956,20,-5.034829873,0
+13957,20,-5.034829873,0
+13958,20,-5.034829873,0
+13959,20,-5.034829873,0
+13960,20,-5.034829873,0
+13961,20,-5.034829873,0
+13962,20,-5.034829873,0
+13963,20,-5.034829873,0
+13964,20,-5.034829873,0
+13965,20,-5.034829873,0
+13966,20,-5.034829873,0
+13967,20,-5.034829873,0
+13968,20,-5.034829873,0
+13969,20,-5.034829873,0
+13970,20,-5.034829873,0
+13971,20,-5.034829873,0
+13972,20,-5.034829873,0
+13973,20,-5.034829873,0
+13974,20,-5.034829873,0
+13975,20,-5.034829873,0
+13976,20,-5.034829873,0
+13977,20,-5.034829873,0
+13978,20,-5.034829873,0
+13979,20,-5.034829873,0
+13980,20,-5.034829873,0
+13981,20,-5.034829873,0
+13982,20,-5.034829873,0
+13983,20,-5.034829873,0
+13984,20,-5.034829873,0
+13985,20,-5.034829873,0
+13986,20,-5.034829873,0
+13987,20,-5.034829873,0
+13988,20,-5.034829873,0
+13989,20,-5.034829873,0
+13990,20,-5.034829873,0
+13991,20,-5.034829873,0
+13992,20,-5.034829873,0
+13993,20,-5.034829873,0
+13994,20,-5.034829873,0
+13995,20,-5.034829873,0
+13996,20,-5.034829873,0
+13997,20,-5.034829873,0
+13998,20,-5.034829873,0
+13999,20,-5.034829873,0
+14000,20,-5.034829873,0
+14001,20,-5.034829873,0
+14002,20,-5.034829873,0
+14003,20,-5.034829873,0
+14004,20,-5.034829873,0
+14005,20,-5.034829873,0
+14006,20,-5.034829873,0
+14007,20,-5.034829873,0
+14008,20,-5.034829873,0
+14009,20,-5.034829873,0
+14010,20,-5.034829873,0
+14011,20,-5.034829873,0
+14012,20,-5.034829873,0
+14013,20,-5.034829873,0
+14014,20,-5.034829873,0
+14015,20,-5.034829873,0
+14016,20,-5.034829873,0
+14017,20,-5.034829873,0
+14018,20,-5.034829873,0
+14019,20,-5.034829873,0
+14020,20,-5.034829873,0
+14021,20,-5.034829873,0
+14022,20,-5.034829873,0
+14023,20,-5.034829873,0
+14024,20,-5.034829873,0
+14025,20,-5.034829873,0
+14026,20,-5.034829873,0
+14027,20,-5.034829873,0
+14028,20,-5.034829873,0
+14029,20,-5.034829873,0
+14030,20,-5.034829873,0
+14031,20,-5.034829873,0
+14032,20,-5.034829873,0
+14033,20,-5.034829873,0
+14034,20,-5.034829873,0
+14035,20,-5.034829873,0
+14036,20,-5.034829873,0
+14037,20,-5.034829873,0
+14038,20,-5.034829873,0
+14039,20,-5.034829873,0
+14040,20,-5.034829873,0
+14041,20,-5.034829873,0
+14042,20,-5.034829873,0
+14043,20,-5.034829873,0
+14044,20,-5.034829873,0
+14045,20,-5.034829873,0
+14046,20,-5.034829873,0
+14047,20,-5.034829873,0
+14048,20,-5.034829873,0
+14049,20,-5.034829873,0
+14050,20,-5.034829873,0
+14051,20,-5.034829873,0
+14052,20,-5.034829873,0
+14053,20,-5.034829873,0
+14054,20,-5.034829873,0
+14055,20,-5.034829873,0
+14056,20,-5.034829873,0
+14057,20,-5.034829873,0
+14058,20,-5.034829873,0
+14059,20,-5.034829873,0
+14060,20,-5.034829873,0
+14061,20,-5.034829873,0
+14062,20,-5.034829873,0
+14063,20,-5.034829873,0
+14064,20,-5.034829873,0
+14065,20,-5.034829873,0
+14066,20,-5.034829873,0
+14067,20,-5.034829873,0
+14068,20,-5.034829873,0
+14069,20,-5.034829873,0
+14070,20,-5.034829873,0
+14071,20,-5.034829873,0
+14072,20,-5.034829873,0
+14073,20,-5.034829873,0
+14074,20,-5.034829873,0
+14075,20,-5.034829873,0
+14076,20,-5.034829873,0
+14077,20,-5.034829873,0
+14078,20,-5.034829873,0
+14079,20,-5.034829873,0
+14080,20,-5.034829873,0
+14081,20,-5.034829873,0
+14082,20,-5.034829873,0
+14083,20,-5.034829873,0
+14084,20,-5.034829873,0
+14085,20,-5.034829873,0
+14086,20,-5.034829873,0
+14087,20,-5.034829873,0
+14088,20,-5.034829873,0
+14089,20,-5.034829873,0
+14090,20,-5.034829873,0
+14091,20,-5.034829873,0
+14092,20,-5.034829873,0
+14093,20,-5.034829873,0
+14094,20,-5.034829873,0
+14095,20,-5.034829873,0
+14096,20,-5.034829873,0
+14097,20,-5.034829873,0
+14098,20,-5.034829873,0
+14099,20,-5.034829873,0
+14100,20,-5.034829873,0
+14101,20,-5.034829873,0
+14102,20,-5.034829873,0
+14103,20,-5.034829873,0
+14104,20,-5.034829873,0
+14105,20,-5.034829873,0
+14106,20,-5.034829873,0
+14107,20,-5.034829873,0
+14108,20,-5.034829873,0
+14109,20,-5.034829873,0
+14110,20,-5.034829873,0
+14111,20,-5.034829873,0
+14112,20,-5.034829873,0
+14113,20,-5.034829873,0
+14114,20,-5.034829873,0
+14115,20,-5.034829873,0
+14116,20,-5.034829873,0
+14117,20,-5.034829873,0
+14118,20,-5.034829873,0
+14119,20,-5.034829873,0
+14120,20,-5.034829873,0
+14121,20,-5.034829873,0
+14122,20,-5.034829873,0
+14123,20,-5.034829873,0
+14124,20,-5.034829873,0
+14125,20,-5.034829873,0
+14126,20,-5.034829873,0
+14127,20,-5.034829873,0
+14128,20,-5.034829873,0
+14129,20,-5.034829873,0
+14130,20,-5.034829873,0
+14131,20,-5.034829873,0
+14132,20,-5.034829873,0
+14133,20,-5.034829873,0
+14134,20,-5.034829873,0
+14135,20,-5.034829873,0
+14136,20,-5.034829873,0
+14137,20,-5.034829873,0
+14138,20,-5.034829873,0
+14139,20,-5.034829873,0
+14140,20,-5.034829873,0
+14141,20,-5.034829873,0
+14142,20,-5.034829873,0
+14143,20,-5.034829873,0
+14144,20,-5.034829873,0
+14145,20,-5.034829873,0
+14146,20,-5.034829873,0
+14147,20,-5.034829873,0
+14148,20,-5.034829873,0
+14149,20,-5.034829873,0
+14150,20,-5.034829873,0
+14151,20,-5.034829873,0
+14152,20,-5.034829873,0
+14153,20,-5.034829873,0
+14154,20,-5.034829873,0
+14155,20,-5.034829873,0
+14156,20,-5.034829873,0
+14157,20,-5.034829873,0
+14158,20,-5.034829873,0
+14159,20,-5.034829873,0
+14160,20,-5.034829873,0
+14161,20,-5.034829873,0
+14162,20,-5.034829873,0
+14163,20,-5.034829873,0
+14164,20,-5.034829873,0
+14165,20,-5.034829873,0
+14166,20,-5.034829873,0
+14167,20,-5.034829873,0
+14168,20,-5.034829873,0
+14169,20,-5.034829873,0
+14170,20,-5.034829873,0
+14171,20,-5.034829873,0
+14172,20,-5.034829873,0
+14173,20,-5.034829873,0
+14174,20,-5.034829873,0
+14175,20,-5.034829873,0
+14176,20,-5.034829873,0
+14177,20,-5.034829873,0
+14178,20,-5.034829873,0
+14179,20,-5.034829873,0
+14180,20,-5.034829873,0
+14181,20,-5.034829873,0
+14182,20,-5.034829873,0
+14183,20,-5.034829873,0
+14184,20,-5.034829873,0
+14185,20,-5.034829873,0
+14186,20,-5.034829873,0
+14187,20,-5.034829873,0
+14188,20,-5.034829873,0
+14189,20,-5.034829873,0
+14190,20,-5.034829873,0
+14191,20,-5.034829873,0
+14192,20,-5.034829873,0
+14193,20,-5.034829873,0
+14194,20,-5.034829873,0
+14195,20,-5.034829873,0
+14196,20,-5.034829873,0
+14197,20,-5.034829873,0
+14198,20,-5.034829873,0
+14199,20,-5.034829873,0
+14200,20,-5.034829873,0
+14201,20,-5.034829873,0
+14202,20,-5.034829873,0
+14203,20,-5.034829873,0
+14204,20,-5.034829873,0
+14205,20,-5.034829873,0
+14206,20,-5.034829873,0
+14207,20,-5.034829873,0
+14208,20,-5.034829873,0
+14209,20,-5.034829873,0
+14210,20,-5.034829873,0
+14211,20,-5.034829873,0
+14212,20,-5.034829873,0
+14213,20,-5.034829873,0
+14214,20,-5.034829873,0
+14215,20,-5.034829873,0
+14216,20,-5.034829873,0
+14217,20,-5.034829873,0
+14218,20,-5.034829873,0
+14219,20,-5.034829873,0
+14220,20,-5.034829873,0
+14221,20,-5.034829873,0
+14222,20,-5.034829873,0
+14223,20,-5.034829873,0
+14224,20,-5.034829873,0
+14225,20,-5.034829873,0
+14226,20,-5.034829873,0
+14227,20,-5.034829873,0
+14228,20,-5.034829873,0
+14229,20,-5.034829873,0
+14230,20,-5.034829873,0
+14231,20,-5.034829873,0
+14232,20,-5.034829873,0
+14233,20,-5.034829873,0
+14234,20,-5.034829873,0
+14235,20,-5.034829873,0
+14236,20,-5.034829873,0
+14237,20,-5.034829873,0
+14238,20,-5.034829873,0
+14239,20,-5.034829873,0
+14240,20,-5.034829873,0
+14241,20,-5.034829873,0
+14242,20,-5.034829873,0
+14243,20,-5.034829873,0
+14244,20,-5.034829873,0
+14245,20,-5.034829873,0
+14246,20,-5.034829873,0
+14247,20,-5.034829873,0
+14248,20,-5.034829873,0
+14249,20,-5.034829873,0
+14250,20,-5.034829873,0
+14251,20,-5.034829873,0
+14252,20,-5.034829873,0
+14253,20,-5.034829873,0
+14254,20,-5.034829873,0
+14255,20,-5.034829873,0
+14256,20,-5.034829873,0
+14257,20,-5.034829873,0
+14258,20,-5.034829873,0
+14259,20,-4.934366054,0
+14260,20,-4.934366054,0
+14261,20,-4.934366054,0
+14262,20,-4.934366054,0
+14263,20,-4.934366054,0
+14264,20,-4.934366054,0
+14265,20,-4.934366054,0
+14266,20,-4.934366054,0
+14267,20,-4.934366054,0
+14268,20,-4.934366054,0
+14269,20,-4.934366054,0
+14270,20,-4.934366054,0
+14271,20,-4.934366054,0
+14272,20,-4.934366054,0
+14273,20,-4.934366054,0
+14274,20,-4.934366054,0
+14275,20,-4.934366054,0
+14276,20,-4.934366054,0
+14277,20,-4.934366054,0
+14278,20,-4.934366054,0
+14279,20,-4.934366054,0
+14280,20,-4.934366054,0
+14281,20,-4.934366054,0
+14282,20,-4.934366054,0
+14283,20,-4.934366054,0
+14284,20,-4.934366054,0
+14285,20,-4.934366054,0
+14286,20,-4.934366054,0
+14287,20,-4.934366054,0
+14288,20,-4.934366054,0
+14289,20,-4.934366054,0
+14290,20,-4.934366054,0
+14291,20,-4.934366054,0
+14292,20,-4.934366054,0
+14293,20,-4.934366054,0
+14294,20,-4.934366054,0
+14295,20,-4.934366054,0
+14296,20,-4.934366054,0
+14297,20,-4.934366054,0
+14298,20,-4.934366054,0
+14299,20,-4.934366054,0
+14300,20,-4.934366054,0
+14301,20,-4.934366054,0
+14302,20,-4.934366054,0
+14303,20,-4.934366054,0
+14304,20,-4.934366054,0
+14305,20,-4.934366054,0
+14306,20,-4.934366054,0
+14307,20,-4.934366054,0
+14308,20,-4.934366054,0
+14309,20,-4.934366054,0
+14310,20,-4.934366054,0
+14311,20,-4.934366054,0
+14312,20,-4.934366054,0
+14313,20,-4.934366054,0
+14314,20,-4.934366054,0
+14315,20,-4.934366054,0
+14316,20,-4.934366054,0
+14317,20,-4.934366054,0
+14318,20,-4.934366054,0
+14319,20,-4.934366054,0
+14320,20,-4.934366054,0
+14321,20,-4.934366054,0
+14322,20,-4.934366054,0
+14323,20,-4.934366054,0
+14324,20,-4.934366054,0
+14325,20,-4.934366054,0
+14326,20,-4.934366054,0
+14327,20,-4.934366054,0
+14328,20,-4.934366054,0
+14329,20,-4.829528616,0
+14330,20,-4.829528616,0
+14331,20,-4.829528616,0
+14332,20,-4.829528616,0
+14333,20,-4.829528616,0
+14334,20,-4.829528616,0
+14335,20,-4.829528616,0
+14336,20,-4.829528616,0
+14337,20,-4.829528616,0
+14338,20,-4.829528616,0
+14339,20,-4.829528616,0
+14340,20,-4.829528616,0
+14341,20,-4.829528616,0
+14342,20,-4.829528616,0
+14343,20,-4.829528616,0
+14344,20,-4.829528616,0
+14345,20,-4.829528616,0
+14346,20,-4.829528616,0
+14347,20,-4.829528616,0
+14348,20,-4.829528616,0
+14349,20,-4.829528616,0
+14350,20,-4.829528616,0
+14351,20,-4.829528616,0
+14352,20,-4.829528616,0
+14353,20,-4.829528616,0
+14354,20,-4.829528616,0
+14355,20,-4.829528616,0
+14356,20,-4.829528616,0
+14357,20,-4.829528616,0
+14358,20,-4.829528616,0
+14359,20,-4.829528616,0
+14360,20,-4.829528616,0
+14361,20,-4.829528616,0
+14362,20,-4.829528616,0
+14363,20,-4.829528616,0
+14364,20,-4.829528616,0
+14365,20,-4.829528616,0
+14366,20,-4.829528616,0
+14367,20,-4.829528616,0
+14368,20,-4.829528616,0
+14369,20,-4.829528616,0
+14370,20,-4.829528616,0
+14371,20,-4.829528616,0
+14372,20,-4.829528616,0
+14373,20,-4.829528616,0
+14374,20,-4.829528616,0
+14375,20,-4.829528616,0
+14376,20,-4.829528616,0
+14377,20,-4.829528616,0
+14378,20,-4.829528616,0
+14379,20,-4.829528616,0
+14380,20,-4.829528616,0
+14381,20,-4.829528616,0
+14382,20,-4.829528616,0
+14383,20,-4.829528616,0
+14384,20,-4.829528616,0
+14385,20,-4.829528616,0
+14386,20,-4.829528616,0
+14387,20,-4.829528616,0
+14388,20,-4.829528616,0
+14389,20,-4.829528616,0
+14390,20,-4.829528616,0
+14391,20,-4.829528616,0
+14392,20,-4.829528616,0
+14393,20,-4.829528616,0
+14394,20,-4.829528616,0
+14395,20,-4.829528616,0
+14396,20,-4.829528616,0
+14397,20,-4.829528616,0
+14398,20,-4.829528616,0
+14399,20,-4.723009018,0
+14400,20,-4.723009018,0
+14401,20,-4.723009018,0
+14402,20,-4.723009018,0
+14403,20,-4.723009018,0
+14404,20,-4.723009018,0
+14405,20,-4.723009018,0
+14406,20,-4.723009018,0
+14407,20,-4.723009018,0
+14408,20,-4.723009018,0
+14409,20,-4.723009018,0
+14410,20,-4.723009018,0
+14411,20,-4.723009018,0
+14412,20,-4.723009018,0
+14413,20,-4.723009018,0
+14414,20,-4.723009018,0
+14415,20,-4.723009018,0
+14416,20,-4.723009018,0
+14417,20,-4.723009018,0
+14418,20,-4.723009018,0
+14419,20,-4.723009018,0
+14420,20,-4.723009018,0
+14421,20,-4.723009018,0
+14422,20,-4.723009018,0
+14423,20,-4.723009018,0
+14424,20,-4.723009018,0
+14425,20,-4.723009018,0
+14426,20,-4.723009018,0
+14427,20,-4.723009018,0
+14428,20,-4.723009018,0
+14429,20,-4.723009018,0
+14430,20,-4.723009018,0
+14431,20,-4.723009018,0
+14432,20,-4.723009018,0
+14433,20,-4.723009018,0
+14434,20,-4.723009018,0
+14435,20,-4.723009018,0
+14436,20,-4.723009018,0
+14437,20,-4.723009018,0
+14438,20,-4.723009018,0
+14439,20,-4.723009018,0
+14440,20,-4.723009018,0
+14441,20,-4.723009018,0
+14442,20,-4.723009018,0
+14443,20,-4.723009018,0
+14444,20,-4.723009018,0
+14445,20,-4.723009018,0
+14446,20,-4.723009018,0
+14447,20,-4.723009018,0
+14448,20,-4.723009018,0
+14449,20,-4.723009018,0
+14450,20,-4.723009018,0
+14451,20,-4.723009018,0
+14452,20,-4.723009018,0
+14453,20,-4.723009018,0
+14454,20,-4.723009018,0
+14455,20,-4.723009018,0
+14456,20,-4.723009018,0
+14457,20,-4.723009018,0
+14458,20,-4.723009018,0
+14459,20,-4.723009018,0
+14460,20,-4.723009018,0
+14461,20,-4.723009018,0
+14462,20,-4.723009018,0
+14463,20,-4.723009018,0
+14464,20,-4.723009018,0
+14465,20,-4.723009018,0
+14466,20,-4.723009018,0
+14467,20,-4.723009018,0
+14468,20,-4.723009018,0
+14469,20,-4.723009018,0
+14470,20,-4.723009018,0
+14471,20,-4.723009018,0
+14472,20,-4.723009018,0
+14473,20,-4.723009018,0
+14474,20,-4.723009018,0
+14475,20,-4.723009018,0
+14476,20,-4.723009018,0
+14477,20,-4.723009018,0
+14478,20,-4.723009018,0
+14479,20,-4.723009018,0
+14480,20,-4.723009018,0
+14481,20,-4.723009018,0
+14482,20,-4.723009018,0
+14483,20,-4.723009018,0
+14484,20,-4.723009018,0
+14485,20,-4.723009018,0
+14486,20,-4.723009018,0
+14487,20,-4.723009018,0
+14488,20,-4.723009018,0
+14489,20,-4.723009018,0
+14490,20,-4.723009018,0
+14491,20,-4.723009018,0
+14492,20,-4.723009018,0
+14493,20,-4.723009018,0
+14494,20,-4.723009018,0
+14495,20,-4.723009018,0
+14496,20,-4.723009018,0
+14497,20,-4.723009018,0
+14498,20,-4.723009018,0
+14499,20,-4.723009018,0
+14500,20,-4.723009018,0
+14501,20,-4.723009018,0
+14502,20,-4.723009018,0
+14503,20,-4.723009018,0
+14504,20,-4.723009018,0
+14505,20,-4.723009018,0
+14506,20,-4.723009018,0
+14507,20,-4.723009018,0
+14508,20,-4.723009018,0
+14509,20,-4.723009018,0
+14510,20,-4.723009018,0
+14511,20,-4.723009018,0
+14512,20,-4.723009018,0
+14513,20,-4.723009018,0
+14514,20,-4.723009018,0
+14515,20,-4.723009018,0
+14516,20,-4.723009018,0
+14517,20,-4.723009018,0
+14518,20,-4.723009018,0
+14519,20,-4.723009018,0
+14520,20,-4.723009018,0
+14521,20,-4.723009018,0
+14522,20,-4.723009018,0
+14523,20,-4.723009018,0
+14524,20,-4.723009018,0
+14525,20,-4.723009018,0
+14526,20,-4.723009018,0
+14527,20,-4.723009018,0
+14528,20,-4.723009018,0
+14529,20,-4.723009018,0
+14530,20,-4.723009018,0
+14531,20,-4.723009018,0
+14532,20,-4.723009018,0
+14533,20,-4.723009018,0
+14534,20,-4.723009018,0
+14535,20,-4.723009018,0
+14536,20,-4.723009018,0
+14537,20,-4.723009018,0
+14538,20,-4.723009018,0
+14539,20,-4.723009018,0
+14540,20,-4.723009018,0
+14541,20,-4.723009018,0
+14542,20,-4.723009018,0
+14543,20,-4.723009018,0
+14544,20,-4.723009018,0
+14545,20,-4.723009018,0
+14546,20,-4.723009018,0
+14547,20,-4.723009018,0
+14548,20,-4.723009018,0
+14549,20,-4.604388214,0
+14550,20,-4.604388214,0
+14551,20,-4.604388214,0
+14552,20,-4.604388214,0
+14553,20,-4.604388214,0
+14554,20,-4.604388214,0
+14555,20,-4.604388214,0
+14556,20,-4.604388214,0
+14557,20,-4.604388214,0
+14558,20,-4.604388214,0
+14559,20,-4.604388214,0
+14560,20,-4.604388214,0
+14561,20,-4.604388214,0
+14562,20,-4.604388214,0
+14563,20,-4.604388214,0
+14564,20,-4.604388214,0
+14565,20,-4.604388214,0
+14566,20,-4.604388214,0
+14567,20,-4.604388214,0
+14568,20,-4.604388214,0
+14569,20,-4.604388214,0
+14570,20,-4.604388214,0
+14571,20,-4.604388214,0
+14572,20,-4.604388214,0
+14573,20,-4.604388214,0
+14574,20,-4.604388214,0
+14575,20,-4.604388214,0
+14576,20,-4.604388214,0
+14577,20,-4.604388214,0
+14578,20,-4.604388214,0
+14579,20,-4.604388214,0
+14580,20,-4.604388214,0
+14581,20,-4.604388214,0
+14582,20,-4.604388214,0
+14583,20,-4.604388214,0
+14584,20,-4.604388214,0
+14585,20,-4.604388214,0
+14586,20,-4.604388214,0
+14587,20,-4.604388214,0
+14588,20,-4.604388214,0
+14589,20,-4.604388214,0
+14590,20,-4.604388214,0
+14591,20,-4.604388214,0
+14592,20,-4.604388214,0
+14593,20,-4.604388214,0
+14594,20,-4.604388214,0
+14595,20,-4.604388214,0
+14596,20,-4.604388214,0
+14597,20,-4.604388214,0
+14598,20,-4.604388214,0
+14599,20,-4.488448516,0
+14600,20,-4.488448516,0
+14601,20,-4.488448516,0
+14602,20,-4.488448516,0
+14603,20,-4.488448516,0
+14604,20,-4.488448516,0
+14605,20,-4.488448516,0
+14606,20,-4.488448516,0
+14607,20,-4.488448516,0
+14608,20,-4.488448516,0
+14609,20,-4.488448516,0
+14610,20,-4.488448516,0
+14611,20,-4.488448516,0
+14612,20,-4.488448516,0
+14613,20,-4.488448516,0
+14614,20,-4.488448516,0
+14615,20,-4.488448516,0
+14616,20,-4.488448516,0
+14617,20,-4.488448516,0
+14618,20,-4.488448516,0
+14619,20,-4.488448516,0
+14620,20,-4.488448516,0
+14621,20,-4.488448516,0
+14622,20,-4.488448516,0
+14623,20,-4.488448516,0
+14624,20,-4.488448516,0
+14625,20,-4.488448516,0
+14626,20,-4.488448516,0
+14627,20,-4.488448516,0
+14628,20,-4.488448516,0
+14629,20,-4.488448516,0
+14630,20,-4.488448516,0
+14631,20,-4.488448516,0
+14632,20,-4.488448516,0
+14633,20,-4.488448516,0
+14634,20,-4.488448516,0
+14635,20,-4.488448516,0
+14636,20,-4.488448516,0
+14637,20,-4.488448516,0
+14638,20,-4.488448516,0
+14639,20,-4.488448516,0
+14640,20,-4.488448516,0
+14641,20,-4.488448516,0
+14642,20,-4.488448516,0
+14643,20,-4.488448516,0
+14644,20,-4.488448516,0
+14645,20,-4.488448516,0
+14646,20,-4.488448516,0
+14647,20,-4.488448516,0
+14648,20,-4.488448516,0
+14649,20,-4.372508817,0
+14650,20,-4.372508817,0
+14651,20,-4.372508817,0
+14652,20,-4.372508817,0
+14653,20,-4.372508817,0
+14654,20,-4.372508817,0
+14655,20,-4.372508817,0
+14656,20,-4.372508817,0
+14657,20,-4.372508817,0
+14658,20,-4.372508817,0
+14659,20,-4.372508817,0
+14660,20,-4.372508817,0
+14661,20,-4.372508817,0
+14662,20,-4.372508817,0
+14663,20,-4.372508817,0
+14664,20,-4.372508817,0
+14665,20,-4.372508817,0
+14666,20,-4.372508817,0
+14667,20,-4.372508817,0
+14668,20,-4.372508817,0
+14669,20,-4.372508817,0
+14670,20,-4.372508817,0
+14671,20,-4.372508817,0
+14672,20,-4.372508817,0
+14673,20,-4.372508817,0
+14674,20,-4.372508817,0
+14675,20,-4.372508817,0
+14676,20,-4.372508817,0
+14677,20,-4.372508817,0
+14678,20,-4.372508817,0
+14679,20,-4.372508817,0
+14680,20,-4.372508817,0
+14681,20,-4.372508817,0
+14682,20,-4.372508817,0
+14683,20,-4.372508817,0
+14684,20,-4.372508817,0
+14685,20,-4.372508817,0
+14686,20,-4.372508817,0
+14687,20,-4.372508817,0
+14688,20,-4.372508817,0
+14689,20,-4.372508817,0
+14690,20,-4.372508817,0
+14691,20,-4.372508817,0
+14692,20,-4.372508817,0
+14693,20,-4.372508817,0
+14694,20,-4.372508817,0
+14695,20,-4.372508817,0
+14696,20,-4.372508817,0
+14697,20,-4.372508817,0
+14698,20,-4.372508817,0
+14699,20,-4.256569119,0
+14700,20,-4.256569119,0
+14701,20,-4.256569119,0
+14702,20,-4.256569119,0
+14703,20,-4.256569119,0
+14704,20,-4.256569119,0
+14705,20,-4.256569119,0
+14706,20,-4.256569119,0
+14707,20,-4.256569119,0
+14708,20,-4.256569119,0
+14709,20,-4.256569119,0
+14710,20,-4.256569119,0
+14711,20,-4.256569119,0
+14712,20,-4.256569119,0
+14713,20,-4.256569119,0
+14714,20,-4.256569119,0
+14715,20,-4.256569119,0
+14716,20,-4.256569119,0
+14717,20,-4.256569119,0
+14718,20,-4.256569119,0
+14719,20,-4.256569119,0
+14720,20,-4.256569119,0
+14721,20,-4.256569119,0
+14722,20,-4.256569119,0
+14723,20,-4.256569119,0
+14724,20,-4.256569119,0
+14725,20,-4.256569119,0
+14726,20,-4.256569119,0
+14727,20,-4.256569119,0
+14728,20,-4.256569119,0
+14729,20,-4.256569119,0
+14730,20,-4.256569119,0
+14731,20,-4.256569119,0
+14732,20,-4.256569119,0
+14733,20,-4.256569119,0
+14734,20,-4.256569119,0
+14735,20,-4.256569119,0
+14736,20,-4.256569119,0
+14737,20,-4.256569119,0
+14738,20,-4.256569119,0
+14739,20,-4.256569119,0
+14740,20,-4.256569119,0
+14741,20,-4.256569119,0
+14742,20,-4.256569119,0
+14743,20,-4.256569119,0
+14744,20,-4.256569119,0
+14745,20,-4.256569119,0
+14746,20,-4.256569119,0
+14747,20,-4.256569119,0
+14748,20,-4.256569119,0
+14749,20,-4.256569119,0
+14750,20,-4.256569119,0
+14751,20,-4.256569119,0
+14752,20,-4.256569119,0
+14753,20,-4.256569119,0
+14754,20,-4.256569119,0
+14755,20,-4.256569119,0
+14756,20,-4.256569119,0
+14757,20,-4.256569119,0
+14758,20,-4.256569119,0
+14759,20,-4.256569119,0
+14760,20,-4.256569119,0
+14761,20,-4.256569119,0
+14762,20,-4.256569119,0
+14763,20,-4.256569119,0
+14764,20,-4.256569119,0
+14765,20,-4.256569119,0
+14766,20,-4.256569119,0
+14767,20,-4.256569119,0
+14768,20,-4.256569119,0
+14769,20,-4.256569119,0
+14770,20,-4.256569119,0
+14771,20,-4.256569119,0
+14772,20,-4.256569119,0
+14773,20,-4.256569119,0
+14774,20,-4.256569119,0
+14775,20,-4.256569119,0
+14776,20,-4.256569119,0
+14777,20,-4.256569119,0
+14778,20,-4.256569119,0
+14779,20,-4.256569119,0
+14780,20,-4.256569119,0
+14781,20,-4.256569119,0
+14782,20,-4.256569119,0
+14783,20,-4.256569119,0
+14784,20,-4.256569119,0
+14785,20,-4.256569119,0
+14786,20,-4.256569119,0
+14787,20,-4.256569119,0
+14788,20,-4.256569119,0
+14789,20,-4.256569119,0
+14790,20,-4.256569119,0
+14791,20,-4.256569119,0
+14792,20,-4.256569119,0
+14793,20,-4.256569119,0
+14794,20,-4.256569119,0
+14795,20,-4.256569119,0
+14796,20,-4.256569119,0
+14797,20,-4.256569119,0
+14798,20,-4.256569119,0
+14799,20,-4.142472034,0
+14800,20,-4.142472034,0
+14801,20,-4.142472034,0
+14802,20,-4.142472034,0
+14803,20,-4.142472034,0
+14804,20,-4.142472034,0
+14805,20,-4.142472034,0
+14806,20,-4.142472034,0
+14807,20,-4.142472034,0
+14808,20,-4.142472034,0
+14809,20,-4.142472034,0
+14810,20,-4.142472034,0
+14811,20,-4.142472034,0
+14812,20,-4.142472034,0
+14813,20,-4.142472034,0
+14814,20,-4.142472034,0
+14815,20,-4.142472034,0
+14816,20,-4.142472034,0
+14817,20,-4.142472034,0
+14818,20,-4.142472034,0
+14819,20,-4.142472034,0
+14820,20,-4.142472034,0
+14821,20,-4.142472034,0
+14822,20,-4.142472034,0
+14823,20,-4.142472034,0
+14824,20,-4.142472034,0
+14825,20,-4.142472034,0
+14826,20,-4.142472034,0
+14827,20,-4.142472034,0
+14828,20,-4.142472034,0
+14829,20,-4.142472034,0
+14830,20,-4.142472034,0
+14831,20,-4.142472034,0
+14832,20,-4.142472034,0
+14833,20,-4.142472034,0
+14834,20,-4.142472034,0
+14835,20,-4.142472034,0
+14836,20,-4.142472034,0
+14837,20,-4.142472034,0
+14838,20,-4.142472034,0
+14839,20,-4.142472034,0
+14840,20,-4.142472034,0
+14841,20,-4.142472034,0
+14842,20,-4.142472034,0
+14843,20,-4.142472034,0
+14844,20,-4.142472034,0
+14845,20,-4.142472034,0
+14846,20,-4.142472034,0
+14847,20,-4.142472034,0
+14848,20,-4.142472034,0
+14849,20,-4.142472034,0
+14850,20,-4.142472034,0
+14851,20,-4.142472034,0
+14852,20,-4.142472034,0
+14853,20,-4.142472034,0
+14854,20,-4.142472034,0
+14855,20,-4.142472034,0
+14856,20,-4.142472034,0
+14857,20,-4.142472034,0
+14858,20,-4.142472034,0
+14859,20,-4.142472034,0
+14860,20,-4.142472034,0
+14861,20,-4.142472034,0
+14862,20,-4.142472034,0
+14863,20,-4.142472034,0
+14864,20,-4.142472034,0
+14865,20,-4.142472034,0
+14866,20,-4.142472034,0
+14867,20,-4.142472034,0
+14868,20,-4.142472034,0
+14869,20,-4.027981581,0
+14870,20,-4.027981581,0
+14871,20,-4.027981581,0
+14872,20,-4.027981581,0
+14873,20,-4.027981581,0
+14874,20,-4.027981581,0
+14875,20,-4.027981581,0
+14876,20,-4.027981581,0
+14877,20,-4.027981581,0
+14878,20,-4.027981581,0
+14879,20,-4.027981581,0
+14880,20,-4.027981581,0
+14881,20,-4.027981581,0
+14882,20,-4.027981581,0
+14883,20,-4.027981581,0
+14884,20,-4.027981581,0
+14885,20,-4.027981581,0
+14886,20,-4.027981581,0
+14887,20,-4.027981581,0
+14888,20,-4.027981581,0
+14889,20,-4.027981581,0
+14890,20,-4.027981581,0
+14891,20,-4.027981581,0
+14892,20,-4.027981581,0
+14893,20,-4.027981581,0
+14894,20,-4.027981581,0
+14895,20,-4.027981581,0
+14896,20,-4.027981581,0
+14897,20,-4.027981581,0
+14898,20,-4.027981581,0
+14899,20,-4.027981581,0
+14900,20,-4.027981581,0
+14901,20,-4.027981581,0
+14902,20,-4.027981581,0
+14903,20,-4.027981581,0
+14904,20,-4.027981581,0
+14905,20,-4.027981581,0
+14906,20,-4.027981581,0
+14907,20,-4.027981581,0
+14908,20,-4.027981581,0
+14909,20,-4.027981581,0
+14910,20,-4.027981581,0
+14911,20,-4.027981581,0
+14912,20,-4.027981581,0
+14913,20,-4.027981581,0
+14914,20,-4.027981581,0
+14915,20,-4.027981581,0
+14916,20,-4.027981581,0
+14917,20,-4.027981581,0
+14918,20,-4.027981581,0
+14919,20,-4.027981581,0
+14920,20,-4.027981581,0
+14921,20,-4.027981581,0
+14922,20,-4.027981581,0
+14923,20,-4.027981581,0
+14924,20,-4.027981581,0
+14925,20,-4.027981581,0
+14926,20,-4.027981581,0
+14927,20,-4.027981581,0
+14928,20,-4.027981581,0
+14929,20,-4.027981581,0
+14930,20,-4.027981581,0
+14931,20,-4.027981581,0
+14932,20,-4.027981581,0
+14933,20,-4.027981581,0
+14934,20,-4.027981581,0
+14935,20,-4.027981581,0
+14936,20,-4.027981581,0
+14937,20,-4.027981581,0
+14938,20,-4.027981581,0
+14939,20,-3.913491129,0
+14940,20,-3.913491129,0
+14941,20,-3.913491129,0
+14942,20,-3.913491129,0
+14943,20,-3.913491129,0
+14944,20,-3.913491129,0
+14945,20,-3.913491129,0
+14946,20,-3.913491129,0
+14947,20,-3.913491129,0
+14948,20,-3.913491129,0
+14949,20,-3.913491129,0
+14950,20,-3.913491129,0
+14951,20,-3.913491129,0
+14952,20,-3.913491129,0
+14953,20,-3.913491129,0
+14954,20,-3.913491129,0
+14955,20,-3.913491129,0
+14956,20,-3.913491129,0
+14957,20,-3.913491129,0
+14958,20,-3.913491129,0
+14959,20,-3.913491129,0
+14960,20,-3.913491129,0
+14961,20,-3.913491129,0
+14962,20,-3.913491129,0
+14963,20,-3.913491129,0
+14964,20,-3.913491129,0
+14965,20,-3.913491129,0
+14966,20,-3.913491129,0
+14967,20,-3.913491129,0
+14968,20,-3.913491129,0
+14969,20,-3.913491129,0
+14970,20,-3.913491129,0
+14971,20,-3.913491129,0
+14972,20,-3.913491129,0
+14973,20,-3.913491129,0
+14974,20,-3.913491129,0
+14975,20,-3.913491129,0
+14976,20,-3.913491129,0
+14977,20,-3.913491129,0
+14978,20,-3.913491129,0
+14979,20,-3.913491129,0
+14980,20,-3.913491129,0
+14981,20,-3.913491129,0
+14982,20,-3.913491129,0
+14983,20,-3.913491129,0
+14984,20,-3.913491129,0
+14985,20,-3.913491129,0
+14986,20,-3.913491129,0
+14987,20,-3.913491129,0
+14988,20,-3.913491129,0
+14989,20,-3.913491129,0
+14990,20,-3.913491129,0
+14991,20,-3.913491129,0
+14992,20,-3.913491129,0
+14993,20,-3.913491129,0
+14994,20,-3.913491129,0
+14995,20,-3.913491129,0
+14996,20,-3.913491129,0
+14997,20,-3.913491129,0
+14998,20,-3.913491129,0
+14999,20,-3.913491129,0
+15000,20,-3.913491129,0
+15001,20,-3.913491129,0
+15002,20,-3.913491129,0
+15003,20,-3.913491129,0
+15004,20,-3.913491129,0
+15005,20,-3.913491129,0
+15006,20,-3.913491129,0
+15007,20,-3.913491129,0
+15008,20,-3.913491129,0
+15009,20,-3.913491129,0
+15010,20,-3.913491129,0
+15011,20,-3.913491129,0
+15012,20,-3.913491129,0
+15013,20,-3.913491129,0
+15014,20,-3.913491129,0
+15015,20,-3.913491129,0
+15016,20,-3.913491129,0
+15017,20,-3.913491129,0
+15018,20,-3.913491129,0
+15019,20,-3.913491129,0
+15020,20,-3.913491129,0
+15021,20,-3.913491129,0
+15022,20,-3.913491129,0
+15023,20,-3.913491129,0
+15024,20,-3.913491129,0
+15025,20,-3.913491129,0
+15026,20,-3.913491129,0
+15027,20,-3.913491129,0
+15028,20,-3.913491129,0
+15029,20,-3.913491129,0
+15030,20,-3.913491129,0
+15031,20,-3.913491129,0
+15032,20,-3.913491129,0
+15033,20,-3.913491129,0
+15034,20,-3.913491129,0
+15035,20,-3.913491129,0
+15036,20,-3.913491129,0
+15037,20,-3.913491129,0
+15038,20,-3.913491129,0
+15039,20,-3.913491129,0
+15040,20,-3.913491129,0
+15041,20,-3.913491129,0
+15042,20,-3.913491129,0
+15043,20,-3.913491129,0
+15044,20,-3.913491129,0
+15045,20,-3.913491129,0
+15046,20,-3.913491129,0
+15047,20,-3.913491129,0
+15048,20,-3.913491129,0
+15049,20,-3.913491129,0
+15050,20,-3.913491129,0
+15051,20,-3.913491129,0
+15052,20,-3.913491129,0
+15053,20,-3.913491129,0
+15054,20,-3.913491129,0
+15055,20,-3.913491129,0
+15056,20,-3.913491129,0
+15057,20,-3.913491129,0
+15058,20,-3.913491129,0
+15059,20,-3.913491129,0
+15060,20,-3.913491129,0
+15061,20,-3.913491129,0
+15062,20,-3.913491129,0
+15063,20,-3.913491129,0
+15064,20,-3.913491129,0
+15065,20,-3.913491129,0
+15066,20,-3.913491129,0
+15067,20,-3.913491129,0
+15068,20,-3.913491129,0
+15069,20,-3.776309622,0
+15070,20,-3.776309622,0
+15071,20,-3.776309622,0
+15072,20,-3.776309622,0
+15073,20,-3.776309622,0
+15074,20,-3.776309622,0
+15075,20,-3.776309622,0
+15076,20,-3.776309622,0
+15077,20,-3.776309622,0
+15078,20,-3.776309622,0
+15079,20,-3.776309622,0
+15080,20,-3.776309622,0
+15081,20,-3.776309622,0
+15082,20,-3.776309622,0
+15083,20,-3.776309622,0
+15084,20,-3.776309622,0
+15085,20,-3.776309622,0
+15086,20,-3.776309622,0
+15087,20,-3.776309622,0
+15088,20,-3.776309622,0
+15089,20,-3.664717662,0
+15090,20,-3.664717662,0
+15091,20,-3.664717662,0
+15092,20,-3.664717662,0
+15093,20,-3.664717662,0
+15094,20,-3.664717662,0
+15095,20,-3.664717662,0
+15096,20,-3.664717662,0
+15097,20,-3.664717662,0
+15098,20,-3.664717662,0
+15099,20,-3.664717662,0
+15100,20,-3.664717662,0
+15101,20,-3.664717662,0
+15102,20,-3.664717662,0
+15103,20,-3.664717662,0
+15104,20,-3.664717662,0
+15105,20,-3.664717662,0
+15106,20,-3.664717662,0
+15107,20,-3.664717662,0
+15108,20,-3.664717662,0
+15109,20,-3.553125702,0
+15110,20,-3.553125702,0
+15111,20,-3.553125702,0
+15112,20,-3.553125702,0
+15113,20,-3.553125702,0
+15114,20,-3.553125702,0
+15115,20,-3.553125702,0
+15116,20,-3.553125702,0
+15117,20,-3.553125702,0
+15118,20,-3.553125702,0
+15119,20,-3.553125702,0
+15120,20,-3.553125702,0
+15121,20,-3.553125702,0
+15122,20,-3.553125702,0
+15123,20,-3.553125702,0
+15124,20,-3.553125702,0
+15125,20,-3.553125702,0
+15126,20,-3.553125702,0
+15127,20,-3.553125702,0
+15128,20,-3.553125702,0
+15129,20,-3.441533742,0
+15130,20,-3.441533742,0
+15131,20,-3.441533742,0
+15132,20,-3.441533742,0
+15133,20,-3.441533742,0
+15134,20,-3.441533742,0
+15135,20,-3.441533742,0
+15136,20,-3.441533742,0
+15137,20,-3.441533742,0
+15138,20,-3.441533742,0
+15139,20,-3.441533742,0
+15140,20,-3.441533742,0
+15141,20,-3.441533742,0
+15142,20,-3.441533742,0
+15143,20,-3.441533742,0
+15144,20,-3.441533742,0
+15145,20,-3.441533742,0
+15146,20,-3.441533742,0
+15147,20,-3.441533742,0
+15148,20,-3.441533742,0
+15149,20,-3.329941782,0
+15150,20,-3.329941782,0
+15151,20,-3.329941782,0
+15152,20,-3.329941782,0
+15153,20,-3.329941782,0
+15154,20,-3.329941782,0
+15155,20,-3.329941782,0
+15156,20,-3.329941782,0
+15157,20,-3.329941782,0
+15158,20,-3.329941782,0
+15159,20,-3.329941782,0
+15160,20,-3.329941782,0
+15161,20,-3.329941782,0
+15162,20,-3.329941782,0
+15163,20,-3.329941782,0
+15164,20,-3.329941782,0
+15165,20,-3.329941782,0
+15166,20,-3.329941782,0
+15167,20,-3.329941782,0
+15168,20,-3.329941782,0
+15169,20,-3.218349823,0
+15170,20,-3.218349823,0
+15171,20,-3.218349823,0
+15172,20,-3.218349823,0
+15173,20,-3.218349823,0
+15174,20,-3.218349823,0
+15175,20,-3.218349823,0
+15176,20,-3.218349823,0
+15177,20,-3.218349823,0
+15178,20,-3.218349823,0
+15179,20,-3.218349823,0
+15180,20,-3.218349823,0
+15181,20,-3.218349823,0
+15182,20,-3.218349823,0
+15183,20,-3.218349823,0
+15184,20,-3.218349823,0
+15185,20,-3.218349823,0
+15186,20,-3.218349823,0
+15187,20,-3.218349823,0
+15188,20,-3.218349823,0
+15189,20,-3.106757863,0
+15190,20,-3.106757863,0
+15191,20,-3.106757863,0
+15192,20,-3.106757863,0
+15193,20,-3.106757863,0
+15194,20,-3.106757863,0
+15195,20,-3.106757863,0
+15196,20,-3.106757863,0
+15197,20,-3.106757863,0
+15198,20,-3.106757863,0
+15199,20,-3.106757863,0
+15200,20,-3.106757863,0
+15201,20,-3.106757863,0
+15202,20,-3.106757863,0
+15203,20,-3.106757863,0
+15204,20,-3.106757863,0
+15205,20,-3.106757863,0
+15206,20,-3.106757863,0
+15207,20,-3.106757863,0
+15208,20,-3.106757863,0
+15209,20,-2.995165903,0
+15210,20,-2.995165903,0
+15211,20,-2.995165903,0
+15212,20,-2.995165903,0
+15213,20,-2.995165903,0
+15214,20,-2.995165903,0
+15215,20,-2.995165903,0
+15216,20,-2.995165903,0
+15217,20,-2.995165903,0
+15218,20,-2.995165903,0
+15219,20,-2.995165903,0
+15220,20,-2.995165903,0
+15221,20,-2.995165903,0
+15222,20,-2.995165903,0
+15223,20,-2.995165903,0
+15224,20,-2.995165903,0
+15225,20,-2.995165903,0
+15226,20,-2.995165903,0
+15227,20,-2.995165903,0
+15228,20,-2.995165903,0
+15229,20,-2.883573943,0
+15230,20,-2.883573943,0
+15231,20,-2.883573943,0
+15232,20,-2.883573943,0
+15233,20,-2.883573943,0
+15234,20,-2.883573943,0
+15235,20,-2.883573943,0
+15236,20,-2.883573943,0
+15237,20,-2.883573943,0
+15238,20,-2.883573943,0
+15239,20,-2.883573943,0
+15240,20,-2.883573943,0
+15241,20,-2.883573943,0
+15242,20,-2.883573943,0
+15243,20,-2.883573943,0
+15244,20,-2.883573943,0
+15245,20,-2.883573943,0
+15246,20,-2.883573943,0
+15247,20,-2.883573943,0
+15248,20,-2.883573943,0
+15249,20,-2.883573943,0
+15250,20,-2.883573943,0
+15251,20,-2.883573943,0
+15252,20,-2.883573943,0
+15253,20,-2.883573943,0
+15254,20,-2.883573943,0
+15255,20,-2.883573943,0
+15256,20,-2.883573943,0
+15257,20,-2.883573943,0
+15258,20,-2.883573943,0
+15259,20,-2.883573943,0
+15260,20,-2.883573943,0
+15261,20,-2.883573943,0
+15262,20,-2.883573943,0
+15263,20,-2.883573943,0
+15264,20,-2.883573943,0
+15265,20,-2.883573943,0
+15266,20,-2.883573943,0
+15267,20,-2.883573943,0
+15268,20,-2.883573943,0
+15269,20,-2.883573943,0
+15270,20,-2.883573943,0
+15271,20,-2.883573943,0
+15272,20,-2.883573943,0
+15273,20,-2.883573943,0
+15274,20,-2.883573943,0
+15275,20,-2.883573943,0
+15276,20,-2.883573943,0
+15277,20,-2.883573943,0
+15278,20,-2.883573943,0
+15279,20,-2.883573943,0
+15280,20,-2.883573943,0
+15281,20,-2.883573943,0
+15282,20,-2.883573943,0
+15283,20,-2.883573943,0
+15284,20,-2.883573943,0
+15285,20,-2.883573943,0
+15286,20,-2.883573943,0
+15287,20,-2.883573943,0
+15288,20,-2.883573943,0
+15289,20,-2.883573943,0
+15290,20,-2.883573943,0
+15291,20,-2.883573943,0
+15292,20,-2.883573943,0
+15293,20,-2.883573943,0
+15294,20,-2.883573943,0
+15295,20,-2.883573943,0
+15296,20,-2.883573943,0
+15297,20,-2.883573943,0
+15298,20,-2.883573943,0
+15299,20,-2.883573943,0
+15300,20,-2.883573943,0
+15301,20,-2.883573943,0
+15302,20,-2.883573943,0
+15303,20,-2.883573943,0
+15304,20,-2.883573943,0
+15305,20,-2.883573943,0
+15306,20,-2.883573943,0
+15307,20,-2.883573943,0
+15308,20,-2.883573943,0
+15309,20,-2.883573943,0
+15310,20,-2.883573943,0
+15311,20,-2.883573943,0
+15312,20,-2.883573943,0
+15313,20,-2.883573943,0
+15314,20,-2.883573943,0
+15315,20,-2.883573943,0
+15316,20,-2.883573943,0
+15317,20,-2.883573943,0
+15318,20,-2.883573943,0
+15319,20,-2.883573943,0
+15320,20,-2.883573943,0
+15321,20,-2.883573943,0
+15322,20,-2.883573943,0
+15323,20,-2.883573943,0
+15324,20,-2.883573943,0
+15325,20,-2.883573943,0
+15326,20,-2.883573943,0
+15327,20,-2.883573943,0
+15328,20,-2.883573943,0
+15329,20,-2.883573943,0
+15330,20,-2.883573943,0
+15331,20,-2.883573943,0
+15332,20,-2.883573943,0
+15333,20,-2.883573943,0
+15334,20,-2.883573943,0
+15335,20,-2.883573943,0
+15336,20,-2.883573943,0
+15337,20,-2.883573943,0
+15338,20,-2.883573943,0
+15339,20,-2.883573943,0
+15340,20,-2.883573943,0
+15341,20,-2.883573943,0
+15342,20,-2.883573943,0
+15343,20,-2.883573943,0
+15344,20,-2.883573943,0
+15345,20,-2.883573943,0
+15346,20,-2.883573943,0
+15347,20,-2.883573943,0
+15348,20,-2.883573943,0
+15349,20,-2.883573943,0
+15350,20,-2.883573943,0
+15351,20,-2.883573943,0
+15352,20,-2.883573943,0
+15353,20,-2.883573943,0
+15354,20,-2.883573943,0
+15355,20,-2.883573943,0
+15356,20,-2.883573943,0
+15357,20,-2.883573943,0
+15358,20,-2.883573943,0
+15359,20,-2.883573943,0
+15360,20,-2.883573943,0
+15361,20,-2.883573943,0
+15362,20,-2.883573943,0
+15363,20,-2.883573943,0
+15364,20,-2.883573943,0
+15365,20,-2.883573943,0
+15366,20,-2.883573943,0
+15367,20,-2.883573943,0
+15368,20,-2.883573943,0
+15369,20,-2.883573943,0
+15370,20,-2.883573943,0
+15371,20,-2.883573943,0
+15372,20,-2.883573943,0
+15373,20,-2.883573943,0
+15374,20,-2.883573943,0
+15375,20,-2.883573943,0
+15376,20,-2.883573943,0
+15377,20,-2.883573943,0
+15378,20,-2.883573943,0
+15379,20,-2.883573943,0
+15380,20,-2.883573943,0
+15381,20,-2.883573943,0
+15382,20,-2.883573943,0
+15383,20,-2.883573943,0
+15384,20,-2.883573943,0
+15385,20,-2.883573943,0
+15386,20,-2.883573943,0
+15387,20,-2.883573943,0
+15388,20,-2.883573943,0
+15389,20,-2.883573943,0
+15390,20,-2.883573943,0
+15391,20,-2.883573943,0
+15392,20,-2.883573943,0
+15393,20,-2.883573943,0
+15394,20,-2.883573943,0
+15395,20,-2.883573943,0
+15396,20,-2.883573943,0
+15397,20,-2.883573943,0
+15398,20,-2.883573943,0
+15399,20,-2.883573943,0
+15400,20,-2.883573943,0
+15401,20,-2.883573943,0
+15402,20,-2.883573943,0
+15403,20,-2.883573943,0
+15404,20,-2.883573943,0
+15405,20,-2.883573943,0
+15406,20,-2.883573943,0
+15407,20,-2.883573943,0
+15408,20,-2.883573943,0
+15409,20,-2.883573943,0
+15410,20,-2.883573943,0
+15411,20,-2.883573943,0
+15412,20,-2.883573943,0
+15413,20,-2.883573943,0
+15414,20,-2.883573943,0
+15415,20,-2.883573943,0
+15416,20,-2.883573943,0
+15417,20,-2.883573943,0
+15418,20,-2.883573943,0
+15419,20,-2.883573943,0
+15420,20,-2.883573943,0
+15421,20,-2.883573943,0
+15422,20,-2.883573943,0
+15423,20,-2.883573943,0
+15424,20,-2.883573943,0
+15425,20,-2.883573943,0
+15426,20,-2.883573943,0
+15427,20,-2.883573943,0
+15428,20,-2.883573943,0
+15429,20,-2.883573943,0
+15430,20,-2.883573943,0
+15431,20,-2.883573943,0
+15432,20,-2.883573943,0
+15433,20,-2.883573943,0
+15434,20,-2.883573943,0
+15435,20,-2.883573943,0
+15436,20,-2.883573943,0
+15437,20,-2.883573943,0
+15438,20,-2.883573943,0
+15439,20,-2.883573943,0
+15440,20,-2.883573943,0
+15441,20,-2.883573943,0
+15442,20,-2.883573943,0
+15443,20,-2.883573943,0
+15444,20,-2.883573943,0
+15445,20,-2.883573943,0
+15446,20,-2.883573943,0
+15447,20,-2.883573943,0
+15448,20,-2.883573943,0
+15449,20,-2.741040576,0
+15450,20,-2.741040576,0
+15451,20,-2.741040576,0
+15452,20,-2.741040576,0
+15453,20,-2.741040576,0
+15454,20,-2.741040576,0
+15455,20,-2.741040576,0
+15456,20,-2.741040576,0
+15457,20,-2.741040576,0
+15458,20,-2.741040576,0
+15459,20,-2.741040576,0
+15460,20,-2.741040576,0
+15461,20,-2.741040576,0
+15462,20,-2.741040576,0
+15463,20,-2.741040576,0
+15464,20,-2.741040576,0
+15465,20,-2.741040576,0
+15466,20,-2.741040576,0
+15467,20,-2.741040576,0
+15468,20,-2.741040576,0
+15469,20,-2.596530024,0
+15470,20,-2.596530024,0
+15471,20,-2.596530024,0
+15472,20,-2.596530024,0
+15473,20,-2.596530024,0
+15474,20,-2.596530024,0
+15475,20,-2.596530024,0
+15476,20,-2.596530024,0
+15477,20,-2.596530024,0
+15478,20,-2.596530024,0
+15479,20,-2.596530024,0
+15480,20,-2.596530024,0
+15481,20,-2.596530024,0
+15482,20,-2.596530024,0
+15483,20,-2.596530024,0
+15484,20,-2.596530024,0
+15485,20,-2.596530024,0
+15486,20,-2.596530024,0
+15487,20,-2.596530024,0
+15488,20,-2.596530024,0
+15489,20,-2.452019471,0
+15490,20,-2.452019471,0
+15491,20,-2.452019471,0
+15492,20,-2.452019471,0
+15493,20,-2.452019471,0
+15494,20,-2.452019471,0
+15495,20,-2.452019471,0
+15496,20,-2.452019471,0
+15497,20,-2.452019471,0
+15498,20,-2.452019471,0
+15499,20,-2.452019471,0
+15500,20,-2.452019471,0
+15501,20,-2.452019471,0
+15502,20,-2.452019471,0
+15503,20,-2.452019471,0
+15504,20,-2.452019471,0
+15505,20,-2.452019471,0
+15506,20,-2.452019471,0
+15507,20,-2.452019471,0
+15508,20,-2.452019471,0
+15509,20,-2.307508918,0
+15510,20,-2.307508918,0
+15511,20,-2.307508918,0
+15512,20,-2.307508918,0
+15513,20,-2.307508918,0
+15514,20,-2.307508918,0
+15515,20,-2.307508918,0
+15516,20,-2.307508918,0
+15517,20,-2.307508918,0
+15518,20,-2.307508918,0
+15519,20,-2.307508918,0
+15520,20,-2.307508918,0
+15521,20,-2.307508918,0
+15522,20,-2.307508918,0
+15523,20,-2.307508918,0
+15524,20,-2.307508918,0
+15525,20,-2.307508918,0
+15526,20,-2.307508918,0
+15527,20,-2.307508918,0
+15528,20,-2.307508918,0
+15529,20,-2.162998365,0
+15530,20,-2.162998365,0
+15531,20,-2.162998365,0
+15532,20,-2.162998365,0
+15533,20,-2.162998365,0
+15534,20,-2.162998365,0
+15535,20,-2.162998365,0
+15536,20,-2.162998365,0
+15537,20,-2.162998365,0
+15538,20,-2.162998365,0
+15539,20,-2.162998365,0
+15540,20,-2.162998365,0
+15541,20,-2.162998365,0
+15542,20,-2.162998365,0
+15543,20,-2.162998365,0
+15544,20,-2.162998365,0
+15545,20,-2.162998365,0
+15546,20,-2.162998365,0
+15547,20,-2.162998365,0
+15548,20,-2.162998365,0
+15549,20,-2.018487812,0
+15550,20,-2.018487812,0
+15551,20,-2.018487812,0
+15552,20,-2.018487812,0
+15553,20,-2.018487812,0
+15554,20,-2.018487812,0
+15555,20,-2.018487812,0
+15556,20,-2.018487812,0
+15557,20,-2.018487812,0
+15558,20,-2.018487812,0
+15559,20,-2.018487812,0
+15560,20,-2.018487812,0
+15561,20,-2.018487812,0
+15562,20,-2.018487812,0
+15563,20,-2.018487812,0
+15564,20,-2.018487812,0
+15565,20,-2.018487812,0
+15566,20,-2.018487812,0
+15567,20,-2.018487812,0
+15568,20,-2.018487812,0
+15569,20,-1.876616958,0
+15570,20,-1.876616958,0
+15571,20,-1.876616958,0
+15572,20,-1.876616958,0
+15573,20,-1.876616958,0
+15574,20,-1.876616958,0
+15575,20,-1.876616958,0
+15576,20,-1.876616958,0
+15577,20,-1.876616958,0
+15578,20,-1.876616958,0
+15579,20,-1.876616958,0
+15580,20,-1.876616958,0
+15581,20,-1.876616958,0
+15582,20,-1.876616958,0
+15583,20,-1.876616958,0
+15584,20,-1.876616958,0
+15585,20,-1.876616958,0
+15586,20,-1.876616958,0
+15587,20,-1.876616958,0
+15588,20,-1.876616958,0
+15589,20,-1.735626003,0
+15590,20,-1.735626003,0
+15591,20,-1.735626003,0
+15592,20,-1.735626003,0
+15593,20,-1.735626003,0
+15594,20,-1.735626003,0
+15595,20,-1.735626003,0
+15596,20,-1.735626003,0
+15597,20,-1.735626003,0
+15598,20,-1.735626003,0
+15599,20,-1.735626003,0
+15600,20,-1.735626003,0
+15601,20,-1.735626003,0
+15602,20,-1.735626003,0
+15603,20,-1.735626003,0
+15604,20,-1.735626003,0
+15605,20,-1.735626003,0
+15606,20,-1.735626003,0
+15607,20,-1.735626003,0
+15608,20,-1.735626003,0
+15609,20,-1.594635049,0
+15610,20,-1.594635049,0
+15611,20,-1.594635049,0
+15612,20,-1.594635049,0
+15613,20,-1.594635049,0
+15614,20,-1.594635049,0
+15615,20,-1.594635049,0
+15616,20,-1.594635049,0
+15617,20,-1.594635049,0
+15618,20,-1.594635049,0
+15619,20,-1.594635049,0
+15620,20,-1.594635049,0
+15621,20,-1.594635049,0
+15622,20,-1.594635049,0
+15623,20,-1.594635049,0
+15624,20,-1.594635049,0
+15625,20,-1.594635049,0
+15626,20,-1.594635049,0
+15627,20,-1.594635049,0
+15628,20,-1.594635049,0
+15629,20,-1.453644094,0
+15630,20,-1.453644094,0
+15631,20,-1.453644094,0
+15632,20,-1.453644094,0
+15633,20,-1.453644094,0
+15634,20,-1.453644094,0
+15635,20,-1.453644094,0
+15636,20,-1.453644094,0
+15637,20,-1.453644094,0
+15638,20,-1.453644094,0
+15639,20,-1.453644094,0
+15640,20,-1.453644094,0
+15641,20,-1.453644094,0
+15642,20,-1.453644094,0
+15643,20,-1.453644094,0
+15644,20,-1.453644094,0
+15645,20,-1.453644094,0
+15646,20,-1.453644094,0
+15647,20,-1.453644094,0
+15648,20,-1.453644094,0
+15649,20,-1.453644094,0
+15650,20,-1.453644094,0
+15651,20,-1.453644094,0
+15652,20,-1.453644094,0
+15653,20,-1.453644094,0
+15654,20,-1.453644094,0
+15655,20,-1.453644094,0
+15656,20,-1.453644094,0
+15657,20,-1.453644094,0
+15658,20,-1.453644094,0
+15659,20,-1.453644094,0
+15660,20,-1.453644094,0
+15661,20,-1.453644094,0
+15662,20,-1.453644094,0
+15663,20,-1.453644094,0
+15664,20,-1.453644094,0
+15665,20,-1.453644094,0
+15666,20,-1.453644094,0
+15667,20,-1.453644094,0
+15668,20,-1.453644094,0
+15669,20,-1.453644094,0
+15670,20,-1.453644094,0
+15671,20,-1.453644094,0
+15672,20,-1.453644094,0
+15673,20,-1.453644094,0
+15674,20,-1.453644094,0
+15675,20,-1.453644094,0
+15676,20,-1.453644094,0
+15677,20,-1.453644094,0
+15678,20,-1.453644094,0
+15679,20,-1.453644094,0
+15680,20,-1.453644094,0
+15681,20,-1.453644094,0
+15682,20,-1.453644094,0
+15683,20,-1.453644094,0
+15684,20,-1.453644094,0
+15685,20,-1.453644094,0
+15686,20,-1.453644094,0
+15687,20,-1.453644094,0
+15688,20,-1.453644094,0
+15689,20,-1.453644094,0
+15690,20,-1.453644094,0
+15691,20,-1.453644094,0
+15692,20,-1.453644094,0
+15693,20,-1.453644094,0
+15694,20,-1.453644094,0
+15695,20,-1.453644094,0
+15696,20,-1.453644094,0
+15697,20,-1.453644094,0
+15698,20,-1.453644094,0
+15699,20,-1.453644094,0
+15700,20,-1.453644094,0
+15701,20,-1.453644094,0
+15702,20,-1.453644094,0
+15703,20,-1.453644094,0
+15704,20,-1.453644094,0
+15705,20,-1.453644094,0
+15706,20,-1.453644094,0
+15707,20,-1.453644094,0
+15708,20,-1.453644094,0
+15709,20,-1.453644094,0
+15710,20,-1.453644094,0
+15711,20,-1.453644094,0
+15712,20,-1.453644094,0
+15713,20,-1.453644094,0
+15714,20,-1.453644094,0
+15715,20,-1.453644094,0
+15716,20,-1.453644094,0
+15717,20,-1.453644094,0
+15718,20,-1.453644094,0
+15719,20,-1.453644094,0
+15720,20,-1.453644094,0
+15721,20,-1.453644094,0
+15722,20,-1.453644094,0
+15723,20,-1.453644094,0
+15724,20,-1.453644094,0
+15725,20,-1.453644094,0
+15726,20,-1.453644094,0
+15727,20,-1.453644094,0
+15728,20,-1.453644094,0
+15729,20,-1.453644094,0
+15730,20,-1.453644094,0
+15731,20,-1.453644094,0
+15732,20,-1.453644094,0
+15733,20,-1.453644094,0
+15734,20,-1.453644094,0
+15735,20,-1.453644094,0
+15736,20,-1.453644094,0
+15737,20,-1.453644094,0
+15738,20,-1.453644094,0
+15739,20,-1.453644094,0
+15740,20,-1.453644094,0
+15741,20,-1.453644094,0
+15742,20,-1.453644094,0
+15743,20,-1.453644094,0
+15744,20,-1.453644094,0
+15745,20,-1.453644094,0
+15746,20,-1.453644094,0
+15747,20,-1.453644094,0
+15748,20,-1.453644094,0
+15749,20,-1.453644094,0
+15750,20,-1.453644094,0
+15751,20,-1.453644094,0
+15752,20,-1.453644094,0
+15753,20,-1.453644094,0
+15754,20,-1.453644094,0
+15755,20,-1.453644094,0
+15756,20,-1.453644094,0
+15757,20,-1.453644094,0
+15758,20,-1.453644094,0
+15759,20,-1.453644094,0
+15760,20,-1.453644094,0
+15761,20,-1.453644094,0
+15762,20,-1.453644094,0
+15763,20,-1.453644094,0
+15764,20,-1.453644094,0
+15765,20,-1.453644094,0
+15766,20,-1.453644094,0
+15767,20,-1.453644094,0
+15768,20,-1.453644094,0
+15769,20,-1.453644094,0
+15770,20,-1.453644094,0
+15771,20,-1.453644094,0
+15772,20,-1.453644094,0
+15773,20,-1.453644094,0
+15774,20,-1.453644094,0
+15775,20,-1.453644094,0
+15776,20,-1.453644094,0
+15777,20,-1.453644094,0
+15778,20,-1.453644094,0
+15779,20,-1.453644094,0
+15780,20,-1.453644094,0
+15781,20,-1.453644094,0
+15782,20,-1.453644094,0
+15783,20,-1.453644094,0
+15784,20,-1.453644094,0
+15785,20,-1.453644094,0
+15786,20,-1.453644094,0
+15787,20,-1.453644094,0
+15788,20,-1.453644094,0
+15789,20,-1.453644094,0
+15790,20,-1.453644094,0
+15791,20,-1.453644094,0
+15792,20,-1.453644094,0
+15793,20,-1.453644094,0
+15794,20,-1.453644094,0
+15795,20,-1.453644094,0
+15796,20,-1.453644094,0
+15797,20,-1.453644094,0
+15798,20,-1.453644094,0
+15799,20,-1.453644094,0
+15800,20,-1.453644094,0
+15801,20,-1.453644094,0
+15802,20,-1.453644094,0
+15803,20,-1.453644094,0
+15804,20,-1.453644094,0
+15805,20,-1.453644094,0
+15806,20,-1.453644094,0
+15807,20,-1.453644094,0
+15808,20,-1.453644094,0
+15809,20,-1.453644094,0
+15810,20,-1.453644094,0
+15811,20,-1.453644094,0
+15812,20,-1.453644094,0
+15813,20,-1.453644094,0
+15814,20,-1.453644094,0
+15815,20,-1.453644094,0
+15816,20,-1.453644094,0
+15817,20,-1.453644094,0
+15818,20,-1.453644094,0
+15819,20,-1.453644094,0
+15820,20,-1.453644094,0
+15821,20,-1.453644094,0
+15822,20,-1.453644094,0
+15823,20,-1.453644094,0
+15824,20,-1.453644094,0
+15825,20,-1.453644094,0
+15826,20,-1.453644094,0
+15827,20,-1.453644094,0
+15828,20,-1.453644094,0
+15829,20,-1.453644094,0
+15830,20,-1.453644094,0
+15831,20,-1.453644094,0
+15832,20,-1.453644094,0
+15833,20,-1.453644094,0
+15834,20,-1.453644094,0
+15835,20,-1.453644094,0
+15836,20,-1.453644094,0
+15837,20,-1.453644094,0
+15838,20,-1.453644094,0
+15839,20,-1.453644094,0
+15840,20,-1.453644094,0
+15841,20,-1.453644094,0
+15842,20,-1.453644094,0
+15843,20,-1.453644094,0
+15844,20,-1.453644094,0
+15845,20,-1.453644094,0
+15846,20,-1.453644094,0
+15847,20,-1.453644094,0
+15848,20,-1.453644094,0
+15849,20,-1.453644094,0
+15850,20,-1.453644094,0
+15851,20,-1.453644094,0
+15852,20,-1.453644094,0
+15853,20,-1.453644094,0
+15854,20,-1.453644094,0
+15855,20,-1.453644094,0
+15856,20,-1.453644094,0
+15857,20,-1.453644094,0
+15858,20,-1.453644094,0
+15859,20,-1.453644094,0
+15860,20,-1.453644094,0
+15861,20,-1.453644094,0
+15862,20,-1.453644094,0
+15863,20,-1.453644094,0
+15864,20,-1.453644094,0
+15865,20,-1.453644094,0
+15866,20,-1.453644094,0
+15867,20,-1.453644094,0
+15868,20,-1.453644094,0
+15869,20,-1.453644094,0
+15870,20,-1.453644094,0
+15871,20,-1.453644094,0
+15872,20,-1.453644094,0
+15873,20,-1.453644094,0
+15874,20,-1.453644094,0
+15875,20,-1.453644094,0
+15876,20,-1.453644094,0
+15877,20,-1.453644094,0
+15878,20,-1.453644094,0
+15879,20,-1.453644094,0
+15880,20,-1.453644094,0
+15881,20,-1.453644094,0
+15882,20,-1.453644094,0
+15883,20,-1.453644094,0
+15884,20,-1.453644094,0
+15885,20,-1.453644094,0
+15886,20,-1.453644094,0
+15887,20,-1.453644094,0
+15888,20,-1.453644094,0
+15889,20,-1.453644094,0
+15890,20,-1.453644094,0
+15891,20,-1.453644094,0
+15892,20,-1.453644094,0
+15893,20,-1.453644094,0
+15894,20,-1.453644094,0
+15895,20,-1.453644094,0
+15896,20,-1.453644094,0
+15897,20,-1.453644094,0
+15898,20,-1.453644094,0
+15899,20,-1.453644094,0
+15900,20,-1.453644094,0
+15901,20,-1.453644094,0
+15902,20,-1.453644094,0
+15903,20,-1.453644094,0
+15904,20,-1.453644094,0
+15905,20,-1.453644094,0
+15906,20,-1.453644094,0
+15907,20,-1.453644094,0
+15908,20,-1.453644094,0
+15909,20,-1.453644094,0
+15910,20,-1.453644094,0
+15911,20,-1.453644094,0
+15912,20,-1.453644094,0
+15913,20,-1.453644094,0
+15914,20,-1.453644094,0
+15915,20,-1.453644094,0
+15916,20,-1.453644094,0
+15917,20,-1.453644094,0
+15918,20,-1.453644094,0
+15919,20,-1.453644094,0
+15920,20,-1.453644094,0
+15921,20,-1.453644094,0
+15922,20,-1.453644094,0
+15923,20,-1.453644094,0
+15924,20,-1.453644094,0
+15925,20,-1.453644094,0
+15926,20,-1.453644094,0
+15927,20,-1.453644094,0
+15928,20,-1.453644094,0
+15929,20,-1.453644094,0
+15930,20,-1.453644094,0
+15931,20,-1.453644094,0
+15932,20,-1.453644094,0
+15933,20,-1.453644094,0
+15934,20,-1.453644094,0
+15935,20,-1.453644094,0
+15936,20,-1.453644094,0
+15937,20,-1.453644094,0
+15938,20,-1.453644094,0
+15939,20,-1.453644094,0
+15940,20,-1.453644094,0
+15941,20,-1.453644094,0
+15942,20,-1.453644094,0
+15943,20,-1.453644094,0
+15944,20,-1.453644094,0
+15945,20,-1.453644094,0
+15946,20,-1.453644094,0
+15947,20,-1.453644094,0
+15948,20,-1.453644094,0
+15949,20,-1.453644094,0
+15950,20,-1.453644094,0
+15951,20,-1.453644094,0
+15952,20,-1.453644094,0
+15953,20,-1.453644094,0
+15954,20,-1.453644094,0
+15955,20,-1.453644094,0
+15956,20,-1.453644094,0
+15957,20,-1.453644094,0
+15958,20,-1.453644094,0
+15959,20,-1.453644094,0
+15960,20,-1.453644094,0
+15961,20,-1.453644094,0
+15962,20,-1.453644094,0
+15963,20,-1.453644094,0
+15964,20,-1.453644094,0
+15965,20,-1.453644094,0
+15966,20,-1.453644094,0
+15967,20,-1.453644094,0
+15968,20,-1.453644094,0
+15969,20,-1.453644094,0
+15970,20,-1.453644094,0
+15971,20,-1.453644094,0
+15972,20,-1.453644094,0
+15973,20,-1.453644094,0
+15974,20,-1.453644094,0
+15975,20,-1.453644094,0
+15976,20,-1.453644094,0
+15977,20,-1.453644094,0
+15978,20,-1.453644094,0
+15979,20,-1.453644094,0
+15980,20,-1.453644094,0
+15981,20,-1.453644094,0
+15982,20,-1.453644094,0
+15983,20,-1.453644094,0
+15984,20,-1.453644094,0
+15985,20,-1.453644094,0
+15986,20,-1.453644094,0
+15987,20,-1.453644094,0
+15988,20,-1.453644094,0
+15989,20,-1.453644094,0
+15990,20,-1.453644094,0
+15991,20,-1.453644094,0
+15992,20,-1.453644094,0
+15993,20,-1.453644094,0
+15994,20,-1.453644094,0
+15995,20,-1.453644094,0
+15996,20,-1.453644094,0
+15997,20,-1.453644094,0
+15998,20,-1.453644094,0
+15999,20,-1.453644094,0
+16000,20,-1.453644094,0
+16001,20,-1.453644094,0
+16002,20,-1.453644094,0
+16003,20,-1.453644094,0
+16004,20,-1.453644094,0
+16005,20,-1.453644094,0
+16006,20,-1.453644094,0
+16007,20,-1.453644094,0
+16008,20,-1.453644094,0
+16009,20,-1.453644094,0
+16010,20,-1.453644094,0
+16011,20,-1.453644094,0
+16012,20,-1.453644094,0
+16013,20,-1.453644094,0
+16014,20,-1.453644094,0
+16015,20,-1.453644094,0
+16016,20,-1.453644094,0
+16017,20,-1.453644094,0
+16018,20,-1.453644094,0
+16019,20,-1.453644094,0
+16020,20,-1.453644094,0
+16021,20,-1.453644094,0
+16022,20,-1.453644094,0
+16023,20,-1.453644094,0
+16024,20,-1.453644094,0
+16025,20,-1.453644094,0
+16026,20,-1.453644094,0
+16027,20,-1.453644094,0
+16028,20,-1.453644094,0
+16029,20,-1.453644094,0
+16030,20,-1.453644094,0
+16031,20,-1.453644094,0
+16032,20,-1.453644094,0
+16033,20,-1.453644094,0
+16034,20,-1.453644094,0
+16035,20,-1.453644094,0
+16036,20,-1.453644094,0
+16037,20,-1.453644094,0
+16038,20,-1.453644094,0
+16039,20,-1.453644094,0
+16040,20,-1.453644094,0
+16041,20,-1.453644094,0
+16042,20,-1.453644094,0
+16043,20,-1.453644094,0
+16044,20,-1.453644094,0
+16045,20,-1.453644094,0
+16046,20,-1.453644094,0
+16047,20,-1.453644094,0
+16048,20,-1.453644094,0
+16049,20,-1.453644094,0
+16050,20,-1.453644094,0
+16051,20,-1.453644094,0
+16052,20,-1.453644094,0
+16053,20,-1.453644094,0
+16054,20,-1.453644094,0
+16055,20,-1.453644094,0
+16056,20,-1.453644094,0
+16057,20,-1.453644094,0
+16058,20,-1.453644094,0
+16059,20,-1.453644094,0
+16060,20,-1.453644094,0
+16061,20,-1.453644094,0
+16062,20,-1.453644094,0
+16063,20,-1.453644094,0
+16064,20,-1.453644094,0
+16065,20,-1.453644094,0
+16066,20,-1.453644094,0
+16067,20,-1.453644094,0
+16068,20,-1.453644094,0
+16069,20,-1.453644094,0
+16070,20,-1.453644094,0
+16071,20,-1.453644094,0
+16072,20,-1.453644094,0
+16073,20,-1.453644094,0
+16074,20,-1.453644094,0
+16075,20,-1.453644094,0
+16076,20,-1.453644094,0
+16077,20,-1.453644094,0
+16078,20,-1.453644094,0
+16079,20,-1.453644094,0
+16080,20,-1.453644094,0
+16081,20,-1.453644094,0
+16082,20,-1.453644094,0
+16083,20,-1.453644094,0
+16084,20,-1.453644094,0
+16085,20,-1.453644094,0
+16086,20,-1.453644094,0
+16087,20,-1.453644094,0
+16088,20,-1.453644094,0
+16089,20,-1.453644094,0
+16090,20,-1.453644094,0
+16091,20,-1.453644094,0
+16092,20,-1.453644094,0
+16093,20,-1.453644094,0
+16094,20,-1.453644094,0
+16095,20,-1.453644094,0
+16096,20,-1.453644094,0
+16097,20,-1.453644094,0
+16098,20,-1.453644094,0
+16099,20,-1.453644094,0
+16100,20,-1.453644094,0
+16101,20,-1.453644094,0
+16102,20,-1.453644094,0
+16103,20,-1.453644094,0
+16104,20,-1.453644094,0
+16105,20,-1.453644094,0
+16106,20,-1.453644094,0
+16107,20,-1.453644094,0
+16108,20,-1.453644094,0
+16109,20,-1.453644094,0
+16110,20,-1.453644094,0
+16111,20,-1.453644094,0
+16112,20,-1.453644094,0
+16113,20,-1.453644094,0
+16114,20,-1.453644094,0
+16115,20,-1.453644094,0
+16116,20,-1.453644094,0
+16117,20,-1.453644094,0
+16118,20,-1.453644094,0
+16119,20,-1.453644094,0
+16120,20,-1.453644094,0
+16121,20,-1.453644094,0
+16122,20,-1.453644094,0
+16123,20,-1.453644094,0
+16124,20,-1.453644094,0
+16125,20,-1.453644094,0
+16126,20,-1.453644094,0
+16127,20,-1.453644094,0
+16128,20,-1.453644094,0
+16129,20,-1.453644094,0
+16130,20,-1.453644094,0
+16131,20,-1.453644094,0
+16132,20,-1.453644094,0
+16133,20,-1.453644094,0
+16134,20,-1.453644094,0
+16135,20,-1.453644094,0
+16136,20,-1.453644094,0
+16137,20,-1.453644094,0
+16138,20,-1.453644094,0
+16139,20,-1.453644094,0
+16140,20,-1.453644094,0
+16141,20,-1.453644094,0
+16142,20,-1.453644094,0
+16143,20,-1.453644094,0
+16144,20,-1.453644094,0
+16145,20,-1.453644094,0
+16146,20,-1.453644094,0
+16147,20,-1.453644094,0
+16148,20,-1.453644094,0
+16149,20,-1.453644094,0
+16150,20,-1.453644094,0
+16151,20,-1.453644094,0
+16152,20,-1.453644094,0
+16153,20,-1.453644094,0
+16154,20,-1.453644094,0
+16155,20,-1.453644094,0
+16156,20,-1.453644094,0
+16157,20,-1.453644094,0
+16158,20,-1.453644094,0
+16159,20,-1.453644094,0
+16160,20,-1.453644094,0
+16161,20,-1.453644094,0
+16162,20,-1.453644094,0
+16163,20,-1.453644094,0
+16164,20,-1.453644094,0
+16165,20,-1.453644094,0
+16166,20,-1.453644094,0
+16167,20,-1.453644094,0
+16168,20,-1.453644094,0
+16169,20,-1.453644094,0
+16170,20,-1.453644094,0
+16171,20,-1.453644094,0
+16172,20,-1.453644094,0
+16173,20,-1.453644094,0
+16174,20,-1.453644094,0
+16175,20,-1.453644094,0
+16176,20,-1.453644094,0
+16177,20,-1.453644094,0
+16178,20,-1.453644094,0
+16179,20,-1.453644094,0
+16180,20,-1.453644094,0
+16181,20,-1.453644094,0
+16182,20,-1.453644094,0
+16183,20,-1.453644094,0
+16184,20,-1.453644094,0
+16185,20,-1.453644094,0
+16186,20,-1.453644094,0
+16187,20,-1.453644094,0
+16188,20,-1.453644094,0
+16189,20,-1.453644094,0
+16190,20,-1.453644094,0
+16191,20,-1.453644094,0
+16192,20,-1.453644094,0
+16193,20,-1.453644094,0
+16194,20,-1.453644094,0
+16195,20,-1.453644094,0
+16196,20,-1.453644094,0
+16197,20,-1.453644094,0
+16198,20,-1.453644094,0
+16199,20,-1.453644094,0
+16200,20,-1.453644094,0
+16201,20,-1.453644094,0
+16202,20,-1.453644094,0
+16203,20,-1.453644094,0
+16204,20,-1.453644094,0
+16205,20,-1.453644094,0
+16206,20,-1.453644094,0
+16207,20,-1.453644094,0
+16208,20,-1.453644094,0
+16209,20,-1.453644094,0
+16210,20,-1.453644094,0
+16211,20,-1.453644094,0
+16212,20,-1.453644094,0
+16213,20,-1.453644094,0
+16214,20,-1.453644094,0
+16215,20,-1.453644094,0
+16216,20,-1.453644094,0
+16217,20,-1.453644094,0
+16218,20,-1.453644094,0
+16219,20,-1.453644094,0
+16220,20,-1.453644094,0
+16221,20,-1.453644094,0
+16222,20,-1.453644094,0
+16223,20,-1.453644094,0
+16224,20,-1.453644094,0
+16225,20,-1.453644094,0
+16226,20,-1.453644094,0
+16227,20,-1.453644094,0
+16228,20,-1.453644094,0
+16229,20,-1.453644094,0
+16230,20,-1.453644094,0
+16231,20,-1.453644094,0
+16232,20,-1.453644094,0
+16233,20,-1.453644094,0
+16234,20,-1.453644094,0
+16235,20,-1.453644094,0
+16236,20,-1.453644094,0
+16237,20,-1.453644094,0
+16238,20,-1.453644094,0
+16239,20,-1.453644094,0
+16240,20,-1.453644094,0
+16241,20,-1.453644094,0
+16242,20,-1.453644094,0
+16243,20,-1.453644094,0
+16244,20,-1.453644094,0
+16245,20,-1.453644094,0
+16246,20,-1.453644094,0
+16247,20,-1.453644094,0
+16248,20,-1.453644094,0
+16249,20,-1.453644094,0
+16250,20,-1.453644094,0
+16251,20,-1.453644094,0
+16252,20,-1.453644094,0
+16253,20,-1.453644094,0
+16254,20,-1.453644094,0
+16255,20,-1.453644094,0
+16256,20,-1.453644094,0
+16257,20,-1.453644094,0
+16258,20,-1.453644094,0
+16259,20,-1.453644094,0
+16260,20,-1.453644094,0
+16261,20,-1.453644094,0
+16262,20,-1.453644094,0
+16263,20,-1.453644094,0
+16264,20,-1.453644094,0
+16265,20,-1.453644094,0
+16266,20,-1.453644094,0
+16267,20,-1.453644094,0
+16268,20,-1.453644094,0
+16269,20,-1.453644094,0
+16270,20,-1.453644094,0
+16271,20,-1.453644094,0
+16272,20,-1.453644094,0
+16273,20,-1.453644094,0
+16274,20,-1.453644094,0
+16275,20,-1.453644094,0
+16276,20,-1.453644094,0
+16277,20,-1.453644094,0
+16278,20,-1.453644094,0
+16279,20,-1.453644094,0
+16280,20,-1.453644094,0
+16281,20,-1.453644094,0
+16282,20,-1.453644094,0
+16283,20,-1.453644094,0
+16284,20,-1.453644094,0
+16285,20,-1.453644094,0
+16286,20,-1.453644094,0
+16287,20,-1.453644094,0
+16288,20,-1.453644094,0
+16289,20,-1.453644094,0
+16290,20,-1.453644094,0
+16291,20,-1.453644094,0
+16292,20,-1.453644094,0
+16293,20,-1.453644094,0
+16294,20,-1.453644094,0
+16295,20,-1.453644094,0
+16296,20,-1.453644094,0
+16297,20,-1.453644094,0
+16298,20,-1.453644094,0
+16299,20,-1.453644094,0
+16300,20,-1.453644094,0
+16301,20,-1.453644094,0
+16302,20,-1.453644094,0
+16303,20,-1.453644094,0
+16304,20,-1.453644094,0
+16305,20,-1.453644094,0
+16306,20,-1.453644094,0
+16307,20,-1.453644094,0
+16308,20,-1.453644094,0
+16309,20,-1.453644094,0
+16310,20,-1.453644094,0
+16311,20,-1.453644094,0
+16312,20,-1.453644094,0
+16313,20,-1.453644094,0
+16314,20,-1.453644094,0
+16315,20,-1.453644094,0
+16316,20,-1.453644094,0
+16317,20,-1.453644094,0
+16318,20,-1.453644094,0
+16319,20,-1.453644094,0
+16320,20,-1.453644094,0
+16321,20,-1.453644094,0
+16322,20,-1.453644094,0
+16323,20,-1.453644094,0
+16324,20,-1.453644094,0
+16325,20,-1.453644094,0
+16326,20,-1.453644094,0
+16327,20,-1.453644094,0
+16328,20,-1.453644094,0
+16329,20,-1.453644094,0
+16330,20,-1.453644094,0
+16331,20,-1.453644094,0
+16332,20,-1.453644094,0
+16333,20,-1.453644094,0
+16334,20,-1.453644094,0
+16335,20,-1.453644094,0
+16336,20,-1.453644094,0
+16337,20,-1.453644094,0
+16338,20,-1.453644094,0
+16339,20,-1.453644094,0
+16340,20,-1.453644094,0
+16341,20,-1.453644094,0
+16342,20,-1.453644094,0
+16343,20,-1.453644094,0
+16344,20,-1.453644094,0
+16345,20,-1.453644094,0
+16346,20,-1.453644094,0
+16347,20,-1.453644094,0
+16348,20,-1.453644094,0
+16349,20,-1.453644094,0
+16350,20,-1.453644094,0
+16351,20,-1.453644094,0
+16352,20,-1.453644094,0
+16353,20,-1.453644094,0
+16354,20,-1.453644094,0
+16355,20,-1.453644094,0
+16356,20,-1.453644094,0
+16357,20,-1.453644094,0
+16358,20,-1.453644094,0
+16359,20,-1.453644094,0
+16360,20,-1.453644094,0
+16361,20,-1.453644094,0
+16362,20,-1.453644094,0
+16363,20,-1.453644094,0
+16364,20,-1.453644094,0
+16365,20,-1.453644094,0
+16366,20,-1.453644094,0
+16367,20,-1.453644094,0
+16368,20,-1.453644094,0
+16369,20,-1.453644094,0
+16370,20,-1.453644094,0
+16371,20,-1.453644094,0
+16372,20,-1.453644094,0
+16373,20,-1.453644094,0
+16374,20,-1.453644094,0
+16375,20,-1.453644094,0
+16376,20,-1.453644094,0
+16377,20,-1.453644094,0
+16378,20,-1.453644094,0
+16379,20,-1.453644094,0
+16380,20,-1.453644094,0
+16381,20,-1.453644094,0
+16382,20,-1.453644094,0
+16383,20,-1.453644094,0
+16384,20,-1.453644094,0
+16385,20,-1.453644094,0
+16386,20,-1.453644094,0
+16387,20,-1.453644094,0
+16388,20,-1.453644094,0
+16389,20,-1.453644094,0
+16390,20,-1.453644094,0
+16391,20,-1.453644094,0
+16392,20,-1.453644094,0
+16393,20,-1.453644094,0
+16394,20,-1.453644094,0
+16395,20,-1.453644094,0
+16396,20,-1.453644094,0
+16397,20,-1.453644094,0
+16398,20,-1.453644094,0
+16399,20,-1.453644094,0
+16400,20,-1.453644094,0
+16401,20,-1.453644094,0
+16402,20,-1.453644094,0
+16403,20,-1.453644094,0
+16404,20,-1.453644094,0
+16405,20,-1.453644094,0
+16406,20,-1.453644094,0
+16407,20,-1.453644094,0
+16408,20,-1.453644094,0
+16409,20,-1.453644094,0
+16410,20,-1.453644094,0
+16411,20,-1.453644094,0
+16412,20,-1.453644094,0
+16413,20,-1.453644094,0
+16414,20,-1.453644094,0
+16415,20,-1.453644094,0
+16416,20,-1.453644094,0
+16417,20,-1.453644094,0
+16418,20,-1.453644094,0
+16419,20,-1.453644094,0
+16420,20,-1.453644094,0
+16421,20,-1.453644094,0
+16422,20,-1.453644094,0
+16423,20,-1.453644094,0
+16424,20,-1.453644094,0
+16425,20,-1.453644094,0
+16426,20,-1.453644094,0
+16427,20,-1.453644094,0
+16428,20,-1.453644094,0
+16429,20,-1.453644094,0
+16430,20,-1.453644094,0
+16431,20,-1.453644094,0
+16432,20,-1.453644094,0
+16433,20,-1.453644094,0
+16434,20,-1.453644094,0
+16435,20,-1.453644094,0
+16436,20,-1.453644094,0
+16437,20,-1.453644094,0
+16438,20,-1.453644094,0
+16439,20,-1.453644094,0
+16440,20,-1.453644094,0
+16441,20,-1.453644094,0
+16442,20,-1.453644094,0
+16443,20,-1.453644094,0
+16444,20,-1.453644094,0
+16445,20,-1.453644094,0
+16446,20,-1.453644094,0
+16447,20,-1.453644094,0
+16448,20,-1.453644094,0
+16449,20,-1.350022988,0
+16450,20,-1.350022988,0
+16451,20,-1.350022988,0
+16452,20,-1.350022988,0
+16453,20,-1.350022988,0
+16454,20,-1.350022988,0
+16455,20,-1.350022988,0
+16456,20,-1.350022988,0
+16457,20,-1.350022988,0
+16458,20,-1.350022988,0
+16459,20,-1.350022988,0
+16460,20,-1.350022988,0
+16461,20,-1.350022988,0
+16462,20,-1.350022988,0
+16463,20,-1.350022988,0
+16464,20,-1.350022988,0
+16465,20,-1.350022988,0
+16466,20,-1.350022988,0
+16467,20,-1.350022988,0
+16468,20,-1.350022988,0
+16469,20,-1.350022988,0
+16470,20,-1.350022988,0
+16471,20,-1.350022988,0
+16472,20,-1.350022988,0
+16473,20,-1.350022988,0
+16474,20,-1.350022988,0
+16475,20,-1.350022988,0
+16476,20,-1.350022988,0
+16477,20,-1.350022988,0
+16478,20,-1.350022988,0
+16479,20,-1.209653139,0
+16480,20,-1.209653139,0
+16481,20,-1.209653139,0
+16482,20,-1.209653139,0
+16483,20,-1.209653139,0
+16484,20,-1.209653139,0
+16485,20,-1.209653139,0
+16486,20,-1.209653139,0
+16487,20,-1.209653139,0
+16488,20,-1.209653139,0
+16489,20,-1.209653139,0
+16490,20,-1.209653139,0
+16491,20,-1.209653139,0
+16492,20,-1.209653139,0
+16493,20,-1.209653139,0
+16494,20,-1.209653139,0
+16495,20,-1.209653139,0
+16496,20,-1.209653139,0
+16497,20,-1.209653139,0
+16498,20,-1.209653139,0
+16499,20,-1.209653139,0
+16500,20,-1.209653139,0
+16501,20,-1.209653139,0
+16502,20,-1.209653139,0
+16503,20,-1.209653139,0
+16504,20,-1.209653139,0
+16505,20,-1.209653139,0
+16506,20,-1.209653139,0
+16507,20,-1.209653139,0
+16508,20,-1.209653139,0
+16509,20,-1.06928329,0
+16510,20,-1.06928329,0
+16511,20,-1.06928329,0
+16512,20,-1.06928329,0
+16513,20,-1.06928329,0
+16514,20,-1.06928329,0
+16515,20,-1.06928329,0
+16516,20,-1.06928329,0
+16517,20,-1.06928329,0
+16518,20,-1.06928329,0
+16519,20,-1.06928329,0
+16520,20,-1.06928329,0
+16521,20,-1.06928329,0
+16522,20,-1.06928329,0
+16523,20,-1.06928329,0
+16524,20,-1.06928329,0
+16525,20,-1.06928329,0
+16526,20,-1.06928329,0
+16527,20,-1.06928329,0
+16528,20,-1.06928329,0
+16529,20,-1.06928329,0
+16530,20,-1.06928329,0
+16531,20,-1.06928329,0
+16532,20,-1.06928329,0
+16533,20,-1.06928329,0
+16534,20,-1.06928329,0
+16535,20,-1.06928329,0
+16536,20,-1.06928329,0
+16537,20,-1.06928329,0
+16538,20,-1.06928329,0
+16539,20,-0.928913441,0
+16540,20,-0.928913441,0
+16541,20,-0.928913441,0
+16542,20,-0.928913441,0
+16543,20,-0.928913441,0
+16544,20,-0.928913441,0
+16545,20,-0.928913441,0
+16546,20,-0.928913441,0
+16547,20,-0.928913441,0
+16548,20,-0.928913441,0
+16549,20,-0.928913441,0
+16550,20,-0.928913441,0
+16551,20,-0.928913441,0
+16552,20,-0.928913441,0
+16553,20,-0.928913441,0
+16554,20,-0.928913441,0
+16555,20,-0.928913441,0
+16556,20,-0.928913441,0
+16557,20,-0.928913441,0
+16558,20,-0.928913441,0
+16559,20,-0.928913441,0
+16560,20,-0.928913441,0
+16561,20,-0.928913441,0
+16562,20,-0.928913441,0
+16563,20,-0.928913441,0
+16564,20,-0.928913441,0
+16565,20,-0.928913441,0
+16566,20,-0.928913441,0
+16567,20,-0.928913441,0
+16568,20,-0.928913441,0
+16569,20,-0.788543591,0
+16570,20,-0.788543591,0
+16571,20,-0.788543591,0
+16572,20,-0.788543591,0
+16573,20,-0.788543591,0
+16574,20,-0.788543591,0
+16575,20,-0.788543591,0
+16576,20,-0.788543591,0
+16577,20,-0.788543591,0
+16578,20,-0.788543591,0
+16579,20,-0.788543591,0
+16580,20,-0.788543591,0
+16581,20,-0.788543591,0
+16582,20,-0.788543591,0
+16583,20,-0.788543591,0
+16584,20,-0.788543591,0
+16585,20,-0.788543591,0
+16586,20,-0.788543591,0
+16587,20,-0.788543591,0
+16588,20,-0.788543591,0
+16589,20,-0.788543591,0
+16590,20,-0.788543591,0
+16591,20,-0.788543591,0
+16592,20,-0.788543591,0
+16593,20,-0.788543591,0
+16594,20,-0.788543591,0
+16595,20,-0.788543591,0
+16596,20,-0.788543591,0
+16597,20,-0.788543591,0
+16598,20,-0.788543591,0
+16599,20,-0.648173742,0
+16600,20,-0.648173742,0
+16601,20,-0.648173742,0
+16602,20,-0.648173742,0
+16603,20,-0.648173742,0
+16604,20,-0.648173742,0
+16605,20,-0.648173742,0
+16606,20,-0.648173742,0
+16607,20,-0.648173742,0
+16608,20,-0.648173742,0
+16609,20,-0.648173742,0
+16610,20,-0.648173742,0
+16611,20,-0.648173742,0
+16612,20,-0.648173742,0
+16613,20,-0.648173742,0
+16614,20,-0.648173742,0
+16615,20,-0.648173742,0
+16616,20,-0.648173742,0
+16617,20,-0.648173742,0
+16618,20,-0.648173742,0
+16619,20,-0.648173742,0
+16620,20,-0.648173742,0
+16621,20,-0.648173742,0
+16622,20,-0.648173742,0
+16623,20,-0.648173742,0
+16624,20,-0.648173742,0
+16625,20,-0.648173742,0
+16626,20,-0.648173742,0
+16627,20,-0.648173742,0
+16628,20,-0.648173742,0
+16629,20,-0.507803893,0
+16630,20,-0.507803893,0
+16631,20,-0.507803893,0
+16632,20,-0.507803893,0
+16633,20,-0.507803893,0
+16634,20,-0.507803893,0
+16635,20,-0.507803893,0
+16636,20,-0.507803893,0
+16637,20,-0.507803893,0
+16638,20,-0.507803893,0
+16639,20,-0.507803893,0
+16640,20,-0.507803893,0
+16641,20,-0.507803893,0
+16642,20,-0.507803893,0
+16643,20,-0.507803893,0
+16644,20,-0.507803893,0
+16645,20,-0.507803893,0
+16646,20,-0.507803893,0
+16647,20,-0.507803893,0
+16648,20,-0.507803893,0
+16649,20,-0.507803893,0
+16650,20,-0.507803893,0
+16651,20,-0.507803893,0
+16652,20,-0.507803893,0
+16653,20,-0.507803893,0
+16654,20,-0.507803893,0
+16655,20,-0.507803893,0
+16656,20,-0.507803893,0
+16657,20,-0.507803893,0
+16658,20,-0.507803893,0
+16659,20,-0.507803893,0
+16660,20,-0.507803893,0
+16661,20,-0.507803893,0
+16662,20,-0.507803893,0
+16663,20,-0.507803893,0
+16664,20,-0.507803893,0
+16665,20,-0.507803893,0
+16666,20,-0.507803893,0
+16667,20,-0.507803893,0
+16668,20,-0.507803893,0
+16669,20,-0.507803893,0
+16670,20,-0.507803893,0
+16671,20,-0.507803893,0
+16672,20,-0.507803893,0
+16673,20,-0.507803893,0
+16674,20,-0.507803893,0
+16675,20,-0.507803893,0
+16676,20,-0.507803893,0
+16677,20,-0.507803893,0
+16678,20,-0.507803893,0
+16679,20,-0.507803893,0
+16680,20,-0.507803893,0
+16681,20,-0.507803893,0
+16682,20,-0.507803893,0
+16683,20,-0.507803893,0
+16684,20,-0.507803893,0
+16685,20,-0.507803893,0
+16686,20,-0.507803893,0
+16687,20,-0.507803893,0
+16688,20,-0.507803893,0
+16689,20,-0.507803893,0
+16690,20,-0.507803893,0
+16691,20,-0.507803893,0
+16692,20,-0.507803893,0
+16693,20,-0.507803893,0
+16694,20,-0.507803893,0
+16695,20,-0.507803893,0
+16696,20,-0.507803893,0
+16697,20,-0.507803893,0
+16698,20,-0.507803893,0
+16699,20,-0.507803893,0
+16700,20,-0.507803893,0
+16701,20,-0.507803893,0
+16702,20,-0.507803893,0
+16703,20,-0.507803893,0
+16704,20,-0.507803893,0
+16705,20,-0.507803893,0
+16706,20,-0.507803893,0
+16707,20,-0.507803893,0
+16708,20,-0.507803893,0
+16709,20,-0.507803893,0
+16710,20,-0.507803893,0
+16711,20,-0.507803893,0
+16712,20,-0.507803893,0
+16713,20,-0.507803893,0
+16714,20,-0.507803893,0
+16715,20,-0.507803893,0
+16716,20,-0.507803893,0
+16717,20,-0.507803893,0
+16718,20,-0.507803893,0
+16719,20,-0.507803893,0
+16720,20,-0.507803893,0
+16721,20,-0.507803893,0
+16722,20,-0.507803893,0
+16723,20,-0.507803893,0
+16724,20,-0.507803893,0
+16725,20,-0.507803893,0
+16726,20,-0.507803893,0
+16727,20,-0.507803893,0
+16728,20,-0.507803893,0
+16729,20,-0.507803893,0
+16730,20,-0.507803893,0
+16731,20,-0.507803893,0
+16732,20,-0.507803893,0
+16733,20,-0.507803893,0
+16734,20,-0.507803893,0
+16735,20,-0.507803893,0
+16736,20,-0.507803893,0
+16737,20,-0.507803893,0
+16738,20,-0.507803893,0
+16739,20,-0.507803893,0
+16740,20,-0.507803893,0
+16741,20,-0.507803893,0
+16742,20,-0.507803893,0
+16743,20,-0.507803893,0
+16744,20,-0.507803893,0
+16745,20,-0.507803893,0
+16746,20,-0.507803893,0
+16747,20,-0.507803893,0
+16748,20,-0.507803893,0
+16749,20,-0.507803893,0
+16750,20,-0.507803893,0
+16751,20,-0.507803893,0
+16752,20,-0.507803893,0
+16753,20,-0.507803893,0
+16754,20,-0.507803893,0
+16755,20,-0.507803893,0
+16756,20,-0.507803893,0
+16757,20,-0.507803893,0
+16758,20,-0.507803893,0
+16759,20,-0.406594747,0
+16760,20,-0.406594747,0
+16761,20,-0.406594747,0
+16762,20,-0.406594747,0
+16763,20,-0.406594747,0
+16764,20,-0.406594747,0
+16765,20,-0.406594747,0
+16766,20,-0.406594747,0
+16767,20,-0.406594747,0
+16768,20,-0.406594747,0
+16769,20,-0.406594747,0
+16770,20,-0.406594747,0
+16771,20,-0.406594747,0
+16772,20,-0.406594747,0
+16773,20,-0.406594747,0
+16774,20,-0.406594747,0
+16775,20,-0.406594747,0
+16776,20,-0.406594747,0
+16777,20,-0.406594747,0
+16778,20,-0.406594747,0
+16779,20,-0.301213843,0
+16780,20,-0.301213843,0
+16781,20,-0.301213843,0
+16782,20,-0.301213843,0
+16783,20,-0.301213843,0
+16784,20,-0.301213843,0
+16785,20,-0.301213843,0
+16786,20,-0.301213843,0
+16787,20,-0.301213843,0
+16788,20,-0.301213843,0
+16789,20,-0.301213843,0
+16790,20,-0.301213843,0
+16791,20,-0.301213843,0
+16792,20,-0.301213843,0
+16793,20,-0.301213843,0
+16794,20,-0.301213843,0
+16795,20,-0.301213843,0
+16796,20,-0.301213843,0
+16797,20,-0.301213843,0
+16798,20,-0.301213843,0
+16799,20,-0.195832938,0
+16800,20,-0.195832938,0
+16801,20,-0.195832938,0
+16802,20,-0.195832938,0
+16803,20,-0.195832938,0
+16804,20,-0.195832938,0
+16805,20,-0.195832938,0
+16806,20,-0.195832938,0
+16807,20,-0.195832938,0
+16808,20,-0.195832938,0
+16809,20,-0.195832938,0
+16810,20,-0.195832938,0
+16811,20,-0.195832938,0
+16812,20,-0.195832938,0
diff --git a/VectoCoreTest/TestData/Integration/MinimalPowerTrain/24t Coach-1Gear.vecto b/VectoCoreTest/TestData/Integration/MinimalPowerTrain/24t Coach-1Gear.vecto
index 71cc9a0ebaa87bdc1bf7b25902a8c51b0ed476b4..364b8e9a8a4021ed43c8065967b208de753cf866 100644
--- a/VectoCoreTest/TestData/Integration/MinimalPowerTrain/24t Coach-1Gear.vecto	
+++ b/VectoCoreTest/TestData/Integration/MinimalPowerTrain/24t Coach-1Gear.vecto	
@@ -1,8 +1,8 @@
 {
   "Header": {
-    "CreatedBy": "Raphael Luz IVT TU-Graz (14fea510-e457-4bf6-860f-a9514dc327f1)",
-    "Date": "27.07.2015 11:26:02",
-    "AppVersion": "2.2",
+    "CreatedBy": " ()",
+    "Date": "8/10/2015 4:19:34 PM",
+    "AppVersion": "2.2 beta-2",
     "FileVersion": 2
   },
   "Body": {
@@ -11,7 +11,8 @@
     "EngineFile": "24t Coach.veng",
     "GearboxFile": "24t Coach-1Gear.vgbx",
     "Cycles": [
-      "Coach_24t_xshort.vdri"
+      "Coach_24t_InitTest.vdri",
+      "1-Gear-Test-dist.vdri"
     ],
     "VACC": "Coach.vacc",
     "EngineOnlyMode": false,
diff --git a/VectoCoreTest/TestData/Integration/MinimalPowerTrain/24t Coach-1Gear.vgbx b/VectoCoreTest/TestData/Integration/MinimalPowerTrain/24t Coach-1Gear.vgbx
index acfda89f1cb4c6f84157ff5658483799eb86310f..2ee28274a4edf83ef18849474625f2f68a04bcf5 100644
--- a/VectoCoreTest/TestData/Integration/MinimalPowerTrain/24t Coach-1Gear.vgbx	
+++ b/VectoCoreTest/TestData/Integration/MinimalPowerTrain/24t Coach-1Gear.vgbx	
@@ -1,8 +1,8 @@
 {
   "Header": {
-    "CreatedBy": "Raphael Luz IVT TU-Graz (14fea510-e457-4bf6-860f-a9514dc327f1)",
-    "Date": "27.07.2015 11:20:45",
-    "AppVersion": "2.2",
+    "CreatedBy": " ()",
+    "Date": "7/31/2015 8:06:20 AM",
+    "AppVersion": "2.2 beta-2",
     "FileVersion": 5
   },
   "Body": {
@@ -13,11 +13,11 @@
     "Gears": [
       {
         "Ratio": 3.5,
-        "Efficiency": "0.95"
+        "Efficiency": "1"
       },
       {
         "Ratio": 3.0,
-        "Efficiency": "0.95",
+        "Efficiency": "1",
         "TCactive": false,
         "ShiftPolygon": "ShiftPolygons.vgbs",
         "FullLoadCurve": "<NOFILE>"
diff --git a/VectoCoreTest/TestData/Integration/MinimalPowerTrain/24t Coach-1Gear.vsum b/VectoCoreTest/TestData/Integration/MinimalPowerTrain/24t Coach-1Gear.vsum
index 60e0e982baf9fbbe48114defcd99a46ca0c9995b..ba22a2527dd2d07419fd9412b37a1f239cd1174c 100644
--- a/VectoCoreTest/TestData/Integration/MinimalPowerTrain/24t Coach-1Gear.vsum	
+++ b/VectoCoreTest/TestData/Integration/MinimalPowerTrain/24t Coach-1Gear.vsum	
@@ -1,2 +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_xshort.vdri,3742,27.98777,26.9257,795.5166,61.2051801099808,0,14577.58,541.4001,-,-,-,-,1710.824,518.4316,541.4001,19.71883,65.07213,49.7341923814114,-0.000153774822669383,63.6193844365411,0,-1.24635244188802,-9.27612249251869,-41.1712462512818,-2.32168369823032E-08,-6.34061101198196,-0.00015984038511912,-5.58506191695691,0,0,15700,3300,-7.964277E-12,0.6693458,-0.2514017,0.09899588,0.01122394,0.02912881,0.9166221,0.04302512
+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
diff --git a/VectoCoreTest/TestData/Integration/MinimalPowerTrain/24t Coach-1Gear.vsum.json b/VectoCoreTest/TestData/Integration/MinimalPowerTrain/24t Coach-1Gear.vsum.json
index 1d022cebf39b98cb14001c745399cf29a089d188..0c03c2f0bc8e7a63b4200c6eed75ba17a8faf6c3 100644
--- a/VectoCoreTest/TestData/Integration/MinimalPowerTrain/24t Coach-1Gear.vsum.json	
+++ b/VectoCoreTest/TestData/Integration/MinimalPowerTrain/24t Coach-1Gear.vsum.json	
@@ -1,7 +1,7 @@
 {
   "Header": {
     "CreatedBy": " ()",
-    "Date": "7/27/2015 1:20:00 PM",
+    "Date": "8/10/2015 4:19:36 PM",
     "AppVersion": "2.2 beta-2",
     "FileVersion": 1
   },
@@ -15,28 +15,28 @@
     "Results": [
       {
         "Job": "24t Coach-1Gear.vecto",
-        "Cycle": "Coach_24t_xshort.vdri",
+        "Cycle": "Coach_24t_InitTest.vdri",
         "Loading": "User-defined Loading",
         "AbortedByError": false,
         "Results": {
           "time": {
-            "Value": 3742,
+            "Value": 11,
             "Unit": "[s]"
           },
           "distance": {
-            "Value": 27.9877739,
+            "Value": 0.055,
             "Unit": "[km]"
           },
           "speed": {
-            "Value": 26.925703,
+            "Value": 18.0,
             "Unit": "[km/h]"
           },
           "∆altitude": {
-            "Value": 795.5166,
+            "Value": 1.56347656,
             "Unit": "[m]"
           },
           "Ppos": {
-            "Value": 61.20518010998078,
+            "Value": 32.686927795410156,
             "Unit": "[kW]"
           },
           "Pneg": {
@@ -45,11 +45,11 @@
           },
           "FC-Map": [
             {
-              "Value": 14577.5771,
+              "Value": 7574.113,
               "Unit": "[g/h]"
             },
             {
-              "Value": 541.4001,
+              "Value": 420.784058,
               "Unit": "[g/km]"
             }
           ],
@@ -75,38 +75,38 @@
           ],
           "CO2": [
             {
-              "Value": 1710.82434,
+              "Value": 1329.67761,
               "Unit": "[g/km]"
             },
             {
-              "Value": 518.431641,
+              "Value": 402.932617,
               "Unit": "[g/tkm]"
             }
           ],
           "FC-Final": [
             {
-              "Value": 541.4001,
+              "Value": 420.784058,
               "Unit": "[g/km]"
             },
             {
-              "Value": 19.7188263,
+              "Value": 15.3257589,
               "Unit": "[l/100tkm]"
             },
             {
-              "Value": 65.07213,
+              "Value": 50.5750046,
               "Unit": "[l/100km]"
             }
           ],
           "PwheelPos": {
-            "Value": 49.734192381411361,
+            "Value": 32.686927795410156,
             "Unit": "[kW]"
           },
           "Pbrake": {
-            "Value": -0.00015377482266938348,
+            "Value": 0.0,
             "Unit": "[kW]"
           },
           "EposICE": {
-            "Value": 63.619384436541132,
+            "Value": 0.099876723819308816,
             "Unit": "[kWh]"
           },
           "EnegICE": {
@@ -114,31 +114,209 @@
             "Unit": "[kWh]"
           },
           "Eair": {
-            "Value": -1.2463524418880196,
+            "Value": -0.00074038388828436528,
             "Unit": "[kWh]"
           },
           "Eroll": {
-            "Value": -9.27612249251869,
+            "Value": -0.018228915797339547,
             "Unit": "[kWh]"
           },
           "Egrad": {
-            "Value": -41.171246251281765,
+            "Value": -0.0809074264102512,
             "Unit": "[kWh]"
           },
           "Eacc": {
-            "Value": -2.3216836982303195E-08,
+            "Value": 0.0,
             "Unit": "[kWh]"
           },
           "Eaux": {
-            "Value": -6.3406110119819639,
+            "Value": 0.0,
             "Unit": "[kWh]"
           },
           "Ebrake": {
-            "Value": -0.00015984038511912028,
+            "Value": 0.0,
             "Unit": "[kWh]"
           },
           "Etransm": {
-            "Value": -5.5850619169569109,
+            "Value": 0.0,
+            "Unit": "[kWh]"
+          },
+          "Eretarder": {
+            "Value": 0.0,
+            "Unit": "[kWh]"
+          },
+          "Etorqueconv": {
+            "Value": 0.0,
+            "Unit": "[kWh]"
+          },
+          "Mass": {
+            "Value": 15700.0,
+            "Unit": "[kg]"
+          },
+          "Loading": {
+            "Value": 3300.0,
+            "Unit": "[kg]"
+          },
+          "a": {
+            "Value": "0",
+            "Unit": "[m/s^2]"
+          },
+          "a_pos": {
+            "Value": "0",
+            "Unit": "[m/s^2]"
+          },
+          "a_neg": {
+            "Value": "0",
+            "Unit": "[m/s^2]"
+          },
+          "Acc.Noise": {
+            "Value": "0",
+            "Unit": "[m/s^2]"
+          },
+          "pAcc": {
+            "Value": "0",
+            "Unit": "[%]"
+          },
+          "pDec": {
+            "Value": "0",
+            "Unit": "[%]"
+          },
+          "pCruise": {
+            "Value": "1",
+            "Unit": "[%]"
+          },
+          "pStop": {
+            "Value": "0",
+            "Unit": "[%]"
+          }
+        }
+      },
+      {
+        "Job": "24t Coach-1Gear.vecto",
+        "Cycle": "1-Gear-Test-dist.vdri",
+        "Loading": "User-defined Loading",
+        "AbortedByError": false,
+        "Results": {
+          "time": {
+            "Value": 4115,
+            "Unit": "[s]"
+          },
+          "distance": {
+            "Value": 16.8069382,
+            "Unit": "[km]"
+          },
+          "speed": {
+            "Value": 14.7035179,
+            "Unit": "[km/h]"
+          },
+          "∆altitude": {
+            "Value": -43.9549942,
+            "Unit": "[m]"
+          },
+          "Ppos": {
+            "Value": 9.0475740111178347,
+            "Unit": "[kW]"
+          },
+          "Pneg": {
+            "Value": -3.499474073180596,
+            "Unit": "[kW]"
+          },
+          "FC-Map": [
+            {
+              "Value": 2978.61377,
+              "Unit": "[g/h]"
+            },
+            {
+              "Value": 202.578308,
+              "Unit": "[g/km]"
+            }
+          ],
+          "FC-AUXc": [
+            {
+              "Value": "-",
+              "Unit": "[g/h]"
+            },
+            {
+              "Value": "-",
+              "Unit": "[g/km]"
+            }
+          ],
+          "FC-WHTCc": [
+            {
+              "Value": "-",
+              "Unit": "[g/h]"
+            },
+            {
+              "Value": "-",
+              "Unit": "[g/km]"
+            }
+          ],
+          "CO2": [
+            {
+              "Value": 640.147461,
+              "Unit": "[g/km]"
+            },
+            {
+              "Value": 193.984085,
+              "Unit": "[g/tkm]"
+            }
+          ],
+          "FC-Final": [
+            {
+              "Value": 202.578308,
+              "Unit": "[g/km]"
+            },
+            {
+              "Value": 7.378289,
+              "Unit": "[l/100tkm]"
+            },
+            {
+              "Value": 24.3483543,
+              "Unit": "[l/100km]"
+            }
+          ],
+          "PwheelPos": {
+            "Value": 9.0428773684750787,
+            "Unit": "[kW]"
+          },
+          "Pbrake": {
+            "Value": -2.4110769179148344,
+            "Unit": "[kW]"
+          },
+          "EposICE": {
+            "Value": 10.341879737708304,
+            "Unit": "[kWh]"
+          },
+          "EnegICE": {
+            "Value": -4.00009328087171,
+            "Unit": "[kWh]"
+          },
+          "Eair": {
+            "Value": -0.20126442350300849,
+            "Unit": "[kWh]"
+          },
+          "Eroll": {
+            "Value": -5.5710252431862886,
+            "Unit": "[kWh]"
+          },
+          "Egrad": {
+            "Value": 2.2748300643498078,
+            "Unit": "[kWh]"
+          },
+          "Eacc": {
+            "Value": -0.088332002825207187,
+            "Unit": "[kWh]"
+          },
+          "Eaux": {
+            "Value": 0.0,
+            "Unit": "[kWh]"
+          },
+          "Ebrake": {
+            "Value": -2.7559948658943174,
+            "Unit": "[kWh]"
+          },
+          "Etransm": {
+            "Value": 0.0,
             "Unit": "[kWh]"
           },
           "Eretarder": {
@@ -158,35 +336,35 @@
             "Unit": "[kg]"
           },
           "a": {
-            "Value": "-7.964277E-12",
+            "Value": "0.001350074",
             "Unit": "[m/s^2]"
           },
           "a_pos": {
-            "Value": "0.6693458",
+            "Value": "0.6603086",
             "Unit": "[m/s^2]"
           },
           "a_neg": {
-            "Value": "-0.2514017",
+            "Value": "-0.2358637",
             "Unit": "[m/s^2]"
           },
           "Acc.Noise": {
-            "Value": "0.09899588",
+            "Value": "0.0425384",
             "Unit": "[m/s^2]"
           },
           "pAcc": {
-            "Value": "0.01122394",
+            "Value": "0.00218712",
             "Unit": "[%]"
           },
           "pDec": {
-            "Value": "0.02912881",
+            "Value": "0.0007290401",
             "Unit": "[%]"
           },
           "pCruise": {
-            "Value": "0.9166221",
+            "Value": "0.9965978",
             "Unit": "[%]"
           },
           "pStop": {
-            "Value": "0.04302512",
+            "Value": "0.0004860267",
             "Unit": "[%]"
           }
         }
diff --git a/VectoCoreTest/TestData/Integration/MinimalPowerTrain/24t Coach-1Gear_1-Gear-StopTest-dist.vmod b/VectoCoreTest/TestData/Integration/MinimalPowerTrain/24t Coach-1Gear_1-Gear-StopTest-dist.vmod
new file mode 100644
index 0000000000000000000000000000000000000000..30124f45aa733decb2413859d21299b04e97fe5e
--- /dev/null
+++ b/VectoCoreTest/TestData/Integration/MinimalPowerTrain/24t Coach-1Gear_1-Gear-StopTest-dist.vmod	
@@ -0,0 +1,4158 @@
+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,3.11656284332275,11.2196262359619,12.8000000953674,-0.5990698,-0.02023797,600.9429,-148.0047,-148.0047,1284.4,-148.0047,-9.314025,80.82804,-9.314025,-9.314025,0,0,1,0,0,0,0,-36.37136,3.720077,0.05867923,-0.1175616,-32.71016,-23.39614,0,-,-
+2.5,5.67047905921936,9.19409837722778,12.8000000953674,-0.5262237,-0.02023797,560,-16.87863,0,1180,-149,-0.9898148,69.19881,-8.737817,0,-0.9898148,0,0,0,0,0,0,-26.18081,3.048475,0.03229064,-0.0963377,-23.19639,-23.19639,1113.721,-,-
+3.5,7.71814703941345,7.37160472869873,12.8000000953674,-0.4862728,-0.02023797,560,0,0,1180,-149,0,69.19881,-8.737817,0,0,0,0,0,0,0,0,-19.39749,2.444193,0.01664314,-0.07724123,-17.0139,-17.0139,1256,-,-
+4.5,9.29910290241241,5.69144110679626,12.8000000953674,-0.4471514,-0.02023797,560,0,0,1180,-149,0,69.19881,-8.737817,0,0,0,0,0,0,0,0,-13.77147,1.887104,0.007659775,-0.05963612,-11.93635,-11.93635,1256,-,-
+5.5,10.4576734304428,4.17085390090942,12.8000000953674,-0.3976194,-0.02023797,560,0,0,1180,-149,0,69.19881,-8.737817,0,0,0,0,0,0,0,0,-8.974208,1.382925,0.003014562,-0.04370308,-7.631972,-7.631972,1256,-,-
+6.5,11.2414137125015,2.82146501541138,12.8000000953674,-0.352041,-0.02023797,560,0,0,1180,-149,0,69.19881,-8.737817,0,0,0,0,0,0,0,0,-5.374914,0.9355094,0.0009331969,-0.0295639,-4.468036,-4.468036,1256,-,-
+7.5,11.698957413435,1.64715732336044,11.146862411499,-0.3003522,-0.02023797,560,0,0,1180,-149,0,69.19881,-8.737817,0,0,0,0,0,0,0,0,-2.67713,0.5461458,0.0001856755,-0.01725926,-2.148058,-2.148058,1256,-,-
+8.5,11.8781868070364,0.645225816965103,7.04714584350586,-0.2562765,-0.02023797,560,0,0,1180,-149,0,69.19881,-8.737817,0,0,0,0,0,0,0,0,-0.894796,0.2139367,1.116052E-05,-0.006760812,-0.687609,-0.687609,1256,-,-
+9.5,11.9037323892117,0.0919640958309174,2.30028390884399,-0.05109116,-0.02023797,560,0,0,1180,-149,0,69.19881,-8.737817,0,0,0,0,0,0,0,0,-0.0254254,0.03049241,3.2315E-08,-0.0009636192,0.00410343,0,1256,-,-
+10.5,11.9037323892117,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,-,-
+11.5,11.9037323892117,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,-,-
+12.5,11.9037323892117,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,-,-
+13.5,11.9037323892117,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,-,-
+14.5,11.9037323892117,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,-,-
+15.5,11.9037323892117,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,-,-
+16.5,11.9037323892117,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,-,-
+17.5,11.9037323892117,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,-,-
+18.5,11.9037323892117,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,-,-
+19.5,11.9037323892117,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,-,-
+20.5,11.9037323892117,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,-,-
+21.5,11.9037323892117,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,-,-
+22.5,11.9037323892117,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,-,-
+23.5,11.9037323892117,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,-,-
+24.5,11.9037323892117,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,-,-
+25.5,11.9037323892117,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,-,-
+26.5,11.9037323892117,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,-,-
+27.5,11.9037323892117,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,-,-
+28.5,11.9037323892117,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,-,-
+29.5,11.9037323892117,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,-,-
+30.5,11.9037323892117,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,-,-
+31.5,11.9037323892117,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,-,-
+32.5,11.9037323892117,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,-,-
+33.5,11.9037323892117,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,-,-
+34.5,11.9037323892117,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,-,-
+35.5,11.9037323892117,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,-,-
+36.5,11.9037323892117,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,-,-
+37.5,11.9037323892117,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,-,-
+38.5,11.9037323892117,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,-,-
+39.5,11.9037323892117,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,-,-
+40.5,11.9037323892117,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,-,-
+41.5,11.9037323892117,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,-,-
+42.5,11.9037323892117,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,-,-
+43.5,11.9037323892117,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,-,-
+44.5,11.9037323892117,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,-,-
+45.5,11.9037323892117,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,-,-
+46.5,11.9037323892117,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,-,-
+47.5,11.9037323892117,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,-,-
+48.5,11.9037323892117,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,-,-
+49.5,11.9037323892117,0,0.680337435007095,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,-,-
+50.5,12.4895658791065,2.10900056362152,7.08033742904663,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,-,-
+51.5,14.3479600250721,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,-,-
+52.5,17.3982982933521,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,-,-
+53.5,20.9538538753986,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,-,-
+54.5,24.5094094574451,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,-,-
+55.5,28.0649650394917,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,-,-
+56.5,31.6205206215382,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,-,-
+57.5,35.1760762035847,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,-,-
+58.5,38.7316317856312,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,-,-
+59.5,42.2871873676777,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,-,-
+60.5,45.8427429497242,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,-,-
+61.5,49.3982985317707,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,-,-
+62.5,52.9538541138172,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,-,-
+63.5,56.5094096958637,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,-,-
+64.5,60.0649652779102,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,-,-
+65.5,63.6205208599567,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,-,-
+66.5,67.1760764420033,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,-,-
+67.5,70.7316320240498,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,-,-
+68.5,74.2871876060963,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,-,-
+69.5,77.8427431881428,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,-,-
+70.5,81.3982987701893,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,-,-
+71.5,84.9538543522358,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,-,-
+72.5,88.5094099342823,12.8000000953674,12.8000000953674,0,-0.2353952,685.5905,38.59876,38.59876,1499.828,-148.4279,2.771193,107.6799,-10.65637,2.771193,0,0,1,0,0,0,0,0,4.244068,0.0871323,-1.560007,2.771193,0,2005.235,-,-
+73.5,92.0649655163288,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,-,-
+74.5,95.6205210983753,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,-,-
+75.5,99.1760766804218,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,-,-
+76.5,102.731632262468,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,-,-
+77.5,106.287187844515,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,-,-
+78.5,109.842743426561,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,-,-
+79.5,113.398299008608,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,-,-
+80.5,116.953854590654,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,-,-
+81.5,120.509410172701,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,-,-
+82.5,124.064965754747,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,-,-
+83.5,127.620521336794,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,-,-
+84.5,131.17607691884,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,-,-
+85.5,134.731632500887,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,-,-
+86.5,138.287188082933,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,-,-
+87.5,141.84274366498,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,-,-
+88.5,145.398299247026,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,-,-
+89.5,148.953854829073,12.8000000953674,12.8000000953674,0,-0.459192,685.5905,17.94058,17.94058,1499.828,-148.4279,1.288041,107.6799,-10.65637,1.288041,0,0,1,0,0,0,0,0,4.244034,0.0871323,-3.043125,1.288041,0,1809.086,-,-
+90.5,152.509410411119,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,-,-
+91.5,156.064965993166,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,-,-
+92.5,159.620521575212,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,-,-
+93.5,163.176077157259,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,-,-
+94.5,166.731632739306,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,-,-
+95.5,170.287188321352,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,-,-
+96.5,173.842743903399,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,-,-
+97.5,177.398299485445,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,-,-
+98.5,180.953855067492,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,-,-
+99.5,184.509410649538,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,-,-
+100.5,188.064966231585,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,-,-
+101.5,191.620521813631,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,-,-
+102.5,195.176077395678,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,-,-
+103.5,198.731632977724,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,-,-
+104.5,202.287188559771,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,-,-
+105.5,205.842744141817,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,-,-
+106.5,209.398299723864,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,-,-
+107.5,212.95385530591,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,-,-
+108.5,216.509410887957,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,-,-
+109.5,220.064966470003,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,-,-
+110.5,223.62052205205,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,-,-
+111.5,227.176077634096,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,-,-
+112.5,230.731633216143,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,-,-
+113.5,234.287188798189,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,-,-
+114.5,237.842744380236,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,-,-
+115.5,241.398299962282,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,-,-
+116.5,244.953855544329,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,-,-
+117.5,248.509411126375,12.8000000953674,12.8000000953674,0,-1.131562,685.5905,-44.12109,-44.12109,1499.828,-148.4279,-3.167668,107.6799,-10.65637,-3.167668,0,0,1,0,0,0,0,0,4.243807,0.0871323,-7.498608,-3.167668,0,1203.79,-,-
+118.5,252.064966708422,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,-,-
+119.5,255.620522290468,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,-,-
+120.5,259.176077872515,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,-,-
+121.5,262.731633454561,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,-,-
+122.5,266.287189036608,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,-,-
+123.5,269.842744618654,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,-,-
+124.5,273.398300200701,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,-,-
+125.5,276.953855782747,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,-,-
+126.5,280.509411364794,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,-,-
+127.5,284.06496694684,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,-,-
+128.5,287.620522528887,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,-,-
+129.5,291.176078110933,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,-,-
+130.5,294.73163369298,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,-,-
+131.5,298.287189275026,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,-,-
+132.5,301.842744857073,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,-,-
+133.5,305.398300439119,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,-,-
+134.5,308.953856021166,12.8000000953674,12.8000000953674,0,-1.357709,685.5905,-64.99294,-64.99294,1499.828,-148.4279,-4.66616,107.6799,-10.65637,-4.66616,0,0,1,0,0,0,0,0,4.243688,0.0871323,-8.996981,-4.66616,0,998.0327,-,-
+135.5,312.509411603212,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,-,-
+136.5,316.064967185259,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,-,-
+137.5,319.620522767305,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,-,-
+138.5,323.176078349352,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,-,-
+139.5,326.731633931398,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,-,-
+140.5,330.287189513445,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,-,-
+141.5,333.842745095491,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,-,-
+142.5,337.398300677538,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,-,-
+143.5,340.953856259584,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,-,-
+144.5,344.509411841631,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,-,-
+145.5,348.064967423677,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,-,-
+146.5,351.620523005724,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,-,-
+147.5,355.17607858777,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,-,-
+148.5,358.731634169817,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,-,-
+149.5,362.287189751863,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,-,-
+150.5,365.84274533391,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,-,-
+151.5,369.398300915957,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,-,-
+152.5,372.953856498003,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,-,-
+153.5,376.50941208005,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,-,-
+154.5,380.064967662096,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,-,-
+155.5,383.620523244143,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,-,-
+156.5,387.176078826189,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,-,-
+157.5,390.731634408236,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,-,-
+158.5,394.287189990282,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,-,-
+159.5,397.842745572329,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,-,-
+160.5,401.398301154375,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,-,-
+161.5,404.953856736422,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,-,-
+162.5,408.509412318468,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,-,-
+163.5,412.064967900515,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,-,-
+164.5,415.620523482561,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,-,-
+165.5,419.176079064608,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,-,-
+166.5,422.731634646654,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,-,-
+167.5,426.287190228701,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,-,-
+168.5,429.842745810747,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,433.398301392794,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,436.95385697484,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,440.509412556887,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,444.064968138933,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,447.62052372098,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,451.176079303026,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,454.731634885073,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,458.287190467119,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,461.842746049166,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,465.398301631212,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,468.953857213259,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,472.509412795305,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,476.064968377352,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,479.620523959398,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,483.176079541445,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,486.731635123491,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,490.287190705538,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,493.842746287584,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,497.398301869631,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,500.953857451677,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,504.509413033724,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,508.06496861577,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,511.620524197817,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,515.176079779863,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,-,-
+193.5,518.73163536191,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,-,-
+194.5,522.287190943956,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,-,-
+195.5,525.842746526003,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,-,-
+196.5,529.398302108049,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,-,-
+197.5,532.953857690096,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,-,-
+198.5,536.509413272142,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,-,-
+199.5,540.064968854189,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,-,-
+200.5,543.620524436235,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,-,-
+201.5,547.176080018282,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,-,-
+202.5,550.731635600328,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,-,-
+203.5,554.287191182375,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,-,-
+204.5,557.842746764421,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,-,-
+205.5,561.398302346468,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,-,-
+206.5,564.953857928514,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,-,-
+207.5,568.509413510561,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,-,-
+208.5,572.064969092608,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,-,-
+209.5,575.620524674654,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,-,-
+210.5,579.176080256701,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,-,-
+211.5,582.731635838747,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,-,-
+212.5,586.287191420794,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,-,-
+213.5,589.84274700284,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,-,-
+214.5,593.398302584887,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,-,-
+215.5,596.953858166933,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,-,-
+216.5,600.50941374898,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,-,-
+217.5,604.064969331026,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,-,-
+218.5,607.620524913073,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,-,-
+219.5,611.176080495119,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,-,-
+220.5,614.731636077166,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,-,-
+221.5,618.287191659212,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,-,-
+222.5,621.842747241259,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,-,-
+223.5,625.398302823305,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,-,-
+224.5,628.953858405352,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,-,-
+225.5,632.509413987398,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,-,-
+226.5,636.064969569445,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,-,-
+227.5,639.620525151491,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,-,-
+228.5,643.176080733538,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,-,-
+229.5,646.731636315584,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,-,-
+230.5,650.287191897631,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,-,-
+231.5,653.842747479677,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,-,-
+232.5,657.398303061724,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,-,-
+233.5,660.95385864377,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,-,-
+234.5,664.509414225817,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,-,-
+235.5,668.064969807863,12.8000000953674,12.8000000953674,0,-1.423288,685.5905,-71.04511,-71.04511,1499.828,-148.4279,-5.100675,107.6799,-10.65637,-5.100675,0,0,1,0,0,0,0,0,4.243649,0.0871323,-9.431457,-5.100675,0,938.3697,-,-
+236.5,671.62052538991,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,-,-
+237.5,675.176080971956,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,-,-
+238.5,678.731636554003,12.8000000953674,12.8000000953674,0,-1.304149,685.5905,-60.04985,-60.04985,1499.828,-148.4279,-4.311272,107.6799,-10.65637,-4.311272,0,0,1,0,0,0,0,0,4.243718,0.0871323,-8.642122,-4.311272,0,1046.762,-,-
+239.5,682.287192136049,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,-,-
+240.5,685.842747718096,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,-,-
+241.5,689.398303300142,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,-,-
+242.5,692.953858882189,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,-,-
+243.5,696.509414464235,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,-,-
+244.5,700.064970046282,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,-,-
+245.5,703.620525628328,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,-,-
+246.5,707.176081210375,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,-,-
+247.5,710.731636792421,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,-,-
+248.5,714.287192374468,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,-,-
+249.5,717.842747956514,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,-,-
+250.5,721.398303538561,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,-,-
+251.5,724.953859120607,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,-,-
+252.5,728.509414702654,12.8000000953674,12.8000000953674,0,-0.6853728,685.5905,-2.937314,-2.937314,1499.828,-148.4279,-0.2108841,107.6799,-10.65637,-0.2108841,0,0,1,0,0,0,0,0,4.243979,0.0871323,-4.541996,-0.2108841,0,1609.784,-,-
+253.5,732.0649702847,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,-,-
+254.5,735.620525866747,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,-,-
+255.5,739.176081448793,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,-,-
+256.5,742.73163703084,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,-,-
+257.5,746.287192612886,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,-,-
+258.5,749.842748194933,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,-,-
+259.5,753.398303776979,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,-,-
+260.5,756.953859359026,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,-,-
+261.5,760.509414941072,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,-,-
+262.5,764.064970523119,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,-,-
+263.5,767.620526105165,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,-,-
+264.5,771.176081687212,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,-,-
+265.5,774.731637269259,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,-,-
+266.5,778.287192851305,12.8000000953674,12.8000000953674,0,-0.06659702,685.5905,54.18018,54.18018,1499.828,-148.4279,3.889859,107.6799,-10.65637,3.889859,0,0,1,0,0,0,0,0,4.244078,0.0871323,-0.4413517,3.889859,0,2153.181,-,-
+267.5,781.842748433352,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,-,-
+268.5,785.398304015398,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,-,-
+269.5,788.953859597445,12.8000000953674,12.8000000953674,0,0.05715825,685.5905,65.60371,65.60371,1499.828,-148.4279,4.71001,107.6799,-10.65637,4.71001,0,0,1,0,0,0,0,0,4.244079,0.0871323,0.3787991,4.71001,0,2261.647,-,-
+270.5,792.509415179491,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,-,-
+271.5,796.064970761538,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,-,-
+272.5,799.620526343584,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,-,-
+273.5,803.176081925631,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,-,-
+274.5,806.731637507677,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,-,-
+275.5,810.287193089724,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,-,-
+276.5,813.84274867177,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,-,-
+277.5,817.398304253817,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,-,-
+278.5,820.953859835863,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,-,-
+279.5,824.50941541791,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,-,-
+280.5,828.064970999956,12.8000000953674,12.8000000953674,0,0.6618051,685.5905,121.4145,121.4145,1499.828,-148.4279,8.716937,107.6799,-10.65637,8.716937,0,0,1,0,0,0,0,0,4.243986,0.0871323,4.385818,8.716937,0,2809.363,-,-
+281.5,831.620526582003,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,-,-
+282.5,835.176082164049,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,-,-
+283.5,838.731637746096,12.8000000953674,12.8000000953674,0,0.9682689,685.5905,149.699,149.699,1499.828,-148.4279,10.74762,107.6799,-10.65637,10.74762,0,0,1,0,0,0,0,0,4.24388,0.0871323,6.416611,10.74762,0,3149.768,-,-
+284.5,842.287193328142,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,-,-
+285.5,845.842748910189,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,-,-
+286.5,849.398304492235,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,-,-
+287.5,852.953860074282,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,-,-
+288.5,856.509415656328,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,-,-
+289.5,860.064971238375,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,-,-
+290.5,863.620526820421,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,-,-
+291.5,867.176082402468,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,-,-
+292.5,870.731637984514,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,-,-
+293.5,874.287193566561,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,-,-
+294.5,877.842749148607,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,-,-
+295.5,881.398304730654,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,-,-
+296.5,884.9538603127,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,-,-
+297.5,888.509415894747,12.8000000953674,12.8000000953674,0,2.228326,685.5905,265.9529,265.9529,1499.828,-148.4279,19.09406,107.6799,-10.65637,19.09406,0,0,1,0,0,0,0,0,4.243026,0.0871323,14.7639,19.09406,0,4460.836,-,-
+298.5,892.064971476793,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,-,-
+299.5,895.62052705884,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,-,-
+300.5,899.176082640886,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,-,-
+301.5,902.731638222933,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,-,-
+302.5,906.287193804979,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,-,-
+303.5,909.842749387026,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,-,-
+304.5,913.398304969072,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,-,-
+305.5,916.953860551119,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,-,-
+306.5,920.509416133165,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,-,-
+307.5,924.064971715212,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,-,-
+308.5,927.620527297258,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,-,-
+309.5,931.176082879305,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,-,-
+310.5,934.731638461351,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,-,-
+311.5,938.287194043398,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,-,-
+312.5,941.842749625444,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,-,-
+313.5,945.398305207491,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,-,-
+314.5,948.953860789537,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,-,-
+315.5,952.509416371584,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,-,-
+316.5,956.06497195363,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,-,-
+317.5,959.620527535677,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,-,-
+318.5,963.176083117723,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,-,-
+319.5,966.73163869977,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,-,-
+320.5,970.287194281816,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,-,-
+321.5,973.842749863863,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,-,-
+322.5,977.39830544591,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,-,-
+323.5,980.953861027956,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,-,-
+324.5,984.509416610003,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,-,-
+325.5,988.064972192049,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,-,-
+326.5,991.620527774096,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,-,-
+327.5,994.985326558352,12.1132756233215,12.8000000953674,-0.3815138,2.758554,648.8083,-68.39668,-53.35342,1406.217,-148.244,-4.647079,95.54269,-10.07215,-3.624994,-1.022085,0,1,0,0,0,0,-25.0078,4.014855,0.0738472,17.2941,-3.624994,0,887.2357,-,-
+328.5,997.961236268282,10.7132749557495,11.3999994277954,-0.396264,2.758554,573.8218,-99.59203,-67.8206,1215.246,-148.6544,-5.984533,73.0247,-8.932717,-4.075373,-1.90916,0,1,0,0,0,0,-22.97262,3.550836,0.05108766,15.29532,-4.075373,0,413.5732,-,-
+329.5,1000.7390139401,9.99999961853027,9.99999961853027,0,2.758554,593.1891,291.4362,283.8594,1264.632,-148.1703,18.10361,78.55721,-9.204132,17.63295,0.4706597,0,1,0,0,0,0,0,3.314426,0.04154791,14.27698,17.63295,0,4301.802,-,-
+330.5,1003.51679161191,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,-,-
+331.5,1006.29456928372,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,-,-
+332.5,1009.07234695554,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,-,-
+333.5,1011.85012462735,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,-,-
+334.5,1014.62790229917,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,-,-
+335.5,1017.40567997098,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,-,-
+336.5,1020.18345764279,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,-,-
+337.5,1022.96123531461,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,-,-
+338.5,1025.73901298642,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,-,-
+339.5,1028.51679065824,9.99999961853027,9.99999961853027,0,2.810416,593.1891,288.1763,288.1763,1264.632,-148.1703,17.90111,78.55721,-9.204132,17.90111,0,0,1,0,0,0,0,0,3.314378,0.04154791,14.54519,17.90111,0,4266.921,-,-
+340.5,1031.29456833005,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,-,-
+341.5,1034.07234600186,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,-,-
+342.5,1036.85012367368,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,-,-
+343.5,1039.62790134549,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,-,-
+344.5,1042.40567901731,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,-,-
+345.5,1045.18345668912,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,-,-
+346.5,1047.96123436093,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,-,-
+347.5,1050.73901203275,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,-,-
+348.5,1053.51678970456,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,-,-
+349.5,1056.29456737638,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,-,-
+350.5,1059.07234504819,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,-,-
+351.5,1061.85012272,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,-,-
+352.5,1064.62790039182,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,-,-
+353.5,1067.40567806363,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,-,-
+354.5,1070.18345573545,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,-,-
+355.5,1072.96123340726,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,-,-
+356.5,1075.73901107907,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,-,-
+357.5,1078.51678875089,9.99999961853027,9.99999961853027,0,2.056239,593.1891,225.3827,225.3827,1264.632,-148.1703,14.00046,78.55721,-9.204132,14.00046,0,0,1,0,0,0,0,0,3.314986,0.04154791,10.64393,14.00046,0,3596.851,-,-
+358.5,1081.2945664227,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,-,-
+359.5,1084.07234409451,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,-,-
+360.5,1086.85012176633,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,-,-
+361.5,1089.62789943814,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,-,-
+362.5,1092.40567710996,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,-,-
+363.5,1095.18345478177,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,-,-
+364.5,1097.96123245358,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,-,-
+365.5,1100.7390101254,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,-,-
+366.5,1103.51678779721,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,-,-
+367.5,1106.29456546903,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,-,-
+368.5,1109.07234314084,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,-,-
+369.5,1111.85012081265,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,-,-
+370.5,1114.62789848447,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,-,-
+371.5,1117.40567615628,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,-,-
+372.5,1120.1834538281,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,-,-
+373.5,1122.96123149991,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,-,-
+374.5,1125.73900917172,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,-,-
+375.5,1128.51678684354,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,-,-
+376.5,1131.29456451535,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,-,-
+377.5,1134.07234218717,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,-,-
+378.5,1136.85011985898,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,-,-
+379.5,1139.62789753079,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,-,-
+380.5,1142.40567520261,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,-,-
+381.5,1145.18345287442,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,-,-
+382.5,1147.96123054624,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,-,-
+383.5,1150.73900821805,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,-,-
+384.5,1153.51678588986,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,-,-
+385.5,1156.29456356168,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,-,-
+386.5,1159.07234123349,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,-,-
+387.5,1161.85011890531,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,-,-
+388.5,1164.62789657712,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,-,-
+389.5,1167.40567424893,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,-,-
+390.5,1170.18345192075,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,-,-
+391.5,1172.96122959256,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,-,-
+392.5,1175.73900726438,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,-,-
+393.5,1178.51678493619,9.99999961853027,9.99999961853027,0,1.619056,593.1891,188.9669,188.9669,1264.632,-148.1703,11.73836,78.55721,-9.204132,11.73836,0,0,1,0,0,0,0,0,3.315252,0.04154791,8.381561,11.73836,0,3225.827,-,-
+394.5,1181.294562608,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,-,-
+395.5,1184.07234027982,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,-,-
+396.5,1186.85011795163,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,-,-
+397.5,1189.62789562345,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,-,-
+398.5,1192.40567329526,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,-,-
+399.5,1195.18345096707,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,-,-
+400.5,1197.96122863889,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,-,-
+401.5,1200.7390063107,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,-,-
+402.5,1203.51678398252,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,-,-
+403.5,1206.29456165433,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,-,-
+404.5,1209.07233932614,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,-,-
+405.5,1211.85011699796,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,-,-
+406.5,1214.62789466977,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,-,-
+407.5,1217.40567234159,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,-,-
+408.5,1220.1834500134,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,-,-
+409.5,1222.96122768521,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,-,-
+410.5,1225.73900535703,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,-,-
+411.5,1228.51678302884,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,-,-
+412.5,1231.29456070066,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,-,-
+413.5,1234.07233837247,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,-,-
+414.5,1236.85011604428,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,-,-
+415.5,1239.6278937161,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,-,-
+416.5,1242.40567138791,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,-,-
+417.5,1245.18344905972,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,-,-
+418.5,1247.96122673154,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,-,-
+419.5,1250.73900440335,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,-,-
+420.5,1253.51678207517,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,-,-
+421.5,1256.29455974698,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,-,-
+422.5,1259.07233741879,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,-,-
+423.5,1261.85011509061,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,-,-
+424.5,1264.62789276242,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,-,-
+425.5,1267.40567043424,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,-,-
+426.5,1270.18344810605,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,-,-
+427.5,1272.96122577786,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,-,-
+428.5,1275.73900344968,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,-,-
+429.5,1278.51678112149,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,-,-
+430.5,1281.29455879331,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,-,-
+431.5,1284.07233646512,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,-,-
+432.5,1286.85011413693,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,-,-
+433.5,1289.62789180875,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,-,-
+434.5,1292.40566948056,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,-,-
+435.5,1295.18344715238,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,-,-
+436.5,1297.96122482419,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,-,-
+437.5,1300.739002496,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,-,-
+438.5,1303.51678016782,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,-,-
+439.5,1306.29455783963,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,-,-
+440.5,1309.07233551145,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,-,-
+441.5,1311.85011318326,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,-,-
+442.5,1314.62789085507,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,-,-
+443.5,1317.40566852689,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,-,-
+444.5,1320.1834461987,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,-,-
+445.5,1322.96122387052,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,-,-
+446.5,1325.73900154233,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,-,-
+447.5,1328.51677921414,9.99999961853027,9.99999961853027,0,0.9786414,593.1891,135.6075,135.6075,1264.632,-148.1703,8.423749,78.55721,-9.204132,8.423749,0,0,1,0,0,0,0,0,3.315528,0.04154791,5.066673,8.423749,0,2719.179,-,-
+448.5,1331.29455688596,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,-,-
+449.5,1334.07233455777,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,-,-
+450.5,1336.85011222959,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,-,-
+451.5,1339.6278899014,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,-,-
+452.5,1342.40566757321,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,-,-
+453.5,1345.18344524503,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,-,-
+454.5,1347.96122291684,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,-,-
+455.5,1350.73900058866,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,-,-
+456.5,1353.51677826047,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,-,-
+457.5,1356.29455593228,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,-,-
+458.5,1359.0723336041,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,1361.85011127591,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,1364.62788894773,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,1367.40566661954,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,1370.18344429135,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,1372.96122196317,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,1375.73899963498,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,1378.5167773068,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,1381.29455497861,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,1384.07233265042,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,1386.85011032224,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,1389.62788799405,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,1392.40566566586,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,1395.18344333768,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,1397.96122100949,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,1400.73899868131,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,1403.51677635312,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,1406.29455402493,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,1409.07233169675,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,1411.85010936856,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,1414.62788704038,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,1417.40566471219,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,1420.183442384,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,1422.96122005582,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,1425.73899772763,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,1428.51677539945,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,1431.29455307126,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,1434.07233074307,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,1436.85010841489,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,1439.6278860867,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,1442.40566375852,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,1445.18344143033,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,1447.96121910214,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,1450.73899677396,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,1453.51677444577,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,1456.29455211759,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,1459.0723297894,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,1461.85010746121,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,1464.62788513303,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,1467.40566280484,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,1470.18344047666,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,1472.96121814847,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,1475.73899582028,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,1478.5167734921,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,1481.29455116391,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,1484.07232883573,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,1486.85010650754,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,1489.62788417935,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,1492.40566185117,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,1495.18343952298,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,1497.9612171948,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,1500.73899486661,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,1503.51677253842,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,1506.29455021024,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,1509.07232788205,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,1511.85010555387,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,1514.62788322568,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,1517.40566089749,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,1520.18343856931,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,1522.96121624112,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,1525.73899391294,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,1528.51677158475,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,1531.29454925656,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,1534.07232692838,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,1536.85010460019,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,-,-
+523.5,1539.62788227201,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,-,-
+524.5,1542.40565994382,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,-,-
+525.5,1545.18343761563,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,-,-
+526.5,1547.96121528745,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,-,-
+527.5,1550.73899295926,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,-,-
+528.5,1553.51677063107,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,-,-
+529.5,1556.29454830289,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,-,-
+530.5,1559.0723259747,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,-,-
+531.5,1561.85010364652,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,-,-
+532.5,1564.62788131833,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,-,-
+533.5,1567.40565899014,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,-,-
+534.5,1570.18343666196,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,-,-
+535.5,1572.96121433377,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,-,-
+536.5,1575.73899200559,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,-,-
+537.5,1578.5167696774,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,-,-
+538.5,1581.29454734921,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,-,-
+539.5,1584.07232502103,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,-,-
+540.5,1586.85010269284,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,-,-
+541.5,1589.62788036466,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,-,-
+542.5,1592.40565803647,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,-,-
+543.5,1595.18343570828,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,-,-
+544.5,1597.9612133801,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,-,-
+545.5,1600.73899105191,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,-,-
+546.5,1603.51676872373,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,-,-
+547.5,1606.29454639554,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,-,-
+548.5,1609.07232406735,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,-,-
+549.5,1611.85010173917,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,-,-
+550.5,1614.62787941098,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,-,-
+551.5,1617.4056570828,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,-,-
+552.5,1620.18343475461,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,-,-
+553.5,1622.96121242642,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,-,-
+554.5,1625.73899009824,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,-,-
+555.5,1628.51676777005,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,-,-
+556.5,1631.29454544187,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,-,-
+557.5,1634.07232311368,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,-,-
+558.5,1636.85010078549,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,-,-
+559.5,1639.62787845731,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,-,-
+560.5,1642.40565612912,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,-,-
+561.5,1645.18343380094,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,-,-
+562.5,1647.96121147275,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,-,-
+563.5,1650.73898914456,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,-,-
+564.5,1653.51676681638,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,-,-
+565.5,1656.29454448819,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,-,-
+566.5,1659.07232216001,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,-,-
+567.5,1661.85009983182,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,-,-
+568.5,1664.62787750363,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,-,-
+569.5,1667.40565517545,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,-,-
+570.5,1670.18343284726,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,-,-
+571.5,1672.96121051908,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,-,-
+572.5,1675.73898819089,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,-,-
+573.5,1678.5167658627,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,-,-
+574.5,1681.29454353452,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,-,-
+575.5,1684.07232120633,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,-,-
+576.5,1686.85009887815,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,-,-
+577.5,1689.62787654996,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,-,-
+578.5,1692.40565422177,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,-,-
+579.5,1695.18343189359,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,-,-
+580.5,1697.9612095654,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,-,-
+581.5,1700.73898723722,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,-,-
+582.5,1703.51676490903,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,-,-
+583.5,1706.29454258084,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,-,-
+584.5,1709.07232025266,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,-,-
+585.5,1711.85009792447,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,-,-
+586.5,1714.62787559628,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,-,-
+587.5,1717.4056532681,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,-,-
+588.5,1720.18343093991,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,-,-
+589.5,1722.96120861173,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,-,-
+590.5,1725.73898628354,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,-,-
+591.5,1728.51676395535,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,-,-
+592.5,1731.29454162717,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,-,-
+593.5,1734.07231929898,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,-,-
+594.5,1736.8500969708,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,-,-
+595.5,1739.62787464261,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,-,-
+596.5,1742.40565231442,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,-,-
+597.5,1745.18342998624,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,-,-
+598.5,1747.96120765805,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,-,-
+599.5,1750.73898532987,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,-,-
+600.5,1753.51676300168,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,-,-
+601.5,1756.29454067349,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,-,-
+602.5,1759.07231834531,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,-,-
+603.5,1761.85009601712,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,-,-
+604.5,1764.62787368894,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,-,-
+605.5,1767.40565136075,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,-,-
+606.5,1770.18342903256,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,-,-
+607.5,1772.96120670438,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,-,-
+608.5,1775.73898437619,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,-,-
+609.5,1778.51676204801,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,-,-
+610.5,1781.29453971982,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,-,-
+611.5,1784.07231739163,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,-,-
+612.5,1786.85009506345,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,-,-
+613.5,1789.62787273526,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,-,-
+614.5,1792.40565040708,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,-,-
+615.5,1795.18342807889,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,-,-
+616.5,1797.9612057507,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,-,-
+617.5,1800.73898342252,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,-,-
+618.5,1803.51676109433,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,-,-
+619.5,1806.29453876615,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,-,-
+620.5,1809.07231643796,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,1811.85009410977,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,1814.62787178159,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,1817.4056494534,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,-,-
+624.5,1820.18342712522,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,-,-
+625.5,1822.96120479703,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,-,-
+626.5,1825.73898246884,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,-,-
+627.5,1828.51676014066,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,-,-
+628.5,1831.29453781247,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,-,-
+629.5,1834.07231548429,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,-,-
+630.5,1836.8500931561,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,-,-
+631.5,1839.62787082791,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,-,-
+632.5,1842.40564849973,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,-,-
+633.5,1845.18342617154,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,-,-
+634.5,1847.96120384336,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,-,-
+635.5,1850.73898151517,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,-,-
+636.5,1853.51675918698,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,-,-
+637.5,1856.2945368588,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,-,-
+638.5,1859.07231453061,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,-,-
+639.5,1861.85009220243,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,-,-
+640.5,1864.62786987424,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,-,-
+641.5,1867.40564754605,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,-,-
+642.5,1870.18342521787,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,-,-
+643.5,1872.96120288968,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,-,-
+644.5,1875.73898056149,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,-,-
+645.5,1878.51675823331,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,-,-
+646.5,1881.29453590512,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,-,-
+647.5,1884.07231357694,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,-,-
+648.5,1886.85009124875,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,-,-
+649.5,1889.62786892056,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,-,-
+650.5,1892.40564659238,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,-,-
+651.5,1895.18342426419,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,-,-
+652.5,1897.96120193601,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,-,-
+653.5,1900.73897960782,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,-,-
+654.5,1903.51675727963,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,-,-
+655.5,1906.29453495145,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,-,-
+656.5,1909.07231262326,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,-,-
+657.5,1911.85009029508,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,-,-
+658.5,1914.62786796689,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,-,-
+659.5,1917.4056456387,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,-,-
+660.5,1920.18342331052,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,-,-
+661.5,1922.96120098233,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,-,-
+662.5,1925.73897865415,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,-,-
+663.5,1928.51675632596,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,-,-
+664.5,1931.29453399777,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,-,-
+665.5,1934.07231166959,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,-,-
+666.5,1936.8500893414,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,-,-
+667.5,1939.62786701322,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,-,-
+668.5,1942.40564468503,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,-,-
+669.5,1945.18342235684,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,-,-
+670.5,1947.96120002866,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,-,-
+671.5,1950.73897770047,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,-,-
+672.5,1953.51675537229,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,-,-
+673.5,1956.2945330441,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,-,-
+674.5,1959.07231071591,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,-,-
+675.5,1961.85008838773,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,-,-
+676.5,1964.62786605954,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,-,-
+677.5,1967.40564373136,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,-,-
+678.5,1970.18342140317,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,-,-
+679.5,1972.96119907498,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,-,-
+680.5,1975.7389767468,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,-,-
+681.5,1978.51675441861,9.99999961853027,9.99999961853027,0,0.68255,593.1891,110.9326,110.9326,1264.632,-148.1703,6.890978,78.55721,-9.204132,6.890978,0,0,1,0,0,0,0,0,3.315609,0.04154791,3.53382,6.890978,0,2484.891,-,-
+682.5,1981.29453209043,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,-,-
+683.5,1984.07230976224,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,-,-
+684.5,1986.85008743405,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,-,-
+685.5,1989.62786510587,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,-,-
+686.5,1992.40564277768,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,-,-
+687.5,1995.1834204495,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,-,-
+688.5,1997.96119812131,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,-,-
+689.5,2000.73897579312,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,-,-
+690.5,2003.51675346494,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,-,-
+691.5,2006.29453113675,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,-,-
+692.5,2009.07230880857,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,-,-
+693.5,2011.85008648038,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,-,-
+694.5,2014.62786415219,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,-,-
+695.5,2017.40564182401,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,-,-
+696.5,2020.18341949582,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,-,-
+697.5,2022.96119716764,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,-,-
+698.5,2025.73897483945,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,-,-
+699.5,2028.51675251126,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,-,-
+700.5,2031.29453018308,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,-,-
+701.5,2034.07230785489,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,-,-
+702.5,2036.8500855267,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,-,-
+703.5,2039.62786319852,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,-,-
+704.5,2042.40564087033,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,-,-
+705.5,2045.18341854215,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,-,-
+706.5,2047.96119621396,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,-,-
+707.5,2050.73897388577,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,-,-
+708.5,2053.51675155759,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,-,-
+709.5,2056.2945292294,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,-,-
+710.5,2059.07230690122,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,-,-
+711.5,2061.85008457303,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,-,-
+712.5,2064.62786224484,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,-,-
+713.5,2067.40563991666,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,-,-
+714.5,2070.18341758847,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,-,-
+715.5,2072.96119526029,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,-,-
+716.5,2075.7389729321,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,-,-
+717.5,2078.51675060391,9.99999961853027,9.99999961853027,0,0.8362995,593.1891,123.7456,123.7456,1264.632,-148.1703,7.686908,78.55721,-9.204132,7.686908,0,0,1,0,0,0,0,0,3.315571,0.04154791,4.329789,7.686908,0,2606.551,-,-
+718.5,2081.29452827573,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,-,-
+719.5,2084.07230594754,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,-,-
+720.5,2086.85008361936,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,-,-
+721.5,2089.62786129117,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,-,-
+722.5,2092.40563896298,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,-,-
+723.5,2095.1834166348,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,-,-
+724.5,2097.96119430661,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,-,-
+725.5,2100.73897197843,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,-,-
+726.5,2103.51674965024,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,-,-
+727.5,2106.29452732205,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,-,-
+728.5,2109.07230499387,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,-,-
+729.5,2111.85008266568,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,-,-
+730.5,2114.6278603375,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,-,-
+731.5,2117.40563800931,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,-,-
+732.5,2120.18341568112,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,-,-
+733.5,2122.96119335294,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,-,-
+734.5,2125.73897102475,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,-,-
+735.5,2128.51674869657,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,-,-
+736.5,2131.29452636838,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,-,-
+737.5,2134.07230404019,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,-,-
+738.5,2136.85008171201,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,-,-
+739.5,2139.62785938382,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,-,-
+740.5,2142.40563705564,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,-,-
+741.5,2145.18341472745,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,-,-
+742.5,2147.96119239926,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,-,-
+743.5,2150.73897007108,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,-,-
+744.5,2153.51674774289,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,-,-
+745.5,2156.29452541471,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,-,-
+746.5,2159.07230308652,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,-,-
+747.5,2161.85008075833,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,-,-
+748.5,2164.62785843015,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,-,-
+749.5,2167.40563610196,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,-,-
+750.5,2170.18341377378,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,-,-
+751.5,2172.96119144559,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,-,-
+752.5,2175.7389691174,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,-,-
+753.5,2178.51674678922,9.99999961853027,9.99999961853027,0,0.1796423,593.1891,69.01837,69.01837,1264.632,-148.1703,4.287326,78.55721,-9.204132,4.287326,0,0,1,0,0,0,0,0,3.315681,0.04154791,0.9300966,4.287326,0,2086.916,-,-
+754.5,2181.29452446103,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,-,-
+755.5,2184.07230213284,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,-,-
+756.5,2186.85007980466,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,-,-
+757.5,2189.62785747647,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,-,-
+758.5,2192.40563514829,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,-,-
+759.5,2195.1834128201,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,-,-
+760.5,2197.96119049191,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,-,-
+761.5,2200.73896816373,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,2203.51674583554,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,2206.29452350736,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,2209.07230117917,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,2211.85007885098,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,2214.6278565228,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,2217.40563419461,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,2220.18341186643,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,2222.96118953824,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,2225.73896721005,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,2228.51674488187,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,2231.29452255368,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,2234.0723002255,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,2236.85007789731,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,2239.62785556912,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,2242.40563324094,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,2245.18341091275,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,2247.96118858457,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,2250.73896625638,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,2253.51674392819,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,2256.29452160001,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,2259.07229927182,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,2261.85007694364,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,2264.62785461545,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,2267.40563228726,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,2270.18340995908,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,2272.96118763089,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,2275.73896530271,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,2278.51674297452,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,2281.29452064633,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,2284.07229831815,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,2286.85007598996,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,2289.62785366178,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,2292.40563133359,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,2295.1834090054,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,2297.96118667722,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,2300.73896434903,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,2303.51674202085,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,2306.29451969266,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,2309.07229736447,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,2311.85007503629,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,2314.6278527081,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,2317.40563037992,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,2320.18340805173,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,2322.96118572354,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,2325.73896339536,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,2328.51674106717,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,2331.29451873899,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,2334.0722964108,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,2336.85007408261,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,2339.62785175443,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,2342.40562942624,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,2345.18340709805,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,2347.96118476987,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,2350.73896244168,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,2353.5167401135,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,2356.29451778531,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,2359.07229545712,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,2361.85007312894,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,2364.62785080075,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,2367.40562847257,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,2370.18340614438,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,2372.96118381619,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,2375.73896148801,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,2378.51673915982,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,2381.29451683164,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,2384.07229450345,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,2386.85007217526,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,2389.62784984708,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,2392.40562751889,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,2395.18340519071,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,2397.96118286252,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,2400.73896053433,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,2403.51673820615,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,2406.29451587796,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,2409.07229354978,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,2411.85007122159,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,2414.6278488934,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,2417.40562656522,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,2420.18340423703,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,2422.96118190885,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,2425.73895958066,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,2428.51673725247,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,2431.29451492429,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,2434.0722925961,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,2436.85007026792,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,2439.62784793973,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,2442.40562561154,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,2445.18340328336,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,2447.96118095517,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,2450.73895862699,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,2453.5167362988,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,2456.29451397061,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,2459.07229164243,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,2461.85006931424,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,2464.62784698606,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,2467.40562465787,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,2470.18340232968,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,2472.9611800015,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,2475.73895767331,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,2478.51673534513,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,2481.29451301694,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,2484.07229068875,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,2486.85006836057,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,2489.62784603238,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,2492.4056237042,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,2495.18340137601,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,2497.96117904782,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,2500.73895671964,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,2503.51673439145,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,2506.29451206326,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,2509.07228973508,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,2511.85006740689,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,2514.62784507871,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,2517.40562275052,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,2520.18340042233,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,2522.96117809415,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,2525.73895576596,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,2528.51673343778,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,2531.29451110959,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,2534.0722887814,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,2536.85006645322,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,2539.62784412503,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,2542.40562179685,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,2545.18339946866,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,2547.96117714047,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,2550.73895481229,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,2553.5167324841,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,2556.29451015592,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,2559.07228782773,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,2561.85006549954,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,2564.62784317136,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,2567.40562084317,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,2570.18339851499,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,2572.9611761868,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,2575.73895385861,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,2578.51673153043,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,2581.29450920224,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,2584.07228687406,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,2586.85006454587,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,2589.62784221768,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,2592.4056198895,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,2595.18339756131,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,2597.96117523313,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,2600.73895290494,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,2603.51673057675,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,2606.29450824857,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,2609.07228592038,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,2611.8500635922,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,2614.62784126401,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,2617.40561893582,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,2620.18339660764,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,2622.96117427945,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,2625.73895195127,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,2628.51672962308,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,2631.29450729489,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,2634.07228496671,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,2636.85006263852,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,2639.62784031034,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,2642.40561798215,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,2645.18339565396,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,2647.96117332578,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,2650.73895099759,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,2653.51672866941,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,2656.29450634122,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,2659.07228401303,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,2661.85006168485,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,2664.62783935666,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,2667.40561702847,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,2670.18339470029,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,2672.9611723721,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,2675.73895004392,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,2678.51672771573,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,-,-
+934.5,2681.29450538754,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,-,-
+935.5,2684.07228305936,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,-,-
+936.5,2686.85006073117,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,-,-
+937.5,2689.62783840299,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,-,-
+938.5,2692.4056160748,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,-,-
+939.5,2695.18339374661,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,-,-
+940.5,2697.96117141843,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,-,-
+941.5,2700.73894909024,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,-,-
+942.5,2703.51672676206,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,-,-
+943.5,2706.29450443387,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,-,-
+944.5,2709.07228210568,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,-,-
+945.5,2711.8500597775,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,-,-
+946.5,2714.62783744931,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,-,-
+947.5,2717.40561512113,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,-,-
+948.5,2720.18339279294,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,-,-
+949.5,2722.96117046475,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,-,-
+950.5,2725.73894813657,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,-,-
+951.5,2728.51672580838,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,-,-
+952.5,2731.2945034802,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,-,-
+953.5,2734.07228115201,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,-,-
+954.5,2736.85005882382,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,-,-
+955.5,2739.62783649564,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,-,-
+956.5,2742.40561416745,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,-,-
+957.5,2745.18339183927,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,-,-
+958.5,2747.96116951108,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,-,-
+959.5,2750.73894718289,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,-,-
+960.5,2753.51672485471,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,-,-
+961.5,2756.29450252652,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,-,-
+962.5,2759.07228019834,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,-,-
+963.5,2761.85005787015,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,-,-
+964.5,2764.62783554196,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,-,-
+965.5,2767.40561321378,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,-,-
+966.5,2770.18339088559,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,-,-
+967.5,2772.96116855741,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,-,-
+968.5,2775.73894622922,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,-,-
+969.5,2778.51672390103,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,-,-
+970.5,2781.29450157285,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,-,-
+971.5,2784.07227924466,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,-,-
+972.5,2786.85005691648,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,-,-
+973.5,2789.62783458829,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,-,-
+974.5,2792.4056122601,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,-,-
+975.5,2795.18338993192,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,-,-
+976.5,2797.96116760373,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,-,-
+977.5,2800.73894527555,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,-,-
+978.5,2803.51672294736,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,-,-
+979.5,2806.29450061917,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,-,-
+980.5,2809.07227829099,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,-,-
+981.5,2811.8500559628,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,-,-
+982.5,2814.62783363461,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,-,-
+983.5,2817.40561130643,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,-,-
+984.5,2820.18338897824,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,-,-
+985.5,2822.96116665006,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,-,-
+986.5,2825.73894432187,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,-,-
+987.5,2828.51672199368,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,-,-
+988.5,2831.2944996655,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,-,-
+989.5,2834.07227733731,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,-,-
+990.5,2836.85005500913,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,-,-
+991.5,2839.62783268094,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,-,-
+992.5,2842.40561035275,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,-,-
+993.5,2845.18338802457,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,-,-
+994.5,2847.96116569638,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,-,-
+995.5,2850.7389433682,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,-,-
+996.5,2853.51672104001,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,-,-
+997.5,2856.29449871182,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,-,-
+998.5,2859.07227638364,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,-,-
+999.5,2861.85005405545,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,-,-
+1000.5,2864.62783172727,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,-,-
+1001.5,2867.40560939908,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,-,-
+1002.5,2870.18338707089,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,-,-
+1003.5,2872.96116474271,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,-,-
+1004.5,2875.73894241452,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,-,-
+1005.5,2878.51672008634,9.99999961853027,9.99999961853027,0,0.3767022,593.1891,85.44254,85.44254,1264.632,-148.1703,5.307572,78.55721,-9.204132,5.307572,0,0,1,0,0,0,0,0,3.315663,0.04154791,1.950361,5.307572,0,2242.863,-,-
+1006.5,2881.29449775815,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,-,-
+1007.5,2884.07227542996,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,-,-
+1008.5,2886.85005310178,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,-,-
+1009.5,2889.62783077359,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,-,-
+1010.5,2892.40560844541,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,-,-
+1011.5,2895.18338611722,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,-,-
+1012.5,2897.96116378903,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,-,-
+1013.5,2900.73894146085,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,-,-
+1014.5,2903.51671913266,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,-,-
+1015.5,2906.29449680448,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,-,-
+1016.5,2909.07227447629,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,-,-
+1017.5,2911.8500521481,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,-,-
+1018.5,2914.62782981992,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,-,-
+1019.5,2917.40560749173,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,-,-
+1020.5,2920.18338516355,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,-,-
+1021.5,2922.96116283536,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,-,-
+1022.5,2925.73894050717,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,-,-
+1023.5,2928.51671817899,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,-,-
+1024.5,2931.2944958508,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,-,-
+1025.5,2934.07227352262,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,-,-
+1026.5,2936.85005119443,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,-,-
+1027.5,2939.62782886624,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,-,-
+1028.5,2942.40560653806,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,-,-
+1029.5,2945.18338420987,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,-,-
+1030.5,2947.96116188169,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,-,-
+1031.5,2950.7389395535,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,-,-
+1032.5,2953.51671722531,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,-,-
+1033.5,2956.29449489713,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,-,-
+1034.5,2959.07227256894,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,2961.85005024076,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,2964.62782791257,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,2967.40560558438,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,2970.1833832562,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,2972.96116092801,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,2975.73893859982,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,2978.51671627164,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,2981.29449394345,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,2984.07227161527,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,2986.85004928708,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,2989.62782695889,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,2992.40560463071,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,2995.18338230252,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,2997.96115997434,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,3000.73893764615,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,3003.51671531796,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,3006.29449298978,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,3009.07227066159,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,3011.85004833341,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,3014.62782600522,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,3017.40560367703,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,-,-
+1056.5,3020.18338134885,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,-,-
+1057.5,3022.96115902066,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,-,-
+1058.5,3025.73893669248,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,-,-
+1059.5,3028.51671436429,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,-,-
+1060.5,3031.2944920361,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,-,-
+1061.5,3034.07226970792,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,-,-
+1062.5,3036.85004737973,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,-,-
+1063.5,3039.62782505155,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,-,-
+1064.5,3042.40560272336,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,-,-
+1065.5,3045.18338039517,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,-,-
+1066.5,3047.96115806699,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,-,-
+1067.5,3050.7389357388,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,-,-
+1068.5,3053.51671341062,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,-,-
+1069.5,3056.29449108243,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,-,-
+1070.5,3059.07226875424,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,-,-
+1071.5,3061.85004642606,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,-,-
+1072.5,3064.62782409787,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,-,-
+1073.5,3067.40560176969,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,-,-
+1074.5,3070.1833794415,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,-,-
+1075.5,3072.96115711331,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,-,-
+1076.5,3075.73893478513,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,-,-
+1077.5,3078.51671245694,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,-,-
+1078.5,3081.29449012876,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,-,-
+1079.5,3084.07226780057,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,-,-
+1080.5,3086.85004547238,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,-,-
+1081.5,3089.6278231442,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,-,-
+1082.5,3092.40560081601,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,-,-
+1083.5,3095.18337848783,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,-,-
+1084.5,3097.96115615964,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,-,-
+1085.5,3100.73893383145,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,-,-
+1086.5,3103.51671150327,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,-,-
+1087.5,3106.29448917508,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,-,-
+1088.5,3109.0722668469,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,-,-
+1089.5,3111.85004451871,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,-,-
+1090.5,3114.62782219052,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,-,-
+1091.5,3117.40559986234,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,-,-
+1092.5,3120.18337753415,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,-,-
+1093.5,3122.96115520597,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,-,-
+1094.5,3125.73893287778,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,-,-
+1095.5,3128.51671054959,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,-,-
+1096.5,3131.29448822141,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,-,-
+1097.5,3134.07226589322,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,-,-
+1098.5,3136.85004356503,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,-,-
+1099.5,3139.62782123685,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,-,-
+1100.5,3142.40559890866,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,-,-
+1101.5,3145.18337658048,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,-,-
+1102.5,3147.96115425229,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,-,-
+1103.5,3150.7389319241,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,-,-
+1104.5,3153.51670959592,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,-,-
+1105.5,3156.29448726773,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,-,-
+1106.5,3159.07226493955,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,-,-
+1107.5,3161.85004261136,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,-,-
+1108.5,3164.62782028317,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,-,-
+1109.5,3167.40559795499,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,-,-
+1110.5,3170.1833756268,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,-,-
+1111.5,3172.96115329862,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,-,-
+1112.5,3175.73893097043,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,-,-
+1113.5,3178.51670864224,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,-,-
+1114.5,3181.29448631406,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,-,-
+1115.5,3184.07226398587,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,-,-
+1116.5,3186.85004165769,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,-,-
+1117.5,3189.6278193295,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,-,-
+1118.5,3192.40559700131,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,-,-
+1119.5,3195.18337467313,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,-,-
+1120.5,3197.96115234494,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,-,-
+1121.5,3200.73893001676,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,-,-
+1122.5,3203.51670768857,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,-,-
+1123.5,3206.29448536038,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,-,-
+1124.5,3209.0722630322,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,-,-
+1125.5,3211.85004070401,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,-,-
+1126.5,3214.62781837583,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,-,-
+1127.5,3217.40559604764,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,-,-
+1128.5,3220.18337371945,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,-,-
+1129.5,3222.96115139127,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,-,-
+1130.5,3225.73892906308,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,-,-
+1131.5,3228.5167067349,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,-,-
+1132.5,3231.29448440671,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,-,-
+1133.5,3234.07226207852,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,-,-
+1134.5,3236.85003975034,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,-,-
+1135.5,3239.62781742215,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,-,-
+1136.5,3242.40559509397,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,-,-
+1137.5,3245.18337276578,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,-,-
+1138.5,3247.96115043759,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,-,-
+1139.5,3250.73892810941,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,-,-
+1140.5,3253.51670578122,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,-,-
+1141.5,3256.29448345304,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,-,-
+1142.5,3259.07226112485,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,-,-
+1143.5,3261.85003879666,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,-,-
+1144.5,3264.62781646848,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,-,-
+1145.5,3267.40559414029,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,-,-
+1146.5,3270.18337181211,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,-,-
+1147.5,3272.96114948392,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,-,-
+1148.5,3275.73892715573,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,-,-
+1149.5,3278.51670482755,9.99999961853027,9.99999961853027,0,1.114006,593.1891,146.8873,146.8873,1264.632,-148.1703,9.124437,78.55721,-9.204132,9.124437,0,0,1,0,0,0,0,0,3.315481,0.04154791,5.767409,9.124437,0,2826.281,-,-
+1150.5,3281.29448249936,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,-,-
+1151.5,3284.07226017118,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,-,-
+1152.5,3286.85003784299,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,-,-
+1153.5,3289.6278155148,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,-,-
+1154.5,3292.40559318662,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,-,-
+1155.5,3295.18337085843,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,-,-
+1156.5,3297.96114853024,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,-,-
+1157.5,3300.73892620206,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,-,-
+1158.5,3303.51670387387,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,-,-
+1159.5,3306.29448154569,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,-,-
+1160.5,3309.0722592175,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,-,-
+1161.5,3311.85003688931,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,-,-
+1162.5,3314.62781456113,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,-,-
+1163.5,3317.40559223294,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,-,-
+1164.5,3320.18336990476,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,-,-
+1165.5,3322.96114757657,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,-,-
+1166.5,3325.73892524838,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,-,-
+1167.5,3328.5167029202,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,-,-
+1168.5,3331.29448059201,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,-,-
+1169.5,3334.07225826383,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,-,-
+1170.5,3336.85003593564,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,-,-
+1171.5,3339.62781360745,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,-,-
+1172.5,3342.40559127927,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,-,-
+1173.5,3345.18336895108,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,-,-
+1174.5,3347.9611466229,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,-,-
+1175.5,3350.73892429471,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,-,-
+1176.5,3353.51670196652,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,-,-
+1177.5,3356.29447963834,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,-,-
+1178.5,3359.07225731015,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,-,-
+1179.5,3361.85003498197,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,-,-
+1180.5,3364.62781265378,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,-,-
+1181.5,3367.40559032559,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,-,-
+1182.5,3370.18336799741,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,-,-
+1183.5,3372.96114566922,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,-,-
+1184.5,3375.73892334104,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,-,-
+1185.5,3378.51670101285,9.99999961853027,9.99999961853027,0,0.5949224,593.1891,103.6297,103.6297,1264.632,-148.1703,6.437332,78.55721,-9.204132,6.437332,0,0,1,0,0,0,0,0,3.315628,0.04154791,3.080156,6.437332,0,2415.55,-,-
+1186.5,3381.29447868466,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,-,-
+1187.5,3384.07225635648,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,-,-
+1188.5,3386.85003402829,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,-,-
+1189.5,3389.62781170011,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,-,-
+1190.5,3392.40558937192,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,-,-
+1191.5,3395.18336704373,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,-,-
+1192.5,3397.96114471555,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,-,-
+1193.5,3400.73892238736,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,-,-
+1194.5,3403.51670005918,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,-,-
+1195.5,3406.29447773099,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,-,-
+1196.5,3409.0722554028,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,-,-
+1197.5,3411.85003307462,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,-,-
+1198.5,3414.62781074643,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,-,-
+1199.5,3417.40558841825,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,-,-
+1200.5,3420.18336609006,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,-,-
+1201.5,3422.96114376187,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,-,-
+1202.5,3425.73892143369,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,-,-
+1203.5,3428.5166991055,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,-,-
+1204.5,3431.29447677732,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,-,-
+1205.5,3434.07225444913,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,-,-
+1206.5,3436.85003212094,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,-,-
+1207.5,3439.62780979276,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,-,-
+1208.5,3442.40558746457,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,-,-
+1209.5,3445.18336513639,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,-,-
+1210.5,3447.9611428082,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,-,-
+1211.5,3450.73892048001,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,-,-
+1212.5,3453.51669815183,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,-,-
+1213.5,3456.29447582364,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,-,-
+1214.5,3459.07225349545,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,-,-
+1215.5,3461.85003116727,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,-,-
+1216.5,3464.62780883908,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,-,-
+1217.5,3467.4055865109,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,-,-
+1218.5,3470.18336418271,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,-,-
+1219.5,3472.96114185452,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,-,-
+1220.5,3475.73891952634,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,-,-
+1221.5,3478.51669719815,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,-,-
+1222.5,3481.29447486997,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,-,-
+1223.5,3484.07225254178,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,-,-
+1224.5,3486.85003021359,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,-,-
+1225.5,3489.62780788541,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,-,-
+1226.5,3492.40558555722,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,-,-
+1227.5,3495.18336322904,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,-,-
+1228.5,3497.96114090085,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,-,-
+1229.5,3500.73891857266,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,-,-
+1230.5,3503.51669624448,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,-,-
+1231.5,3506.29447391629,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,-,-
+1232.5,3509.07225158811,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,-,-
+1233.5,3511.85002925992,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,-,-
+1234.5,3514.62780693173,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,-,-
+1235.5,3517.40558460355,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,-,-
+1236.5,3520.18336227536,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,-,-
+1237.5,3522.96113994718,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,-,-
+1238.5,3525.73891761899,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,-,-
+1239.5,3528.5166952908,9.99999961853027,9.99999961853027,0,1.021663,593.1891,139.1925,139.1925,1264.632,-148.1703,8.646447,78.55721,-9.204132,8.646447,0,0,1,0,0,0,0,0,3.315514,0.04154791,5.289385,8.646447,0,2753.219,-,-
+1240.5,3531.29447296262,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,-,-
+1241.5,3534.07225063443,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,-,-
+1242.5,3536.85002830625,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,-,-
+1243.5,3539.62780597806,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,-,-
+1244.5,3542.40558364987,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,-,-
+1245.5,3545.18336132169,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,-,-
+1246.5,3547.9611389935,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,-,-
+1247.5,3550.73891666532,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,-,-
+1248.5,3553.51669433713,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,-,-
+1249.5,3556.29447200894,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,-,-
+1250.5,3559.07224968076,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,-,-
+1251.5,3561.85002735257,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,-,-
+1252.5,3564.62780502439,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,-,-
+1253.5,3567.4055826962,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,-,-
+1254.5,3570.18336036801,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,-,-
+1255.5,3572.96113803983,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,-,-
+1256.5,3575.73891571164,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,-,-
+1257.5,3578.51669338346,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,-,-
+1258.5,3581.29447105527,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,-,-
+1259.5,3584.07224872708,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,-,-
+1260.5,3586.8500263989,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,-,-
+1261.5,3589.62780407071,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,-,-
+1262.5,3592.40558174253,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,-,-
+1263.5,3595.18335941434,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,-,-
+1264.5,3597.96113708615,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,-,-
+1265.5,3600.73891475797,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,-,-
+1266.5,3603.51669242978,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,-,-
+1267.5,3606.29447010159,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,-,-
+1268.5,3609.07224777341,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,-,-
+1269.5,3611.85002544522,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,-,-
+1270.5,3614.62780311704,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,-,-
+1271.5,3617.40558078885,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,-,-
+1272.5,3620.18335846066,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,-,-
+1273.5,3622.96113613248,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,-,-
+1274.5,3625.73891380429,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,-,-
+1275.5,3628.51669147611,9.99999961853027,9.99999961853027,0,2.010494,593.1891,221.5728,221.5728,1264.632,-148.1703,13.76379,78.55721,-9.204132,13.76379,0,0,1,0,0,0,0,0,3.315017,0.04154791,10.40723,13.76379,0,3556.885,-,-
+1276.5,3631.29446914792,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,-,-
+1277.5,3634.07224681973,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,-,-
+1278.5,3636.85002449155,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,-,-
+1279.5,3639.62780216336,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,-,-
+1280.5,3642.40557983518,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,-,-
+1281.5,3645.18335750699,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,-,-
+1282.5,3647.9611351788,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,-,-
+1283.5,3650.73891285062,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,-,-
+1284.5,3653.51669052243,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,-,-
+1285.5,3656.29446819425,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,-,-
+1286.5,3659.07224586606,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,-,-
+1287.5,3661.85002353787,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,-,-
+1288.5,3664.62780120969,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,-,-
+1289.5,3667.4055788815,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,-,-
+1290.5,3670.18335655332,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,-,-
+1291.5,3672.96113422513,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,-,-
+1292.5,3675.73891189694,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,-,-
+1293.5,3678.51668956876,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,-,-
+1294.5,3681.29446724057,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,-,-
+1295.5,3684.07224491239,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,-,-
+1296.5,3686.8500225842,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,-,-
+1297.5,3689.62780025601,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,-,-
+1298.5,3692.40557792783,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,-,-
+1299.5,3695.18335559964,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,-,-
+1300.5,3697.96113327146,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,-,-
+1301.5,3700.73891094327,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,-,-
+1302.5,3703.51668861508,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,-,-
+1303.5,3706.2944662869,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,-,-
+1304.5,3709.07224395871,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,-,-
+1305.5,3711.85002163053,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,-,-
+1306.5,3714.62779930234,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,-,-
+1307.5,3717.40557697415,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,-,-
+1308.5,3720.18335464597,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,-,-
+1309.5,3722.96113231778,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,-,-
+1310.5,3725.7389099896,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,-,-
+1311.5,3728.51668766141,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,-,-
+1312.5,3731.29446533322,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,-,-
+1313.5,3734.07224300504,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,-,-
+1314.5,3736.85002067685,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,-,-
+1315.5,3739.62779834867,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,-,-
+1316.5,3742.40557602048,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,-,-
+1317.5,3745.18335369229,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,-,-
+1318.5,3747.96113136411,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,-,-
+1319.5,3750.73890903592,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,-,-
+1320.5,3753.51668670774,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,-,-
+1321.5,3756.29446437955,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,-,-
+1322.5,3759.07224205136,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,-,-
+1323.5,3761.85001972318,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,-,-
+1324.5,3764.62779739499,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,-,-
+1325.5,3767.4055750668,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,-,-
+1326.5,3770.18335273862,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,-,-
+1327.5,3772.96113041043,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,-,-
+1328.5,3775.73890808225,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,-,-
+1329.5,3778.51668575406,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,-,-
+1330.5,3781.29446342587,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,-,-
+1331.5,3784.07224109769,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,-,-
+1332.5,3786.8500187695,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,-,-
+1333.5,3789.62779644132,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,-,-
+1334.5,3792.40557411313,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,-,-
+1335.5,3795.18335178494,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,-,-
+1336.5,3797.96112945676,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,-,-
+1337.5,3800.73890712857,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,-,-
+1338.5,3803.51668480039,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,-,-
+1339.5,3806.2944624722,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,-,-
+1340.5,3809.07224014401,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,-,-
+1341.5,3811.85001781583,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,-,-
+1342.5,3814.62779548764,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,-,-
+1343.5,3817.40557315946,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,-,-
+1344.5,3820.18335083127,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,-,-
+1345.5,3822.96112850308,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,-,-
+1346.5,3825.7389061749,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,-,-
+1347.5,3828.51668384671,9.99999961853027,9.99999961853027,0,2.195511,593.1891,236.9814,236.9814,1264.632,-148.1703,14.72096,78.55721,-9.204132,14.72096,0,0,1,0,0,0,0,0,3.314888,0.04154791,11.36452,14.72096,0,3719.135,-,-
+1348.5,3831.29446151853,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,-,-
+1349.5,3834.07223919034,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,-,-
+1350.5,3836.85001686215,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,-,-
+1351.5,3839.62779453397,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,-,-
+1352.5,3842.40557220578,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,-,-
+1353.5,3845.1833498776,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,-,-
+1354.5,3847.96112754941,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,-,-
+1355.5,3850.73890522122,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,-,-
+1356.5,3853.51668289304,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,-,-
+1357.5,3856.29446056485,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,-,-
+1358.5,3859.07223823667,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,-,-
+1359.5,3861.85001590848,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,-,-
+1360.5,3864.62779358029,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,-,-
+1361.5,3867.40557125211,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,-,-
+1362.5,3870.18334892392,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,-,-
+1363.5,3872.96112659574,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,-,-
+1364.5,3875.73890426755,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,-,-
+1365.5,3878.51668193936,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,-,-
+1366.5,3881.29445961118,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,-,-
+1367.5,3884.07223728299,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,-,-
+1368.5,3886.85001495481,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,-,-
+1369.5,3889.62779262662,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,-,-
+1370.5,3892.40557029843,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,-,-
+1371.5,3895.18334797025,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,-,-
+1372.5,3897.96112564206,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,-,-
+1373.5,3900.73890331388,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,-,-
+1374.5,3903.51668098569,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,-,-
+1375.5,3906.2944586575,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,-,-
+1376.5,3909.07223632932,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,-,-
+1377.5,3911.85001400113,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,-,-
+1378.5,3914.62779167295,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,-,-
+1379.5,3917.40556934476,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,-,-
+1380.5,3920.18334701657,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,3922.96112468839,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,3925.7389023602,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,3928.51668003201,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,3931.29445770383,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,3934.07223537564,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,3936.85001304746,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,3939.62779071927,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,3942.40556839108,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,3945.1833460629,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,3947.96112373471,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,3950.73890140653,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,3953.51667907834,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,3956.29445675015,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,3959.07223442197,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,3961.85001209378,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,3964.6277897656,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,3967.40556743741,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,3970.18334510922,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,3972.96112278104,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,3975.73890045285,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,3978.51667812467,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,3981.29445579648,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,3984.07223346829,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,3986.85001114011,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,3989.62778881192,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,3992.40556648374,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,3995.18334415555,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,3997.96112182736,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,4000.73889949918,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,4003.51667717099,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,4006.29445484281,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,4009.07223251462,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,4011.85001018643,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,4014.62778785825,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,4017.40556553006,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,4020.18334320188,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,4022.96112087369,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,4025.7388985455,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,4028.51667621732,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,4031.29445388913,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,4034.07223156095,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,4036.85000923276,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,4039.62778690457,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,4042.40556457639,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,4045.1833422482,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,4047.96111992002,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,4050.73889759183,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,4053.51667526364,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,4056.29445293546,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,4059.07223060727,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,4061.85000827909,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,4064.6277859509,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,4067.40556362271,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,4070.18334129453,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,4072.96111896634,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,4075.73889663816,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,4078.51667430997,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,4081.29445198178,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,4084.0722296536,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,4086.85000732541,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,4089.62778499722,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,4092.40556266904,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,4095.18334034085,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,4097.96111801267,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,4100.73889568448,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,4103.51667335629,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,4106.29445102811,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,4109.07222869992,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,4111.85000637174,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,4114.62778404355,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,4117.40556171536,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,4120.18333938718,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,4122.96111705899,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,4125.73889473081,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,4128.51667240262,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,4131.29445007443,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,4134.07222774625,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,4136.85000541806,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,-,-
+1459.5,4139.62778308988,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,-,-
+1460.5,4142.40556076169,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,-,-
+1461.5,4145.1833384335,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,-,-
+1462.5,4147.96111610532,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,-,-
+1463.5,4150.73889377713,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,-,-
+1464.5,4153.51667144895,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,-,-
+1465.5,4156.29444912076,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,-,-
+1466.5,4159.07222679257,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,-,-
+1467.5,4161.85000446439,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,-,-
+1468.5,4164.6277821362,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,-,-
+1469.5,4167.40555980802,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,-,-
+1470.5,4170.18333747983,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,-,-
+1471.5,4172.96111515164,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,-,-
+1472.5,4175.73889282346,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,-,-
+1473.5,4178.51667049527,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,-,-
+1474.5,4181.29444816709,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,-,-
+1475.5,4184.0722258389,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,-,-
+1476.5,4186.85000351071,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,-,-
+1477.5,4189.62778118253,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,-,-
+1478.5,4192.40555885434,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,-,-
+1479.5,4195.18333652616,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,-,-
+1480.5,4197.96111419797,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,-,-
+1481.5,4200.73889186978,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,-,-
+1482.5,4203.5166695416,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,-,-
+1483.5,4206.29444721341,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,-,-
+1484.5,4209.07222488523,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,-,-
+1485.5,4211.85000255704,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,-,-
+1486.5,4214.62778022885,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,-,-
+1487.5,4217.40555790067,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,-,-
+1488.5,4220.18333557248,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,-,-
+1489.5,4222.9611132443,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,-,-
+1490.5,4225.73889091611,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,-,-
+1491.5,4228.51666858792,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,-,-
+1492.5,4231.29444625974,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,-,-
+1493.5,4234.07222393155,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,-,-
+1494.5,4236.85000160336,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,-,-
+1495.5,4239.62777927518,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,-,-
+1496.5,4242.40555694699,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,-,-
+1497.5,4245.18333461881,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,-,-
+1498.5,4247.96111229062,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,-,-
+1499.5,4250.73888996243,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,-,-
+1500.5,4253.51666763425,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,-,-
+1501.5,4256.29444530606,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,-,-
+1502.5,4259.07222297788,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,-,-
+1503.5,4261.85000064969,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,-,-
+1504.5,4264.6277783215,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,-,-
+1505.5,4267.40555599332,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,-,-
+1506.5,4270.18333366513,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,-,-
+1507.5,4272.96111133695,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,-,-
+1508.5,4275.73888900876,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,-,-
+1509.5,4278.51666668057,9.99999961853027,9.99999961853027,0,2.411749,593.1891,254.9875,254.9875,1264.632,-148.1703,15.83947,78.55721,-9.204132,15.83947,0,0,1,0,0,0,0,0,3.314723,0.04154791,12.4832,15.83947,0,3911.801,-,-
+1510.5,4281.29444435239,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,-,-
+1511.5,4284.0722220242,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,-,-
+1512.5,4286.84999969602,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,-,-
+1513.5,4289.62777736783,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,-,-
+1514.5,4292.40555503964,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,-,-
+1515.5,4295.18333271146,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,-,-
+1516.5,4297.96111038327,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,-,-
+1517.5,4300.73888805509,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,-,-
+1518.5,4303.5166657269,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,-,-
+1519.5,4306.29444339871,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,-,-
+1520.5,4309.07222107053,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,-,-
+1521.5,4311.84999874234,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,-,-
+1522.5,4314.62777641416,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,-,-
+1523.5,4317.40555408597,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,-,-
+1524.5,4320.18333175778,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,-,-
+1525.5,4322.9611094296,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,-,-
+1526.5,4325.73888710141,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,-,-
+1527.5,4328.51666477323,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,-,-
+1528.5,4331.29444244504,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,-,-
+1529.5,4334.07222011685,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,-,-
+1530.5,4336.84999778867,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,-,-
+1531.5,4339.62777546048,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,-,-
+1532.5,4342.4055531323,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,-,-
+1533.5,4345.18333080411,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,-,-
+1534.5,4347.96110847592,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,-,-
+1535.5,4350.73888614774,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,-,-
+1536.5,4353.51666381955,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,-,-
+1537.5,4356.29444149137,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,-,-
+1538.5,4359.07221916318,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,-,-
+1539.5,4361.84999683499,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,-,-
+1540.5,4364.62777450681,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,-,-
+1541.5,4367.40555217862,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,-,-
+1542.5,4370.18332985044,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,-,-
+1543.5,4372.96110752225,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,-,-
+1544.5,4375.73888519406,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,-,-
+1545.5,4378.51666286588,9.99999961853027,9.99999961853027,0,1.908736,593.1891,213.0974,213.0974,1264.632,-148.1703,13.23731,78.55721,-9.204132,13.23731,0,0,1,0,0,0,0,0,3.315083,0.04154791,9.880683,13.23731,0,3467.978,-,-
+1546.5,4381.29444053769,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,-,-
+1547.5,4384.07221820951,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,-,-
+1548.5,4386.84999588132,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,-,-
+1549.5,4389.62777355313,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,-,-
+1550.5,4392.40555122495,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,-,-
+1551.5,4395.18332889676,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,-,-
+1552.5,4397.96110656857,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,-,-
+1553.5,4400.73888424039,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,-,-
+1554.5,4403.5166619122,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,-,-
+1555.5,4406.29443958402,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,-,-
+1556.5,4409.07221725583,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,-,-
+1557.5,4411.84999492764,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,-,-
+1558.5,4414.62777259946,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,-,-
+1559.5,4417.40555027127,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,-,-
+1560.5,4420.18332794309,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,-,-
+1561.5,4422.9611056149,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,-,-
+1562.5,4425.73888328671,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,-,-
+1563.5,4428.51666095853,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,-,-
+1564.5,4431.29443863034,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,-,-
+1565.5,4434.07221630216,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,-,-
+1566.5,4436.84999397397,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,-,-
+1567.5,4439.62777164578,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,-,-
+1568.5,4442.4055493176,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,-,-
+1569.5,4445.18332698941,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,-,-
+1570.5,4447.96110466123,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,-,-
+1571.5,4450.73888233304,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,-,-
+1572.5,4453.51666000485,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,-,-
+1573.5,4456.29443767667,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,-,-
+1574.5,4459.07221534848,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,-,-
+1575.5,4461.8499930203,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,-,-
+1576.5,4464.62777069211,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,-,-
+1577.5,4467.40554836392,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,-,-
+1578.5,4470.18332603574,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,-,-
+1579.5,4472.96110370755,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,-,-
+1580.5,4475.73888137937,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,-,-
+1581.5,4478.51665905118,9.99999961853027,9.99999961853027,0,1.968621,593.1891,218.0853,218.0853,1264.632,-148.1703,13.54716,78.55721,-9.204132,13.54716,0,0,1,0,0,0,0,0,3.315044,0.04154791,10.19056,13.54716,0,3520.301,-,-
+1582.5,4481.29443672299,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,-,-
+1583.5,4484.07221439481,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,-,-
+1584.5,4486.84999206662,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,-,-
+1585.5,4489.62776973844,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,-,-
+1586.5,4492.40554741025,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,-,-
+1587.5,4495.18332508206,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,-,-
+1588.5,4497.96110275388,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,-,-
+1589.5,4500.73888042569,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,-,-
+1590.5,4503.51665809751,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,-,-
+1591.5,4506.29443576932,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,-,-
+1592.5,4509.07221344113,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,-,-
+1593.5,4511.84999111295,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,-,-
+1594.5,4514.62776878476,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,-,-
+1595.5,4517.40554645658,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,-,-
+1596.5,4520.18332412839,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,-,-
+1597.5,4522.9611018002,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,-,-
+1598.5,4525.73887947202,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,-,-
+1599.5,4528.51665714383,9.99999961853027,9.99999961853027,0,2.714466,593.1891,280.1895,280.1895,1264.632,-148.1703,17.40499,78.55721,-9.204132,17.40499,0,0,1,0,0,0,0,0,3.314466,0.04154791,14.04897,17.40499,0,4181.462,-,-
+1600.5,4531.29443481565,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,-,-
+1601.5,4534.07221248746,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,-,-
+1602.5,4536.84999015927,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,-,-
+1603.5,4539.62776783109,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,-,-
+1604.5,4542.4055455029,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,-,-
+1605.5,4545.18332317472,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,-,-
+1606.5,4547.96110084653,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,-,-
+1607.5,4550.73887851834,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,-,-
+1608.5,4553.51665619016,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,-,-
+1609.5,4556.29443386197,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,-,-
+1610.5,4559.07221153378,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,-,-
+1611.5,4561.8499892056,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,-,-
+1612.5,4564.62776687741,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,-,-
+1613.5,4567.40554454923,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,-,-
+1614.5,4570.18332222104,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,-,-
+1615.5,4572.96109989285,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,-,-
+1616.5,4575.73887756467,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,-,-
+1617.5,4578.51665523648,9.99999961853027,9.99999961853027,0,3.46031,593.1891,342.2531,342.2531,1264.632,-148.1703,21.26029,78.55721,-9.204132,21.26029,0,0,1,0,0,0,0,0,3.313704,0.04154791,17.90504,21.26029,0,4845.543,-,-
+1618.5,4581.2944329083,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,-,-
+1619.5,4584.07221058011,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,-,-
+1620.5,4586.84998825192,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,-,-
+1621.5,4589.62776592374,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,-,-
+1622.5,4592.40554359555,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,-,-
+1623.5,4595.18332126737,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,-,-
+1624.5,4597.96109893918,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,-,-
+1625.5,4600.73887661099,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,-,-
+1626.5,4603.51665428281,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,-,-
+1627.5,4606.29443195462,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,-,-
+1628.5,4609.07220962644,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,-,-
+1629.5,4611.84998729825,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,-,-
+1630.5,4614.62776497006,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,-,-
+1631.5,4617.40554264188,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,-,-
+1632.5,4620.18332031369,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,-,-
+1633.5,4622.96109798551,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,-,-
+1634.5,4625.73887565732,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,-,-
+1635.5,4628.51665332913,9.99999961853027,9.99999961853027,0,4.148552,593.1891,399.4785,399.4785,1264.632,-148.1703,24.81505,78.55721,-9.204132,24.81505,0,0,1,0,0,0,0,0,3.312837,0.04154791,21.46067,24.81505,0,5457.854,-,-
+1636.5,4631.29443100095,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,-,-
+1637.5,4634.07220867276,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,-,-
+1638.5,4636.84998634458,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,-,-
+1639.5,4639.62776401639,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,-,-
+1640.5,4642.4055416882,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,-,-
+1641.5,4645.18331936002,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,-,-
+1642.5,4647.96109703183,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,-,-
+1643.5,4650.73887470365,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,-,-
+1644.5,4653.51665237546,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,-,-
+1645.5,4656.29443004727,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,-,-
+1646.5,4659.07220771909,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,-,-
+1647.5,4661.8499853909,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,-,-
+1648.5,4664.62776306272,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,-,-
+1649.5,4667.40554073453,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,-,-
+1650.5,4670.18331840634,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,-,-
+1651.5,4672.96109607816,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,-,-
+1652.5,4675.73887374997,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,-,-
+1653.5,4678.51665142179,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,-,-
+1654.5,4681.2944290936,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,-,-
+1655.5,4684.07220676541,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,-,-
+1656.5,4686.84998443723,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,-,-
+1657.5,4689.62776210904,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,-,-
+1658.5,4692.40553978086,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,-,-
+1659.5,4695.18331745267,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,-,-
+1660.5,4697.96109512448,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,-,-
+1661.5,4700.7388727963,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,-,-
+1662.5,4703.51665046811,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,-,-
+1663.5,4706.29442813993,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,-,-
+1664.5,4709.07220581174,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,-,-
+1665.5,4711.84998348355,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,-,-
+1666.5,4714.62776115537,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,-,-
+1667.5,4717.40553882718,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,-,-
+1668.5,4720.18331649899,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,-,-
+1669.5,4722.96109417081,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,-,-
+1670.5,4725.73887184262,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,-,-
+1671.5,4728.51664951444,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,-,-
+1672.5,4731.29442718625,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,-,-
+1673.5,4734.07220485806,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,-,-
+1674.5,4736.84998252988,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,-,-
+1675.5,4739.62776020169,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,-,-
+1676.5,4742.40553787351,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,-,-
+1677.5,4745.18331554532,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,-,-
+1678.5,4747.96109321713,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,-,-
+1679.5,4750.73887088895,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,-,-
+1680.5,4753.51664856076,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,-,-
+1681.5,4756.29442623258,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,-,-
+1682.5,4759.07220390439,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,-,-
+1683.5,4761.8499815762,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,-,-
+1684.5,4764.62775924802,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,-,-
+1685.5,4767.40553691983,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,-,-
+1686.5,4770.18331459165,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,-,-
+1687.5,4772.96109226346,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,-,-
+1688.5,4775.73886993527,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,-,-
+1689.5,4778.51664760709,9.99999961853027,9.99999961853027,0,4.319278,593.1891,413.6663,413.6663,1264.632,-148.1703,25.69638,78.55721,-9.204132,25.69638,0,0,1,0,0,0,0,0,3.312598,0.04154791,22.34223,25.69638,0,5621.964,-,-
+1690.5,4781.2944252789,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,-,-
+1691.5,4784.07220295072,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,-,-
+1692.5,4786.84998062253,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,-,-
+1693.5,4789.62775829434,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,-,-
+1694.5,4792.40553596616,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,-,-
+1695.5,4795.18331363797,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,-,-
+1696.5,4797.96109130979,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,-,-
+1697.5,4800.7388689816,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,-,-
+1698.5,4803.51664665341,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,-,-
+1699.5,4806.29442432523,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,-,-
+1700.5,4809.07220199704,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,-,-
+1701.5,4811.84997966886,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,-,-
+1702.5,4814.62775734067,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,-,-
+1703.5,4817.40553501248,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,-,-
+1704.5,4820.1833126843,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,-,-
+1705.5,4822.96109035611,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,-,-
+1706.5,4825.73886802793,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,-,-
+1707.5,4828.51664569974,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,-,-
+1708.5,4831.29442337155,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,-,-
+1709.5,4834.07220104337,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,-,-
+1710.5,4836.84997871518,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,-,-
+1711.5,4839.627756387,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,-,-
+1712.5,4842.40553405881,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,-,-
+1713.5,4845.18331173062,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,-,-
+1714.5,4847.96108940244,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,-,-
+1715.5,4850.73886707425,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,-,-
+1716.5,4853.51664474607,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,-,-
+1717.5,4856.29442241788,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,-,-
+1718.5,4859.07220008969,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,-,-
+1719.5,4861.84997776151,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,-,-
+1720.5,4864.62775543332,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,-,-
+1721.5,4867.40553310514,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,-,-
+1722.5,4870.18331077695,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,-,-
+1723.5,4872.96108844876,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,-,-
+1724.5,4875.73886612058,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,-,-
+1725.5,4878.51664379239,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,-,-
+1726.5,4881.2944214642,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,-,-
+1727.5,4884.07219913602,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,-,-
+1728.5,4886.84997680783,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,-,-
+1729.5,4889.62775447965,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,-,-
+1730.5,4892.40553215146,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,-,-
+1731.5,4895.18330982327,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,-,-
+1732.5,4897.96108749509,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,-,-
+1733.5,4900.7388651669,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,-,-
+1734.5,4903.51664283872,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,-,-
+1735.5,4906.29442051053,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,-,-
+1736.5,4909.07219818234,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,-,-
+1737.5,4911.84997585416,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,-,-
+1738.5,4914.62775352597,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,-,-
+1739.5,4917.40553119779,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,-,-
+1740.5,4920.1833088696,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,-,-
+1741.5,4922.96108654141,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,-,-
+1742.5,4925.73886421323,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,-,-
+1743.5,4928.51664188504,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,-,-
+1744.5,4931.29441955686,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,-,-
+1745.5,4934.07219722867,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,-,-
+1746.5,4936.84997490048,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,-,-
+1747.5,4939.6277525723,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,-,-
+1748.5,4942.40553024411,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,-,-
+1749.5,4945.18330791593,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,-,-
+1750.5,4947.96108558774,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,-,-
+1751.5,4950.73886325955,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,-,-
+1752.5,4953.51664093137,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,-,-
+1753.5,4956.29441860318,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,-,-
+1754.5,4959.072196275,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,-,-
+1755.5,4961.84997394681,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,-,-
+1756.5,4964.62775161862,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,-,-
+1757.5,4967.40552929044,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,-,-
+1758.5,4970.18330696225,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,-,-
+1759.5,4972.96108463407,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,-,-
+1760.5,4975.73886230588,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,-,-
+1761.5,4978.51663997769,9.99999961853027,9.99999961853027,0,3.642242,593.1891,357.3848,357.3848,1264.632,-148.1703,22.20025,78.55721,-9.204132,22.20025,0,0,1,0,0,0,0,0,3.31349,0.04154791,18.84521,22.20025,0,5007.452,-,-
+1762.5,4981.29441764951,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,-,-
+1763.5,4984.07219532132,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,-,-
+1764.5,4986.84997299314,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,-,-
+1765.5,4989.62775066495,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,-,-
+1766.5,4992.40552833676,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,-,-
+1767.5,4995.18330600858,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,-,-
+1768.5,4997.96108368039,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,-,-
+1769.5,5000.73886135221,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,-,-
+1770.5,5003.51663902402,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,-,-
+1771.5,5006.29441669583,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,-,-
+1772.5,5009.07219436765,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,-,-
+1773.5,5011.84997203946,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,-,-
+1774.5,5014.62774971128,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,-,-
+1775.5,5017.40552738309,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,-,-
+1776.5,5020.1833050549,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,-,-
+1777.5,5022.96108272672,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,-,-
+1778.5,5025.73886039853,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,-,-
+1779.5,5028.51663807034,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,-,-
+1780.5,5031.29441574216,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,-,-
+1781.5,5034.07219341397,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,-,-
+1782.5,5036.84997108579,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,-,-
+1783.5,5039.6277487576,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,-,-
+1784.5,5042.40552642941,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,-,-
+1785.5,5045.18330410123,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,-,-
+1786.5,5047.96108177304,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,-,-
+1787.5,5050.73885944486,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,-,-
+1788.5,5053.51663711667,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,-,-
+1789.5,5056.29441478848,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,-,-
+1790.5,5059.0721924603,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,-,-
+1791.5,5061.84997013211,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,-,-
+1792.5,5064.62774780393,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,-,-
+1793.5,5067.40552547574,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,-,-
+1794.5,5070.18330314755,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,-,-
+1795.5,5072.96108081937,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,-,-
+1796.5,5075.73885849118,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,-,-
+1797.5,5078.516636163,9.99999961853027,9.99999961853027,0,2.901978,593.1891,295.7971,295.7971,1264.632,-148.1703,18.3745,78.55721,-9.204132,18.3745,0,0,1,0,0,0,0,0,3.314291,0.04154791,15.01867,18.3745,0,4348.463,-,-
+1798.5,5081.29441383481,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,-,-
+1799.5,5084.07219150662,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,-,-
+1800.5,5086.84996917844,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,-,-
+1801.5,5089.62774685025,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,-,-
+1802.5,5092.40552452207,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,-,-
+1803.5,5095.18330219388,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,-,-
+1804.5,5097.96107986569,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,-,-
+1805.5,5100.73885753751,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,-,-
+1806.5,5103.51663520932,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,-,-
+1807.5,5106.29441288114,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,-,-
+1808.5,5109.07219055295,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,-,-
+1809.5,5111.84996822476,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,-,-
+1810.5,5114.62774589658,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,-,-
+1811.5,5117.40552356839,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,-,-
+1812.5,5120.18330124021,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,-,-
+1813.5,5122.96107891202,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,-,-
+1814.5,5125.73885658383,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,-,-
+1815.5,5128.51663425565,9.99999961853027,9.99999961853027,0,2.754048,593.1891,283.4844,283.4844,1264.632,-148.1703,17.60966,78.55721,-9.204132,17.60966,0,0,1,0,0,0,0,0,3.31443,0.04154791,14.25368,17.60966,0,4216.717,-,-
+1816.5,5131.29441192746,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,-,-
+1817.5,5134.07218959928,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,-,-
+1818.5,5136.84996727109,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,-,-
+1819.5,5139.6277449429,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,-,-
+1820.5,5142.40552261472,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,-,-
+1821.5,5145.18330028653,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,-,-
+1822.5,5147.96107795835,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,-,-
+1823.5,5150.73885563016,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,-,-
+1824.5,5153.51663330197,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,-,-
+1825.5,5156.29441097379,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,-,-
+1826.5,5159.0721886456,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,-,-
+1827.5,5161.84996631742,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,-,-
+1828.5,5164.62774398923,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,-,-
+1829.5,5167.40552166104,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,-,-
+1830.5,5170.18329933286,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,-,-
+1831.5,5172.96107700467,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,-,-
+1832.5,5175.73885467649,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,-,-
+1833.5,5178.5166323483,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,-,-
+1834.5,5181.29441002011,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,-,-
+1835.5,5184.07218769193,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,-,-
+1836.5,5186.84996536374,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,-,-
+1837.5,5189.62774303555,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,-,-
+1838.5,5192.40552070737,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,-,-
+1839.5,5195.18329837918,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,-,-
+1840.5,5197.961076051,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,-,-
+1841.5,5200.73885372281,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,-,-
+1842.5,5203.51663139462,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,-,-
+1843.5,5206.29440906644,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,-,-
+1844.5,5209.07218673825,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,-,-
+1845.5,5211.84996441007,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,-,-
+1846.5,5214.62774208188,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,-,-
+1847.5,5217.40551975369,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,-,-
+1848.5,5220.18329742551,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,-,-
+1849.5,5222.96107509732,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,-,-
+1850.5,5225.73885276914,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,-,-
+1851.5,5228.51663044095,9.99999961853027,9.99999961853027,0,2.148421,593.1891,233.0598,233.0598,1264.632,-148.1703,14.47735,78.55721,-9.204132,14.47735,0,0,1,0,0,0,0,0,3.314922,0.04154791,11.12088,14.47735,0,3677.384,-,-
+1852.5,5231.29440811276,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,-,-
+1853.5,5234.07218578458,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,-,-
+1854.5,5236.84996345639,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,-,-
+1855.5,5239.62774112821,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,-,-
+1856.5,5242.40551880002,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,-,-
+1857.5,5245.18329647183,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,-,-
+1858.5,5247.96107414365,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,-,-
+1859.5,5250.73885181546,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,-,-
+1860.5,5253.51662948728,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,-,-
+1861.5,5256.29440715909,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,-,-
+1862.5,5259.0721848309,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,-,-
+1863.5,5261.84996250272,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,-,-
+1864.5,5264.62774017453,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,-,-
+1865.5,5267.40551784635,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,-,-
+1866.5,5270.18329551816,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,-,-
+1867.5,5272.96107318997,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,-,-
+1868.5,5275.73885086179,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,-,-
+1869.5,5278.5166285336,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,-,-
+1870.5,5281.29440620542,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,-,-
+1871.5,5284.07218387723,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,-,-
+1872.5,5286.84996154904,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,-,-
+1873.5,5289.62773922086,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,-,-
+1874.5,5292.40551689267,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,-,-
+1875.5,5295.18329456449,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,-,-
+1876.5,5297.9610722363,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,-,-
+1877.5,5300.73884990811,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,-,-
+1878.5,5303.51662757993,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,-,-
+1879.5,5306.29440525174,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,-,-
+1880.5,5309.07218292356,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,-,-
+1881.5,5311.84996059537,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,-,-
+1882.5,5314.62773826718,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,-,-
+1883.5,5317.405515939,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,-,-
+1884.5,5320.18329361081,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,-,-
+1885.5,5322.96107128263,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,-,-
+1886.5,5325.73884895444,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,-,-
+1887.5,5328.51662662625,9.99999961853027,9.99999961853027,0,1.491033,593.1891,178.3013,178.3013,1264.632,-148.1703,11.07583,78.55721,-9.204132,11.07583,0,0,1,0,0,0,0,0,3.315318,0.04154791,7.718964,11.07583,0,3124.557,-,-
+1888.5,5331.29440429807,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,-,-
+1889.5,5334.07218196988,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,-,-
+1890.5,5336.8499596417,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,-,-
+1891.5,5339.62773731351,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,-,-
+1892.5,5342.40551498532,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,-,-
+1893.5,5345.18329265714,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,-,-
+1894.5,5347.96107032895,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,-,-
+1895.5,5350.73884800076,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,-,-
+1896.5,5353.51662567258,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,-,-
+1897.5,5356.29440334439,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,-,-
+1898.5,5359.07218101621,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,-,-
+1899.5,5361.84995868802,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,-,-
+1900.5,5364.62773635983,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,-,-
+1901.5,5367.40551403165,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,-,-
+1902.5,5370.18329170346,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,-,-
+1903.5,5372.96106937528,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,-,-
+1904.5,5375.73884704709,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,-,-
+1905.5,5378.5166247189,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,-,-
+1906.5,5381.29440239072,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,-,-
+1907.5,5384.07218006253,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,-,-
+1908.5,5386.84995773435,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,-,-
+1909.5,5389.62773540616,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,-,-
+1910.5,5392.40551307797,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,-,-
+1911.5,5395.18329074979,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,-,-
+1912.5,5397.9610684216,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,-,-
+1913.5,5400.73884609342,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,-,-
+1914.5,5403.51662376523,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,-,-
+1915.5,5406.29440143704,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,-,-
+1916.5,5409.07217910886,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,-,-
+1917.5,5411.84995678067,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,-,-
+1918.5,5414.62773445249,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,-,-
+1919.5,5417.4055121243,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,-,-
+1920.5,5420.18328979611,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,-,-
+1921.5,5422.96106746793,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,-,-
+1922.5,5425.73884513974,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,-,-
+1923.5,5428.51662281156,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,-,-
+1924.5,5431.29440048337,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,-,-
+1925.5,5434.07217815518,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,-,-
+1926.5,5436.849955827,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,-,-
+1927.5,5439.62773349881,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,-,-
+1928.5,5442.40551117063,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,-,-
+1929.5,5445.18328884244,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,-,-
+1930.5,5447.96106651425,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,-,-
+1931.5,5450.73884418607,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,-,-
+1932.5,5453.51662185788,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,-,-
+1933.5,5456.2943995297,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,-,-
+1934.5,5459.07217720151,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,-,-
+1935.5,5461.84995487332,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,-,-
+1936.5,5464.62773254514,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,-,-
+1937.5,5467.40551021695,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,-,-
+1938.5,5470.18328788877,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,-,-
+1939.5,5472.96106556058,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,-,-
+1940.5,5475.73884323239,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,-,-
+1941.5,5478.51662090421,9.99999961853027,9.99999961853027,0,0.834576,593.1891,123.602,123.602,1264.632,-148.1703,7.677986,78.55721,-9.204132,7.677986,0,0,1,0,0,0,0,0,3.315571,0.04154791,4.320867,7.677986,0,2605.187,-,-
+1942.5,5481.29439857602,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,5484.07217624784,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,5486.84995391965,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,5489.62773159146,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,5492.40550926328,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,5495.18328693509,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,5497.96106460691,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,5500.73884227872,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,5503.51661995053,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,5506.29439762235,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,5509.07217529416,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,5511.84995296597,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,5514.62773063779,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,5517.4055083096,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,5520.18328598142,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,5522.96106365323,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,5525.73884132504,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,5528.51661899686,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,5531.29439666867,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,5534.07217434049,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,5536.8499520123,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,5539.62772968411,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,5542.40550735593,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,5545.18328502774,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,5547.96106269956,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,5550.73884037137,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,5553.51661804318,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,5556.294395715,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,5559.07217338681,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,5561.84995105863,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,5564.62772873044,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,5567.40550640225,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,5570.18328407407,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,5572.96106174588,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,5575.7388394177,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,5578.51661708951,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,5581.29439476132,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,5584.07217243314,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,5586.84995010495,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,5589.62772777677,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,5592.40550544858,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,5595.18328312039,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,5597.96106079221,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,5600.73883846402,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,5603.51661613584,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,5606.29439380765,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,5609.07217147946,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,5611.84994915128,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,5614.62772682309,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,5617.40550449491,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,5620.18328216672,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,5622.96105983853,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,5625.73883751035,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,5628.51661518216,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,5631.29439285398,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,5634.07217052579,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,5636.8499481976,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,5639.62772586942,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,5642.40550354123,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,5645.18328121305,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,5647.96105888486,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,5650.73883655667,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,5653.51661422849,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,5656.2943919003,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,5659.07216957211,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,5661.84994724393,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,5664.62772491574,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,5667.40550258756,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,5670.18328025937,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,5672.96105793118,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,5675.738835603,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,5678.51661327481,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,5681.29439094663,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,5684.07216861844,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,5686.84994629025,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,5689.62772396207,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,5692.40550163388,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,5695.1832793057,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,5697.96105697751,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,5700.73883464932,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,5703.51661232114,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,5706.29438999295,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,5709.07216766477,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,5711.84994533658,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,5714.62772300839,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,5717.40550068021,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,5720.18327835202,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,5722.96105602384,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,5725.73883369565,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,5728.51661136746,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,5731.29438903928,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,5734.07216671109,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,5736.84994438291,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,5739.62772205472,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,5742.40549972653,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,5745.18327739835,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,5747.96105507016,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,5750.73883274198,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,5753.51661041379,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,5756.2943880856,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,5759.07216575742,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,5761.84994342923,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,5764.62772110105,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,5767.40549877286,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,5770.18327644467,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,5772.96105411649,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,5775.7388317883,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,5778.51660946012,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,5781.29438713193,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,5784.07216480374,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,5786.84994247556,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,-,-
+2053.5,5789.62772014737,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,-,-
+2054.5,5792.40549781919,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,-,-
+2055.5,5795.183275491,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,-,-
+2056.5,5797.96105316281,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,-,-
+2057.5,5800.73883083463,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,-,-
+2058.5,5803.51660850644,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,-,-
+2059.5,5806.29438617826,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,-,-
+2060.5,5809.07216385007,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,-,-
+2061.5,5811.84994152188,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,-,-
+2062.5,5814.6277191937,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,-,-
+2063.5,5817.40549686551,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,-,-
+2064.5,5820.18327453732,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,-,-
+2065.5,5822.96105220914,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,-,-
+2066.5,5825.73882988095,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,-,-
+2067.5,5828.51660755277,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,-,-
+2068.5,5831.29438522458,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,-,-
+2069.5,5834.07216289639,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,-,-
+2070.5,5836.84994056821,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,-,-
+2071.5,5839.62771824002,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,-,-
+2072.5,5842.40549591184,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,-,-
+2073.5,5845.18327358365,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,-,-
+2074.5,5847.96105125546,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,-,-
+2075.5,5850.73882892728,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,-,-
+2076.5,5853.51660659909,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,-,-
+2077.5,5856.29438427091,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,-,-
+2078.5,5859.07216194272,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,-,-
+2079.5,5861.84993961453,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,-,-
+2080.5,5864.62771728635,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,-,-
+2081.5,5867.40549495816,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,-,-
+2082.5,5870.18327262998,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,-,-
+2083.5,5872.96105030179,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,-,-
+2084.5,5875.7388279736,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,-,-
+2085.5,5878.51660564542,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,-,-
+2086.5,5881.29438331723,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,-,-
+2087.5,5884.07216098905,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,-,-
+2088.5,5886.84993866086,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,-,-
+2089.5,5889.62771633267,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,-,-
+2090.5,5892.40549400449,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,-,-
+2091.5,5895.1832716763,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,-,-
+2092.5,5897.96104934812,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,-,-
+2093.5,5900.73882701993,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,-,-
+2094.5,5903.51660469174,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,-,-
+2095.5,5906.29438236356,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,-,-
+2096.5,5909.07216003537,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,-,-
+2097.5,5911.84993770719,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,-,-
+2098.5,5914.627715379,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,-,-
+2099.5,5917.40549305081,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,-,-
+2100.5,5920.18327072263,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,-,-
+2101.5,5922.96104839444,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,-,-
+2102.5,5925.73882606626,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,-,-
+2103.5,5928.51660373807,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,-,-
+2104.5,5931.29438140988,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,-,-
+2105.5,5934.0721590817,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,-,-
+2106.5,5936.84993675351,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,-,-
+2107.5,5939.62771442533,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,-,-
+2108.5,5942.40549209714,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,-,-
+2109.5,5945.18326976895,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,-,-
+2110.5,5947.96104744077,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,-,-
+2111.5,5950.73882511258,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,-,-
+2112.5,5953.5166027844,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,-,-
+2113.5,5956.29438045621,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,-,-
+2114.5,5959.07215812802,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,-,-
+2115.5,5961.84993579984,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,-,-
+2116.5,5964.62771347165,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,-,-
+2117.5,5967.40549114347,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,-,-
+2118.5,5970.18326881528,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,-,-
+2119.5,5972.96104648709,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,-,-
+2120.5,5975.73882415891,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,-,-
+2121.5,5978.51660183072,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,-,-
+2122.5,5981.29437950253,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,-,-
+2123.5,5984.07215717435,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,-,-
+2124.5,5986.84993484616,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,-,-
+2125.5,5989.62771251798,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,-,-
+2126.5,5992.40549018979,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,-,-
+2127.5,5995.1832678616,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,-,-
+2128.5,5997.96104553342,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,-,-
+2129.5,6000.73882320523,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,-,-
+2130.5,6003.51660087705,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,-,-
+2131.5,6006.29437854886,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,-,-
+2132.5,6009.07215622067,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,-,-
+2133.5,6011.84993389249,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,-,-
+2134.5,6014.6277115643,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,-,-
+2135.5,6017.40548923612,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,-,-
+2136.5,6020.18326690793,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,-,-
+2137.5,6022.96104457974,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,-,-
+2138.5,6025.73882225156,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,-,-
+2139.5,6028.51659992337,9.99999961853027,9.99999961853027,0,0.6063403,593.1891,104.5813,104.5813,1264.632,-148.1703,6.496443,78.55721,-9.204132,6.496443,0,0,1,0,0,0,0,0,3.315626,0.04154791,3.139269,6.496443,0,2424.585,-,-
+2140.5,6031.29437759519,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,-,-
+2141.5,6034.072155267,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,-,-
+2142.5,6036.84993293881,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,-,-
+2143.5,6039.62771061063,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,-,-
+2144.5,6042.40548828244,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,-,-
+2145.5,6045.18326595426,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,-,-
+2146.5,6047.96104362607,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,-,-
+2147.5,6050.73882129788,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,-,-
+2148.5,6053.5165989697,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,-,-
+2149.5,6056.29437664151,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,-,-
+2150.5,6059.07215431333,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,-,-
+2151.5,6061.84993198514,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,-,-
+2152.5,6064.62770965695,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,-,-
+2153.5,6067.40548732877,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,-,-
+2154.5,6070.18326500058,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,-,-
+2155.5,6072.9610426724,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,-,-
+2156.5,6075.73882034421,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,-,-
+2157.5,6078.51659801602,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,-,-
+2158.5,6081.29437568784,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,-,-
+2159.5,6084.07215335965,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,-,-
+2160.5,6086.84993103147,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,-,-
+2161.5,6089.62770870328,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,-,-
+2162.5,6092.40548637509,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,-,-
+2163.5,6095.18326404691,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,-,-
+2164.5,6097.96104171872,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,-,-
+2165.5,6100.73881939054,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,-,-
+2166.5,6103.51659706235,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,-,-
+2167.5,6106.29437473416,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,-,-
+2168.5,6109.07215240598,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,-,-
+2169.5,6111.84993007779,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,-,-
+2170.5,6114.62770774961,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,-,-
+2171.5,6117.40548542142,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,-,-
+2172.5,6120.18326309323,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,-,-
+2173.5,6122.96104076505,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,-,-
+2174.5,6125.73881843686,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,-,-
+2175.5,6128.51659610868,9.99999961853027,9.99999961853027,0,1.15855,593.1891,150.599,150.599,1264.632,-148.1703,9.355001,78.55721,-9.204132,9.355001,0,0,1,0,0,0,0,0,3.315464,0.04154791,5.997989,9.355001,0,2861.524,-,-
+2176.5,6131.29437378049,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,-,-
+2177.5,6134.0721514523,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,-,-
+2178.5,6136.84992912412,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,-,-
+2179.5,6139.62770679593,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,-,-
+2180.5,6142.40548446774,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,-,-
+2181.5,6145.18326213956,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,-,-
+2182.5,6147.96103981137,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,-,-
+2183.5,6150.73881748319,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,-,-
+2184.5,6153.516595155,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,-,-
+2185.5,6156.29437282681,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,-,-
+2186.5,6159.07215049863,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,-,-
+2187.5,6161.84992817044,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,-,-
+2188.5,6164.62770584226,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,-,-
+2189.5,6167.40548351407,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,-,-
+2190.5,6170.18326118588,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,-,-
+2191.5,6172.9610388577,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,-,-
+2192.5,6175.73881652951,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,-,-
+2193.5,6178.51659420133,9.99999961853027,9.99999961853027,0,2.183633,593.1891,235.9922,235.9922,1264.632,-148.1703,14.65951,78.55721,-9.204132,14.65951,0,0,1,0,0,0,0,0,3.314897,0.04154791,11.30306,14.65951,0,3708.551,-,-
+2194.5,6181.29437187314,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,-,-
+2195.5,6184.07214954495,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,-,-
+2196.5,6186.84992721677,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,-,-
+2197.5,6189.62770488858,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,-,-
+2198.5,6192.4054825604,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,-,-
+2199.5,6195.18326023221,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,-,-
+2200.5,6197.96103790402,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,-,-
+2201.5,6200.73881557584,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,-,-
+2202.5,6203.51659324765,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,-,-
+2203.5,6206.29437091947,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,-,-
+2204.5,6209.07214859128,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,-,-
+2205.5,6211.84992626309,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,-,-
+2206.5,6214.62770393491,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,-,-
+2207.5,6217.40548160672,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,-,-
+2208.5,6220.18325927854,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,-,-
+2209.5,6222.96103695035,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,-,-
+2210.5,6225.73881462216,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,-,-
+2211.5,6228.51659229398,9.99999961853027,9.99999961853027,0,3.15072,593.1891,316.4969,316.4969,1264.632,-148.1703,19.66035,78.55721,-9.204132,19.66035,0,0,1,0,0,0,0,0,3.314042,0.04154791,16.30476,19.66035,0,4569.952,-,-
+2212.5,6231.29436996579,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,-,-
+2213.5,6234.07214763761,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,-,-
+2214.5,6236.84992530942,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,-,-
+2215.5,6239.62770298123,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,-,-
+2216.5,6242.40548065305,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,-,-
+2217.5,6245.18325832486,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,-,-
+2218.5,6247.96103599668,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,-,-
+2219.5,6250.73881366849,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,-,-
+2220.5,6253.5165913403,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,-,-
+2221.5,6256.29436901212,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,-,-
+2222.5,6259.07214668393,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,-,-
+2223.5,6261.84992435575,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,-,-
+2224.5,6264.62770202756,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,-,-
+2225.5,6267.40547969937,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,-,-
+2226.5,6270.18325737119,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,-,-
+2227.5,6272.961035043,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,-,-
+2228.5,6275.73881271482,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,-,-
+2229.5,6278.51659038663,9.99999961853027,9.99999961853027,0,4.068403,593.1891,392.8169,392.8169,1264.632,-148.1703,24.40124,78.55721,-9.204132,24.40124,0,0,1,0,0,0,0,0,3.312946,0.04154791,21.04675,24.40124,0,5386.575,-,-
+2230.5,6281.29436805844,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,-,-
+2231.5,6284.07214573026,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,-,-
+2232.5,6286.84992340207,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,-,-
+2233.5,6289.62770107389,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,-,-
+2234.5,6292.4054787457,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,-,-
+2235.5,6295.18325641751,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,-,-
+2236.5,6297.96103408933,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,-,-
+2237.5,6300.73881176114,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,-,-
+2238.5,6303.51658943295,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,-,-
+2239.5,6306.29436710477,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,-,-
+2240.5,6309.07214477658,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,-,-
+2241.5,6311.8499224484,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,-,-
+2242.5,6314.62770012021,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,-,-
+2243.5,6317.40547779202,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,-,-
+2244.5,6320.18325546384,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,-,-
+2245.5,6322.96103313565,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,-,-
+2246.5,6325.73881080747,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,-,-
+2247.5,6328.51658847928,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,-,-
+2248.5,6331.29436615109,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,-,-
+2249.5,6334.07214382291,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,-,-
+2250.5,6336.84992149472,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,-,-
+2251.5,6339.62769916654,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,-,-
+2252.5,6342.40547683835,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,-,-
+2253.5,6345.18325451016,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,-,-
+2254.5,6347.96103218198,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,-,-
+2255.5,6350.73880985379,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,-,-
+2256.5,6353.51658752561,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,-,-
+2257.5,6356.29436519742,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,-,-
+2258.5,6359.07214286923,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,-,-
+2259.5,6361.84992054105,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,-,-
+2260.5,6364.62769821286,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,-,-
+2261.5,6367.40547588468,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,-,-
+2262.5,6370.18325355649,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,-,-
+2263.5,6372.9610312283,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,-,-
+2264.5,6375.73880890012,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,-,-
+2265.5,6378.51658657193,9.99999961853027,9.99999961853027,0,4.288078,593.1891,411.0737,411.0737,1264.632,-148.1703,25.53533,78.55721,-9.204132,25.53533,0,0,1,0,0,0,0,0,3.312643,0.04154791,22.18114,25.53533,0,5591.89,-,-
+2266.5,6381.29436424375,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,-,-
+2267.5,6384.07214191556,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,-,-
+2268.5,6386.84991958737,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,-,-
+2269.5,6389.62769725919,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,-,-
+2270.5,6392.405474931,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,-,-
+2271.5,6395.18325260282,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,-,-
+2272.5,6397.96103027463,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,-,-
+2273.5,6400.73880794644,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,-,-
+2274.5,6403.51658561826,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,-,-
+2275.5,6406.29436329007,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,-,-
+2276.5,6409.07214096189,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,-,-
+2277.5,6411.8499186337,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,-,-
+2278.5,6414.62769630551,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,-,-
+2279.5,6417.40547397733,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,-,-
+2280.5,6420.18325164914,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,-,-
+2281.5,6422.96102932096,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,-,-
+2282.5,6425.73880699277,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,-,-
+2283.5,6428.51658466458,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,-,-
+2284.5,6431.2943623364,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,-,-
+2285.5,6434.07214000821,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,-,-
+2286.5,6436.84991768003,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,-,-
+2287.5,6439.62769535184,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,-,-
+2288.5,6442.40547302365,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,-,-
+2289.5,6445.18325069547,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,-,-
+2290.5,6447.96102836728,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,-,-
+2291.5,6450.73880603909,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,-,-
+2292.5,6453.51658371091,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,-,-
+2293.5,6456.29436138272,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,-,-
+2294.5,6459.07213905454,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,-,-
+2295.5,6461.84991672635,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,-,-
+2296.5,6465.08357074857,11.6411544799805,14.1981820106506,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,-,-
+2297.5,6469.41091135144,15.5784261703491,19.1981826782227,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,-,-
+2298.5,6474.67126443982,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,-,-
+2299.5,6480.22681978345,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,-,-
+2300.5,6485.78237512708,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,-,-
+2301.5,6491.33793047071,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,-,-
+2302.5,6496.89348581433,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,-,-
+2303.5,6502.44904115796,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,-,-
+2304.5,6508.00459650159,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,-,-
+2305.5,6513.56015184522,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,-,-
+2306.5,6519.11570718884,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,-,-
+2307.5,6524.67126253247,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,-,-
+2308.5,6530.2268178761,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,-,-
+2309.5,6535.78237321973,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,-,-
+2310.5,6541.33792856336,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,-,-
+2311.5,6546.89348390698,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,-,-
+2312.5,6552.44903925061,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,-,-
+2313.5,6558.00459459424,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,-,-
+2314.5,6563.56014993787,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,-,-
+2315.5,6569.1157052815,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,-,-
+2316.5,6574.67126062512,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,-,-
+2317.5,6580.22681596875,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,-,-
+2318.5,6585.78237131238,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,-,-
+2319.5,6591.33792665601,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,-,-
+2320.5,6596.89348199964,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,-,-
+2321.5,6602.44903734326,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,-,-
+2322.5,6608.00459268689,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,-,-
+2323.5,6613.56014803052,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,-,-
+2324.5,6619.11570337415,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,-,-
+2325.5,6624.67125871778,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,-,-
+2326.5,6630.2268140614,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,-,-
+2327.5,6635.78236940503,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,-,-
+2328.5,6641.33792474866,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,-,-
+2329.5,6646.89348009229,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,-,-
+2330.5,6652.44903543592,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,-,-
+2331.5,6658.00459077954,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,-,-
+2332.5,6663.56014612317,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,-,-
+2333.5,6669.1157014668,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,-,-
+2334.5,6674.67125681043,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,-,-
+2335.5,6680.22681215405,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,-,-
+2336.5,6685.78236749768,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,-,-
+2337.5,6691.33792284131,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,-,-
+2338.5,6696.89347818494,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,-,-
+2339.5,6702.44903352857,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,-,-
+2340.5,6708.00458887219,19.9999992370605,19.9999992370605,0,4.176641,1071.235,447.2247,447.2247,2300,-166.7673,50.16943,258.0128,-18.70787,50.16943,0,0,1,0,0,0,0,0,6.625597,0.3323833,43.21145,50.16943,0,10460.73,-,-
+2341.5,6713.56014421582,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,-,-
+2342.5,6719.11569955945,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,-,-
+2343.5,6724.67125490308,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,-,-
+2344.5,6730.22681024671,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,-,-
+2345.5,6735.78236559033,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,-,-
+2346.5,6741.33792093396,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,-,-
+2347.5,6746.89347627759,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,-,-
+2348.5,6752.44903162122,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,-,-
+2349.5,6758.00458696485,19.9999992370605,19.9999992370605,0,4.059066,1071.235,436.402,436.402,2300,-166.7673,48.95535,258.0128,-18.70787,48.95535,0,0,1,0,0,0,0,0,6.625917,0.3323833,41.99704,48.95535,0,10289.95,-,-
+2350.5,6763.56014230847,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,-,-
+2351.5,6769.1156976521,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,-,-
+2352.5,6774.67125299573,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,-,-
+2353.5,6780.22680833936,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,-,-
+2354.5,6785.78236368299,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,-,-
+2355.5,6791.33791902661,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,-,-
+2356.5,6796.89347437024,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,-,-
+2357.5,6802.44902971387,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,-,-
+2358.5,6808.0045850575,19.9999992370605,19.9999992370605,0,3.935963,1071.235,425.0687,425.0687,2300,-166.7673,47.68399,258.0128,-18.70787,47.68399,0,0,1,0,0,0,0,0,6.626243,0.3323833,40.72536,47.68399,0,10111.11,-,-
+2359.5,6813.56014040113,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,-,-
+2360.5,6819.11569574475,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,-,-
+2361.5,6824.67125108838,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,-,-
+2362.5,6830.22680643201,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,-,-
+2363.5,6835.78236177564,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,-,-
+2364.5,6841.33791711926,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,-,-
+2365.5,6846.89347246289,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,-,-
+2366.5,6852.44902780652,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,-,-
+2367.5,6858.00458315015,19.9999992370605,19.9999992370605,0,3.81317,1071.235,413.7623,413.7623,2300,-166.7673,46.41564,258.0128,-18.70787,46.41564,0,0,1,0,0,0,0,0,6.626558,0.3323833,39.4567,46.41564,0,9932.692,-,-
+2368.5,6863.56013849378,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,-,-
+2369.5,6869.1156938374,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,-,-
+2370.5,6874.67124918103,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,-,-
+2371.5,6880.22680452466,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,-,-
+2372.5,6885.78235986829,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,-,-
+2373.5,6891.33791521192,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,-,-
+2374.5,6896.89347055554,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,-,-
+2375.5,6902.44902589917,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,-,-
+2376.5,6908.0045812428,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,-,-
+2377.5,6913.56013658643,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,-,-
+2378.5,6919.11569193006,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,-,-
+2379.5,6924.67124727368,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,-,-
+2380.5,6930.22680261731,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,-,-
+2381.5,6935.78235796094,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,-,-
+2382.5,6941.33791330457,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,-,-
+2383.5,6946.8934686482,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,-,-
+2384.5,6952.44902399182,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,-,-
+2385.5,6958.00457933545,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,-,-
+2386.5,6963.56013467908,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,-,-
+2387.5,6969.11569002271,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,-,-
+2388.5,6974.67124536633,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,-,-
+2389.5,6980.22680070996,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,-,-
+2390.5,6985.78235605359,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,-,-
+2391.5,6991.33791139722,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,-,-
+2392.5,6996.89346674085,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,-,-
+2393.5,7002.44902208447,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,-,-
+2394.5,7008.0045774281,19.9999992370605,19.9999992370605,0,3.615721,1071.235,395.5783,395.5783,2300,-166.7673,44.37577,258.0128,-18.70787,44.37577,0,0,1,0,0,0,0,0,6.627043,0.3323833,37.41634,44.37577,0,9632.528,-,-
+2395.5,7013.56013277173,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,-,-
+2396.5,7019.11568811536,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,-,-
+2397.5,7024.67124345899,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,-,-
+2398.5,7030.22679880261,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,-,-
+2399.5,7035.78235414624,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,-,-
+2400.5,7041.33790948987,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,-,-
+2401.5,7046.8934648335,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,-,-
+2402.5,7052.44902017713,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,-,-
+2403.5,7058.00457552075,19.9999992370605,19.9999992370605,0,2.696205,1071.235,310.8448,310.8448,2300,-166.7673,34.87041,258.0128,-18.70787,34.87041,0,0,1,0,0,0,0,0,6.628964,0.3323833,27.90906,34.87041,0,8088.583,-,-
+2404.5,7063.56013086438,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,-,-
+2405.5,7069.11568620801,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,-,-
+2406.5,7074.67124155164,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,-,-
+2407.5,7080.22679689527,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,-,-
+2408.5,7085.78235223889,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,-,-
+2409.5,7091.33790758252,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,-,-
+2410.5,7096.89346292615,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,-,-
+2411.5,7102.44901826978,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,-,-
+2412.5,7108.00457361341,19.9999992370605,19.9999992370605,0,1.825622,1071.235,230.5575,230.5575,2300,-166.7673,25.86382,258.0128,-18.70787,25.86382,0,0,1,0,0,0,0,0,6.630269,0.3323833,18.90117,25.86382,0,6789.936,-,-
+2413.5,7113.56012895703,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,-,-
+2414.5,7119.11568430066,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,-,-
+2415.5,7124.67123964429,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,-,-
+2416.5,7130.22679498792,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,-,-
+2417.5,7135.78235033154,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,-,-
+2418.5,7141.33790567517,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,-,-
+2419.5,7146.8934610188,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,-,-
+2420.5,7152.44901636243,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,-,-
+2421.5,7158.00457170606,19.9999992370605,19.9999992370605,0,0.9552257,1071.235,150.2446,150.2446,2300,-166.7673,16.85436,258.0128,-18.70787,16.85436,0,0,1,0,0,0,0,0,6.631071,0.3323833,9.89091,16.85436,0,5402.559,-,-
+2422.5,7163.56012704968,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,-,-
+2423.5,7169.11568239331,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,-,-
+2424.5,7174.67123773694,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,-,-
+2425.5,7180.22679308057,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,-,-
+2426.5,7185.7823484242,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,-,-
+2427.5,7191.33790376782,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,-,-
+2428.5,7196.89345911145,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,-,-
+2429.5,7202.44901445508,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,-,-
+2430.5,7208.00456979871,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,-,-
+2431.5,7213.56012514234,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,-,-
+2432.5,7219.11568048596,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,-,-
+2433.5,7224.67123582959,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,-,-
+2434.5,7230.22679117322,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,-,-
+2435.5,7235.78234651685,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,-,-
+2436.5,7241.33790186048,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,-,-
+2437.5,7246.8934572041,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,-,-
+2438.5,7252.44901254773,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,-,-
+2439.5,7258.00456789136,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,-,-
+2440.5,7263.56012323499,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,-,-
+2441.5,7269.11567857862,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,-,-
+2442.5,7274.67123392224,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,-,-
+2443.5,7280.22678926587,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,-,-
+2444.5,7285.7823446095,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,-,-
+2445.5,7291.33789995313,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,-,-
+2446.5,7296.89345529675,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,-,-
+2447.5,7302.44901064038,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,-,-
+2448.5,7308.00456598401,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,-,-
+2449.5,7313.56012132764,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,-,-
+2450.5,7319.11567667127,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,-,-
+2451.5,7324.67123201489,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,-,-
+2452.5,7330.22678735852,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,-,-
+2453.5,7335.78234270215,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,-,-
+2454.5,7341.33789804578,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,-,-
+2455.5,7346.89345338941,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,-,-
+2456.5,7352.44900873303,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,-,-
+2457.5,7358.00456407666,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,-,-
+2458.5,7363.56011942029,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,-,-
+2459.5,7369.11567476392,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,-,-
+2460.5,7374.67123010755,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,-,-
+2461.5,7380.22678545117,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,-,-
+2462.5,7385.7823407948,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,-,-
+2463.5,7391.33789613843,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,-,-
+2464.5,7396.89345148206,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,-,-
+2465.5,7402.44900682569,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,-,-
+2466.5,7408.00456216931,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,-,-
+2467.5,7413.56011751294,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,-,-
+2468.5,7419.11567285657,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,-,-
+2469.5,7424.6712282002,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,-,-
+2470.5,7430.22678354383,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,-,-
+2471.5,7435.78233888745,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,-,-
+2472.5,7441.33789423108,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,-,-
+2473.5,7446.89344957471,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,-,-
+2474.5,7452.44900491834,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,-,-
+2475.5,7458.00456026196,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,-,-
+2476.5,7463.56011560559,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,-,-
+2477.5,7469.11567094922,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,-,-
+2478.5,7474.67122629285,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,-,-
+2479.5,7480.22678163648,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,-,-
+2480.5,7485.7823369801,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,-,-
+2481.5,7491.33789232373,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,-,-
+2482.5,7496.89344766736,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,-,-
+2483.5,7502.44900301099,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,-,-
+2484.5,7508.00455835462,19.9999992370605,19.9999992370605,0,-0.2771615,1071.235,36.49273,36.49273,2300,-166.7673,4.093735,258.0128,-18.70787,4.093735,0,0,1,0,0,0,0,0,6.631348,0.3323833,-2.869997,4.093735,0,3587.702,-,-
+2485.5,7513.56011369824,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,-,-
+2486.5,7519.11566904187,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,-,-
+2487.5,7524.6712243855,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,-,-
+2488.5,7530.22677972913,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,-,-
+2489.5,7535.78233507276,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,-,-
+2490.5,7541.33789041638,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,-,-
+2491.5,7546.89344576001,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,-,-
+2492.5,7552.44900110364,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,-,-
+2493.5,7558.00455644727,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,-,-
+2494.5,7563.5601117909,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,-,-
+2495.5,7569.11566713452,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,-,-
+2496.5,7574.67122247815,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,-,-
+2497.5,7580.22677782178,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,-,-
+2498.5,7585.78233316541,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,-,-
+2499.5,7591.33788850904,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,-,-
+2500.5,7596.89344385266,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,-,-
+2501.5,7602.44899919629,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,-,-
+2502.5,7608.00455453992,19.9999992370605,19.9999992370605,0,-0.8438892,1071.235,-15.81966,-15.81966,2300,-166.7673,-1.774642,258.0128,-18.70787,-1.774642,0,0,1,0,0,0,0,0,6.631137,0.3323833,-8.738162,-1.774642,0,2739.159,-,-
+2503.5,7613.56010988355,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,-,-
+2504.5,7619.11566522717,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,-,-
+2505.5,7624.6712205708,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,-,-
+2506.5,7630.22677591443,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,-,-
+2507.5,7635.78233125806,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,-,-
+2508.5,7641.33788660169,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,-,-
+2509.5,7646.89344194531,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,-,-
+2510.5,7652.44899728894,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,-,-
+2511.5,7658.00455263257,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,-,-
+2512.5,7663.5601079762,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,-,-
+2513.5,7669.11566331983,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,-,-
+2514.5,7674.67121866345,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,-,-
+2515.5,7680.22677400708,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,-,-
+2516.5,7685.78232935071,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,-,-
+2517.5,7691.33788469434,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,-,-
+2518.5,7696.89344003797,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,-,-
+2519.5,7702.44899538159,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,-,-
+2520.5,7708.00455072522,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,-,-
+2521.5,7713.56010606885,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,-,-
+2522.5,7719.11566141248,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,-,-
+2523.5,7724.67121675611,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,-,-
+2524.5,7730.22677209973,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,-,-
+2525.5,7735.78232744336,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,-,-
+2526.5,7741.33788278699,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,-,-
+2527.5,7746.89343813062,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,-,-
+2528.5,7752.44899347425,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,-,-
+2529.5,7758.00454881787,19.9999992370605,19.9999992370605,0,-0.839777,1071.235,-15.44008,-15.44008,2300,-166.7673,-1.73206,258.0128,-18.70787,-1.73206,0,0,1,0,0,0,0,0,6.63114,0.3323833,-8.695583,-1.73206,0,2745.956,-,-
+2530.5,7763.5601041615,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,-,-
+2531.5,7769.11565950513,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,-,-
+2532.5,7774.67121484876,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,-,-
+2533.5,7780.22677019238,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,-,-
+2534.5,7785.78232553601,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,-,-
+2535.5,7791.33788087964,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,-,-
+2536.5,7796.89343622327,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,-,-
+2537.5,7802.4489915669,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,-,-
+2538.5,7808.00454691052,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,-,-
+2539.5,7813.56010225415,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,-,-
+2540.5,7819.11565759778,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,-,-
+2541.5,7824.67121294141,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,-,-
+2542.5,7830.22676828504,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,-,-
+2543.5,7835.78232362866,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,-,-
+2544.5,7841.33787897229,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,-,-
+2545.5,7846.89343431592,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,-,-
+2546.5,7852.44898965955,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,-,-
+2547.5,7858.00454500318,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,-,-
+2548.5,7863.5601003468,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,-,-
+2549.5,7869.11565569043,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,-,-
+2550.5,7874.67121103406,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,-,-
+2551.5,7880.22676637769,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,-,-
+2552.5,7885.78232172132,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,-,-
+2553.5,7891.33787706494,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,-,-
+2554.5,7896.89343240857,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,-,-
+2555.5,7902.4489877522,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,-,-
+2556.5,7908.00454309583,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,-,-
+2557.5,7913.56009843946,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,-,-
+2558.5,7919.11565378308,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,7924.67120912671,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,7930.22676447034,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,7935.78231981397,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,7941.33787515759,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,-,-
+2563.5,7946.89343050122,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,-,-
+2564.5,7952.44898584485,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,-,-
+2565.5,7958.00454118848,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,-,-
+2566.5,7963.56009653211,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,-,-
+2567.5,7969.11565187573,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,-,-
+2568.5,7974.67120721936,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,-,-
+2569.5,7980.22676256299,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,-,-
+2570.5,7985.78231790662,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,-,-
+2571.5,7991.33787325025,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,-,-
+2572.5,7996.89342859387,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,-,-
+2573.5,8002.4489839375,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,-,-
+2574.5,8008.00453928113,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,-,-
+2575.5,8013.56009462476,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,-,-
+2576.5,8019.11564996839,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,-,-
+2577.5,8024.67120531201,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,-,-
+2578.5,8030.22676065564,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,-,-
+2579.5,8035.78231599927,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,-,-
+2580.5,8041.3378713429,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,-,-
+2581.5,8046.89342668653,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,-,-
+2582.5,8052.44898203015,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,-,-
+2583.5,8058.00453737378,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,-,-
+2584.5,8063.56009271741,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,-,-
+2585.5,8069.11564806104,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,-,-
+2586.5,8074.67120340467,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,-,-
+2587.5,8080.22675874829,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,-,-
+2588.5,8085.78231409192,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,-,-
+2589.5,8091.33786943555,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,-,-
+2590.5,8096.89342477918,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,-,-
+2591.5,8102.4489801228,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,-,-
+2592.5,8108.00453546643,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,-,-
+2593.5,8113.56009081006,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,-,-
+2594.5,8119.11564615369,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,-,-
+2595.5,8124.67120149732,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,-,-
+2596.5,8130.22675684094,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,-,-
+2597.5,8135.78231218457,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,-,-
+2598.5,8141.3378675282,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,-,-
+2599.5,8146.89342287183,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,-,-
+2600.5,8152.44897821546,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,-,-
+2601.5,8158.00453355908,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,-,-
+2602.5,8163.56008890271,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,-,-
+2603.5,8169.11564424634,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,-,-
+2604.5,8174.67119958997,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,-,-
+2605.5,8180.2267549336,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,-,-
+2606.5,8185.78231027722,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,-,-
+2607.5,8191.33786562085,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,-,-
+2608.5,8196.89342096448,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,-,-
+2609.5,8202.44897630811,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,-,-
+2610.5,8208.00453165174,19.9999992370605,19.9999992370605,0,0.09141175,1071.235,70.51488,70.51488,2300,-166.7673,7.910322,258.0128,-18.70787,7.910322,0,0,1,0,0,0,0,0,6.631371,0.3323833,0.9465682,7.910322,0,4114.705,-,-
+2611.5,8213.56008699536,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,-,-
+2612.5,8219.11564233899,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,-,-
+2613.5,8224.67119768262,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,-,-
+2614.5,8230.22675302625,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,-,-
+2615.5,8235.78230836988,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,-,-
+2616.5,8241.3378637135,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,-,-
+2617.5,8246.89341905713,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,-,-
+2618.5,8252.44897440076,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,-,-
+2619.5,8258.00452974439,19.9999992370605,19.9999992370605,0,0.6625659,1071.235,123.234,123.234,2300,-166.7673,13.82433,258.0128,-18.70787,13.82433,0,0,1,0,0,0,0,0,6.631228,0.3323833,6.86072,13.82433,0,4931.325,-,-
+2620.5,8263.56008508801,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,-,-
+2621.5,8269.11564043164,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,-,-
+2622.5,8274.67119577527,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,-,-
+2623.5,8280.2267511189,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,-,-
+2624.5,8285.78230646253,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,-,-
+2625.5,8291.33786180615,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,-,-
+2626.5,8296.89341714978,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,-,-
+2627.5,8302.44897249341,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,-,-
+2628.5,8308.00452783704,19.9999992370605,19.9999992370605,0,1.233724,1071.235,175.9457,175.9457,2300,-166.7673,19.73749,258.0128,-18.70787,19.73749,0,0,1,0,0,0,0,0,6.630869,0.3323833,12.77424,19.73749,0,5863.893,-,-
+2629.5,8313.56008318067,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,-,-
+2630.5,8319.11563852429,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,-,-
+2631.5,8324.67119386792,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,-,-
+2632.5,8330.22674921155,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,-,-
+2633.5,8335.78230455518,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,-,-
+2634.5,8341.33785989881,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,-,-
+2635.5,8346.89341524243,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,-,-
+2636.5,8352.44897058606,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,-,-
+2637.5,8358.00452592969,19.9999992370605,19.9999992370605,0,1.804883,1071.235,228.6442,228.6442,2300,-166.7673,25.64919,258.0128,-18.70787,25.64919,0,0,1,0,0,0,0,0,6.630293,0.3323833,18.68651,25.64919,0,6758.989,-,-
+2638.5,8363.56008127332,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,-,-
+2639.5,8369.11563661695,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,-,-
+2640.5,8374.67119196057,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,-,-
+2641.5,8380.2267473042,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,-,-
+2642.5,8385.78230264783,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,-,-
+2643.5,8391.33785799146,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,-,-
+2644.5,8396.89341333508,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,-,-
+2645.5,8402.44896867871,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,-,-
+2646.5,8408.00452402234,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,-,-
+2647.5,8413.56007936597,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,-,-
+2648.5,8419.1156347096,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,-,-
+2649.5,8424.67119005322,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,-,-
+2650.5,8430.22674539685,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,-,-
+2651.5,8435.78230074048,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,-,-
+2652.5,8441.33785608411,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,-,-
+2653.5,8446.89341142774,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,-,-
+2654.5,8452.44896677136,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,-,-
+2655.5,8458.00452211499,19.9999992370605,19.9999992370605,0,1.692281,1071.235,218.2562,218.2562,2300,-166.7673,24.48387,258.0128,-18.70787,24.48387,0,0,1,0,0,0,0,0,6.630424,0.3323833,17.52106,24.48387,0,6590.962,-,-
+2656.5,8463.56007745862,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,-,-
+2657.5,8469.11563280225,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,-,-
+2658.5,8474.67118814588,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,-,-
+2659.5,8480.2267434895,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,-,-
+2660.5,8485.78229883313,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,-,-
+2661.5,8491.33785417676,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,-,-
+2662.5,8496.89340952039,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,-,-
+2663.5,8502.44896486402,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,-,-
+2664.5,8508.00452020764,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,-,-
+2665.5,8513.56007555127,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,-,-
+2666.5,8519.1156308949,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,-,-
+2667.5,8524.67118623853,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,-,-
+2668.5,8530.22674158216,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,-,-
+2669.5,8535.78229692578,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,-,-
+2670.5,8541.33785226941,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,-,-
+2671.5,8546.89340761304,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,-,-
+2672.5,8552.44896295667,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,-,-
+2673.5,8558.00451830029,19.9999992370605,19.9999992370605,0,1.146226,1071.235,167.8713,167.8713,2300,-166.7673,18.83171,258.0128,-18.70787,18.83171,0,0,1,0,0,0,0,0,6.630938,0.3323833,11.86839,18.83171,0,5718.958,-,-
+2674.5,8563.56007364392,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,-,-
+2675.5,8569.11562898755,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,-,-
+2676.5,8574.67118433118,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,-,-
+2677.5,8580.22673967481,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,-,-
+2678.5,8585.78229501843,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,-,-
+2679.5,8591.33785036206,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,-,-
+2680.5,8596.89340570569,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,-,-
+2681.5,8602.44896104932,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,-,-
+2682.5,8608.00451639295,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,-,-
+2683.5,8613.56007173657,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,-,-
+2684.5,8619.1156270802,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,-,-
+2685.5,8624.67118242383,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,-,-
+2686.5,8630.22673776746,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,-,-
+2687.5,8635.78229311109,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,-,-
+2688.5,8641.33784845471,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,-,-
+2689.5,8646.89340379834,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,-,-
+2690.5,8652.44895914197,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,-,-
+2691.5,8658.0045144856,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,-,-
+2692.5,8663.56006982923,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,-,-
+2693.5,8669.11562517285,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,-,-
+2694.5,8674.67118051648,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,-,-
+2695.5,8680.22673586011,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,8685.78229120374,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,8691.33784654737,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,8696.89340189099,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,8702.44895723462,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,8708.00451257825,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,8713.56006792188,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,-,-
+2702.5,8719.1156232655,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,-,-
+2703.5,8724.67117860913,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,-,-
+2704.5,8730.22673395276,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,-,-
+2705.5,8735.78228929639,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,-,-
+2706.5,8741.33784464002,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,-,-
+2707.5,8746.89339998364,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,-,-
+2708.5,8752.44895532727,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,-,-
+2709.5,8758.0045106709,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,-,-
+2710.5,8763.56006601453,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,-,-
+2711.5,8769.11562135816,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,-,-
+2712.5,8774.67117670178,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,-,-
+2713.5,8780.22673204541,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,-,-
+2714.5,8785.78228738904,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,-,-
+2715.5,8791.33784273267,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,-,-
+2716.5,8796.8933980763,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,-,-
+2717.5,8802.44895341992,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,-,-
+2718.5,8808.00450876355,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,-,-
+2719.5,8813.56006410718,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,-,-
+2720.5,8819.11561945081,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,-,-
+2721.5,8824.67117479444,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,-,-
+2722.5,8830.22673013806,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,-,-
+2723.5,8835.78228548169,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,-,-
+2724.5,8841.33784082532,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,-,-
+2725.5,8846.89339616895,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,-,-
+2726.5,8852.44895151258,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,-,-
+2727.5,8858.0045068562,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,-,-
+2728.5,8863.56006219983,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,-,-
+2729.5,8869.11561754346,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,-,-
+2730.5,8874.67117288709,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,-,-
+2731.5,8880.22672823071,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,-,-
+2732.5,8885.78228357434,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,-,-
+2733.5,8891.33783891797,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,-,-
+2734.5,8896.8933942616,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,-,-
+2735.5,8902.44894960523,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,-,-
+2736.5,8908.00450494885,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,-,-
+2737.5,8913.56006029248,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,-,-
+2738.5,8919.11561563611,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,-,-
+2739.5,8924.67117097974,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,-,-
+2740.5,8930.22672632337,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,-,-
+2741.5,8935.78228166699,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,-,-
+2742.5,8941.33783701062,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,-,-
+2743.5,8946.89339235425,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,-,-
+2744.5,8952.44894769788,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,-,-
+2745.5,8958.00450304151,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,-,-
+2746.5,8963.56005838513,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,-,-
+2747.5,8969.11561372876,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,-,-
+2748.5,8974.67116907239,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,-,-
+2749.5,8980.22672441602,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,-,-
+2750.5,8985.78227975965,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,-,-
+2751.5,8991.33783510327,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,-,-
+2752.5,8996.8933904469,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,-,-
+2753.5,9002.44894579053,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,-,-
+2754.5,9008.00450113416,19.9999992370605,19.9999992370605,0,0.7258721,1071.235,129.077,129.077,2300,-166.7673,14.47979,258.0128,-18.70787,14.47979,0,0,1,0,0,0,0,0,6.631199,0.3323833,7.516207,14.47979,0,5022.6,-,-
+2755.5,9013.56005647779,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,-,-
+2756.5,9019.11561182141,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,-,-
+2757.5,9024.67116716504,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,-,-
+2758.5,9030.22672250867,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,-,-
+2759.5,9035.7822778523,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,-,-
+2760.5,9041.33783319592,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,-,-
+2761.5,9046.89338853955,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,-,-
+2762.5,9052.44894388318,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,-,-
+2763.5,9058.00449922681,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,-,-
+2764.5,9063.56005457044,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,-,-
+2765.5,9069.11560991406,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,-,-
+2766.5,9074.67116525769,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,-,-
+2767.5,9080.22672060132,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,-,-
+2768.5,9085.78227594495,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,-,-
+2769.5,9091.33783128858,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,-,-
+2770.5,9096.8933866322,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,-,-
+2771.5,9102.44894197583,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,-,-
+2772.5,9108.00449731946,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,-,-
+2773.5,9113.56005266309,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,-,-
+2774.5,9119.11560800672,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,-,-
+2775.5,9124.67116335034,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,-,-
+2776.5,9130.22671869397,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,9135.7822740376,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,9141.33782938123,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,9146.89338472486,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,9152.44894006848,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,9158.00449541211,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,9163.56005075574,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,9169.11560609937,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,9174.671161443,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,9180.22671678662,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,9185.78227213025,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,9191.33782747388,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,9196.89338281751,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,9202.44893816113,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,9208.00449350476,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,9213.56004884839,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,9219.11560419202,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,9224.67115953565,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,9230.22671487927,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,9235.7822702229,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,9241.33782556653,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,9246.89338091016,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,9252.44893625379,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,9258.00449159741,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,9263.56004694104,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,9269.11560228467,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,9274.6711576283,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,9280.22671297193,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,9285.78226831555,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,9291.33782365918,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,9296.89337900281,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,9302.44893434644,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,9308.00448969007,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,9313.56004503369,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,9319.11560037732,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,9324.67115572095,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,9330.22671106458,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,9335.78226640821,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,9341.33782175183,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,9346.89337709546,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,9352.44893243909,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,9358.00448778272,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,9363.56004312634,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,9369.11559846997,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,9374.6711538136,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,9380.22670915723,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,9385.78226450086,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,9391.33781984448,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,9396.89337518811,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,9402.44893053174,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,9408.00448587537,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,9413.560041219,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,-,-
+2828.5,9419.11559656262,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,-,-
+2829.5,9424.67115190625,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,-,-
+2830.5,9430.22670724988,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,-,-
+2831.5,9435.78226259351,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,-,-
+2832.5,9441.33781793714,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,-,-
+2833.5,9446.89337328076,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,-,-
+2834.5,9452.44892862439,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,-,-
+2835.5,9458.00448396802,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,-,-
+2836.5,9463.56003931165,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,-,-
+2837.5,9469.11559465528,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,-,-
+2838.5,9474.6711499989,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,-,-
+2839.5,9480.22670534253,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,-,-
+2840.5,9485.78226068616,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,-,-
+2841.5,9491.33781602979,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,-,-
+2842.5,9496.89337137342,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,-,-
+2843.5,9502.44892671704,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,-,-
+2844.5,9508.00448206067,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,-,-
+2845.5,9513.5600374043,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,-,-
+2846.5,9519.11559274793,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,-,-
+2847.5,9524.67114809155,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,-,-
+2848.5,9530.22670343518,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,-,-
+2849.5,9535.78225877881,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,-,-
+2850.5,9541.33781412244,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,-,-
+2851.5,9546.89336946607,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,-,-
+2852.5,9552.44892480969,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,-,-
+2853.5,9558.00448015332,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,-,-
+2854.5,9563.56003549695,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,-,-
+2855.5,9569.11559084058,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,-,-
+2856.5,9574.67114618421,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,-,-
+2857.5,9580.22670152783,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,-,-
+2858.5,9585.78225687146,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,-,-
+2859.5,9591.33781221509,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,-,-
+2860.5,9596.89336755872,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,-,-
+2861.5,9602.44892290235,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,-,-
+2862.5,9608.00447824597,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,-,-
+2863.5,9613.5600335896,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,-,-
+2864.5,9619.11558893323,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,-,-
+2865.5,9624.67114427686,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,-,-
+2866.5,9630.22669962049,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,-,-
+2867.5,9635.78225496411,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,-,-
+2868.5,9641.33781030774,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,-,-
+2869.5,9646.89336565137,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,-,-
+2870.5,9652.448920995,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,-,-
+2871.5,9658.00447633863,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,-,-
+2872.5,9663.56003168225,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,-,-
+2873.5,9669.11558702588,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,-,-
+2874.5,9674.67114236951,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,-,-
+2875.5,9680.22669771314,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,-,-
+2876.5,9685.78225305676,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,-,-
+2877.5,9691.33780840039,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,-,-
+2878.5,9696.89336374402,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,-,-
+2879.5,9702.44891908765,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,-,-
+2880.5,9708.00447443128,19.9999992370605,19.9999992370605,0,-0.09539483,1071.235,53.27125,53.27125,2300,-166.7673,5.975941,258.0128,-18.70787,5.975941,0,0,1,0,0,0,0,0,6.631371,0.3323833,-0.9878131,5.975941,0,3847.601,-,-
+2881.5,9713.5600297749,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,-,-
+2882.5,9719.11558511853,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,-,-
+2883.5,9724.67114046216,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,-,-
+2884.5,9730.22669580579,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,-,-
+2885.5,9735.78225114942,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,-,-
+2886.5,9741.33780649304,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,-,-
+2887.5,9746.89336183667,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,-,-
+2888.5,9752.4489171803,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,-,-
+2889.5,9758.00447252393,19.9999992370605,19.9999992370605,0,-0.5820778,1071.235,8.346721,8.346721,2300,-166.7673,0.9363308,258.0128,-18.70787,0.9363308,0,0,1,0,0,0,0,0,6.631261,0.3323833,-6.027313,0.9363308,0,3151.72,-,-
+2890.5,9763.56002786756,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,-,-
+2891.5,9769.11558321118,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,-,-
+2892.5,9774.67113855481,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,-,-
+2893.5,9780.22669389844,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,-,-
+2894.5,9785.78224924207,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,-,-
+2895.5,9791.3378045857,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,-,-
+2896.5,9796.89335992932,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,-,-
+2897.5,9802.44891527295,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,-,-
+2898.5,9808.00447061658,19.9999992370605,19.9999992370605,0,-1.251578,1071.235,-53.44859,-53.44859,2300,-166.7673,-5.995835,258.0128,-18.70787,-5.995835,0,0,1,0,0,0,0,0,6.630854,0.3323833,-12.95907,-5.995835,0,2065.366,-,-
+2899.5,9813.56002596021,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,-,-
+2900.5,9819.11558130383,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,-,-
+2901.5,9824.67113664746,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,-,-
+2902.5,9830.22669199109,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,-,-
+2903.5,9835.78224733472,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,-,-
+2904.5,9841.33780267835,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,-,-
+2905.5,9846.89335802197,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,-,-
+2906.5,9852.4489133656,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,-,-
+2907.5,9858.00446870923,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,-,-
+2908.5,9863.56002405286,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,-,-
+2909.5,9869.11557939649,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,-,-
+2910.5,9874.67113474011,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,-,-
+2911.5,9880.22669008374,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,-,-
+2912.5,9885.78224542737,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,-,-
+2913.5,9891.337800771,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,-,-
+2914.5,9896.89335611463,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,-,-
+2915.5,9902.44891145825,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,-,-
+2916.5,9908.00446680188,19.9999992370605,19.9999992370605,0,-1.966393,1071.235,-119.4121,-119.4121,2300,-166.7673,-13.39558,258.0128,-18.70787,-13.39558,0,0,1,0,0,0,0,0,6.630092,0.3323833,-20.35806,-13.39558,0,874.8819,-,-
+2917.5,9913.56002214551,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,-,-
+2918.5,9919.11557748914,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,-,-
+2919.5,9924.67113283277,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,-,-
+2920.5,9930.22668817639,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,-,-
+2921.5,9935.78224352002,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,-,-
+2922.5,9941.33779886365,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,-,-
+2923.5,9946.89335420728,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,-,-
+2924.5,9952.44890955091,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,-,-
+2925.5,9958.00446489453,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,-,-
+2926.5,9963.56002023816,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,-,-
+2927.5,9969.11557558179,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,-,-
+2928.5,9974.67113092542,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,-,-
+2929.5,9980.22668626904,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,-,-
+2930.5,9985.78224161267,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,-,-
+2931.5,9991.3377969563,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,-,-
+2932.5,9996.89335229993,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,-,-
+2933.5,10002.4489076436,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,-,-
+2934.5,10008.0044629872,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,-,-
+2935.5,10013.5600183308,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,-,-
+2936.5,10019.1155736744,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,-,-
+2937.5,10024.6711290181,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,-,-
+2938.5,10030.2266843617,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,-,-
+2939.5,10035.7822397053,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,-,-
+2940.5,10041.337795049,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,-,-
+2941.5,10046.8933503926,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,-,-
+2942.5,10052.4489057362,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,-,-
+2943.5,10058.0044610798,19.9999992370605,19.9999992370605,0,-1.854035,1071.235,-109.045,-109.045,2300,-166.7673,-12.23261,258.0128,-18.70787,-12.23261,0,0,1,0,0,0,0,0,6.630234,0.3323833,-19.19523,-12.23261,0,1066.412,-,-
+2944.5,10063.5600164235,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,-,-
+2945.5,10069.1155717671,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,-,-
+2946.5,10074.6711271107,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,-,-
+2947.5,10080.2266824543,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,-,-
+2948.5,10085.782237798,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,-,-
+2949.5,10091.3377931416,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,-,-
+2950.5,10096.8933484852,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,-,-
+2951.5,10102.4489038289,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,-,-
+2952.5,10108.0044591725,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,-,-
+2953.5,10113.5600145161,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,-,-
+2954.5,10119.1155698597,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,-,-
+2955.5,10124.6711252034,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,-,-
+2956.5,10130.226680547,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,-,-
+2957.5,10135.7822358906,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,-,-
+2958.5,10141.3377912343,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,-,-
+2959.5,10146.8933465779,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,-,-
+2960.5,10152.4489019215,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,-,-
+2961.5,10158.0044572651,19.9999992370605,19.9999992370605,0,-1.354342,1071.235,-62.93289,-62.93289,2300,-166.7673,-7.059779,258.0128,-18.70787,-7.059779,0,0,1,0,0,0,0,0,6.630765,0.3323833,-14.02293,-7.059779,0,1895.538,-,-
+2962.5,10163.5600126088,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,-,-
+2963.5,10169.1155679524,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,-,-
+2964.5,10174.671123296,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,-,-
+2965.5,10180.2266786397,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,-,-
+2966.5,10185.7822339833,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,-,-
+2967.5,10191.3377893269,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,-,-
+2968.5,10196.8933446705,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,-,-
+2969.5,10202.4489000142,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,-,-
+2970.5,10208.0044553578,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,-,-
+2971.5,10213.5600107014,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,-,-
+2972.5,10219.115566045,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,-,-
+2973.5,10224.6711213887,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,-,-
+2974.5,10230.2266767323,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,-,-
+2975.5,10235.7822320759,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,-,-
+2976.5,10241.3377874196,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,-,-
+2977.5,10246.8933427632,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,-,-
+2978.5,10252.4488981068,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,-,-
+2979.5,10258.0044534504,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,-,-
+2980.5,10263.5600087941,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,-,-
+2981.5,10269.1155641377,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,-,-
+2982.5,10274.6711194813,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,-,-
+2983.5,10280.226674825,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,-,-
+2984.5,10285.7822301686,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,-,-
+2985.5,10291.3377855122,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,-,-
+2986.5,10296.8933408558,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,-,-
+2987.5,10302.4488961995,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,-,-
+2988.5,10308.0044515431,19.9999992370605,19.9999992370605,0,-0.7988902,1071.235,-11.66611,-11.66611,2300,-166.7673,-1.308699,258.0128,-18.70787,-1.308699,0,0,1,0,0,0,0,0,6.631162,0.3323833,-8.272243,-1.308699,0,2813.533,-,-
+2989.5,10313.5600068867,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,-,-
+2990.5,10319.1155622303,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,-,-
+2991.5,10324.671117574,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,-,-
+2992.5,10330.2266729176,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,-,-
+2993.5,10335.7822282612,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,-,-
+2994.5,10341.3377836049,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,-,-
+2995.5,10346.8933389485,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,-,-
+2996.5,10352.4488942921,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,-,-
+2997.5,10358.0044496357,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,-,-
+2998.5,10363.5600049794,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,-,-
+2999.5,10369.115560323,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,-,-
+3000.5,10374.6711156666,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,-,-
+3001.5,10380.2266710103,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,-,-
+3002.5,10385.7822263539,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,-,-
+3003.5,10391.3377816975,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,-,-
+3004.5,10396.8933370411,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,-,-
+3005.5,10402.4488923848,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,-,-
+3006.5,10408.0044477284,19.9999992370605,19.9999992370605,0,-0.5415247,1071.235,12.09003,12.09003,2300,-166.7673,1.356253,258.0128,-18.70787,1.356253,0,0,1,0,0,0,0,0,6.631276,0.3323833,-5.607406,1.356253,0,3209.704,-,-
+3007.5,10413.560003072,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,-,-
+3008.5,10419.1155584157,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,-,-
+3009.5,10424.6711137593,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,-,-
+3010.5,10430.2266691029,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,-,-
+3011.5,10435.7822244465,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,-,-
+3012.5,10441.3377797902,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,-,-
+3013.5,10446.8933351338,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,-,-
+3014.5,10452.4488904774,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,-,-
+3015.5,10458.004445821,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,-,-
+3016.5,10463.5600011647,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,-,-
+3017.5,10469.1155565083,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,-,-
+3018.5,10474.6711118519,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,-,-
+3019.5,10480.2266671956,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,-,-
+3020.5,10485.7822225392,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,-,-
+3021.5,10491.3377778828,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,-,-
+3022.5,10496.8933332264,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,-,-
+3023.5,10502.4488885701,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,-,-
+3024.5,10508.0044439137,19.9999992370605,19.9999992370605,0,0.07493361,1071.235,68.99383,68.99383,2300,-166.7673,7.739692,258.0128,-18.70787,7.739692,0,0,1,0,0,0,0,0,6.631371,0.3323833,0.7759373,7.739692,0,4091.144,-,-
+3025.5,10513.5599992573,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,-,-
+3026.5,10519.115554601,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,-,-
+3027.5,10524.6711099446,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,-,-
+3028.5,10530.2266652882,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,-,-
+3029.5,10535.7822206318,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,-,-
+3030.5,10541.3377759755,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,-,-
+3031.5,10546.8933313191,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,-,-
+3032.5,10552.4488866627,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,-,-
+3033.5,10558.0044420064,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,-,-
+3034.5,10563.55999735,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,-,-
+3035.5,10569.1155526936,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,10574.6711080372,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,10580.2266633809,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,10585.7822187245,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,10591.3377740681,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,10596.8933294117,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,10602.4488847554,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,10608.004440099,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,10613.5599954426,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,10619.1155507863,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,10624.6711061299,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,10630.2266614735,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,10635.7822168171,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,10641.3377721608,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,10646.8933275044,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,10652.448882848,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,10658.0044381917,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,10663.5599935353,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,10669.1155488789,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,10674.6711042225,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,10680.2266595662,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,10685.7822149098,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,10691.3377702534,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,10696.893325597,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,10702.4488809407,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,10708.0044362843,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,10713.5599916279,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,-,-
+3062.5,10719.1155469716,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,-,-
+3063.5,10724.6711023152,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,-,-
+3064.5,10730.2266576588,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,-,-
+3065.5,10735.7822130024,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,-,-
+3066.5,10741.3377683461,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,-,-
+3067.5,10746.8933236897,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,-,-
+3068.5,10752.4488790333,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,-,-
+3069.5,10758.004434377,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,-,-
+3070.5,10763.5599897206,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,-,-
+3071.5,10769.1155450642,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,-,-
+3072.5,10774.6711004078,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,-,-
+3073.5,10780.2266557515,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,-,-
+3074.5,10785.7822110951,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,-,-
+3075.5,10791.3377664387,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,-,-
+3076.5,10796.8933217824,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,-,-
+3077.5,10802.448877126,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,-,-
+3078.5,10808.0044324696,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,-,-
+3079.5,10813.5599878132,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,-,-
+3080.5,10819.1155431569,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,-,-
+3081.5,10824.6710985005,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,-,-
+3082.5,10830.2266538441,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,-,-
+3083.5,10835.7822091877,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,-,-
+3084.5,10841.3377645314,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,-,-
+3085.5,10846.893319875,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,-,-
+3086.5,10852.4488752186,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,-,-
+3087.5,10858.0044305623,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,-,-
+3088.5,10863.5599859059,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,-,-
+3089.5,10869.1155412495,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,-,-
+3090.5,10874.6710965931,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,-,-
+3091.5,10880.2266519368,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,-,-
+3092.5,10885.7822072804,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,-,-
+3093.5,10891.337762624,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,-,-
+3094.5,10896.8933179677,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,-,-
+3095.5,10902.4488733113,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,-,-
+3096.5,10908.0044286549,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,-,-
+3097.5,10913.5599839985,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,-,-
+3098.5,10919.1155393422,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,-,-
+3099.5,10924.6710946858,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,-,-
+3100.5,10930.2266500294,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,-,-
+3101.5,10935.782205373,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,-,-
+3102.5,10941.3377607167,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,-,-
+3103.5,10946.8933160603,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,-,-
+3104.5,10952.4488714039,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,-,-
+3105.5,10958.0044267476,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,-,-
+3106.5,10963.5599820912,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,-,-
+3107.5,10969.1155374348,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,-,-
+3108.5,10974.6710927784,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,-,-
+3109.5,10980.2266481221,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,-,-
+3110.5,10985.7822034657,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,-,-
+3111.5,10991.3377588093,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,-,-
+3112.5,10996.893314153,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,-,-
+3113.5,11002.4488694966,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,-,-
+3114.5,11008.0044248402,19.9999992370605,19.9999992370605,0,-0.06431162,1071.235,56.14047,56.14047,2300,-166.7673,6.297809,258.0128,-18.70787,6.297809,0,0,1,0,0,0,0,0,6.631372,0.3323833,-0.6659466,6.297809,0,3892.045,-,-
+3115.5,11013.5599801838,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,-,-
+3116.5,11019.1155355275,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,-,-
+3117.5,11024.6710908711,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,-,-
+3118.5,11030.2266462147,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,-,-
+3119.5,11035.7822015584,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,-,-
+3120.5,11041.337756902,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,-,-
+3121.5,11046.8933122456,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,-,-
+3122.5,11052.4488675892,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,-,-
+3123.5,11058.0044229329,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,-,-
+3124.5,11063.5599782765,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,-,-
+3125.5,11069.1155336201,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,-,-
+3126.5,11074.6710889637,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,-,-
+3127.5,11080.2266443074,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,-,-
+3128.5,11085.782199651,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,-,-
+3129.5,11091.3377549946,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,-,-
+3130.5,11096.8933103383,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,-,-
+3131.5,11102.4488656819,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,-,-
+3132.5,11108.0044210255,19.9999992370605,19.9999992370605,0,-0.9514544,1071.235,-25.74809,-25.74809,2300,-166.7673,-2.888407,258.0128,-18.70787,-2.888407,0,0,1,0,0,0,0,0,6.631073,0.3323833,-9.851864,-2.888407,0,2561.378,-,-
+3133.5,11113.5599763691,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,-,-
+3134.5,11119.1155317128,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,-,-
+3135.5,11124.6710870564,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,-,-
+3136.5,11130.2266424,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,-,-
+3137.5,11135.7821977437,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,-,-
+3138.5,11141.3377530873,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,-,-
+3139.5,11146.8933084309,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,-,-
+3140.5,11152.4488637745,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,-,-
+3141.5,11158.0044191182,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,-,-
+3142.5,11163.5599744618,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,-,-
+3143.5,11169.1155298054,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,-,-
+3144.5,11174.6710851491,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,-,-
+3145.5,11180.2266404927,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,-,-
+3146.5,11185.7821958363,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,-,-
+3147.5,11191.3377511799,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,-,-
+3148.5,11196.8933065236,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,-,-
+3149.5,11202.4488618672,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,-,-
+3150.5,11208.0044172108,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,-,-
+3151.5,11213.5599725544,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,-,-
+3152.5,11219.1155278981,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,-,-
+3153.5,11224.6710832417,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,-,-
+3154.5,11230.2266385853,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,-,-
+3155.5,11235.782193929,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,-,-
+3156.5,11241.3377492726,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,-,-
+3157.5,11246.8933046162,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,-,-
+3158.5,11252.4488599598,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,-,-
+3159.5,11258.0044153035,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,-,-
+3160.5,11263.5599706471,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,-,-
+3161.5,11269.1155259907,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,-,-
+3162.5,11274.6710813344,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,-,-
+3163.5,11280.226636678,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,-,-
+3164.5,11285.7821920216,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,-,-
+3165.5,11291.3377473652,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,-,-
+3166.5,11296.8933027089,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,-,-
+3167.5,11302.4488580525,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,-,-
+3168.5,11308.0044133961,19.9999992370605,19.9999992370605,0,-1.772509,1071.235,-101.5224,-101.5224,2300,-166.7673,-11.38873,258.0128,-18.70787,-11.38873,0,0,1,0,0,0,0,0,6.630332,0.3323833,-18.35145,-11.38873,0,1204.543,-,-
+3169.5,11313.5599687397,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,-,-
+3170.5,11319.1155240834,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,-,-
+3171.5,11324.671079427,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,-,-
+3172.5,11330.2266347706,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,-,-
+3173.5,11335.7821901143,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,-,-
+3174.5,11341.3377454579,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,-,-
+3175.5,11346.8933008015,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,-,-
+3176.5,11352.4488561451,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,-,-
+3177.5,11358.0044114888,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,-,-
+3178.5,11363.5599668324,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,-,-
+3179.5,11369.115522176,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,-,-
+3180.5,11374.6710775197,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,-,-
+3181.5,11380.2266328633,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,-,-
+3182.5,11385.7821882069,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,-,-
+3183.5,11391.3377435505,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,-,-
+3184.5,11396.8932988942,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,-,-
+3185.5,11402.4488542378,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,-,-
+3186.5,11408.0044095814,19.9999992370605,19.9999992370605,0,-2.724053,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628914,0.3323833,-28.19711,-21.23581,-2.527941,2.255232E-05,-,-
+3187.5,11413.5599649251,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,-,-
+3188.5,11419.1155202687,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,-,-
+3189.5,11424.6710756123,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,-,-
+3190.5,11430.2266309559,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,-,-
+3191.5,11435.7821862996,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,-,-
+3192.5,11441.3377416432,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,-,-
+3193.5,11446.8932969868,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,-,-
+3194.5,11452.4488523304,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,-,-
+3195.5,11458.0044076741,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,-,-
+3196.5,11463.5599630177,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,-,-
+3197.5,11469.1155183613,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,-,-
+3198.5,11474.671073705,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,-,-
+3199.5,11480.2266290486,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,-,-
+3200.5,11485.7821843922,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,-,-
+3201.5,11491.3377397358,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,-,-
+3202.5,11496.8932950795,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,-,-
+3203.5,11502.4488504231,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,-,-
+3204.5,11508.0044057667,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,-,-
+3205.5,11513.5599611104,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,-,-
+3206.5,11519.115516454,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,-,-
+3207.5,11524.6710717976,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,-,-
+3208.5,11530.2266271412,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,-,-
+3209.5,11535.7821824849,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,-,-
+3210.5,11541.3377378285,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,-,-
+3211.5,11546.8932931721,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,-,-
+3212.5,11552.4488485157,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,-,-
+3213.5,11558.0044038594,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,-,-
+3214.5,11563.559959203,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,-,-
+3215.5,11569.1155145466,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,-,-
+3216.5,11574.6710698903,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,-,-
+3217.5,11580.2266252339,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,-,-
+3218.5,11585.7821805775,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,-,-
+3219.5,11591.3377359211,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,-,-
+3220.5,11596.8932912648,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,-,-
+3221.5,11602.4488466084,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,-,-
+3222.5,11608.004401952,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,-,-
+3223.5,11613.5599572957,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,-,-
+3224.5,11619.1155126393,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,-,-
+3225.5,11624.6710679829,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,-,-
+3226.5,11630.2266233265,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,-,-
+3227.5,11635.7821786702,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,-,-
+3228.5,11641.3377340138,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,-,-
+3229.5,11646.8932893574,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,-,-
+3230.5,11652.4488447011,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,-,-
+3231.5,11658.0044000447,19.9999992370605,19.9999992370605,0,-2.931549,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628526,0.3323833,-30.34316,-23.38225,-4.674376,2.255232E-05,-,-
+3232.5,11663.5599553883,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,-,-
+3233.5,11669.1155107319,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,-,-
+3234.5,11674.6710660756,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,-,-
+3235.5,11680.2266214192,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,-,-
+3236.5,11685.7821767628,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,-,-
+3237.5,11691.3377321064,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,-,-
+3238.5,11696.8932874501,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,-,-
+3239.5,11702.4488427937,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,-,-
+3240.5,11708.0043981373,19.9999992370605,19.9999992370605,0,-2.252991,1071.235,-145.8531,-145.8531,2300,-166.7673,-16.36173,258.0128,-18.70787,-16.36173,0,0,1,0,0,0,0,0,6.629691,0.3323833,-23.3238,-16.36173,0,386.3867,-,-
+3241.5,11713.559953481,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,-,-
+3242.5,11719.1155088246,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,-,-
+3243.5,11724.6710641682,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,-,-
+3244.5,11730.2266195118,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,-,-
+3245.5,11735.7821748555,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,-,-
+3246.5,11741.3377301991,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,-,-
+3247.5,11746.8932855427,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,-,-
+3248.5,11752.4488408864,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,-,-
+3249.5,11758.00439623,19.9999992370605,19.9999992370605,0,-1.574434,1071.235,-83.24432,-83.24432,2300,-166.7673,-9.338305,258.0128,-18.70787,-9.338305,0,0,1,0,0,0,0,0,6.630552,0.3323833,-16.30124,-9.338305,0,1531.836,-,-
+3250.5,11763.5599515736,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,-,-
+3251.5,11769.1155069172,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,-,-
+3252.5,11774.6710622609,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,-,-
+3253.5,11780.2266176045,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,-,-
+3254.5,11785.7821729481,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,-,-
+3255.5,11791.3377282918,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,-,-
+3256.5,11796.8932836354,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,-,-
+3257.5,11802.448838979,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,-,-
+3258.5,11808.0043943226,19.9999992370605,19.9999992370605,0,-0.8962485,1071.235,-20.65253,-20.65253,2300,-166.7673,-2.31679,258.0128,-18.70787,-2.31679,0,0,1,0,0,0,0,0,6.631107,0.3323833,-9.28028,-2.31679,0,2652.62,-,-
+3259.5,11813.5599496663,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,-,-
+3260.5,11819.1155050099,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,-,-
+3261.5,11824.6710603535,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,-,-
+3262.5,11830.2266156971,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,-,-
+3263.5,11835.7821710408,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,-,-
+3264.5,11841.3377263844,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,-,-
+3265.5,11846.893281728,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,-,-
+3266.5,11852.4488370717,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,-,-
+3267.5,11858.0043924153,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,-,-
+3268.5,11863.5599477589,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,-,-
+3269.5,11869.1155031025,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,-,-
+3270.5,11874.6710584462,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,-,-
+3271.5,11880.2266137898,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,-,-
+3272.5,11885.7821691334,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,-,-
+3273.5,11891.3377244771,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,-,-
+3274.5,11896.8932798207,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,-,-
+3275.5,11902.4488351643,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,-,-
+3276.5,11908.0043905079,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,-,-
+3277.5,11913.5599458516,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,-,-
+3278.5,11919.1155011952,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,-,-
+3279.5,11924.6710565388,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,-,-
+3280.5,11930.2266118824,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,-,-
+3281.5,11935.7821672261,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,-,-
+3282.5,11941.3377225697,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,-,-
+3283.5,11946.8932779133,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,-,-
+3284.5,11952.448833257,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,-,-
+3285.5,11958.0043886006,19.9999992370605,19.9999992370605,0,-0.04687888,1071.235,57.74965,57.74965,2300,-166.7673,6.478325,258.0128,-18.70787,6.478325,0,0,1,0,0,0,0,0,6.631373,0.3323833,-0.4854307,6.478325,0,3916.972,-,-
+3286.5,11963.5599439442,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,-,-
+3287.5,11969.1154992878,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,-,-
+3288.5,11974.6710546315,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,-,-
+3289.5,11980.2266099751,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,-,-
+3290.5,11985.7821653187,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,-,-
+3291.5,11991.3377206624,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,-,-
+3292.5,11996.893276006,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,-,-
+3293.5,12002.4488313496,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,-,-
+3294.5,12008.0043866932,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,-,-
+3295.5,12013.5599420369,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,-,-
+3296.5,12019.1154973805,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,-,-
+3297.5,12024.6710527241,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,-,-
+3298.5,12030.2266080678,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,-,-
+3299.5,12035.7821634114,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,-,-
+3300.5,12041.337718755,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,-,-
+3301.5,12046.8932740986,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,-,-
+3302.5,12052.4488294423,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,-,-
+3303.5,12058.0043847859,19.9999992370605,19.9999992370605,0,0.7321091,1071.235,129.6526,129.6526,2300,-166.7673,14.54436,258.0128,-18.70787,14.54436,0,0,1,0,0,0,0,0,6.631196,0.3323833,7.580786,14.54436,0,5032.933,-,-
+3304.5,12063.5599401295,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,-,-
+3305.5,12069.1154954731,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,-,-
+3306.5,12074.6710508168,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,-,-
+3307.5,12080.2266061604,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,-,-
+3308.5,12085.782161504,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,-,-
+3309.5,12091.3377168477,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,-,-
+3310.5,12096.8932721913,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,-,-
+3311.5,12102.4488275349,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,-,-
+3312.5,12108.0043828785,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,-,-
+3313.5,12113.5599382222,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,-,-
+3314.5,12119.1154935658,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,-,-
+3315.5,12124.6710489094,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,-,-
+3316.5,12130.2266042531,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,-,-
+3317.5,12135.7821595967,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,-,-
+3318.5,12141.3377149403,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,-,-
+3319.5,12146.8932702839,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,-,-
+3320.5,12152.4488256276,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,-,-
+3321.5,12158.0043809712,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,-,-
+3322.5,12163.5599363148,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,-,-
+3323.5,12169.1154916584,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,-,-
+3324.5,12174.6710470021,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,-,-
+3325.5,12180.2266023457,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,-,-
+3326.5,12185.7821576893,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,-,-
+3327.5,12191.337713033,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,-,-
+3328.5,12196.8932683766,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,-,-
+3329.5,12202.4488237202,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,-,-
+3330.5,12208.0043790638,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,-,-
+3331.5,12213.5599344075,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,-,-
+3332.5,12219.1154897511,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,-,-
+3333.5,12224.6710450947,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,-,-
+3334.5,12230.2266004384,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,-,-
+3335.5,12235.782155782,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,-,-
+3336.5,12241.3377111256,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,-,-
+3337.5,12246.8932664692,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,-,-
+3338.5,12252.4488218129,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,-,-
+3339.5,12258.0043771565,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,-,-
+3340.5,12263.5599325001,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,-,-
+3341.5,12269.1154878438,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,-,-
+3342.5,12274.6710431874,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,-,-
+3343.5,12280.226598531,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,-,-
+3344.5,12285.7821538746,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,-,-
+3345.5,12291.3377092183,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,-,-
+3346.5,12296.8932645619,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,-,-
+3347.5,12302.4488199055,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,-,-
+3348.5,12308.0043752491,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,-,-
+3349.5,12313.5599305928,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,-,-
+3350.5,12319.1154859364,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,-,-
+3351.5,12324.67104128,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,-,-
+3352.5,12330.2265966237,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,-,-
+3353.5,12335.7821519673,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,-,-
+3354.5,12341.3377073109,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,-,-
+3355.5,12346.8932626545,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,-,-
+3356.5,12352.4488179982,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,-,-
+3357.5,12358.0043733418,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,-,-
+3358.5,12363.5599286854,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,-,-
+3359.5,12369.1154840291,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,-,-
+3360.5,12374.6710393727,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,-,-
+3361.5,12380.2265947163,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,-,-
+3362.5,12385.7821500599,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,-,-
+3363.5,12391.3377054036,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,-,-
+3364.5,12396.8932607472,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,-,-
+3365.5,12402.4488160908,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,-,-
+3366.5,12408.0043714345,19.9999992370605,19.9999992370605,0,0.8017505,1071.235,136.0802,136.0802,2300,-166.7673,15.2654,258.0128,-18.70787,15.2654,0,0,1,0,0,0,0,0,6.63116,0.3323833,8.30186,15.2654,0,5148.307,-,-
+3367.5,12413.5599267781,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,-,-
+3368.5,12419.1154821217,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,-,-
+3369.5,12424.6710374653,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,-,-
+3370.5,12430.226592809,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,-,-
+3371.5,12435.7821481526,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,-,-
+3372.5,12441.3377034962,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,-,-
+3373.5,12446.8932588398,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,-,-
+3374.5,12452.4488141835,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,-,-
+3375.5,12458.0043695271,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,-,-
+3376.5,12463.5599248707,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,-,-
+3377.5,12469.1154802144,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,-,-
+3378.5,12474.671035558,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,-,-
+3379.5,12480.2265909016,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,-,-
+3380.5,12485.7821462452,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,-,-
+3381.5,12491.3377015889,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,-,-
+3382.5,12496.8932569325,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,-,-
+3383.5,12502.4488122761,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,-,-
+3384.5,12508.0043676198,19.9999992370605,19.9999992370605,0,-0.02397524,1071.235,59.86383,59.86383,2300,-166.7673,6.715493,258.0128,-18.70787,6.715493,0,0,1,0,0,0,0,0,6.631373,0.3323833,-0.2482636,6.715493,0,3949.72,-,-
+3385.5,12513.5599229634,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,-,-
+3386.5,12519.115478307,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,-,-
+3387.5,12524.6710336506,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,-,-
+3388.5,12530.2265889943,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,-,-
+3389.5,12535.7821443379,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,-,-
+3390.5,12541.3376996815,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,-,-
+3391.5,12546.8932550251,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,-,-
+3392.5,12552.4488103688,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,-,-
+3393.5,12558.0043657124,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,-,-
+3394.5,12563.559921056,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,-,-
+3395.5,12569.1154763997,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,-,-
+3396.5,12574.6710317433,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,-,-
+3397.5,12580.2265870869,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,-,-
+3398.5,12585.7821424305,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,-,-
+3399.5,12591.3376977742,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,-,-
+3400.5,12596.8932531178,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,-,-
+3401.5,12602.4488084614,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,-,-
+3402.5,12608.0043638051,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,-,-
+3403.5,12613.5599191487,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,-,-
+3404.5,12619.1154744923,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,-,-
+3405.5,12624.6710298359,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,-,-
+3406.5,12630.2265851796,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,-,-
+3407.5,12635.7821405232,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,-,-
+3408.5,12641.3376958668,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,-,-
+3409.5,12646.8932512105,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,-,-
+3410.5,12652.4488065541,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,-,-
+3411.5,12658.0043618977,19.9999992370605,19.9999992370605,0,-0.9248866,1071.235,-23.29586,-23.29586,2300,-166.7673,-2.613318,258.0128,-18.70787,-2.613318,0,0,1,0,0,0,0,0,6.63109,0.3323833,-9.576791,-2.613318,0,2605.288,-,-
+3412.5,12663.5599172413,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,-,-
+3413.5,12669.115472585,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,-,-
+3414.5,12674.6710279286,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,-,-
+3415.5,12680.2265832722,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,-,-
+3416.5,12685.7821386158,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,-,-
+3417.5,12691.3376939595,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,-,-
+3418.5,12696.8932493031,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,-,-
+3419.5,12702.4488046467,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,-,-
+3420.5,12708.0043599904,19.9999992370605,19.9999992370605,0,-1.433417,1071.235,-70.23058,-70.23058,2300,-166.7673,-7.878429,258.0128,-18.70787,-7.878429,0,0,1,0,0,0,0,0,6.630692,0.3323833,-14.84151,-7.878429,0,1764.863,-,-
+3421.5,12713.559915334,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,-,-
+3422.5,12719.1154706776,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,-,-
+3423.5,12724.6710260212,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,-,-
+3424.5,12730.2265813649,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,-,-
+3425.5,12735.7821367085,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,-,-
+3426.5,12741.3376920521,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,-,-
+3427.5,12746.8932473958,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,-,-
+3428.5,12752.4488027394,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,-,-
+3429.5,12758.004358083,19.9999992370605,19.9999992370605,0,-1.941947,1071.235,-117.1566,-117.1566,2300,-166.7673,-13.14256,258.0128,-18.70787,-13.14256,0,0,1,0,0,0,0,0,6.630124,0.3323833,-20.10507,-13.14256,0,916.5522,-,-
+3430.5,12763.5599134266,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,-,-
+3431.5,12769.1154687703,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,-,-
+3432.5,12774.6710241139,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,-,-
+3433.5,12780.2265794575,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,-,-
+3434.5,12785.7821348011,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,-,-
+3435.5,12791.3376901448,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,-,-
+3436.5,12796.8932454884,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,-,-
+3437.5,12802.448800832,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,-,-
+3438.5,12808.0043561757,19.9999992370605,19.9999992370605,0,-2.450477,1071.235,-164.0702,-164.0702,2300,-166.7673,-18.40531,258.0128,-18.70787,-18.40531,0,0,1,0,0,0,0,0,6.629383,0.3323833,-25.36707,-18.40531,0,49.82937,-,-
+3439.5,12813.5599115193,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,-,-
+3440.5,12819.1154668629,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,-,-
+3441.5,12824.6710222065,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,-,-
+3442.5,12830.2265775502,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,-,-
+3443.5,12835.7821328938,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,-,-
+3444.5,12841.3376882374,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,-,-
+3445.5,12846.8932435811,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,-,-
+3446.5,12852.4487989247,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,-,-
+3447.5,12858.0043542683,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,-,-
+3448.5,12863.5599096119,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,-,-
+3449.5,12869.1154649556,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,-,-
+3450.5,12874.6710202992,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,-,-
+3451.5,12880.2265756428,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,-,-
+3452.5,12885.7821309865,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,-,-
+3453.5,12891.3376863301,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,-,-
+3454.5,12896.8932416737,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,-,-
+3455.5,12902.4487970173,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,-,-
+3456.5,12908.004352361,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,-,-
+3457.5,12913.5599077046,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,-,-
+3458.5,12919.1154630482,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,-,-
+3459.5,12924.6710183918,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,-,-
+3460.5,12930.2265737355,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,-,-
+3461.5,12935.7821290791,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,-,-
+3462.5,12941.3376844227,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,-,-
+3463.5,12946.8932397664,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,-,-
+3464.5,12952.44879511,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,-,-
+3465.5,12958.0043504536,19.9999992370605,19.9999992370605,0,-3.299171,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.627768,0.3323833,-34.14434,-27.18419,-8.476316,2.255232E-05,-,-
+3466.5,12963.5599057972,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,-,-
+3467.5,12969.1154611409,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,-,-
+3468.5,12974.6710164845,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,-,-
+3469.5,12980.2265718281,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,-,-
+3470.5,12985.7821271718,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,-,-
+3471.5,12991.3376825154,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,-,-
+3472.5,12996.893237859,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,-,-
+3473.5,13002.4487932026,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,-,-
+3474.5,13008.0043485463,19.9999992370605,19.9999992370605,0,-3.852731,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.626457,0.3323833,-39.86546,-32.90662,-14.19874,2.255232E-05,-,-
+3475.5,13013.5599038899,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,-,-
+3476.5,13019.1154592335,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,-,-
+3477.5,13024.6710145772,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,-,-
+3478.5,13030.2265699208,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,-,-
+3479.5,13035.7821252644,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,-,-
+3480.5,13041.337680608,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,-,-
+3481.5,13046.8932359517,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,-,-
+3482.5,13052.4487912953,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,-,-
+3483.5,13058.0043466389,19.9999992370605,19.9999992370605,0,-4.409972,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.624935,0.3323833,-45.62091,-38.6636,-19.95572,2.255232E-05,-,-
+3484.5,13063.5599019825,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,-,-
+3485.5,13069.1154573262,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,-,-
+3486.5,13074.6710126698,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,-,-
+3487.5,13080.2265680134,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,-,-
+3488.5,13085.7821233571,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,-,-
+3489.5,13091.3376787007,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,-,-
+3490.5,13096.8932340443,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,-,-
+3491.5,13102.4487893879,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,-,-
+3492.5,13108.0043447316,19.9999992370605,19.9999992370605,0,-5.068926,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.62287,0.3323833,-52.42143,-45.46618,-26.7583,2.255232E-05,-,-
+3493.5,13113.5599000752,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,-,-
+3494.5,13119.1154554188,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,-,-
+3495.5,13124.6710107625,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,-,-
+3496.5,13130.2265661061,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,-,-
+3497.5,13135.7821214497,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,-,-
+3498.5,13141.3376767933,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,-,-
+3499.5,13146.893232137,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,-,-
+3500.5,13152.4487874806,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,-,-
+3501.5,13158.0043428242,19.9999992370605,19.9999992370605,0,-5.195934,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.62244,0.3323833,-53.73141,-46.77659,-28.06872,2.255232E-05,-,-
+3502.5,13163.5598981678,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,-,-
+3503.5,13169.1154535115,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,-,-
+3504.5,13174.6710088551,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,-,-
+3505.5,13180.2265641987,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,-,-
+3506.5,13185.7821195424,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,-,-
+3507.5,13191.337674886,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,-,-
+3508.5,13196.8932302296,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,-,-
+3509.5,13202.4487855732,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,-,-
+3510.5,13208.0043409169,19.9999992370605,19.9999992370605,0,-5.320155,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622009,0.3323833,-55.01241,-48.05801,-29.35014,2.255232E-05,-,-
+3511.5,13213.5598962605,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,-,-
+3512.5,13219.1154516041,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,-,-
+3513.5,13224.6710069478,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,-,-
+3514.5,13230.2265622914,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,-,-
+3515.5,13235.782117635,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,-,-
+3516.5,13241.3376729786,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,-,-
+3517.5,13246.8932283223,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,-,-
+3518.5,13252.4487836659,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,-,-
+3519.5,13258.0043390095,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,-,-
+3520.5,13263.5598943532,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,-,-
+3521.5,13269.1154496968,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,-,-
+3522.5,13274.6710050404,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,-,-
+3523.5,13280.226560384,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,-,-
+3524.5,13285.7821157277,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,-,-
+3525.5,13291.3376710713,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,-,-
+3526.5,13296.8932264149,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,-,-
+3527.5,13302.4487817585,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,-,-
+3528.5,13308.0043371022,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,-,-
+3529.5,13313.5598924458,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,-,-
+3530.5,13319.1154477894,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,-,-
+3531.5,13324.6710031331,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,-,-
+3532.5,13330.2265584767,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,-,-
+3533.5,13335.7821138203,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,-,-
+3534.5,13341.3376691639,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,-,-
+3535.5,13346.8932245076,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,-,-
+3536.5,13352.4487798512,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,-,-
+3537.5,13358.0043351948,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,-,-
+3538.5,13363.5598905385,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,-,-
+3539.5,13369.1154458821,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,-,-
+3540.5,13374.6710012257,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,-,-
+3541.5,13380.2265565693,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,-,-
+3542.5,13385.782111913,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,-,-
+3543.5,13391.3376672566,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,-,-
+3544.5,13396.8932226002,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,-,-
+3545.5,13402.4487779439,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,-,-
+3546.5,13408.0043332875,19.9999992370605,19.9999992370605,0,-5.199091,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.622429,0.3323833,-53.76398,-46.80917,-28.10129,2.255232E-05,-,-
+3547.5,13413.5598886311,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,-,-
+3548.5,13419.1154439747,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,-,-
+3549.5,13424.6709993184,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,-,-
+3550.5,13430.226554662,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,-,-
+3551.5,13435.7821100056,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,-,-
+3552.5,13441.3376653492,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,-,-
+3553.5,13446.8932206929,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,-,-
+3554.5,13452.4487760365,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,13458.0043313801,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,13463.5598867238,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,13469.1154420674,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,13474.670997411,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,13480.2265527546,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,13485.7821080983,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,13491.3376634419,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,13496.8932187855,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,13502.4487741292,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,13508.0043294728,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,13513.5598848164,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,13519.11544016,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,13524.6709955037,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,13530.2265508473,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,13535.7821061909,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,13541.3376615345,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,13546.8932168782,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,13552.4487722218,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,13558.0043275654,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,13563.5598829091,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,13569.1154382527,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,13574.6709935963,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,13580.2265489399,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,13585.7821042836,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,13591.3376596272,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,13596.8932149708,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,13602.4487703145,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,13608.0043256581,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,13613.5598810017,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,13619.1154363453,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,13624.670991689,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,13630.2265470326,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,13635.7821023762,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,13641.3376577199,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,13646.8932130635,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,13652.4487684071,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,13658.0043237507,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,13663.5598790944,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,13669.115434438,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,13674.6709897816,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,13680.2265451252,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,13685.7821004689,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,13691.3376558125,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,13696.8932111561,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,13702.4487664998,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,13708.0043218434,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,13713.559877187,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,13719.1154325306,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,13724.6709878743,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,13730.2265432179,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,13735.7820985615,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,13741.3376539052,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,13746.8932092488,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,13752.4487645924,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,13758.004319936,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,13763.5598752797,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,13769.1154306233,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,13774.6709859669,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,13780.2265413105,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,13785.7820966542,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,13791.3376519978,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,13796.8932073414,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,13802.4487626851,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,13808.0043180287,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,13813.5598733723,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,13819.1154287159,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,13824.6709840596,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,13830.2265394032,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,13835.7820947468,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,13841.3376500905,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,13846.8932054341,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,13852.4487607777,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,13858.0043161213,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,13863.559871465,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,13869.1154268086,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,13874.6709821522,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,13880.2265374959,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,13885.7820928395,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,13891.3376481831,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,13896.8932035267,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,13902.4487588704,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,13908.004314214,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,13913.5598695576,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,13919.1154249012,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,13924.6709802449,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,13930.2265355885,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,13935.7820909321,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,13941.3376462758,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,13946.8932016194,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,13952.448756963,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,13958.0043123066,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,13963.5598676503,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,13969.1154229939,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,13974.6709783375,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,13980.2265336812,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,13985.7820890248,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,13991.3376443684,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,13996.893199712,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,14002.4487550557,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,14008.0043103993,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,14013.5598657429,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,14019.1154210866,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,14024.6709764302,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,-,-
+3658.5,14030.2265317738,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,-,-
+3659.5,14035.7820871174,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,-,-
+3660.5,14041.3376424611,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,-,-
+3661.5,14046.8931978047,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,-,-
+3662.5,14052.4487531483,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,-,-
+3663.5,14058.0043084919,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,-,-
+3664.5,14063.5598638356,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,-,-
+3665.5,14069.1154191792,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,-,-
+3666.5,14074.6709745228,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,-,-
+3667.5,14080.2265298665,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,-,-
+3668.5,14085.7820852101,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,-,-
+3669.5,14091.3376405537,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,-,-
+3670.5,14096.8931958973,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,-,-
+3671.5,14102.448751241,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,-,-
+3672.5,14108.0043065846,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,-,-
+3673.5,14113.5598619282,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,-,-
+3674.5,14119.1154172719,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,-,-
+3675.5,14124.6709726155,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,-,-
+3676.5,14130.2265279591,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,-,-
+3677.5,14135.7820833027,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,-,-
+3678.5,14141.3376386464,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,-,-
+3679.5,14146.89319399,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,-,-
+3680.5,14152.4487493336,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,-,-
+3681.5,14158.0043046772,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,-,-
+3682.5,14163.5598600209,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,-,-
+3683.5,14169.1154153645,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,-,-
+3684.5,14174.6709707081,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,-,-
+3685.5,14180.2265260518,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,-,-
+3686.5,14185.7820813954,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,-,-
+3687.5,14191.337636739,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,-,-
+3688.5,14196.8931920826,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,-,-
+3689.5,14202.4487474263,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,-,-
+3690.5,14208.0043027699,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,-,-
+3691.5,14213.5598581135,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,-,-
+3692.5,14219.1154134572,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,-,-
+3693.5,14224.6709688008,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,-,-
+3694.5,14230.2265241444,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,-,-
+3695.5,14235.782079488,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,-,-
+3696.5,14241.3376348317,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,-,-
+3697.5,14246.8931901753,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,-,-
+3698.5,14252.4487455189,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,-,-
+3699.5,14258.0043008626,19.9999992370605,19.9999992370605,0,-4.984598,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.62315,0.3323833,-51.5515,-44.59597,-25.8881,2.255232E-05,-,-
+3700.5,14263.5598562062,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,-,-
+3701.5,14269.1154115498,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,-,-
+3702.5,14274.6709668934,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,-,-
+3703.5,14280.2265222371,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,-,-
+3704.5,14285.7820775807,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,-,-
+3705.5,14291.3376329243,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,-,-
+3706.5,14296.8931882679,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,-,-
+3707.5,14302.4487436116,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,-,-
+3708.5,14308.0042989552,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,-,-
+3709.5,14313.5598542988,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,-,-
+3710.5,14319.1154096425,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,-,-
+3711.5,14324.6709649861,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,-,-
+3712.5,14330.2265203297,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,-,-
+3713.5,14335.7820756733,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,-,-
+3714.5,14341.337631017,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,-,-
+3715.5,14346.8931863606,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,-,-
+3716.5,14352.4487417042,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,-,-
+3717.5,14358.0042970479,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,-,-
+3718.5,14363.5598523915,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,-,-
+3719.5,14369.1154077351,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,-,-
+3720.5,14374.6709630787,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,-,-
+3721.5,14380.2265184224,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,-,-
+3722.5,14385.782073766,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,-,-
+3723.5,14391.3376291096,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,-,-
+3724.5,14396.8931844532,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,-,-
+3725.5,14402.4487397969,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,-,-
+3726.5,14408.0042951405,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,-,-
+3727.5,14413.5598504841,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,-,-
+3728.5,14419.1154058278,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,-,-
+3729.5,14424.6709611714,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,-,-
+3730.5,14430.226516515,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,-,-
+3731.5,14435.7820718586,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,-,-
+3732.5,14441.3376272023,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,-,-
+3733.5,14446.8931825459,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,-,-
+3734.5,14452.4487378895,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,-,-
+3735.5,14458.0042932332,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,-,-
+3736.5,14463.5598485768,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,-,-
+3737.5,14469.1154039204,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,-,-
+3738.5,14474.670959264,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,-,-
+3739.5,14480.2265146077,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,-,-
+3740.5,14485.7820699513,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,-,-
+3741.5,14491.3376252949,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,-,-
+3742.5,14496.8931806386,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,-,-
+3743.5,14502.4487359822,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,-,-
+3744.5,14508.0042913258,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,-,-
+3745.5,14513.5598466694,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,-,-
+3746.5,14519.1154020131,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,-,-
+3747.5,14524.6709573567,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,-,-
+3748.5,14530.2265127003,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,-,-
+3749.5,14535.7820680439,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,-,-
+3750.5,14541.3376233876,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,-,-
+3751.5,14546.8931787312,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,-,-
+3752.5,14552.4487340748,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,-,-
+3753.5,14558.0042894185,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,-,-
+3754.5,14563.5598447621,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,-,-
+3755.5,14569.1154001057,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,-,-
+3756.5,14574.6709554493,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,-,-
+3757.5,14580.226510793,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,-,-
+3758.5,14585.7820661366,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,-,-
+3759.5,14591.3376214802,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,-,-
+3760.5,14596.8931768239,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,-,-
+3761.5,14602.4487321675,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,-,-
+3762.5,14608.0042875111,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,-,-
+3763.5,14613.5598428547,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,-,-
+3764.5,14619.1153981984,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,-,-
+3765.5,14624.670953542,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,-,-
+3766.5,14630.2265088856,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,-,-
+3767.5,14635.7820642293,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,-,-
+3768.5,14641.3376195729,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,-,-
+3769.5,14646.8931749165,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,-,-
+3770.5,14652.4487302601,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,-,-
+3771.5,14658.0042856038,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,-,-
+3772.5,14663.5598409474,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,-,-
+3773.5,14669.115396291,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,-,-
+3774.5,14674.6709516346,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,-,-
+3775.5,14680.2265069783,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,-,-
+3776.5,14685.7820623219,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,-,-
+3777.5,14691.3376176655,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,-,-
+3778.5,14696.8931730092,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,-,-
+3779.5,14702.4487283528,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,-,-
+3780.5,14708.0042836964,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,-,-
+3781.5,14713.55983904,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,-,-
+3782.5,14719.1153943837,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,-,-
+3783.5,14724.6709497273,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,-,-
+3784.5,14730.2265050709,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,-,-
+3785.5,14735.7820604146,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,-,-
+3786.5,14741.3376157582,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,-,-
+3787.5,14746.8931711018,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,-,-
+3788.5,14752.4487264454,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,-,-
+3789.5,14758.0042817891,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,-,-
+3790.5,14763.5598371327,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,-,-
+3791.5,14769.1153924763,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,-,-
+3792.5,14774.6709478199,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,-,-
+3793.5,14780.2265031636,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,-,-
+3794.5,14785.7820585072,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,-,-
+3795.5,14791.3376138508,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,-,-
+3796.5,14796.8931691945,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,-,-
+3797.5,14802.4487245381,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,-,-
+3798.5,14808.0042798817,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,-,-
+3799.5,14813.5598352253,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,-,-
+3800.5,14819.115390569,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,-,-
+3801.5,14824.6709459126,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,-,-
+3802.5,14830.2265012562,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,-,-
+3803.5,14835.7820565999,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,-,-
+3804.5,14841.3376119435,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,-,-
+3805.5,14846.8931672871,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,-,-
+3806.5,14852.4487226307,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,-,-
+3807.5,14858.0042779744,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,-,-
+3808.5,14863.559833318,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,-,-
+3809.5,14869.1153886616,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,-,-
+3810.5,14874.6709440053,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,-,-
+3811.5,14880.2264993489,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,-,-
+3812.5,14885.7820546925,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,-,-
+3813.5,14891.3376100361,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,-,-
+3814.5,14896.8931653798,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,-,-
+3815.5,14902.4487207234,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,-,-
+3816.5,14908.004276067,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,-,-
+3817.5,14913.5598314106,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,-,-
+3818.5,14919.1153867543,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,-,-
+3819.5,14924.6709420979,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,-,-
+3820.5,14930.2264974415,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,-,-
+3821.5,14935.7820527852,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,-,-
+3822.5,14941.3376081288,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,-,-
+3823.5,14946.8931634724,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,-,-
+3824.5,14952.448718816,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,-,-
+3825.5,14958.0042741597,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,-,-
+3826.5,14963.5598295033,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,-,-
+3827.5,14969.1153848469,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,-,-
+3828.5,14974.6709401906,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,-,-
+3829.5,14980.2264955342,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,-,-
+3830.5,14985.7820508778,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,-,-
+3831.5,14991.3376062214,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,-,-
+3832.5,14996.8931615651,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,-,-
+3833.5,15002.4487169087,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,-,-
+3834.5,15008.0042722523,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,-,-
+3835.5,15013.5598275959,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,-,-
+3836.5,15019.1153829396,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,-,-
+3837.5,15024.6709382832,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,-,-
+3838.5,15030.2264936268,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,-,-
+3839.5,15035.7820489705,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,-,-
+3840.5,15041.3376043141,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,-,-
+3841.5,15046.8931596577,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,-,-
+3842.5,15052.4487150013,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,-,-
+3843.5,15058.004270345,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,-,-
+3844.5,15063.5598256886,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,-,-
+3845.5,15069.1153810322,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,-,-
+3846.5,15074.6709363759,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,-,-
+3847.5,15080.2264917195,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,-,-
+3848.5,15085.7820470631,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,-,-
+3849.5,15091.3376024067,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,-,-
+3850.5,15096.8931577504,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,-,-
+3851.5,15102.448713094,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,-,-
+3852.5,15108.0042684376,19.9999992370605,19.9999992370605,0,-3.608922,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.627059,0.3323833,-37.34607,-30.38663,-11.67875,2.255232E-05,-,-
+3853.5,15113.5598237813,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,-,-
+3854.5,15119.1153791249,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,-,-
+3855.5,15124.6709344685,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,-,-
+3856.5,15130.2264898121,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,-,-
+3857.5,15135.7820451558,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,-,-
+3858.5,15141.3376004994,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,-,-
+3859.5,15146.893155843,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,-,-
+3860.5,15152.4487111866,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,-,-
+3861.5,15158.0042665303,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,-,-
+3862.5,15163.5598218739,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,-,-
+3863.5,15169.1153772175,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,-,-
+3864.5,15174.6709325612,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,-,-
+3865.5,15180.2264879048,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,-,-
+3866.5,15185.7820432484,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,-,-
+3867.5,15191.337598592,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,-,-
+3868.5,15196.8931539357,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,-,-
+3869.5,15202.4487092793,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,-,-
+3870.5,15208.0042646229,19.9999992370605,19.9999992370605,0,-3.050962,1071.235,-166.7673,-166.7673,2300,-166.7673,-18.70787,258.0128,-18.70787,-18.70787,0,0,1,0,0,0,0,0,6.628289,0.3323833,-31.57802,-24.61734,-5.909472,2.255232E-05,-,-
+3871.5,15213.5598199666,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,-,-
+3872.5,15219.1153753102,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,-,-
+3873.5,15224.6709306538,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,-,-
+3874.5,15230.2264859974,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,-,-
+3875.5,15235.7820413411,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,-,-
+3876.5,15241.3375966847,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,-,-
+3877.5,15246.8931520283,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,-,-
+3878.5,15252.448707372,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,-,-
+3879.5,15258.0042627156,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,-,-
+3880.5,15263.5598180592,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,-,-
+3881.5,15269.1153734028,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,-,-
+3882.5,15274.6709287465,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,-,-
+3883.5,15280.2264840901,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,-,-
+3884.5,15285.7820394337,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,-,-
+3885.5,15291.3375947773,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,-,-
+3886.5,15296.893150121,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,-,-
+3887.5,15302.4487054646,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,-,-
+3888.5,15308.0042608082,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,-,-
+3889.5,15313.5598161519,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,-,-
+3890.5,15319.1153714955,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,-,-
+3891.5,15324.6709268391,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,-,-
+3892.5,15330.2264821827,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,-,-
+3893.5,15335.7820375264,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,-,-
+3894.5,15341.33759287,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,-,-
+3895.5,15346.8931482136,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,-,-
+3896.5,15352.4487035573,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,-,-
+3897.5,15358.0042589009,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,-,-
+3898.5,15363.5598142445,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,-,-
+3899.5,15369.1153695881,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,-,-
+3900.5,15374.6709249318,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,-,-
+3901.5,15380.2264802754,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,-,-
+3902.5,15385.782035619,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,-,-
+3903.5,15391.3375909626,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,-,-
+3904.5,15396.8931463063,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,-,-
+3905.5,15402.4487016499,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,-,-
+3906.5,15408.0042569935,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,-,-
+3907.5,15413.5598123372,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,-,-
+3908.5,15419.1153676808,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,-,-
+3909.5,15424.6709230244,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,-,-
+3910.5,15430.226478368,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,-,-
+3911.5,15435.7820337117,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,-,-
+3912.5,15441.3375890553,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,-,-
+3913.5,15446.8931443989,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,-,-
+3914.5,15452.4486997426,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,-,-
+3915.5,15458.0042550862,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,-,-
+3916.5,15463.5598104298,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,-,-
+3917.5,15469.1153657734,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,-,-
+3918.5,15474.6709211171,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,-,-
+3919.5,15480.2264764607,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,-,-
+3920.5,15485.7820318043,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,-,-
+3921.5,15491.337587148,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,-,-
+3922.5,15496.8931424916,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,-,-
+3923.5,15502.4486978352,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,-,-
+3924.5,15508.0042531788,19.9999992370605,19.9999992370605,0,-2.379764,1071.235,-157.5476,-157.5476,2300,-166.7673,-17.6736,258.0128,-18.70787,-17.6736,0,0,1,0,0,0,0,0,6.629497,0.3323833,-24.63548,-17.6736,0,170.334,-,-
+3925.5,15513.5598085225,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,-,-
+3926.5,15519.1153638661,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,-,-
+3927.5,15524.6709192097,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,-,-
+3928.5,15530.2264745533,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,-,-
+3929.5,15535.782029897,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,-,-
+3930.5,15541.3375852406,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,-,-
+3931.5,15546.8931405842,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,-,-
+3932.5,15552.4486959279,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,-,-
+3933.5,15558.0042512715,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,-,-
+3934.5,15563.5598066151,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,-,-
+3935.5,15569.1153619587,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,-,-
+3936.5,15574.6709173024,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,-,-
+3937.5,15580.226472646,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,-,-
+3938.5,15585.7820279896,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,-,-
+3939.5,15591.3375833333,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,-,-
+3940.5,15596.8931386769,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,-,-
+3941.5,15602.4486940205,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,-,-
+3942.5,15608.0042493641,19.9999992370605,19.9999992370605,0,-1.66513,1071.235,-91.61389,-91.61389,2300,-166.7673,-10.2772,258.0128,-18.70787,-10.2772,0,0,1,0,0,0,0,0,6.630454,0.3323833,-17.24004,-10.2772,0,1381.968,-,-
+3943.5,15613.5598047078,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,-,-
+3944.5,15619.1153600514,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,-,-
+3945.5,15624.670915395,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,-,-
+3946.5,15630.2264707386,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,15635.7820260823,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,15641.3375814259,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,15646.8931367695,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,15652.4486921132,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,15658.0042474568,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,15663.5598028004,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,15669.115358144,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,15674.6709134877,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,15680.2264688313,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,15685.7820241749,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,15691.3375795186,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,15696.8931348622,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,15702.4486902058,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,15708.0042455494,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,15713.5598008931,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,15719.1153562367,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,15724.6709115803,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,15730.226466924,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,15735.7820222676,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,15741.3375776112,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,15746.8931329548,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,15752.4486882985,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,15758.0042436421,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,15763.5597989857,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,15769.1153543293,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,15774.670909673,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,15780.2264650166,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,15785.7820203602,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,15791.3375757039,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,15796.8931310475,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,15802.4486863911,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,15808.0042417347,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,15813.5597970784,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,15819.115352422,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,15824.6709077656,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,15830.2264631093,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,15835.7820184529,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,15841.3375737965,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,15846.8931291401,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,15852.4486844838,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,15858.0042398274,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,15863.559795171,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,15869.1153505147,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,15874.6709058583,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,15880.2264612019,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,15885.7820165455,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,15891.3375718892,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,15896.8931272328,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,15902.4486825764,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,15908.00423792,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,15913.5597932637,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,15919.1153486073,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,15924.6709039509,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,15930.2264592946,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,15935.7820146382,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,15941.3375699818,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,15946.8931253254,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,15952.4486806691,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,15958.0042360127,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,15963.5597913563,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,15969.1153467,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,15974.6709020436,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,15980.2264573872,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,15985.7820127308,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,15991.3375680745,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,15996.8931234181,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,16002.4486787617,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,16008.0042341053,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,16013.559789449,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,16019.1153447926,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,16024.6709001362,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,16030.2264554799,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,16035.7820108235,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,16041.3375661671,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,16046.8931215107,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,16052.4486768544,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,16058.004232198,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,16063.5597875416,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,16069.1153428853,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,16074.6708982289,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,16080.2264535725,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,16085.7820089161,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,16091.3375642598,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,16096.8931196034,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,16102.448674947,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,16108.0042302907,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,16113.5597856343,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,16119.1153409779,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,16124.6708963215,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,16130.2264516652,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,16135.7820070088,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,16141.3375623524,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,16146.893117696,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,16152.4486730397,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,16158.0042283833,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,16163.5597837269,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,16169.1153390706,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,16174.6708944142,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,16180.2264497578,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,16185.7820051014,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,16191.3375604451,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,16196.8931157887,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,16202.4486711323,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,16208.004226476,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,16213.5597818196,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,-,-
+4052.5,16219.1153371632,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,-,-
+4053.5,16224.6708925068,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,-,-
+4054.5,16230.2264478505,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,-,-
+4055.5,16235.7820031941,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,-,-
+4056.5,16241.3375585377,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,-,-
+4057.5,16246.8931138814,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,-,-
+4058.5,16252.448669225,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,-,-
+4059.5,16258.0042245686,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,-,-
+4060.5,16263.5597799122,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,-,-
+4061.5,16269.1153352559,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,-,-
+4062.5,16274.6708905995,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,-,-
+4063.5,16280.2264459431,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,-,-
+4064.5,16285.7820012867,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,-,-
+4065.5,16291.3375566304,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,-,-
+4066.5,16296.893111974,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,-,-
+4067.5,16302.4486673176,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,-,-
+4068.5,16308.0042226613,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,-,-
+4069.5,16313.5597780049,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,-,-
+4070.5,16319.1153333485,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,-,-
+4071.5,16324.6708886921,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,-,-
+4072.5,16330.2264440358,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,-,-
+4073.5,16335.7819993794,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,-,-
+4074.5,16341.337554723,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,-,-
+4075.5,16346.8931100667,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,-,-
+4076.5,16352.4486654103,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,-,-
+4077.5,16358.0042207539,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,-,-
+4078.5,16363.5597760975,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,-,-
+4079.5,16369.1153314412,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,-,-
+4080.5,16374.6708867848,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,-,-
+4081.5,16380.2264421284,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,-,-
+4082.5,16385.781997472,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,-,-
+4083.5,16391.3375528157,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,-,-
+4084.5,16396.8931081593,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,-,-
+4085.5,16402.4486635029,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,-,-
+4086.5,16408.0042188466,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,-,-
+4087.5,16413.5597741902,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,-,-
+4088.5,16419.1153295338,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,-,-
+4089.5,16424.6708848774,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,-,-
+4090.5,16430.2264402211,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,-,-
+4091.5,16435.7819955647,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,-,-
+4092.5,16441.3375509083,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,-,-
+4093.5,16446.893106252,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,-,-
+4094.5,16452.4486615956,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,-,-
+4095.5,16458.0042169392,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,-,-
+4096.5,16463.5597722828,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,-,-
+4097.5,16469.1153276265,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,-,-
+4098.5,16474.6708829701,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,-,-
+4099.5,16480.2264383137,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,-,-
+4100.5,16485.7819936574,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,-,-
+4101.5,16491.337549001,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,-,-
+4102.5,16496.8931043446,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,-,-
+4103.5,16502.4486596882,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,-,-
+4104.5,16508.0042150319,19.9999992370605,19.9999992370605,0,-1.139468,1071.235,-43.10147,-43.10147,2300,-166.7673,-4.835101,258.0128,-18.70787,-4.835101,0,0,1,0,0,0,0,0,6.630943,0.3323833,-11.79843,-4.835101,0,2250.644,-,-
+4105.5,16513.5597703755,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,-,-
+4106.5,16519.1153257191,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,-,-
+4107.5,16524.6708810627,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,-,-
+4108.5,16530.2264364064,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,-,-
+4109.5,16535.78199175,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,-,-
+4110.5,16541.3375470936,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,-,-
+4111.5,16546.8931024373,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,-,-
+4112.5,16552.4486577809,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,-,-
+4113.5,16558.0042131245,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,-,-
+4114.5,16563.5597684681,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,-,-
+4115.5,16569.1153238118,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,-,-
+4116.5,16574.6708791554,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,-,-
+4117.5,16580.226434499,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,-,-
+4118.5,16585.7819898427,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,-,-
+4119.5,16591.3375451863,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,-,-
+4120.5,16596.8931005299,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,-,-
+4121.5,16602.4486558735,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,-,-
+4122.5,16608.0042112172,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,-,-
+4123.5,16613.5597665608,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,-,-
+4124.5,16619.1153219044,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,-,-
+4125.5,16624.670877248,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,-,-
+4126.5,16630.2264325917,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,-,-
+4127.5,16635.7819879353,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,-,-
+4128.5,16641.3375432789,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,-,-
+4129.5,16646.8930986226,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,-,-
+4130.5,16652.4486539662,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,-,-
+4131.5,16658.0042093098,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,-,-
+4132.5,16663.5597646534,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,-,-
+4133.5,16669.1153199971,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,-,-
+4134.5,16674.6708753407,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,-,-
+4135.5,16680.2264306843,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,-,-
+4136.5,16685.781986028,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,-,-
+4137.5,16691.3375413716,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,-,-
+4138.5,16696.8930967152,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,-,-
+4139.5,16702.4486520588,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,-,-
+4140.5,16708.0042074025,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,-,-
+4141.5,16713.5597627461,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,-,-
+4142.5,16719.1153180897,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,-,-
+4143.5,16724.6708734334,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,-,-
+4144.5,16730.226428777,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,-,-
+4145.5,16735.7819841206,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,-,-
+4146.5,16741.3375394642,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,-,-
+4147.5,16746.8930948079,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,-,-
+4148.5,16752.4486501515,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,-,-
+4149.5,16758.0042054951,19.9999992370605,19.9999992370605,0,-0.4571993,1071.235,19.87385,19.87385,2300,-166.7673,2.229438,258.0128,-18.70787,2.229438,0,0,1,0,0,0,0,0,6.631304,0.3323833,-4.73425,2.229438,0,3330.275,-,-
+4150.5,16763.5597608387,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,-,-
+4151.5,16769.1153161824,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,-,-
+4152.5,16774.670871526,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,-,-
+4153.5,16780.2264268696,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,-,-
+4154.5,16785.7819822133,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,-,-
+4155.5,16791.3375375569,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,-,-
+4156.5,16796.8930929005,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,-,-
+4157.5,16802.4486482441,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,-,-
diff --git a/VectoCoreTest/TestData/Integration/MinimalPowerTrain/24t Coach-1Gear_1-Gear-Test-dist.vmod b/VectoCoreTest/TestData/Integration/MinimalPowerTrain/24t Coach-1Gear_1-Gear-Test-dist.vmod
new file mode 100644
index 0000000000000000000000000000000000000000..f9315f7f92e6dd96498d2996a58c452ef2f234e0
--- /dev/null
+++ b/VectoCoreTest/TestData/Integration/MinimalPowerTrain/24t Coach-1Gear_1-Gear-Test-dist.vmod	
@@ -0,0 +1,4116 @@
+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,-,-
diff --git a/VectoCoreTest/TestData/Integration/MinimalPowerTrain/24t Coach-1Gear_Coach_24t_InitTest.vmod b/VectoCoreTest/TestData/Integration/MinimalPowerTrain/24t Coach-1Gear_Coach_24t_InitTest.vmod
new file mode 100644
index 0000000000000000000000000000000000000000..a4efbbf2dff03c06cb052c9e38c2f668201cb07b
--- /dev/null
+++ b/VectoCoreTest/TestData/Integration/MinimalPowerTrain/24t Coach-1Gear_Coach_24t_InitTest.vmod	
@@ -0,0 +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,-,-
diff --git a/VectoCoreTest/TestData/Integration/MinimalPowerTrain/24t Coach-1Gear_Coach_24t_xshort.vmod b/VectoCoreTest/TestData/Integration/MinimalPowerTrain/24t Coach-1Gear_Coach_24t_xshort.vmod
index 4fb6fa8d16515a99d8a52f5d8dee53d96f4efe1c..6ed2337b0075fc91e3eb2a9965ad6d575b85a06b 100644
--- a/VectoCoreTest/TestData/Integration/MinimalPowerTrain/24t Coach-1Gear_Coach_24t_xshort.vmod	
+++ b/VectoCoreTest/TestData/Integration/MinimalPowerTrain/24t Coach-1Gear_Coach_24t_xshort.vmod	
@@ -39,3705 +39,3705 @@
 38.5,0,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
 39.5,0,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
 40.5,0,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-41.5,0.585833489894867,2.10900056362152,9,1.171667,2.842372,593.1891,417.3589,306.3294,1264.632,-148.1703,25.92576,78.55721,-9.204132,19.02876,0.797003,6.1,1,0.951438,0.9038661,0,0,13.37163,0.6989962,0.0003897439,3.102433,17.17345,0,5664.798,-,-
-42.5,2.44422763586044,6.69021892547607,18,1.373454,2.842372,593.1891,1200.451,1102.252,1264.632,-148.1703,74.57038,78.55721,-9.204132,68.47038,0,6.1,1,3.42352,3.252344,0,0,49.7231,2.217371,0.01244143,9.841607,61.79452,0,14026.08,-,-
-43.5,5.39250653982162,10.6138040542603,18,0.8063157,2.842372,593.6925,1265.52,1167.204,1265.916,-148.1577,78.67906,78.70368,-9.211161,72.56662,0.01244229,6.1,1,3.628332,3.446915,0,0,46.31053,3.517784,0.04967781,15.61337,65.49137,0,14914.71,-,-
-44.5,9.29502385854721,14.0490623474121,18,1.102161,2.842372,752.4925,1669.793,1535.89,1670.094,-148.7625,131.5811,131.6048,-11.72261,121.0294,4.451633,6.1,1,6.051473,5.748899,0,0,83.7907,4.656349,0.1152103,20.66679,109.229,0,25668.87,-,-
-45.5,14.0218228697777,17.0164764404297,18,0.5464025,2.842372,911.4324,1064.159,942.5479,2074.595,-155.1288,101.5687,198.0097,-14.80626,89.96146,5.507201,6.1,1,4.498074,4.27317,0,0,50.31366,5.639853,0.204719,25.03199,81.19022,0,19193.77,-,-
-46.5,19.0218228697777,18,18,0,2.842372,964.1117,439.5303,358.7326,2208.664,-158.0261,44.37566,222.9902,-15.95456,36.2182,2.057459,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9409.97,-,-
-47.5,24.0218228697777,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-48.5,29.0218228697777,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-49.5,34.0218228697777,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-50.5,39.0218228697777,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-51.5,44.0218228697777,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-52.5,49.0218228697777,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-53.5,54.0218228697777,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-54.5,59.0218228697777,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-55.5,64.0218228697777,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-56.5,69.0218228697777,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-57.5,74.0218228697777,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-58.5,79.0218228697777,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-59.5,84.0218228697777,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-60.5,89.0218228697777,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-61.5,94.0218228697777,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-62.5,99.0218228697777,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-63.5,104.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-64.5,109.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-65.5,114.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-66.5,119.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-67.5,124.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-68.5,129.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-69.5,134.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-70.5,139.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-71.5,144.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-72.5,149.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-73.5,154.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-74.5,159.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-75.5,164.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-76.5,169.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-77.5,174.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-78.5,179.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-79.5,184.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-80.5,189.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-81.5,194.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-82.5,199.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-83.5,204.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-84.5,209.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-85.5,214.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-86.5,219.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-87.5,224.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-88.5,229.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-89.5,234.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-90.5,239.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-91.5,244.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-92.5,249.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-93.5,254.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-94.5,259.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-95.5,264.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-96.5,269.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-97.5,274.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-98.5,279.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-99.5,284.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-100.5,289.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-101.5,294.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-102.5,299.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-103.5,304.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-104.5,309.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-105.5,314.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-106.5,319.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-107.5,324.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-108.5,329.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-109.5,334.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-110.5,339.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-111.5,344.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-112.5,349.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-113.5,354.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-114.5,359.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-115.5,364.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-116.5,369.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-117.5,374.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-118.5,379.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-119.5,384.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-120.5,389.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-121.5,394.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-122.5,399.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-123.5,404.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-124.5,409.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-125.5,414.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-126.5,419.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-127.5,424.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-128.5,429.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-129.5,434.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-130.5,439.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-131.5,444.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-132.5,449.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-133.5,454.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-134.5,459.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-135.5,464.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-136.5,469.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-137.5,474.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-138.5,479.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-139.5,484.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-140.5,489.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-141.5,494.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-142.5,499.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-143.5,504.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-144.5,509.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-145.5,514.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-146.5,519.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-147.5,524.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-148.5,529.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-149.5,534.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-150.5,539.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-151.5,544.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-152.5,549.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-153.5,554.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-154.5,559.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-155.5,564.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-156.5,569.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-157.5,574.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-158.5,579.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-159.5,584.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-160.5,589.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-161.5,594.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-162.5,599.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-163.5,604.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-164.5,609.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-165.5,614.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-166.5,619.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-167.5,624.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-168.5,629.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-169.5,634.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-170.5,639.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-171.5,644.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-172.5,649.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-173.5,654.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-174.5,659.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-175.5,664.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-176.5,669.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-177.5,674.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-178.5,679.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-179.5,684.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-180.5,689.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-181.5,694.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-182.5,699.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-183.5,704.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-184.5,709.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-185.5,714.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-186.5,719.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-187.5,724.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-188.5,729.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-189.5,734.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-190.5,739.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-191.5,744.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-192.5,749.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-193.5,754.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-194.5,759.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-195.5,764.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-196.5,769.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-197.5,774.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-198.5,779.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-199.5,784.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-200.5,789.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-201.5,794.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-202.5,799.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-203.5,804.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-204.5,809.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-205.5,814.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-206.5,819.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-207.5,824.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-208.5,829.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-209.5,834.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-210.5,839.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-211.5,844.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-212.5,849.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-213.5,854.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-214.5,859.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-215.5,864.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-216.5,869.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-217.5,874.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-218.5,879.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-219.5,884.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-220.5,889.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-221.5,894.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-222.5,899.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-223.5,904.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-224.5,909.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-225.5,914.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-226.5,919.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-227.5,924.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-228.5,929.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-229.5,934.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-230.5,939.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-231.5,944.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-232.5,949.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-233.5,954.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-234.5,959.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-235.5,964.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-236.5,969.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-237.5,974.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-238.5,979.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-239.5,984.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-240.5,989.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-241.5,994.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-242.5,999.021822869778,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-243.5,1004.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-244.5,1009.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-245.5,1014.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-246.5,1019.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-247.5,1024.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-248.5,1029.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-249.5,1034.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-250.5,1039.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-251.5,1044.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-252.5,1049.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-253.5,1054.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-254.5,1059.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-255.5,1064.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-256.5,1069.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-257.5,1074.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-258.5,1079.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-259.5,1084.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-260.5,1089.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-261.5,1094.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-262.5,1099.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-263.5,1104.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-264.5,1109.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-265.5,1114.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-266.5,1119.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-267.5,1124.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-268.5,1129.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-269.5,1134.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-270.5,1139.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-271.5,1144.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-272.5,1149.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-273.5,1154.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-274.5,1159.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-275.5,1164.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-276.5,1169.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-277.5,1174.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-278.5,1179.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-279.5,1184.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-280.5,1189.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-281.5,1194.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-282.5,1199.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-283.5,1204.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-284.5,1209.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-285.5,1214.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-286.5,1219.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-287.5,1224.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-288.5,1229.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-289.5,1234.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-290.5,1239.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-291.5,1244.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-292.5,1249.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-293.5,1254.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-294.5,1259.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-295.5,1264.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-296.5,1269.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-297.5,1274.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-298.5,1279.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-299.5,1284.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-300.5,1289.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-301.5,1294.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-302.5,1299.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-303.5,1304.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-304.5,1309.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-305.5,1314.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-306.5,1319.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-307.5,1324.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-308.5,1329.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-309.5,1334.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-310.5,1339.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-311.5,1344.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-312.5,1349.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-313.5,1354.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-314.5,1359.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-315.5,1364.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-316.5,1369.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-317.5,1374.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-318.5,1379.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-319.5,1384.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-320.5,1389.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-321.5,1394.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-322.5,1399.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-323.5,1404.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-324.5,1409.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-325.5,1414.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-326.5,1419.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-327.5,1424.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-328.5,1429.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-329.5,1434.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-330.5,1439.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-331.5,1444.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-332.5,1449.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-333.5,1454.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-334.5,1459.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-335.5,1464.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-336.5,1469.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-337.5,1474.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-338.5,1479.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-339.5,1484.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-340.5,1489.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-341.5,1494.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-342.5,1499.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-343.5,1504.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-344.5,1509.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-345.5,1514.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-346.5,1519.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-347.5,1524.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-348.5,1529.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-349.5,1534.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-350.5,1539.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-351.5,1544.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-352.5,1549.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-353.5,1554.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-354.5,1559.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-355.5,1564.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-356.5,1569.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-357.5,1574.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-358.5,1579.02182286978,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-359.5,1583.92869561911,17.664741897583,18,-0.1862545,2.842372,946.1547,213.8869,159.5307,2162.964,-157.0385,21.19215,214.3088,-15.55955,15.80647,-0.7143196,6.1,1,0.7903237,0.7508075,0,0,-17.804,5.854711,0.2290188,25.98561,14.26534,0,5701.411,-,-
-360.5,1588.64931386709,16.994225692749,18,-0.186255,2.842372,910.2407,208.7691,159.3394,2071.563,-155.0632,19.89991,197.4617,-14.78065,15.18826,-1.388348,6.1,1,0.7594131,0.7214425,0,0,-17.12825,5.632478,0.203917,24.99925,13.7074,0,5330.286,-,-
-361.5,1593.1033872962,16.0346643447876,18,-0.3468342,2.842372,858.8448,36.52743,-10.24486,1940.76,-152.2365,3.285205,174.5481,-13.69185,-0.9214025,-1.893393,6.1,1,0.04849488,0.05104724,0,0,-30.09438,5.314446,0.1712888,23.5877,-1.020945,0,2608.713,-,-
-362.5,1597.21062654257,14.7860612869263,18,-0.3468344,2.842372,791.9675,35.3288,-10.50233,1770.557,-148.9598,2.929981,146.8405,-12.35393,-0.8710073,-2.299011,6.1,1,0.0458425,0.04825526,0,0,-27.75098,4.900616,0.1343095,21.75095,-0.9651051,0,2266.911,-,-
-363.5,1600.98285478354,13.5800216674805,18,-0.3231871,2.842372,727.3699,65.35596,12.10379,1606.156,-148.6369,4.978163,122.3409,-11.32167,0.9219458,-2.043783,6.1,1,0.0460973,0.04379243,0,0,-23.7497,4.500892,0.1040521,19.97681,0.832056,0,2347.031,-,-
-364.5,1604.43189591169,12.4165480613709,18,-0.3231874,2.842372,665.0522,73.49796,11.85528,1447.558,-148.3253,5.1187,100.8139,-10.32998,0.8256506,-1.806951,6.1,1,0.04128254,0.03921841,0,0,-21.71495,4.115276,0.07953383,18.26529,0.7451496,0,2293.473,-,-
-365.5,1607.66137045622,11.6261083602905,14.4999996185303,-0.1159458,2.842372,622.7148,309.3709,233.2381,1339.809,-148.1136,20.17424,87.3697,-9.658566,15.20958,-1.135338,6.1,1,0.7604793,0.7224554,0,0,-7.294458,3.853297,0.06529085,17.10252,13.72665,0,4633.666,-,-
-366.5,1610.7748991847,11.2087034225464,11.0000000953674,-0.1159461,2.842372,600.3578,321.1291,233.1596,1282.911,-148.0018,20.18917,80.65574,-9.304772,14.65859,-0.5694163,6.1,1,0.7329296,0.696283,0,0,-7.032584,3.714955,0.05850802,16.4885,13.22937,0,4655.742,-,-
-367.5,1613.83045476675,11.0000000953674,11.0000000953674,0,2.842372,594.9185,449.3625,353.622,1269.042,-148.127,27.99516,79.06096,-9.228272,22.03055,-0.1353888,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6078.713,-,-
-368.5,1616.8860103488,11.0000000953674,11.0000000953674,0,2.842372,594.9185,451.5357,353.622,1269.042,-148.127,28.13055,79.06096,-9.228272,22.03055,0,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6106.997,-,-
-369.5,1619.94156593084,11.0000000953674,11.0000000953674,0,2.842372,594.9185,451.5357,353.622,1269.042,-148.127,28.13055,79.06096,-9.228272,22.03055,0,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6106.997,-,-
-370.5,1622.99712151289,11.0000000953674,11.0000000953674,0,2.842372,594.9185,451.5357,353.622,1269.042,-148.127,28.13055,79.06096,-9.228272,22.03055,0,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6106.997,-,-
-371.5,1626.05267709494,11.0000000953674,11.0000000953674,0,2.842372,594.9185,451.5357,353.622,1269.042,-148.127,28.13055,79.06096,-9.228272,22.03055,0,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6106.997,-,-
-372.5,1629.10823267698,11.0000000953674,11.0000000953674,0,2.842372,594.9185,451.5357,353.622,1269.042,-148.127,28.13055,79.06096,-9.228272,22.03055,0,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6106.997,-,-
-373.5,1632.16378825903,11.0000000953674,11.0000000953674,0,2.842372,594.9185,451.5357,353.622,1269.042,-148.127,28.13055,79.06096,-9.228272,22.03055,0,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6106.997,-,-
-374.5,1635.21934384108,11.0000000953674,11.0000000953674,0,2.842372,594.9185,451.5357,353.622,1269.042,-148.127,28.13055,79.06096,-9.228272,22.03055,0,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6106.997,-,-
-375.5,1638.27489942312,11.0000000953674,11.0000000953674,0,2.842372,594.9185,451.5357,353.622,1269.042,-148.127,28.13055,79.06096,-9.228272,22.03055,0,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6106.997,-,-
-376.5,1641.33045500517,11.0000000953674,11.0000000953674,0,2.842372,594.9185,451.5357,353.622,1269.042,-148.127,28.13055,79.06096,-9.228272,22.03055,0,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6106.997,-,-
-377.5,1644.38601058722,11.0000000953674,11.0000000953674,0,2.842372,594.9185,451.5357,353.622,1269.042,-148.127,28.13055,79.06096,-9.228272,22.03055,0,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6106.997,-,-
-378.5,1647.44156616926,11.0000000953674,11.0000000953674,0,2.842372,594.9185,451.5357,353.622,1269.042,-148.127,28.13055,79.06096,-9.228272,22.03055,0,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6106.997,-,-
-379.5,1650.49712175131,11.0000000953674,11.0000000953674,0,2.842372,594.9185,451.5357,353.622,1269.042,-148.127,28.13055,79.06096,-9.228272,22.03055,0,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6106.997,-,-
-380.5,1653.55267733335,11.0000000953674,11.0000000953674,0,2.842372,594.9185,451.5357,353.622,1269.042,-148.127,28.13055,79.06096,-9.228272,22.03055,0,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6106.997,-,-
-381.5,1656.6082329154,11.0000000953674,11.0000000953674,0,2.842372,594.9185,451.5357,353.622,1269.042,-148.127,28.13055,79.06096,-9.228272,22.03055,0,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6106.997,-,-
-382.5,1659.66378849745,11.0000000953674,11.0000000953674,0,2.842372,594.9185,451.5357,353.622,1269.042,-148.127,28.13055,79.06096,-9.228272,22.03055,0,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6106.997,-,-
-383.5,1662.71934407949,11.0000000953674,11.0000000953674,0,2.842372,594.9185,451.5357,353.622,1269.042,-148.127,28.13055,79.06096,-9.228272,22.03055,0,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6106.997,-,-
-384.5,1665.77489966154,11.0000000953674,11.0000000953674,0,2.842372,594.9185,451.5357,353.622,1269.042,-148.127,28.13055,79.06096,-9.228272,22.03055,0,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6106.997,-,-
-385.5,1668.83045524359,11.0000000953674,11.0000000953674,0,2.842372,594.9185,451.5357,353.622,1269.042,-148.127,28.13055,79.06096,-9.228272,22.03055,0,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6106.997,-,-
-386.5,1671.88601082563,11.0000000953674,11.0000000953674,0,2.842372,594.9185,451.5357,353.622,1269.042,-148.127,28.13055,79.06096,-9.228272,22.03055,0,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6106.997,-,-
-387.5,1674.94156640768,11.0000000953674,11.0000000953674,0,2.842372,594.9185,451.5357,353.622,1269.042,-148.127,28.13055,79.06096,-9.228272,22.03055,0,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6106.997,-,-
-388.5,1677.99712198973,11.0000000953674,11.0000000953674,0,2.842372,594.9185,451.5357,353.622,1269.042,-148.127,28.13055,79.06096,-9.228272,22.03055,0,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6106.997,-,-
-389.5,1681.05267757177,11.0000000953674,11.0000000953674,0,2.842372,594.9185,451.5357,353.622,1269.042,-148.127,28.13055,79.06096,-9.228272,22.03055,0,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6106.997,-,-
-390.5,1684.10823315382,11.0000000953674,11.0000000953674,0,2.842372,594.9185,451.5357,353.622,1269.042,-148.127,28.13055,79.06096,-9.228272,22.03055,0,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6106.997,-,-
-391.5,1687.16378873587,11.0000000953674,11.0000000953674,0,2.842372,594.9185,451.5357,353.622,1269.042,-148.127,28.13055,79.06096,-9.228272,22.03055,0,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6106.997,-,-
-392.5,1690.21934431791,11.0000000953674,11.0000000953674,0,2.842372,594.9185,451.5357,353.622,1269.042,-148.127,28.13055,79.06096,-9.228272,22.03055,0,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6106.997,-,-
-393.5,1693.27489989996,11.0000000953674,11.0000000953674,0,2.842372,594.9185,451.5357,353.622,1269.042,-148.127,28.13055,79.06096,-9.228272,22.03055,0,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6106.997,-,-
-394.5,1696.33045548201,11.0000000953674,11.0000000953674,0,2.842372,594.9185,451.5357,353.622,1269.042,-148.127,28.13055,79.06096,-9.228272,22.03055,0,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6106.997,-,-
-395.5,1699.38601106405,11.0000000953674,11.0000000953674,0,2.842372,594.9185,451.5357,353.622,1269.042,-148.127,28.13055,79.06096,-9.228272,22.03055,0,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6106.997,-,-
-396.5,1702.4415666461,11.0000000953674,11.0000000953674,0,2.842372,594.9185,451.5357,353.622,1269.042,-148.127,28.13055,79.06096,-9.228272,22.03055,0,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6106.997,-,-
-397.5,1705.49712222815,11.0000000953674,11.0000000953674,0,2.842372,594.9185,451.5357,353.622,1269.042,-148.127,28.13055,79.06096,-9.228272,22.03055,0,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6106.997,-,-
-398.5,1708.55267781019,11.0000000953674,11.0000000953674,0,2.842372,594.9185,451.5357,353.622,1269.042,-148.127,28.13055,79.06096,-9.228272,22.03055,0,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6106.997,-,-
-399.5,1711.60823339224,11.0000000953674,11.0000000953674,0,2.842372,594.9185,451.5357,353.622,1269.042,-148.127,28.13055,79.06096,-9.228272,22.03055,0,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6106.997,-,-
-400.5,1714.66378897429,11.0000000953674,11.0000000953674,0,2.842372,594.9185,451.5357,353.622,1269.042,-148.127,28.13055,79.06096,-9.228272,22.03055,0,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6106.997,-,-
-401.5,1717.71934455633,11.0000000953674,11.0000000953674,0,2.842372,594.9185,451.5357,353.622,1269.042,-148.127,28.13055,79.06096,-9.228272,22.03055,0,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6106.997,-,-
-402.5,1720.77490013838,11.0000000953674,11.0000000953674,0,2.842372,594.9185,451.5357,353.622,1269.042,-148.127,28.13055,79.06096,-9.228272,22.03055,0,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6106.997,-,-
-403.5,1723.83045572042,11.0000000953674,11.0000000953674,0,2.842372,594.9185,451.5357,353.622,1269.042,-148.127,28.13055,79.06096,-9.228272,22.03055,0,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6106.997,-,-
-404.5,1726.88601130247,11.0000000953674,11.0000000953674,0,2.842372,594.9185,451.5357,353.622,1269.042,-148.127,28.13055,79.06096,-9.228272,22.03055,0,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6106.997,-,-
-405.5,1729.94156688452,11.0000000953674,11.0000000953674,0,2.842372,594.9185,451.5357,353.622,1269.042,-148.127,28.13055,79.06096,-9.228272,22.03055,0,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6106.997,-,-
-406.5,1732.99712246656,11.0000000953674,11.0000000953674,0,2.842372,594.9185,451.5357,353.622,1269.042,-148.127,28.13055,79.06096,-9.228272,22.03055,0,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6106.997,-,-
-407.5,1736.05267804861,11.0000000953674,11.0000000953674,0,2.842372,594.9185,451.5357,353.622,1269.042,-148.127,28.13055,79.06096,-9.228272,22.03055,0,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6106.997,-,-
-408.5,1739.10823363066,11.0000000953674,11.0000000953674,0,2.842372,594.9185,451.5357,353.622,1269.042,-148.127,28.13055,79.06096,-9.228272,22.03055,0,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6106.997,-,-
-409.5,1742.1637892127,11.0000000953674,11.0000000953674,0,2.842372,594.9185,451.5357,353.622,1269.042,-148.127,28.13055,79.06096,-9.228272,22.03055,0,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6106.997,-,-
-410.5,1745.21934479475,11.0000000953674,11.0000000953674,0,2.842372,594.9185,451.5357,353.622,1269.042,-148.127,28.13055,79.06096,-9.228272,22.03055,0,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6106.997,-,-
-411.5,1748.2749003768,11.0000000953674,11.0000000953674,0,2.842372,594.9185,451.5357,353.622,1269.042,-148.127,28.13055,79.06096,-9.228272,22.03055,0,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6106.997,-,-
-412.5,1751.33045595884,11.0000000953674,11.0000000953674,0,2.842372,594.9185,451.5357,353.622,1269.042,-148.127,28.13055,79.06096,-9.228272,22.03055,0,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6106.997,-,-
-413.5,1754.38601154089,11.0000000953674,11.0000000953674,0,2.842372,594.9185,451.5357,353.622,1269.042,-148.127,28.13055,79.06096,-9.228272,22.03055,0,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6106.997,-,-
-414.5,1757.44156712294,11.0000000953674,11.0000000953674,0,2.842372,594.9185,451.5357,353.622,1269.042,-148.127,28.13055,79.06096,-9.228272,22.03055,0,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6106.997,-,-
-415.5,1760.49712270498,11.0000000953674,11.0000000953674,0,2.842372,594.9185,451.5357,353.622,1269.042,-148.127,28.13055,79.06096,-9.228272,22.03055,0,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6106.997,-,-
-416.5,1763.55267828703,11.0000000953674,11.0000000953674,0,2.842372,594.9185,451.5357,353.622,1269.042,-148.127,28.13055,79.06096,-9.228272,22.03055,0,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6106.997,-,-
-417.5,1766.60823386908,11.0000000953674,11.0000000953674,0,2.842372,594.9185,451.5357,353.622,1269.042,-148.127,28.13055,79.06096,-9.228272,22.03055,0,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6106.997,-,-
-418.5,1769.66378945112,11.0000000953674,11.0000000953674,0,2.842372,594.9185,451.5357,353.622,1269.042,-148.127,28.13055,79.06096,-9.228272,22.03055,0,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6106.997,-,-
-419.5,1772.71934503317,11.0000000953674,11.0000000953674,0,2.842372,594.9185,451.5357,353.622,1269.042,-148.127,28.13055,79.06096,-9.228272,22.03055,0,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6106.997,-,-
-420.5,1775.77490061522,11.0000000953674,11.0000000953674,0,2.842372,594.9185,451.5357,353.622,1269.042,-148.127,28.13055,79.06096,-9.228272,22.03055,0,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6106.997,-,-
-421.5,1778.83045619726,11.0000000953674,11.0000000953674,0,2.842372,594.9185,451.5357,353.622,1269.042,-148.127,28.13055,79.06096,-9.228272,22.03055,0,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6106.997,-,-
-422.5,1781.88601177931,11.0000000953674,11.0000000953674,0,2.842372,594.9185,451.5357,353.622,1269.042,-148.127,28.13055,79.06096,-9.228272,22.03055,0,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6106.997,-,-
-423.5,1784.94156736135,11.0000000953674,11.0000000953674,0,2.842372,594.9185,451.5357,353.622,1269.042,-148.127,28.13055,79.06096,-9.228272,22.03055,0,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6106.997,-,-
-424.5,1787.9971229434,11.0000000953674,11.0000000953674,0,2.842372,594.9185,451.5357,353.622,1269.042,-148.127,28.13055,79.06096,-9.228272,22.03055,0,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6106.997,-,-
-425.5,1791.05267852545,11.0000000953674,11.0000000953674,0,2.842372,594.9185,451.5357,353.622,1269.042,-148.127,28.13055,79.06096,-9.228272,22.03055,0,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6106.997,-,-
-426.5,1794.10823410749,11.0000000953674,11.0000000953674,0,2.842372,594.9185,451.5357,353.622,1269.042,-148.127,28.13055,79.06096,-9.228272,22.03055,0,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6106.997,-,-
-427.5,1797.16378968954,11.0000000953674,11.0000000953674,0,2.842372,594.9185,451.5357,353.622,1269.042,-148.127,28.13055,79.06096,-9.228272,22.03055,0,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6106.997,-,-
-428.5,1800.21934527159,11.0000000953674,11.0000000953674,0,2.842372,594.9185,451.5357,353.622,1269.042,-148.127,28.13055,79.06096,-9.228272,22.03055,0,6.1,1,1.101528,1.046451,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,6106.997,-,-
-429.5,1803.21526879072,10.7853246688843,11.0000000953674,-0.1192639,2.842372,577.681,323.4141,229.5365,1225.086,-148.558,19.56481,74.11112,-8.986958,13.88572,-0.4209085,6.1,1,0.694286,0.6595718,0,0,-6.960586,3.574632,0.05212534,15.86569,12.53186,0,4565.262,-,-
-430.5,1806.09192866087,10.3559755325317,11.0000000953674,-0.1192636,2.842372,593.1891,318.8538,214.5674,1264.632,-148.1703,19.80676,78.55721,-9.204132,13.32863,0.378122,6.1,1,0.6664318,0.6331102,0,0,-6.683481,3.432331,0.04614475,15.2341,12.02909,0,4595.17,-,-
-431.5,1808.77232140303,9.64941387176514,11.0000000953674,-0.2732706,2.842372,593.1891,154.5844,56.38515,1264.632,-148.1703,9.602568,78.55721,-9.204132,3.502568,0,6.1,1,0.1751284,0.166372,0,0,-14.26913,3.198152,0.03732949,14.19471,3.161067,0,2899.365,-,-
-432.5,1811.17944353819,8.66563968658447,11.0000000953674,-0.2732706,2.842372,593.1891,148.7201,50.52084,1264.632,-148.1703,9.238285,78.55721,-9.204132,3.138285,0,6.1,1,0.1569143,0.1490686,0,0,-12.81437,2.872095,0.02703654,12.74754,2.832302,0,2843.683,-,-
-433.5,1813.32388108969,7.71997518539429,11.0000000953674,-0.2520986,2.842372,593.1891,158.8948,60.69555,1264.632,-148.1703,9.870323,78.55721,-9.204132,3.770323,0,6.1,1,0.1885162,0.1790904,0,0,-10.53149,2.558669,0.019116,11.35642,3.402717,0,2940.292,-,-
-434.5,1815.21621996164,6.81241993904114,11.0000000953674,-0.2520988,2.842372,593.1891,151.6927,53.49348,1264.632,-148.1703,9.422941,78.55721,-9.204132,3.322941,0,6.1,1,0.1661471,0.1578397,0,0,-9.293425,2.257873,0.01313571,10.02137,2.998954,0,2871.908,-,-
-435.5,1816.86622601748,5.94002180099487,11.0000000953674,-0.2325668,2.842372,593.1891,155.9921,57.79285,1264.632,-148.1703,9.690012,78.55721,-9.204132,3.590012,0,6.1,1,0.1795007,0.1705256,0,0,-7.475486,1.96873,0.008707899,8.738034,3.239986,0,2912.731,-,-
-436.5,1818.28366523981,5.10278120040894,11.0000000953674,-0.232567,2.842372,593.1891,147.8112,49.61198,1264.632,-148.1703,9.181828,78.55721,-9.204132,3.081828,0,6.1,1,0.1540914,0.1463869,0,0,-6.421826,1.691239,0.005520395,7.506416,2.78135,0,2835.053,-,-
-437.5,1819.48307806253,4.3178861618042,11.0000000953674,-0.2034856,2.842372,593.1891,152.2769,54.07765,1264.632,-148.1703,9.459229,78.55721,-9.204132,3.359229,0,6.1,1,0.1679615,0.1595634,0,0,-4.754539,1.431098,0.003344744,6.351801,3.031704,0,2877.455,-,-
-438.5,1820.47900533676,3.58533818721771,11.0000000953674,-0.2034856,2.842372,593.1891,143.087,44.88776,1264.632,-148.1703,8.888365,78.55721,-9.204132,2.788365,0,6.1,1,0.1394183,0.1324474,0,0,-3.947912,1.188306,0.001914872,5.27419,2.5165,0,2790.197,-,-
-439.5,1821.19978696108,2.59481384754181,11.0000000953674,-0.3468057,2.842372,560,90.42837,0,1180,-149,5.302997,69.19881,-8.737817,0,-0.797003,6.1,0,0,0,0,0,-4.869631,0.8600117,0.0007258851,3.817086,-0.1918085,-0.1918085,2133.607,-,-
-440.5,1821.59939828515,1.43860076665878,9.55577602386475,-0.2955349,2.842372,593.1891,116.2472,5.217604,1264.632,-148.1703,7.221113,78.55721,-9.204132,0.3241103,0.797003,6.1,1,0.01620552,0.01539524,0,0,-2.300662,0.4768024,0.0001237001,2.116245,0.2925096,0,2535.353,-,-
-441.5,1821.72532021999,0.453318965435028,6.00902366638184,-0.2518439,2.842372,560,90.42837,0,1180,-149,5.302997,69.19881,-8.737817,0,-0.797003,6.1,0,0,0,0,0,-0.6177872,0.1502457,3.870445E-06,0.6668522,0.1993146,0,2133.607,-,-
-442.5,1821.72532021999,0,1.95324790477753,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-443.5,1821.72532021999,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-444.5,1821.72532021999,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-445.5,1821.72532021999,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-446.5,1821.72532021999,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-447.5,1821.72532021999,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-448.5,1821.72532021999,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-449.5,1821.72532021999,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-450.5,1821.72532021999,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-451.5,1821.72532021999,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-452.5,1821.72532021999,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-453.5,1821.72532021999,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-454.5,1821.72532021999,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-455.5,1821.72532021999,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-456.5,1821.72532021999,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-457.5,1821.72532021999,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-458.5,1821.72532021999,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-459.5,1821.72532021999,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-460.5,1821.72532021999,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-461.5,1821.72532021999,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-462.5,1821.72532021999,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-463.5,1821.72532021999,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-464.5,1821.72532021999,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-465.5,1821.72532021999,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-466.5,1821.72532021999,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-467.5,1821.72532021999,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-468.5,1821.72532021999,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-469.5,1821.72532021999,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-470.5,1821.72532021999,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-471.5,1821.72532021999,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-472.5,1821.72532021999,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-473.5,1821.72532021999,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-474.5,1821.72532021999,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-475.5,1821.72532021999,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-476.5,1821.72532021999,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-477.5,1821.72532021999,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-478.5,1821.72532021999,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-479.5,1821.72532021999,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-480.5,1821.72532021999,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-481.5,1821.72532021999,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-482.5,1822.27316153049,1.97222871780396,1.97222871780396,1.095683,2.842372,593.1891,383.0273,271.9977,1264.632,-148.1703,23.79313,78.55721,-9.204132,16.89612,0.797003,6.1,1,0.8448063,0.802566,0,0,11.69353,0.6536653,0.0003187286,2.901235,15.24875,0,5281.827,-,-
-483.5,1824.05653107166,6.42013034820557,11.9722283363342,1.375374,2.842372,593.1891,1157.125,1058.926,1264.632,-148.1703,71.87903,78.55721,-9.204132,65.77903,0,6.1,1,3.288952,3.124505,0,0,47.78242,2.127855,0.01099463,9.444295,59.36557,0,13553.85,-,-
-484.5,1826.94221508503,10.3884624481201,19.9999992370605,0.8292553,2.842372,593.1891,1264.557,1166.358,1264.632,-148.1703,78.55256,78.55721,-9.204132,72.45256,0,6.1,1,3.622629,3.441498,0,0,46.61687,3.443098,0.04658039,15.28189,65.38844,0,14888.38,-,-
-485.5,1830.78011858463,13.8164525985718,19.9999992370605,1.075184,2.842372,740.0335,1638.32,1506.999,1638.385,-148.7002,126.9634,126.9685,-11.52369,116.7866,4.076846,6.1,1,5.83933,5.547364,0,0,80.38644,4.579254,0.1095819,20.32461,105.3999,0,24825.8,-,-
-486.5,1835.74564421177,17.8758922576904,19.9999992370605,1.18006,2.842372,957.4642,1757.66,1620.166,2191.747,-157.6605,176.2326,219.7564,-15.8079,162.4467,7.685892,6.1,1,8.122335,7.716218,0,0,114.1499,5.924693,0.2373299,26.29622,146.6081,0,32988.84,-,-
-487.5,1841.3011995554,19.9999992370605,19.9999992370605,0,2.842372,1071.235,456.5786,359.3565,2300,-166.7673,51.21875,258.0128,-18.70787,40.31242,4.806323,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,10608.33,-,-
-488.5,1846.85675489903,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-489.5,1852.41231024265,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-490.5,1857.96786558628,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-491.5,1863.52342092991,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-492.5,1869.07897627354,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-493.5,1874.63453161716,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-494.5,1880.19008696079,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-495.5,1885.74564230442,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-496.5,1891.30119764805,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-497.5,1896.85675299168,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-498.5,1902.4123083353,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-499.5,1907.96786367893,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-500.5,1913.52341902256,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-501.5,1919.07897436619,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-502.5,1924.63452970982,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-503.5,1930.19008505344,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-504.5,1935.74564039707,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-505.5,1941.3011957407,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-506.5,1946.85675108433,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-507.5,1952.41230642796,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-508.5,1957.96786177158,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-509.5,1963.52341711521,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-510.5,1969.07897245884,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-511.5,1974.63452780247,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-512.5,1980.1900831461,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-513.5,1985.74563848972,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-514.5,1991.30119383335,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-515.5,1996.85674917698,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-516.5,2002.41230452061,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-517.5,2007.96785986423,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-518.5,2013.52341520786,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-519.5,2019.07897055149,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-520.5,2024.63452589512,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-521.5,2030.19008123875,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-522.5,2035.74563658237,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-523.5,2041.301191926,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-524.5,2046.85674726963,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-525.5,2052.41230261326,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-526.5,2057.96785795689,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-527.5,2063.52341330051,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-528.5,2069.07896864414,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-529.5,2074.63452398777,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-530.5,2080.1900793314,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-531.5,2085.74563467503,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-532.5,2091.30119001865,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-533.5,2096.85674536228,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-534.5,2102.41230070591,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-535.5,2107.96785604954,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-536.5,2113.52341139317,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-537.5,2119.07896673679,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-538.5,2124.63452208042,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-539.5,2130.19007742405,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-540.5,2135.74563276768,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-541.5,2141.30118811131,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-542.5,2146.85674345493,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-543.5,2152.41229879856,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-544.5,2157.96785414219,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-545.5,2163.52340948582,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-546.5,2169.07896482944,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-547.5,2174.63452017307,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-548.5,2180.1900755167,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-549.5,2185.74563086033,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-550.5,2191.30118620396,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-551.5,2196.85674154758,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-552.5,2202.41229689121,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-553.5,2207.96785223484,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-554.5,2213.52340757847,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-555.5,2219.0789629221,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-556.5,2224.63451826572,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-557.5,2230.19007360935,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-558.5,2235.74562895298,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-559.5,2241.30118429661,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-560.5,2246.85673964024,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-561.5,2252.41229498386,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-562.5,2257.96785032749,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-563.5,2263.52340567112,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-564.5,2269.07896101475,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-565.5,2274.63451635838,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-566.5,2280.190071702,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-567.5,2285.74562704563,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-568.5,2291.30118238926,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-569.5,2296.85673773289,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-570.5,2302.41229307652,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-571.5,2307.96784842014,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-572.5,2313.52340376377,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-573.5,2319.0789591074,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-574.5,2324.63451445103,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-575.5,2330.19006979465,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-576.5,2335.74562513828,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-577.5,2341.30118048191,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-578.5,2346.85673582554,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-579.5,2352.41229116917,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-580.5,2357.96784651279,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-581.5,2363.52340185642,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-582.5,2369.07895720005,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-583.5,2374.63451254368,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-584.5,2380.19006788731,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-585.5,2385.74562323093,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-586.5,2391.30117857456,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-587.5,2396.85673391819,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-588.5,2402.41228926182,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-589.5,2407.96784460545,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-590.5,2413.52339994907,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-591.5,2419.0789552927,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-592.5,2424.63451063633,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-593.5,2430.19006597996,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-594.5,2435.74562132359,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-595.5,2441.30117666721,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-596.5,2446.85673201084,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-597.5,2452.41228735447,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-598.5,2457.9678426981,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-599.5,2463.52339804173,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-600.5,2469.07895338535,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-601.5,2474.63450872898,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-602.5,2480.19006407261,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-603.5,2485.74561941624,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-604.5,2491.30117475986,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-605.5,2496.85673010349,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-606.5,2502.41228544712,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-607.5,2507.96784079075,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-608.5,2513.52339613438,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-609.5,2519.078951478,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-610.5,2524.63450682163,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-611.5,2530.19006216526,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-612.5,2535.74561750889,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-613.5,2541.30117285252,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-614.5,2546.85672819614,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-615.5,2552.41228353977,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-616.5,2557.9678388834,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-617.5,2563.52339422703,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-618.5,2569.07894957066,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-619.5,2574.63450491428,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-620.5,2580.19006025791,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-621.5,2585.74561560154,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-622.5,2591.30117094517,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-623.5,2596.8567262888,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-624.5,2602.41228163242,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-625.5,2607.96783697605,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-626.5,2613.52339231968,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-627.5,2619.07894766331,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-628.5,2624.63450300694,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-629.5,2630.19005835056,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-630.5,2635.74561369419,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-631.5,2641.30116903782,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-632.5,2646.85672438145,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-633.5,2652.41227972507,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-634.5,2657.9678350687,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-635.5,2663.52339041233,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-636.5,2669.07894575596,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-637.5,2674.63450109959,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-638.5,2680.19005644321,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-639.5,2685.74561178684,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-640.5,2691.30116713047,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-641.5,2696.8567224741,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-642.5,2702.41227781773,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-643.5,2707.96783316135,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-644.5,2713.59283316135,20.25,20.5000007629395,0.1388893,2.842372,1084.626,566.9085,507.9101,2300,-168.0394,64.39045,261.238,-19.08621,57.6893,0.6011485,6.1,1,2.884466,2.740243,0,0,15.2194,6.711555,0.3450042,29.78864,52.0646,0,12662.55,-,-
-645.5,2719.3567224741,20.7500015258789,21.0000005722046,0.1388888,2.842372,1111.407,571.0123,508.0778,2300,-170.5836,66.45796,267.6883,-19.85359,59.13326,1.2247,6.1,1,2.956664,2.80883,0,0,15.59513,6.877273,0.3711963,30.52417,53.36777,0,13051.28,-,-
-646.5,2725.19005596638,21.0000005722046,21.0000005722046,0,2.842372,1124.797,416.7745,359.693,2300,-171.8557,49.09123,270.9135,-20.24262,42.36768,0.6235459,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10369.35,-,-
-647.5,2731.02338945866,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-648.5,2736.85672295094,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-649.5,2742.69005644321,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-650.5,2748.52338993549,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-651.5,2754.35672342777,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-652.5,2760.19005692005,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-653.5,2766.02339041233,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-654.5,2771.85672390461,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-655.5,2777.69005739689,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-656.5,2783.52339088917,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-657.5,2789.35672438145,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-658.5,2795.19005787373,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-659.5,2801.023391366,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-660.5,2806.85672485828,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-661.5,2812.69005835056,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-662.5,2818.52339184284,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-663.5,2824.35672533512,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-664.5,2830.1900588274,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-665.5,2836.02339231968,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-666.5,2841.85672581196,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-667.5,2847.69005930424,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-668.5,2853.52339279652,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-669.5,2859.3567262888,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-670.5,2865.19005978107,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-671.5,2871.02339327335,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-672.5,2876.85672676563,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-673.5,2882.69006025791,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-674.5,2888.52339375019,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-675.5,2894.35672724247,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-676.5,2900.19006073475,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-677.5,2906.02339422703,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-678.5,2911.85672771931,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-679.5,2917.69006121159,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-680.5,2923.52339470387,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-681.5,2929.35672819614,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-682.5,2935.19006168842,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-683.5,2941.0233951807,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-684.5,2946.85672867298,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-685.5,2952.69006216526,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-686.5,2958.52339565754,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-687.5,2964.35672914982,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-688.5,2970.1900626421,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-689.5,2976.02339613438,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-690.5,2981.85672962666,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-691.5,2987.69006311893,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-692.5,2993.52339661121,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-693.5,2999.35673010349,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-694.5,3005.19006359577,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-695.5,3011.02339708805,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-696.5,3016.85673058033,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-697.5,3022.69006407261,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-698.5,3028.52339756489,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-699.5,3034.35673105717,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-700.5,3040.19006454945,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-701.5,3046.02339804173,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-702.5,3051.856731534,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-703.5,3057.69006502628,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-704.5,3063.52339851856,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-705.5,3069.35673201084,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-706.5,3075.19006550312,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-707.5,3081.0233989954,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-708.5,3086.85673248768,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-709.5,3092.69006597996,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-710.5,3098.52339947224,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-711.5,3104.35673296452,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-712.5,3110.19006645679,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-713.5,3116.02339994907,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-714.5,3121.85673344135,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-715.5,3127.69006693363,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-716.5,3133.52340042591,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-717.5,3139.35673391819,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-718.5,3145.19006741047,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-719.5,3151.02340090275,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-720.5,3156.85673439503,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-721.5,3162.69006788731,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-722.5,3168.52340137959,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-723.5,3174.35673487186,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-724.5,3180.19006836414,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-725.5,3186.02340185642,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-726.5,3191.8567353487,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-727.5,3197.69006884098,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-728.5,3203.52340233326,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-729.5,3209.35673582554,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-730.5,3215.19006931782,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-731.5,3221.0234028101,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-732.5,3226.85673630238,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-733.5,3232.69006979465,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-734.5,3238.52340328693,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-735.5,3244.35673677921,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-736.5,3250.19007027149,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-737.5,3256.02340376377,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-738.5,3261.85673725605,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-739.5,3267.69007074833,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-740.5,3273.52340424061,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-741.5,3279.35673773289,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-742.5,3285.19007122517,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-743.5,3291.02340471745,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-744.5,3296.85673820972,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-745.5,3302.690071702,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-746.5,3308.52340519428,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-747.5,3314.35673868656,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-748.5,3320.19007217884,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-749.5,3326.02340567112,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-750.5,3331.78729498386,20.7500015258789,20.5000007629395,-0.1388888,2.842372,1111.407,258.1909,211.1367,2300,-170.5836,30.04986,267.6883,-19.85359,24.57341,-0.6235459,6.1,1,1.228671,1.167237,0,0,-15.59513,6.877273,0.3711963,30.52417,22.1775,0,7424.506,-,-
-751.5,3337.41229498386,20.25,19.9999992370605,-0.1388893,2.842372,1084.626,253.8913,210.968,2300,-168.0394,28.83741,261.238,-19.08621,23.96211,-1.2247,6.1,1,1.198106,1.138201,0,0,-15.2194,6.711555,0.3450042,29.78864,21.6258,0,7229.893,-,-
-752.5,3342.96785032749,19.9999992370605,19.9999992370605,0,2.842372,1071.235,408.3748,359.3565,2300,-166.7673,45.81128,258.0128,-18.70787,40.31242,-0.6011485,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9847.678,-,-
-753.5,3348.52340567112,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-754.5,3354.07896101475,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-755.5,3359.63451635838,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-756.5,3365.190071702,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-757.5,3370.74562704563,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-758.5,3376.30118238926,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-759.5,3381.85673773289,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-760.5,3387.41229307652,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-761.5,3392.96784842014,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-762.5,3398.52340376377,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-763.5,3404.0789591074,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-764.5,3409.63451445103,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-765.5,3415.19006979465,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-766.5,3420.74562513828,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-767.5,3426.30118048191,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-768.5,3431.85673582554,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-769.5,3437.41229116917,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-770.5,3442.96784651279,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-771.5,3448.52340185642,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-772.5,3454.07895720005,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-773.5,3459.63451254368,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-774.5,3465.19006788731,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-775.5,3470.74562323093,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-776.5,3476.30117857456,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-777.5,3481.85673391819,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-778.5,3487.41228926182,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-779.5,3492.96784460545,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-780.5,3498.52339994907,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-781.5,3504.0789552927,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-782.5,3509.63451063633,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-783.5,3515.19006597996,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-784.5,3520.74562132359,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-785.5,3526.30117666721,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-786.5,3531.85673201084,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-787.5,3537.41228735447,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-788.5,3542.9678426981,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-789.5,3548.52339804173,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-790.5,3554.07895338535,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-791.5,3559.63450872898,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-792.5,3565.19006407261,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-793.5,3570.74561941624,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-794.5,3576.30117475986,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-795.5,3581.85673010349,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-796.5,3587.41228544712,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-797.5,3592.96784079075,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-798.5,3598.52339613438,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-799.5,3604.078951478,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-800.5,3609.63450682163,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-801.5,3615.19006216526,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-802.5,3620.74561750889,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-803.5,3626.30117285252,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-804.5,3631.85672819614,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-805.5,3637.41228353977,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-806.5,3642.9678388834,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-807.5,3648.52339422703,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-808.5,3654.07894957066,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-809.5,3659.63450491428,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-810.5,3665.19006025791,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-811.5,3670.74561560154,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-812.5,3676.30117094517,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-813.5,3681.8567262888,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-814.5,3687.41228163242,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-815.5,3692.96783697605,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-816.5,3698.52339231968,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-817.5,3704.07894766331,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-818.5,3709.63450300694,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-819.5,3715.19005835056,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-820.5,3720.74561369419,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-821.5,3726.30116903782,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-822.5,3731.85672438145,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-823.5,3737.41227972507,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-824.5,3742.9678350687,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-825.5,3748.52339041233,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-826.5,3754.07894575596,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-827.5,3759.63450109959,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-828.5,3765.19005644321,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-829.5,3770.74561178684,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-830.5,3776.30116713047,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-831.5,3781.8567224741,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-832.5,3787.41227781773,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-833.5,3792.96783316135,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-834.5,3798.52338850498,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-835.5,3804.07894384861,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-836.5,3809.63449919224,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-837.5,3815.19005453587,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-838.5,3820.65474665165,19.6728916168213,19.9999992370605,-0.1817265,2.842372,1053.715,213.2418,164.9865,2300,-165.1029,23.53012,253.7929,-18.21824,18.20539,-0.7752762,6.1,1,0.9102698,0.8647563,0,0,-19.34595,6.520281,0.3163398,28.93969,16.43037,0,6428.035,-,-
-839.5,3825.93771231174,19.0186763763428,19.9999992370605,-0.1817265,2.842372,1018.674,207.7858,164.7787,2300,-161.774,22.16561,245.3531,-17.25728,17.57781,-1.512207,6.1,1,0.8788909,0.8349464,0,0,-18.7026,6.303452,0.2858184,27.97731,15.86398,0,6176.142,-,-
-840.5,3831.08178913593,18.5186765670776,18.9999996185303,-0.09605122,2.842372,991.8929,304.1425,256.2105,2279.367,-159.5541,31.59152,236.7597,-16.57301,26.61279,-1.121263,6.1,1,1.33064,1.264108,0,0,-9.625348,6.137734,0.2638634,27.24179,24.01804,0,7559.259,-,-
-841.5,3836.129814744,18.1728921890259,18,-0.09605122,2.842372,973.3721,308.5147,256.1064,2232.232,-158.5355,31.4473,227.5343,-16.15972,26.10525,-0.7579583,6.1,1,1.305263,1.24,0,0,-9.445621,6.023129,0.2493569,26.73313,23.55999,0,7428.38,-,-
-842.5,3841.129814744,18,18,0,2.842372,964.1117,415.4511,358.7326,2208.664,-158.0261,41.94458,222.9902,-15.95456,36.2182,-0.3736206,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9042.058,-,-
-843.5,3846.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-844.5,3851.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-845.5,3856.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-846.5,3861.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-847.5,3866.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-848.5,3871.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-849.5,3876.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-850.5,3881.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-851.5,3886.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-852.5,3891.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-853.5,3896.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-854.5,3901.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-855.5,3906.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-856.5,3911.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-857.5,3916.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-858.5,3921.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-859.5,3926.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-860.5,3931.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-861.5,3936.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-862.5,3941.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-863.5,3946.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-864.5,3951.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-865.5,3956.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-866.5,3961.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-867.5,3966.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-868.5,3971.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-869.5,3976.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-870.5,3981.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-871.5,3986.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-872.5,3991.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-873.5,3996.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-874.5,4001.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-875.5,4006.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-876.5,4011.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-877.5,4016.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-878.5,4021.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-879.5,4026.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-880.5,4031.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-881.5,4036.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-882.5,4041.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-883.5,4046.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-884.5,4051.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-885.5,4056.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-886.5,4061.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-887.5,4066.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-888.5,4071.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-889.5,4076.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-890.5,4081.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-891.5,4086.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-892.5,4091.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-893.5,4096.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-894.5,4101.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-895.5,4106.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-896.5,4111.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-897.5,4116.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-898.5,4121.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-899.5,4126.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-900.5,4131.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-901.5,4136.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-902.5,4141.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-903.5,4146.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-904.5,4151.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-905.5,4156.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-906.5,4161.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-907.5,4166.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-908.5,4171.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-909.5,4176.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-910.5,4181.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-911.5,4186.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-912.5,4191.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-913.5,4196.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-914.5,4201.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-915.5,4206.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-916.5,4211.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-917.5,4216.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-918.5,4221.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-919.5,4226.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-920.5,4231.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-921.5,4236.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-922.5,4241.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-923.5,4246.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-924.5,4251.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-925.5,4256.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-926.5,4261.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-927.5,4266.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-928.5,4271.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-929.5,4276.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-930.5,4281.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-931.5,4286.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-932.5,4291.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-933.5,4296.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-934.5,4301.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-935.5,4306.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-936.5,4311.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-937.5,4316.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-938.5,4321.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-939.5,4326.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-940.5,4331.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-941.5,4336.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-942.5,4341.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-943.5,4346.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-944.5,4351.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-945.5,4356.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-946.5,4361.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-947.5,4366.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-948.5,4371.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-949.5,4376.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-950.5,4381.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-951.5,4386.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-952.5,4391.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-953.5,4396.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-954.5,4401.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-955.5,4406.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-956.5,4411.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-957.5,4416.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-958.5,4421.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-959.5,4426.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-960.5,4431.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-961.5,4436.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-962.5,4441.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-963.5,4446.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-964.5,4451.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-965.5,4456.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-966.5,4461.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-967.5,4466.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-968.5,4471.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-969.5,4476.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-970.5,4481.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-971.5,4486.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-972.5,4491.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-973.5,4496.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-974.5,4501.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-975.5,4506.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-976.5,4511.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-977.5,4516.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-978.5,4521.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-979.5,4526.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-980.5,4531.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-981.5,4536.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-982.5,4541.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-983.5,4546.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-984.5,4551.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-985.5,4556.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-986.5,4561.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-987.5,4566.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-988.5,4571.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-989.5,4576.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-990.5,4581.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-991.5,4586.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-992.5,4591.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-993.5,4596.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-994.5,4601.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-995.5,4606.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-996.5,4611.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-997.5,4616.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-998.5,4621.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-999.5,4626.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1000.5,4631.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1001.5,4636.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1002.5,4641.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1003.5,4646.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1004.5,4651.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1005.5,4656.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1006.5,4661.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1007.5,4666.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1008.5,4671.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1009.5,4676.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1010.5,4681.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1011.5,4686.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1012.5,4691.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1013.5,4696.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1014.5,4701.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1015.5,4706.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1016.5,4711.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1017.5,4716.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1018.5,4721.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1019.5,4726.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1020.5,4731.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1021.5,4736.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1022.5,4741.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1023.5,4746.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1024.5,4751.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1025.5,4756.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1026.5,4761.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1027.5,4766.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1028.5,4771.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1029.5,4776.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1030.5,4781.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1031.5,4786.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1032.5,4791.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1033.5,4796.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1034.5,4801.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1035.5,4806.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1036.5,4811.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1037.5,4816.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1038.5,4821.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1039.5,4826.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1040.5,4831.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1041.5,4836.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1042.5,4841.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1043.5,4846.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1044.5,4851.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1045.5,4856.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1046.5,4861.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1047.5,4866.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1048.5,4871.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1049.5,4876.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1050.5,4881.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1051.5,4886.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1052.5,4891.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1053.5,4896.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1054.5,4901.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1055.5,4906.129814744,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1056.5,4911.47290289402,19.2351173400879,20.4702346801758,0.6861763,2.842372,1030.267,1174.63,1092.625,2300,-162.8753,126.73,248.1453,-17.5725,117.8825,2.74748,6.1,1,5.894125,5.599419,0,0,71.42235,6.375188,0.2956881,28.29571,106.3889,0,23662.49,-,-
-1057.5,4917.50216734409,21.7053520202637,22.9404676437378,0.6861758,2.842372,1162.577,1193.186,1093.454,2300,-175.4448,145.2641,280.013,-21.35949,133.1223,6.041783,6.1,1,6.656117,6.323312,0,0,80.59459,7.19391,0.4248638,31.92953,120.1429,0,27156.49,-,-
-1058.5,4924.01754248142,23.4553504943848,23.9702350616455,0.2860465,2.842372,1256.31,748.6235,666.3692,2300,-185.7572,98.48925,302.5891,-24.4383,87.66784,4.721411,6.1,1,4.383393,4.164223,0,0,36.30632,7.77392,0.5361361,34.50385,79.12022,0,18784.31,-,-
-1059.5,4930.81896412373,24.4851179122925,25.0000007629395,0.286046,2.842372,1311.466,732.6653,666.774,2300,-192.3759,100.6216,315.8737,-26.42021,91.57233,2.949273,6.1,1,4.578618,4.349687,0,0,37.90022,8.115221,0.6098961,36.01869,82.64403,0,19279.16,-,-
-1060.5,4937.7634087801,25.0000007629395,25.0000007629395,0,2.842372,1339.044,415.56,361.2032,2300,-195.6853,58.27163,322.5161,-27.43985,50.64948,1.522153,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12402.23,-,-
-1061.5,4944.70785343647,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1062.5,4951.65229809284,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1063.5,4958.59674274921,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1064.5,4965.54118740559,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1065.5,4972.48563206196,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1066.5,4979.43007671833,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1067.5,4986.3745213747,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1068.5,4993.31896603107,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1069.5,5000.26341068745,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1070.5,5007.20785534382,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1071.5,5014.15230000019,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1072.5,5021.09674465656,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1073.5,5028.04118931293,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1074.5,5034.98563396931,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1075.5,5041.93007862568,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1076.5,5048.87452328205,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1077.5,5055.81896793842,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1078.5,5062.7634125948,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1079.5,5069.70785725117,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1080.5,5076.65230190754,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1081.5,5083.59674656391,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1082.5,5090.54119122028,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1083.5,5097.48563587666,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1084.5,5104.43008053303,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1085.5,5111.3745251894,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1086.5,5118.31896984577,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1087.5,5125.26341450214,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1088.5,5132.20785915852,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1089.5,5139.15230381489,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1090.5,5146.09674847126,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1091.5,5153.04119312763,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1092.5,5159.985637784,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1093.5,5166.93008244038,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1094.5,5173.87452709675,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1095.5,5180.81897175312,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1096.5,5187.76341640949,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1097.5,5194.70786106586,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1098.5,5201.65230572224,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1099.5,5208.59675037861,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1100.5,5215.54119503498,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1101.5,5222.48563969135,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1102.5,5229.43008434772,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1103.5,5236.3745290041,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1104.5,5243.31897366047,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1105.5,5250.26341831684,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1106.5,5257.20786297321,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1107.5,5264.15230762959,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1108.5,5271.09675228596,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1109.5,5278.04119694233,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1110.5,5284.9856415987,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1111.5,5291.93008625507,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1112.5,5298.87453091145,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1113.5,5305.81897556782,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1114.5,5312.76342022419,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1115.5,5319.70786488056,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1116.5,5326.65230953693,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1117.5,5333.59675419331,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1118.5,5340.54119884968,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1119.5,5347.48564350605,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1120.5,5354.43008816242,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1121.5,5361.37453281879,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1122.5,5368.31897747517,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1123.5,5375.26342213154,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1124.5,5382.20786678791,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1125.5,5389.15231144428,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1126.5,5396.09675610065,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1127.5,5403.04120075703,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1128.5,5409.9856454134,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1129.5,5416.93009006977,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1130.5,5423.87453472614,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1131.5,5430.81897938252,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1132.5,5437.76342403889,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1133.5,5444.70786869526,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1134.5,5451.65231335163,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1135.5,5458.596758008,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1136.5,5465.54120266438,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1137.5,5472.48564732075,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1138.5,5479.43009197712,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1139.5,5486.37453663349,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1140.5,5493.31898128986,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1141.5,5500.26342594624,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1142.5,5507.20787060261,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1143.5,5514.15231525898,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1144.5,5521.09675991535,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1145.5,5528.04120457172,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1146.5,5534.9856492281,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1147.5,5541.93009388447,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1148.5,5548.87453854084,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1149.5,5555.81898319721,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1150.5,5562.76342785358,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1151.5,5569.70787250996,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1152.5,5576.65231716633,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1153.5,5583.5967618227,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1154.5,5590.54120647907,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1155.5,5597.48565113544,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1156.5,5604.43009579182,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1157.5,5611.37454044819,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1158.5,5618.31898510456,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1159.5,5625.26342976093,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1160.5,5632.20787441731,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1161.5,5639.15231907368,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1162.5,5646.09676373005,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1163.5,5653.04120838642,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1164.5,5659.98565304279,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1165.5,5666.93009769917,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1166.5,5673.87454235554,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1167.5,5680.81898701191,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1168.5,5687.76343166828,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1169.5,5694.70787632465,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1170.5,5701.65232098103,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1171.5,5708.5967656374,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1172.5,5715.54121029377,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1173.5,5722.48565495014,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1174.5,5729.43009960651,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1175.5,5736.37454426289,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1176.5,5743.31898891926,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1177.5,5750.26343357563,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1178.5,5757.207878232,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1179.5,5764.15232288837,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1180.5,5771.09676754475,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1181.5,5778.04121220112,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1182.5,5784.98565685749,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1183.5,5791.93010151386,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1184.5,5798.87454617023,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1185.5,5805.81899082661,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1186.5,5812.76343548298,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1187.5,5819.70788013935,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1188.5,5826.65232479572,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1189.5,5833.5967694521,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1190.5,5840.54121410847,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1191.5,5847.48565876484,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1192.5,5854.43010342121,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1193.5,5861.37454807758,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1194.5,5868.31899273396,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1195.5,5875.26343739033,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1196.5,5882.2078820467,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1197.5,5889.15232670307,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1198.5,5896.09677135944,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1199.5,5903.04121601582,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1200.5,5909.98566067219,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1201.5,5916.93010532856,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1202.5,5923.87454998493,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1203.5,5930.8189946413,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1204.5,5937.76343929768,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1205.5,5944.70788395405,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1206.5,5951.65232861042,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1207.5,5958.59677326679,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1208.5,5965.54121792316,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1209.5,5972.48566257954,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1210.5,5979.43010723591,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1211.5,5986.37455189228,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1212.5,5993.31899654865,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1213.5,6000.26344120502,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1214.5,6007.2078858614,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1215.5,6014.15233051777,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1216.5,6021.09677517414,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1217.5,6028.04121983051,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1218.5,6034.98566448689,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1219.5,6041.93010914326,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1220.5,6048.87455379963,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1221.5,6055.818998456,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1222.5,6062.76344311237,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1223.5,6069.70788776875,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1224.5,6076.65233242512,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1225.5,6083.59677708149,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1226.5,6090.54122173786,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1227.5,6097.48566639423,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1228.5,6104.43011105061,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1229.5,6111.37455570698,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1230.5,6118.31900036335,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1231.5,6125.26344501972,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1232.5,6132.20788967609,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1233.5,6139.15233433247,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1234.5,6146.09677898884,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1235.5,6153.04122364521,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1236.5,6159.98566830158,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1237.5,6166.93011295795,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1238.5,6173.87455761433,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1239.5,6180.8190022707,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1240.5,6187.76344692707,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1241.5,6194.70789158344,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1242.5,6201.65233623981,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1243.5,6208.59678089619,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1244.5,6215.54122555256,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1245.5,6222.48567020893,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1246.5,6229.4301148653,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1247.5,6236.37455952168,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1248.5,6243.31900417805,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1249.5,6250.26344883442,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1250.5,6257.20789349079,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1251.5,6264.15233814716,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1252.5,6271.09678280354,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1253.5,6278.04122745991,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1254.5,6284.98567211628,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1255.5,6291.93011677265,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1256.5,6298.87456142902,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1257.5,6305.8190060854,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1258.5,6312.76345074177,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1259.5,6319.70789539814,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1260.5,6326.65234005451,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1261.5,6333.59678471088,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1262.5,6340.54122936726,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1263.5,6347.48567402363,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1264.5,6354.43011868,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1265.5,6361.37456333637,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1266.5,6368.31900799274,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1267.5,6375.26345264912,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1268.5,6382.20789730549,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1269.5,6389.15234196186,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1270.5,6396.09678661823,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1271.5,6403.0412312746,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1272.5,6409.98567593098,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1273.5,6416.93012058735,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1274.5,6423.87456524372,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1275.5,6430.81900990009,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1276.5,6437.76345455647,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1277.5,6444.70789921284,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1278.5,6451.65234386921,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1279.5,6458.59678852558,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1280.5,6465.54123318195,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1281.5,6472.48567783833,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1282.5,6479.4301224947,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1283.5,6486.37456715107,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1284.5,6493.31901180744,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1285.5,6500.26345646381,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1286.5,6507.20790112019,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1287.5,6514.15234577656,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1288.5,6521.09679043293,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1289.5,6528.0412350893,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1290.5,6534.98567974567,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1291.5,6541.93012440205,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1292.5,6548.87456905842,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1293.5,6555.81901371479,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1294.5,6562.76345837116,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1295.5,6569.70790302753,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1296.5,6576.65234768391,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1297.5,6583.59679234028,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1298.5,6590.54123699665,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1299.5,6597.48568165302,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1300.5,6604.43012630939,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1301.5,6611.37457096577,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1302.5,6618.31901562214,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1303.5,6625.26346027851,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1304.5,6632.20790493488,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1305.5,6639.15234959126,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1306.5,6646.09679424763,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1307.5,6653.041238904,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1308.5,6659.98568356037,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1309.5,6666.93012821674,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1310.5,6673.87457287312,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1311.5,6680.81901752949,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1312.5,6687.76346218586,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1313.5,6694.70790684223,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1314.5,6701.6523514986,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1315.5,6708.59679615498,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1316.5,6715.54124081135,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1317.5,6722.48568546772,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1318.5,6729.43013012409,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1319.5,6736.37457478046,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1320.5,6743.31901943684,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1321.5,6750.26346409321,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1322.5,6757.20790874958,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1323.5,6764.15235340595,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1324.5,6771.09679806232,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1325.5,6778.0412427187,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1326.5,6784.98568737507,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1327.5,6791.93013203144,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1328.5,6798.87457668781,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1329.5,6805.81902134418,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1330.5,6812.76346600056,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1331.5,6819.70791065693,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1332.5,6826.6523553133,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1333.5,6833.59679996967,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1334.5,6840.54124462605,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1335.5,6847.48568928242,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1336.5,6854.43013393879,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1337.5,6861.37457859516,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1338.5,6868.31902325153,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1339.5,6875.26346790791,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1340.5,6882.20791256428,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1341.5,6889.15235722065,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1342.5,6896.09680187702,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1343.5,6903.04124653339,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1344.5,6909.98569118977,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1345.5,6916.93013584614,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1346.5,6923.87458050251,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1347.5,6930.81902515888,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1348.5,6937.76346981525,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1349.5,6944.70791447163,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1350.5,6951.652359128,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1351.5,6958.59680378437,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1352.5,6965.54124844074,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1353.5,6972.48569309711,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1354.5,6979.43013775349,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1355.5,6986.37458240986,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1356.5,6993.31902706623,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1357.5,7000.2634717226,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1358.5,7007.20791637897,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1359.5,7014.15236103535,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1360.5,7021.09680569172,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1361.5,7028.04125034809,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1362.5,7034.98569500446,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1363.5,7041.93013966084,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1364.5,7048.87458431721,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1365.5,7055.81902897358,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1366.5,7062.76347362995,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1367.5,7069.70791828632,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1368.5,7076.6523629427,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1369.5,7083.59680759907,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1370.5,7090.54125225544,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1371.5,7097.48569691181,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1372.5,7104.43014156818,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1373.5,7111.37458622456,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1374.5,7118.31903088093,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1375.5,7125.2634755373,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1376.5,7132.20792019367,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1377.5,7139.15236485004,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1378.5,7146.09680950642,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1379.5,7153.04125416279,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1380.5,7159.98569881916,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1381.5,7166.93014347553,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1382.5,7173.8745881319,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1383.5,7180.81903278828,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1384.5,7187.76347744465,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1385.5,7194.70792210102,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1386.5,7201.65236675739,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1387.5,7208.59681141377,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1388.5,7215.54125607014,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1389.5,7222.48570072651,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1390.5,7229.43014538288,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1391.5,7236.37459003925,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1392.5,7243.31903469563,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1393.5,7250.263479352,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1394.5,7257.20792400837,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1395.5,7264.15236866474,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1396.5,7271.09681332111,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1397.5,7278.04125797749,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1398.5,7284.98570263386,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1399.5,7291.93014729023,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1400.5,7298.8745919466,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1401.5,7305.81903660297,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1402.5,7312.76348125935,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1403.5,7319.70792591572,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1404.5,7326.65237057209,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1405.5,7333.59681522846,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1406.5,7340.54125988483,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1407.5,7347.48570454121,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1408.5,7354.43014919758,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1409.5,7361.37459385395,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1410.5,7368.31903851032,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1411.5,7375.26348316669,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1412.5,7382.20792782307,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1413.5,7389.15237247944,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1414.5,7396.09681713581,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1415.5,7403.04126179218,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1416.5,7409.98570644856,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1417.5,7416.93015110493,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1418.5,7423.8745957613,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1419.5,7430.81904041767,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1420.5,7437.76348507404,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1421.5,7444.70792973042,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1422.5,7451.65237438679,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1423.5,7458.59681904316,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1424.5,7465.54126369953,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1425.5,7472.4857083559,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1426.5,7479.43015301228,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1427.5,7486.37459766865,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1428.5,7493.31904232502,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1429.5,7500.26348698139,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1430.5,7507.20793163776,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1431.5,7514.15237629414,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1432.5,7521.09682095051,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1433.5,7528.04126560688,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1434.5,7534.98571026325,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1435.5,7541.93015491962,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1436.5,7548.874599576,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1437.5,7555.81904423237,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1438.5,7562.76348888874,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1439.5,7569.70793354511,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1440.5,7576.65237820148,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1441.5,7583.59682285786,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1442.5,7590.54126751423,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1443.5,7597.4857121706,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1444.5,7604.43015682697,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1445.5,7611.37460148335,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1446.5,7618.31904613972,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1447.5,7625.26349079609,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1448.5,7632.20793545246,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1449.5,7639.15238010883,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1450.5,7646.09682476521,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1451.5,7653.04126942158,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1452.5,7659.98571407795,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1453.5,7666.93015873432,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1454.5,7673.87460339069,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1455.5,7680.81904804707,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1456.5,7687.76349270344,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1457.5,7694.70793735981,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1458.5,7701.65238201618,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1459.5,7708.59682667255,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1460.5,7715.54127132893,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1461.5,7722.4857159853,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1462.5,7729.43016064167,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1463.5,7736.37460529804,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1464.5,7743.31904995441,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1465.5,7750.26349461079,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1466.5,7757.20793926716,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1467.5,7764.15238392353,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1468.5,7771.0968285799,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1469.5,7778.04127323627,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1470.5,7784.98571789265,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1471.5,7791.93016254902,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1472.5,7798.87460720539,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1473.5,7805.81905186176,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1474.5,7812.76349651814,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1475.5,7819.70794117451,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1476.5,7826.65238583088,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1477.5,7833.59683048725,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1478.5,7840.54127514362,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1479.5,7847.4857198,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1480.5,7854.43016445637,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1481.5,7861.37460911274,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1482.5,7868.31905376911,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1483.5,7875.26349842548,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1484.5,7882.20794308186,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1485.5,7889.15238773823,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1486.5,7896.0968323946,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1487.5,7903.04127705097,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1488.5,7909.98572170734,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1489.5,7916.93016636372,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1490.5,7923.87461102009,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1491.5,7930.81905567646,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1492.5,7937.76350033283,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1493.5,7944.7079449892,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1494.5,7951.65238964558,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1495.5,7958.59683430195,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1496.5,7965.54127895832,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1497.5,7972.48572361469,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1498.5,7979.43016827106,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1499.5,7986.37461292744,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1500.5,7993.31905758381,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1501.5,8000.26350224018,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1502.5,8007.20794689655,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1503.5,8014.15239155293,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1504.5,8021.0968362093,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1505.5,8028.04128086567,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1506.5,8034.98572552204,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1507.5,8041.93017017841,25.0000007629395,25.0000007629395,0,2.842372,1339.044,404.7048,361.2032,2300,-195.6853,56.74948,322.5161,-27.43985,50.64948,0,6.1,1,2.532475,2.405851,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,12185.45,-,-
-1508.5,8048.7893768549,24.6931440353394,25.0000007629395,-0.170476,2.842372,1322.608,216.3062,178.8412,2300,-193.713,29.95911,318.5574,-26.82987,24.77008,-0.9109742,6.1,1,1.238504,1.176579,0,0,-22.77945,8.184168,0.6255736,36.3247,22.355,0,7966.917,-,-
-1509.5,8055.4781075716,24.0794305801392,25.0000007629395,-0.170476,2.842372,1289.737,210.5204,178.5956,2300,-189.7684,28.43308,310.6401,-25.63029,24.12128,-1.788197,6.1,1,1.206064,1.145761,0,0,-22.21329,7.980762,0.58008,35.42191,21.76945,0,7653.528,-,-
-1510.5,8061.91855061054,23.1855949401855,25.0000007629395,-0.3260994,2.842372,1241.861,39.38763,11.8892,2300,-184.0233,5.12226,299.109,-23.93176,1.546159,-2.5239,6.1,1,0.07730798,0.07344258,0,0,-40.91399,7.684514,0.51785,34.10703,1.395409,0,4223.105,-,-
-1511.5,8068.03289425373,22.0116371154785,25.0000007629395,-0.3260994,2.842372,1178.982,35.1868,11.45365,2300,-177.0033,4.344257,283.9642,-21.85331,1.414099,-3.169841,6.1,1,0.07070495,0.06716971,0,0,-38.84239,7.295423,0.4431046,32.38009,1.276224,0,3840.449,-,-
-1512.5,8073.81602108479,20.8192565917969,25.0000007629395,-0.3363342,2.842372,1115.116,26.20342,0.09356745,2300,-170.936,3.059896,268.5818,-19.961,0.01092631,-3.05103,6.1,1,0.0005463155,0.0005189998,0,0,-37.89133,6.900227,0.3749254,30.62604,0.009860992,0,3525.297,-,-
-1513.5,8079.26281368732,19.6084533691406,25.0000007629395,-0.3363338,2.842372,1050.263,28.62352,-0.2506087,2300,-164.775,3.14811,252.9616,-18.1225,-0.02756277,-2.924327,6.1,1,0.001450672,0.001527024,0,0,-35.68761,6.498924,0.3132415,28.8449,-0.03054047,0,3419.46,-,-
-1514.5,8084.47178280354,18.7522888183594,21.5000003814697,-0.1393132,2.842372,1004.406,249.3763,210.0354,2300,-160.4185,26.22967,241.9165,-16.873,22.09176,-1.962088,6.1,1,1.104588,1.049359,0,0,-14.13677,6.215162,0.2739757,27.58544,19.93781,0,6782.235,-,-
-1515.5,8089.54143917561,18.2507629394531,18,-0.1393127,2.842372,977.543,258.6422,209.8836,2242.847,-158.7649,26.4767,229.5959,-16.25245,21.48538,-1.108676,6.1,1,1.074269,1.020556,0,0,-13.75864,6.048938,0.2525761,26.84768,19.39055,0,6667.092,-,-
-1516.5,8094.54143917561,18,18,0,2.842372,964.1117,413.7727,358.7326,2208.664,-158.0261,41.77513,222.9902,-15.95456,36.2182,-0.5430669,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9016.563,-,-
-1517.5,8099.54143917561,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1518.5,8104.54143917561,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1519.5,8109.54143917561,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1520.5,8114.54143917561,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1521.5,8119.54143917561,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1522.5,8124.54143917561,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1523.5,8129.54143917561,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1524.5,8134.54143917561,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1525.5,8139.54143917561,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1526.5,8144.54143917561,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1527.5,8149.54143917561,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1528.5,8154.54143917561,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1529.5,8159.54143917561,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1530.5,8164.54143917561,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1531.5,8169.54143917561,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1532.5,8174.54143917561,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1533.5,8179.54143917561,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1534.5,8184.54143917561,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1535.5,8189.54143917561,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1536.5,8194.54143917561,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1537.5,8199.54143917561,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1538.5,8204.54143917561,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1539.5,8209.54143917561,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1540.5,8214.54143917561,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1541.5,8219.54143917561,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1542.5,8224.54143917561,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1543.5,8229.54143917561,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1544.5,8234.54143917561,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1545.5,8239.54143917561,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1546.5,8244.54143917561,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1547.5,8249.54143917561,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1548.5,8254.54143917561,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1549.5,8259.54143917561,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1550.5,8264.54143917561,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1551.5,8269.54143917561,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1552.5,8274.54143917561,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1553.5,8279.54143917561,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1554.5,8284.54143917561,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1555.5,8289.54143917561,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1556.5,8294.54143917561,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1557.5,8299.54143917561,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-1558.5,8305.12216866016,20.0906261444092,36,1.161459,2.842372,1076.089,1697.321,1600.972,2300,-167.2285,191.2674,259.1819,-18.84461,180.41,4.757382,6.1,1,9.020503,8.569478,0,0,126.2702,6.658733,0.3369222,29.5542,162.82,0,35186.27,-,-
-1559.5,8311.81493246555,24.0939496994019,54,1.062611,2.842372,1290.514,1620.088,1496.756,2300,-189.8617,218.9425,310.8274,-25.65836,202.2752,10.56733,6.1,1,10.11376,9.608073,0,0,138.5434,7.985574,0.58113,35.44326,182.5533,0,40139.41,-,-
-1560.5,8319.52337801456,27.7504039764404,54,0.9687529,2.842372,1486.36,1509.928,1397.979,2204.572,-216.8177,235.0222,343.1445,-33.74796,217.5973,11.32492,6.1,1,10.87987,10.33588,0,0,145.4742,9.197451,0.887886,40.82207,196.3816,0,42933.99,-,-
-1561.5,8328.15784990788,31.084098815918,54,0.8833016,2.842372,1664.919,1410.436,1308.243,2006.94,-244.4133,245.9094,349.9098,-42.61343,228.092,11.71742,6.1,1,11.4046,10.83437,0,0,148.5768,10.30235,1.247855,45.72608,205.853,0,45449.84,-,-
-1562.5,8337.6377607584,34.1276790618897,54,0.8075756,2.842372,1827.939,1322.732,1228.922,1786.455,-269.1686,253.199,341.9655,-51.5246,235.2418,11.85727,6.1,1,11.76209,11.17399,0,0,149.1398,11.3111,1.651466,50.20332,212.3057,0,48379.13,-,-
-1563.5,8347.89694559574,36.9330654144287,54,0.7509727,2.842372,1978.2,1256.987,1170.05,1407.045,-296.967,260.3932,291.4787,-61.51867,242.3837,11.90957,6.1,1,12.11919,11.51323,0,0,150.087,12.2409,2.093126,54.33017,218.7512,0,52252.18,-,-
-1564.5,8358.61614573002,38.5891204833984,54,0.1690569,2.842372,2066.901,611.7183,549.0154,1183.409,-313.7112,132.4036,256.1435,-67.90134,118.8319,7.47176,6.1,1,5.941594,5.644514,0,0,35.30217,12.78978,2.387503,56.7663,107.2457,0,28722.35,-,-
-1565.5,8369.41987383366,38.8934211730957,54,0,2.842372,2083.2,402.9081,368.489,1142.335,-316.808,87.89529,249.203,-69.11237,80.3867,1.408594,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,22196.88,-,-
-1566.5,8380.22360193729,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1567.5,8391.02733004093,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1568.5,8401.83105814457,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1569.5,8412.63478624821,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1570.5,8423.43851435184,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1571.5,8434.24224245548,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1572.5,8445.04597055912,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1573.5,8455.84969866276,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1574.5,8466.6534267664,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1575.5,8477.45715487003,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1576.5,8488.26088297367,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1577.5,8499.06461107731,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1578.5,8509.86833918095,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1579.5,8520.67206728458,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1580.5,8531.47579538822,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1581.5,8542.27952349186,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1582.5,8553.0832515955,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1583.5,8563.88697969913,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1584.5,8574.69070780277,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1585.5,8585.49443590641,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1586.5,8596.29816401005,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1587.5,8607.10189211369,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1588.5,8617.90562021732,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1589.5,8628.70934832096,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1590.5,8639.5130764246,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1591.5,8650.31680452824,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1592.5,8661.12053263187,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1593.5,8671.92426073551,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1594.5,8682.72798883915,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1595.5,8693.53171694279,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1596.5,8704.33544504642,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1597.5,8715.13917315006,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1598.5,8725.9429012537,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1599.5,8736.74662935734,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1600.5,8747.55035746098,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1601.5,8758.35408556461,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1602.5,8769.15781366825,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1603.5,8779.96154177189,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1604.5,8790.76526987553,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1605.5,8801.56899797916,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1606.5,8812.3727260828,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1607.5,8823.17645418644,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1608.5,8833.98018229008,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1609.5,8844.78391039371,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1610.5,8855.58763849735,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1611.5,8866.39136660099,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1612.5,8877.19509470463,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1613.5,8887.99882280827,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1614.5,8898.8025509119,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1615.5,8909.60627901554,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1616.5,8920.41000711918,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1617.5,8931.21373522282,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1618.5,8942.01746332645,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1619.5,8952.82119143009,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1620.5,8963.62491953373,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1621.5,8974.42864763737,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1622.5,8985.232375741,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1623.5,8996.03610384464,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1624.5,9006.83983194828,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1625.5,9017.64356005192,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1626.5,9028.44728815556,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1627.5,9039.25101625919,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1628.5,9050.05474436283,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1629.5,9060.85847246647,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1630.5,9071.66220057011,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1631.5,9082.46592867374,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1632.5,9093.26965677738,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1633.5,9104.07338488102,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1634.5,9114.87711298466,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1635.5,9125.6808410883,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1636.5,9136.48456919193,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1637.5,9147.28829729557,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1638.5,9158.09202539921,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1639.5,9168.89575350285,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1640.5,9179.69948160648,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1641.5,9190.50320971012,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1642.5,9201.30693781376,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1643.5,9212.1106659174,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1644.5,9222.91439402103,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1645.5,9233.71812212467,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1646.5,9244.52185022831,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1647.5,9255.32557833195,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1648.5,9266.12930643559,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1649.5,9276.93303453922,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1650.5,9287.73676264286,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1651.5,9298.5404907465,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1652.5,9309.34421885014,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1653.5,9320.14794695377,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1654.5,9330.95167505741,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1655.5,9341.75540316105,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1656.5,9352.55913126469,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1657.5,9363.36285936832,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1658.5,9374.16658747196,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1659.5,9384.9703155756,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1660.5,9395.77404367924,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1661.5,9406.57777178288,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1662.5,9417.38149988651,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1663.5,9428.18522799015,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1664.5,9438.98895609379,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1665.5,9449.79268419743,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1666.5,9460.59641230106,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1667.5,9471.4001404047,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1668.5,9482.20386850834,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1669.5,9493.00759661198,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1670.5,9503.81132471561,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1671.5,9514.61505281925,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1672.5,9525.41878092289,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1673.5,9536.22250902653,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1674.5,9547.02623713017,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1675.5,9557.8299652338,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1676.5,9568.63369333744,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1677.5,9579.43742144108,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1678.5,9590.24114954472,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1679.5,9601.04487764835,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1680.5,9611.84860575199,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1681.5,9622.65233385563,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1682.5,9633.45606195927,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1683.5,9644.2597900629,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1684.5,9655.06351816654,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1685.5,9665.86724627018,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1686.5,9676.67097437382,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1687.5,9687.47470247746,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1688.5,9698.27843058109,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1689.5,9709.08215868473,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1690.5,9719.88588678837,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1691.5,9730.68961489201,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1692.5,9741.49334299564,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1693.5,9752.29707109928,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1694.5,9763.10079920292,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1695.5,9773.90452730656,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1696.5,9784.70825541019,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1697.5,9795.51198351383,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1698.5,9806.31571161747,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1699.5,9817.11943972111,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1700.5,9827.92316782475,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1701.5,9838.72689592838,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1702.5,9849.53062403202,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1703.5,9860.33435213566,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1704.5,9871.1380802393,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1705.5,9881.94180834293,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1706.5,9892.74553644657,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1707.5,9903.54926455021,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1708.5,9914.35299265385,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1709.5,9925.15672075748,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1710.5,9935.96044886112,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1711.5,9946.76417696476,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1712.5,9957.5679050684,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1713.5,9968.37163317204,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1714.5,9979.17536127567,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1715.5,9989.97908937931,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1716.5,10000.7828174829,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1717.5,10011.5865455866,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1718.5,10022.3902736902,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1719.5,10033.1940017939,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1720.5,10043.9977298975,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1721.5,10054.8014580011,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1722.5,10065.6051861048,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1723.5,10076.4089142084,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1724.5,10087.2126423121,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1725.5,10098.0163704157,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1726.5,10108.8200985193,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1727.5,10119.623826623,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1728.5,10130.4275547266,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1729.5,10141.2312828302,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1730.5,10152.0350109339,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1731.5,10162.8387390375,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1732.5,10173.6424671412,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1733.5,10184.4461952448,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1734.5,10195.2499233484,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1735.5,10206.0536514521,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1736.5,10216.8573795557,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1737.5,10227.6611076593,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1738.5,10238.464835763,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1739.5,10249.2685638666,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1740.5,10260.0722919703,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1741.5,10270.8760200739,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1742.5,10281.6797481775,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1743.5,10292.4834762812,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1744.5,10303.2872043848,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1745.5,10314.0909324884,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1746.5,10324.8946605921,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1747.5,10335.6983886957,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1748.5,10346.5021167994,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1749.5,10357.305844903,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1750.5,10368.1095730066,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1751.5,10378.9133011103,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1752.5,10389.7170292139,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1753.5,10400.5207573175,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1754.5,10411.3244854212,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1755.5,10422.1282135248,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1756.5,10432.9319416285,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1757.5,10443.7356697321,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1758.5,10454.5393978357,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1759.5,10465.3431259394,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1760.5,10476.146854043,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1761.5,10486.9505821466,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1762.5,10497.7543102503,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1763.5,10508.5580383539,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1764.5,10519.3617664576,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1765.5,10530.1654945612,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1766.5,10540.9692226648,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1767.5,10551.7729507685,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1768.5,10562.5766788721,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1769.5,10573.3804069757,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1770.5,10584.1841350794,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1771.5,10594.987863183,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1772.5,10605.7915912867,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1773.5,10616.5953193903,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1774.5,10627.3990474939,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1775.5,10638.2027755976,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1776.5,10649.0065037012,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1777.5,10659.8102318048,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1778.5,10670.6139599085,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1779.5,10681.4176880121,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1780.5,10692.2214161158,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1781.5,10703.0251442194,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1782.5,10713.828872323,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1783.5,10724.6326004267,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1784.5,10735.4363285303,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1785.5,10746.2400566339,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1786.5,10757.0437847376,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1787.5,10767.8475128412,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1788.5,10778.6512409449,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1789.5,10789.4549690485,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1790.5,10800.2586971521,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1791.5,10811.0624252558,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1792.5,10821.8661533594,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1793.5,10832.6698814631,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1794.5,10843.4736095667,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1795.5,10854.2773376703,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1796.5,10865.081065774,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1797.5,10875.8847938776,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1798.5,10886.6885219812,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1799.5,10897.4922500849,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1800.5,10908.2959781885,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1801.5,10919.0997062922,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1802.5,10929.9034343958,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1803.5,10940.7040754557,38.8823078155518,73.9999992370606,-0.006174088,2.842372,2082.605,389.6153,361.882,1143.836,-316.6949,84.97114,249.459,-69.06794,78.9228,-0.0516553,6.1,1,3.946141,3.748834,0,0,-1.299058,12.88695,2.442336,57.19759,71.22782,0,21778.28,-,-
-1804.5,10951.4001117945,38.5057308197022,73.9999992370606,-0.2030354,2.842372,2062.435,171.3831,151.2004,1194.664,-312.8626,37.01491,258.0208,-67.57133,32.65591,-1.740993,6.1,1,1.632796,1.551156,0,0,-42.30587,12.76214,2.372058,56.64363,29.47196,0,14926,-,-
-1805.5,10961.893111825,37.7748001098633,73.9999992370606,-0.2030363,2.842372,2023.285,163.811,150.7418,1293.322,-305.4241,34.70792,274.0264,-64.71262,31.93885,-3.330924,6.1,1,1.596943,1.517096,0,0,-41.503,12.51988,2.239524,55.5684,28.82481,0,14112.9,-,-
-1806.5,10972.1778675318,37.0251205444336,73.9999992370606,-0.2134523,2.842372,1983.131,152.3886,139.1469,1394.595,-297.8792,31.64699,289.6197,-61.86144,28.89704,-3.350047,6.1,1,1.444852,1.37261,0,0,-42.76624,12.27141,2.108816,54.46558,26.07958,0,13209.43,-,-
-1807.5,10982.2491708994,36.2566921234131,73.9999992370606,-0.2134533,2.842372,1941.972,152.1368,138.6837,1498.52,-290.2649,30.93898,304.7433,-59.02909,28.20311,-3.364131,6.1,1,1.410156,1.339648,0,0,-41.87884,12.01673,1.980222,53.33519,25.4533,0,12575.62,-,-
-1808.5,10992.1016546488,35.4689414978027,73.9999992370606,-0.2241859,2.842372,1899.779,140.4416,126.7468,1605.058,-282.4591,27.94007,319.3173,-56.19365,25.21557,-3.375495,6.1,1,1.260779,1.19774,0,0,-43.0289,11.75564,1.853933,52.17638,22.75705,0,11600.21,-,-
-1809.5,11001.7299524546,34.6618721008301,73.9999992370606,-0.2241869,2.842372,1856.551,140.2647,126.2813,1714.209,-274.4619,27.26992,333.2723,-53.36021,24.5513,-3.381374,6.1,1,1.227565,1.166187,0,0,-42.04999,11.48815,1.730236,50.98914,22.15754,0,10942.23,-,-
-1810.5,11011.1262079477,33.8265197753906,73.9999992370606,-0.2398958,2.842372,1811.808,123.1553,109.019,1827.185,-266.1845,23.3665,346.6756,-50.50374,20.68441,-3.417907,6.1,1,1.034221,0.9825097,0,0,-43.91204,11.21129,1.60813,49.7603,18.66768,0,9874.957,-,-
-1811.5,11020.282568574,32.9628982543945,73.9999992370606,-0.2398958,2.842372,1765.551,122.9007,108.5456,1895.239,-259.0049,22.72287,350.407,-47.8869,20.06879,-3.445926,6.1,1,1.00344,0.9532679,0,0,-42.79092,10.92505,1.488077,48.48988,18.11209,0,9344.56,-,-
-1812.5,11029.1904951334,32.0685356140137,73.9999992370606,-0.2569723,2.842372,1717.647,104.4094,89.81367,1948.412,-252.0588,18.78029,350.4639,-45.33823,16.15493,-3.474643,6.1,1,0.8077466,0.7673593,0,0,-44.59325,10.62863,1.370209,47.17423,14.57982,0,8343.351,-,-
-1813.5,11037.8414484262,31.143431854248,73.9999992370606,-0.2569733,2.842372,1668.097,104.2539,89.3327,2003.412,-244.8741,18.21136,349.9615,-42.77527,15.60488,-3.493522,6.1,1,0.7802441,0.7412319,0,0,-43.30699,10.32202,1.255014,45.81336,14.0834,0,7942.444,-,-
-1814.5,11046.2264600992,30.1860420227051,73.9999992370606,-0.274909,2.842372,1616.818,84.9879,69.67765,2060.333,-237.4385,14.38953,348.8405,-40.20137,11.79731,-3.50778,6.1,1,0.5898658,0.5603725,0,0,-44.90542,10.00471,1.142794,44.405,10.64708,0,7205.135,-,-
-1815.5,11054.3365637064,29.1963729858398,73.9999992370606,-0.2749085,2.842372,1563.809,85.00579,69.19579,2118.991,-229.2095,13.92069,347.0096,-37.53573,11.33162,-3.510926,6.1,1,0.5665812,0.5382521,0,0,-43.43309,9.676695,1.034037,42.94915,10.22679,0,6828.492,-,-
-1816.5,11062.1626096964,28.1737655639648,73.9999992370606,-0.2932067,2.842372,1509.036,65.57616,49.15379,2179.515,-220.4458,10.36273,344.4198,-34.83616,7.767573,-3.504839,6.1,1,0.3883788,0.3689598,0,0,-44.70153,9.337767,0.929146,41.44485,7.010235,0,6056.378,-,-
-1817.5,11069.6954489946,27.1182214736938,73.9999992370606,-0.2932062,2.842372,1452.5,65.85618,48.67524,2241.988,-211.3999,10.01708,341.0185,-32.15508,7.403767,-3.486687,6.1,1,0.3701884,0.351679,0,0,-43.0267,8.987923,0.828577,39.8921,6.6819,0,5806.487,-,-
-1818.5,11076.925632596,26.0286609649658,73.9999992370606,-0.3121057,2.842372,1394.141,46.08361,27.9967,2300,-202.2969,6.727935,335.7864,-29.53415,4.087352,-3.459417,6.1,1,0.2043677,0.1941493,0,0,-43.95994,8.626804,0.7326638,38.28931,3.688835,0,5153.612,-,-
-1819.5,11083.8437100649,24.9050788879395,73.9999992370606,-0.3121057,2.842372,1333.96,46.7201,27.52703,2300,-195.0752,6.526422,321.2915,-27.25043,3.845304,-3.418882,6.1,1,0.1922652,0.182652,0,0,-42.06231,8.254411,0.6418197,36.63647,3.470387,0,4814.755,-,-
-1820.5,11090.5818954706,24.2574674606323,48.9999984741211,-0.04767895,2.842372,1299.273,340.7885,309.9348,2300,-190.9127,46.36751,312.9369,-25.97549,42.16957,-1.902056,6.1,1,2.108479,2.003055,0,0,-6.258579,8.039769,0.5930423,35.6838,38.05804,0,10323.52,-,-
-1821.5,11097.2724014521,24.0858215332031,23.9999994277954,-0.04767942,2.842372,1290.079,351.3496,309.8661,2300,-189.8095,47.46619,310.7225,-25.64264,41.86191,-0.4957251,6.1,1,2.093096,1.988441,0,0,-6.214355,7.98288,0.580542,35.4313,37.78037,0,10470.12,-,-
-1822.5,11103.9390679598,23.9999994277954,23.9999994277954,0,2.842372,1285.482,404.2838,360.801,2300,-189.2579,54.42282,309.6154,-25.47702,48.56937,-0.2465425,6.1,1,2.428469,2.307045,0,0,0,7.954436,0.5743583,35.30506,43.83385,0,11622.14,-,-
-1823.5,11110.6057344675,23.9999994277954,23.9999994277954,0,2.842372,1285.482,406.1153,360.801,2300,-189.2579,54.66936,309.6154,-25.47702,48.56937,0,6.1,1,2.428469,2.307045,0,0,0,7.954436,0.5743583,35.30506,43.83385,0,11658.72,-,-
-1824.5,11117.2724009752,23.9999994277954,23.9999994277954,0,2.842372,1285.482,406.1153,360.801,2300,-189.2579,54.66936,309.6154,-25.47702,48.56937,0,6.1,1,2.428469,2.307045,0,0,0,7.954436,0.5743583,35.30506,43.83385,0,11658.72,-,-
-1825.5,11123.9390674829,23.9999994277954,23.9999994277954,0,2.842372,1285.482,406.1153,360.801,2300,-189.2579,54.66936,309.6154,-25.47702,48.56937,0,6.1,1,2.428469,2.307045,0,0,0,7.954436,0.5743583,35.30506,43.83385,0,11658.72,-,-
-1826.5,11130.6057339907,23.9999994277954,23.9999994277954,0,2.842372,1285.482,406.1153,360.801,2300,-189.2579,54.66936,309.6154,-25.47702,48.56937,0,6.1,1,2.428469,2.307045,0,0,0,7.954436,0.5743583,35.30506,43.83385,0,11658.72,-,-
-1827.5,11137.2724004984,23.9999994277954,23.9999994277954,0,2.842372,1285.482,406.1153,360.801,2300,-189.2579,54.66936,309.6154,-25.47702,48.56937,0,6.1,1,2.428469,2.307045,0,0,0,7.954436,0.5743583,35.30506,43.83385,0,11658.72,-,-
-1828.5,11143.9390670061,23.9999994277954,23.9999994277954,0,2.842372,1285.482,406.1153,360.801,2300,-189.2579,54.66936,309.6154,-25.47702,48.56937,0,6.1,1,2.428469,2.307045,0,0,0,7.954436,0.5743583,35.30506,43.83385,0,11658.72,-,-
-1829.5,11150.6057335138,23.9999994277954,23.9999994277954,0,2.842372,1285.482,406.1153,360.801,2300,-189.2579,54.66936,309.6154,-25.47702,48.56937,0,6.1,1,2.428469,2.307045,0,0,0,7.954436,0.5743583,35.30506,43.83385,0,11658.72,-,-
-1830.5,11157.2724000216,23.9999994277954,23.9999994277954,0,2.842372,1285.482,406.1153,360.801,2300,-189.2579,54.66936,309.6154,-25.47702,48.56937,0,6.1,1,2.428469,2.307045,0,0,0,7.954436,0.5743583,35.30506,43.83385,0,11658.72,-,-
-1831.5,11163.9390665293,23.9999994277954,23.9999994277954,0,2.842372,1285.482,406.1153,360.801,2300,-189.2579,54.66936,309.6154,-25.47702,48.56937,0,6.1,1,2.428469,2.307045,0,0,0,7.954436,0.5743583,35.30506,43.83385,0,11658.72,-,-
-1832.5,11170.605733037,23.9999994277954,23.9999994277954,0,2.842372,1285.482,406.1153,360.801,2300,-189.2579,54.66936,309.6154,-25.47702,48.56937,0,6.1,1,2.428469,2.307045,0,0,0,7.954436,0.5743583,35.30506,43.83385,0,11658.72,-,-
-1833.5,11177.2723995447,23.9999994277954,23.9999994277954,0,2.842372,1285.482,406.1153,360.801,2300,-189.2579,54.66936,309.6154,-25.47702,48.56937,0,6.1,1,2.428469,2.307045,0,0,0,7.954436,0.5743583,35.30506,43.83385,0,11658.72,-,-
-1834.5,11183.9390660524,23.9999994277954,23.9999994277954,0,2.842372,1285.482,406.1153,360.801,2300,-189.2579,54.66936,309.6154,-25.47702,48.56937,0,6.1,1,2.428469,2.307045,0,0,0,7.954436,0.5743583,35.30506,43.83385,0,11658.72,-,-
-1835.5,11190.6057325602,23.9999994277954,23.9999994277954,0,2.842372,1285.482,406.1153,360.801,2300,-189.2579,54.66936,309.6154,-25.47702,48.56937,0,6.1,1,2.428469,2.307045,0,0,0,7.954436,0.5743583,35.30506,43.83385,0,11658.72,-,-
-1836.5,11197.2723990679,23.9999994277954,23.9999994277954,0,2.842372,1285.482,406.1153,360.801,2300,-189.2579,54.66936,309.6154,-25.47702,48.56937,0,6.1,1,2.428469,2.307045,0,0,0,7.954436,0.5743583,35.30506,43.83385,0,11658.72,-,-
-1837.5,11203.9390655756,23.9999994277954,23.9999994277954,0,2.842372,1285.482,406.1153,360.801,2300,-189.2579,54.66936,309.6154,-25.47702,48.56937,0,6.1,1,2.428469,2.307045,0,0,0,7.954436,0.5743583,35.30506,43.83385,0,11658.72,-,-
-1838.5,11211.1150223017,25.8334442138672,48.9999984741211,1.018581,2.842372,1383.685,1530.17,1450.402,2300,-201.0422,221.7203,333.268,-29.13083,210.162,5.458364,6.1,1,10.5081,9.982696,0,0,142.3906,8.562103,0.716302,38.00214,189.6712,0,40761.92,-,-
-1839.5,11219.2640300989,29.3364280700684,73.9999992370606,0.9275221,2.842372,1571.311,1461.884,1354.647,2110.702,-230.4097,240.5491,347.3102,-37.91329,222.9035,11.54553,6.1,1,11.14518,10.58792,0,0,147.2431,9.723114,1.048989,43.15518,201.1704,0,44028.33,-,-
-1840.5,11228.3004490137,32.5311080932617,73.9999992370606,0.8472992,2.842372,1742.423,1368.655,1270.512,1920.91,-255.6514,249.7332,350.5011,-46.64772,231.8255,11.80766,6.1,1,11.59128,11.01171,0,0,149.1555,10.78194,1.430362,47.85469,209.2225,0,46736.72,-,-
-1841.5,11238.1493383646,35.456001663208,73.9999992370606,0.7776409,2.842372,1899.086,1288.09,1197.681,1606.808,-282.3309,256.1647,319.5489,-56.14765,238.1849,11.87984,6.1,1,11.90925,11.31378,0,0,149.2012,11.75135,1.851904,52.15734,214.9619,0,50215.98,-,-
-1842.5,11248.6700578928,37.8745903015137,73.9999992370606,0.5660181,2.842372,2028.63,1051.504,972.9139,1279.853,-306.4397,223.379,271.8889,-65.09931,206.6835,10.5955,6.1,1,10.33418,9.817468,0,0,116.0064,12.55296,2.25732,55.71519,186.5318,0,46010.38,-,-
-1843.5,11259.4737859964,38.8934211730957,73.9999992370606,0,2.842372,2083.2,417.8701,368.489,1142.335,-316.808,91.15928,249.203,-69.11237,80.3867,4.67258,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,22677.23,-,-
-1844.5,11270.2775141001,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1845.5,11281.0812422037,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1846.5,11291.8849703074,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1847.5,11302.688698411,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1848.5,11313.4924265146,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1849.5,11324.2961546183,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1850.5,11335.0998827219,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1851.5,11345.9036108255,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1852.5,11356.7073389292,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1853.5,11367.5110670328,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1854.5,11378.3147951365,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1855.5,11389.1185232401,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1856.5,11399.9222513437,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1857.5,11410.7259794474,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1858.5,11421.529707551,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1859.5,11432.3334356546,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1860.5,11443.1371637583,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1861.5,11453.9408918619,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1862.5,11464.7446199656,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1863.5,11475.5483480692,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1864.5,11486.3520761728,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1865.5,11497.1558042765,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1866.5,11507.9595323801,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1867.5,11518.7632604837,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1868.5,11529.5669885874,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1869.5,11540.370716691,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1870.5,11551.1744447947,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1871.5,11561.9781728983,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1872.5,11572.7819010019,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1873.5,11583.5856291056,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1874.5,11594.3893572092,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1875.5,11605.1930853128,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1876.5,11615.9968134165,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1877.5,11626.8005415201,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1878.5,11637.6042696238,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1879.5,11648.4079977274,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1880.5,11659.211725831,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1881.5,11670.0154539347,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1882.5,11680.8191820383,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1883.5,11691.6229101419,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1884.5,11702.4266382456,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1885.5,11713.2303663492,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1886.5,11724.0340944529,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1887.5,11734.8378225565,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1888.5,11745.6415506601,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1889.5,11756.4452787638,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1890.5,11767.2490068674,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1891.5,11778.052734971,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1892.5,11788.8564630747,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1893.5,11799.6601911783,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1894.5,11810.463919282,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1895.5,11821.2676473856,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1896.5,11832.0713754892,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1897.5,11842.8751035929,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1898.5,11853.6788316965,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1899.5,11864.4825598001,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1900.5,11875.2862879038,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1901.5,11886.0900160074,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1902.5,11896.8937441111,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1903.5,11907.6974722147,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1904.5,11918.5012003183,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1905.5,11929.304928422,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1906.5,11940.1086565256,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1907.5,11950.9123846293,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1908.5,11961.7161127329,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1909.5,11972.5198408365,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1910.5,11983.3235689402,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1911.5,11994.1272970438,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1912.5,12004.9310251474,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1913.5,12015.7347532511,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1914.5,12026.5384813547,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1915.5,12037.3422094584,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1916.5,12048.145937562,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1917.5,12058.9496656656,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1918.5,12069.7533937693,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1919.5,12080.5571218729,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1920.5,12091.3608499765,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1921.5,12102.1645780802,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1922.5,12112.9683061838,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1923.5,12123.7720342875,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1924.5,12134.5757623911,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1925.5,12145.3794904947,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1926.5,12156.1832185984,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1927.5,12166.986946702,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1928.5,12177.7906748056,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1929.5,12188.5944029093,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1930.5,12199.3981310129,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1931.5,12210.2018591166,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1932.5,12221.0055872202,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1933.5,12231.8093153238,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1934.5,12242.6130434275,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1935.5,12253.4167715311,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1936.5,12264.2204996347,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1937.5,12275.0242277384,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1938.5,12285.827955842,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1939.5,12296.6316839457,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1940.5,12307.4354120493,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1941.5,12318.2391401529,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1942.5,12329.0428682566,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1943.5,12339.8465963602,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1944.5,12350.6503244638,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1945.5,12361.4540525675,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1946.5,12372.2577806711,38.8934211730957,79.4999954223633,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1947.5,12383.0615087748,38.8934211730957,84.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1948.5,12393.8652368784,38.8934211730957,84.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1949.5,12404.668964982,38.8934211730957,84.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1950.5,12415.4726930857,38.8934211730957,84.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1951.5,12426.2764211893,38.8934211730957,84.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1952.5,12437.0801492929,38.8934211730957,84.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1953.5,12447.8838773966,38.8934211730957,84.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1954.5,12458.6876055002,38.8934211730957,84.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1955.5,12469.4913336039,38.8934211730957,84.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1956.5,12480.2950617075,38.8934211730957,84.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1957.5,12491.0987898111,38.8934211730957,84.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1958.5,12501.9025179148,38.8934211730957,84.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1959.5,12512.7062460184,38.8934211730957,84.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1960.5,12523.509974122,38.8934211730957,84.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1961.5,12534.3137022257,38.8934211730957,84.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1962.5,12545.1174303293,38.8934211730957,84.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1963.5,12555.921158433,38.8934211730957,84.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1964.5,12566.7248865366,38.8934211730957,84.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1965.5,12577.5286146402,38.8934211730957,84.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1966.5,12588.3323427439,38.8934211730957,84.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1967.5,12599.1360708475,38.8934211730957,84.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1968.5,12609.9397989511,38.8934211730957,84.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1969.5,12620.7435270548,38.8934211730957,84.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1970.5,12631.5472551584,38.8934211730957,84.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1971.5,12642.3509832621,38.8934211730957,84.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1972.5,12653.1547113657,38.8934211730957,84.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1973.5,12663.9584394693,38.8934211730957,84.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1974.5,12674.762167573,38.8934211730957,84.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1975.5,12685.5658956766,38.8934211730957,84.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1976.5,12696.3696237803,38.8934211730957,84.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1977.5,12707.1733518839,38.8934211730957,84.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1978.5,12717.9770799875,38.8934211730957,84.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1979.5,12728.7808080912,38.8934211730957,84.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1980.5,12739.5845361948,38.8934211730957,84.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1981.5,12750.3882642984,38.8934211730957,84.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1982.5,12761.1919924021,38.8934211730957,84.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1983.5,12771.9957205057,38.8934211730957,84.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1984.5,12782.7994486094,38.8934211730957,84.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1985.5,12793.603176713,38.8934211730957,84.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1986.5,12804.4069048166,38.8934211730957,84.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1987.5,12815.2106329203,38.8934211730957,84.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1988.5,12826.0143610239,38.8934211730957,84.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1989.5,12836.8180891275,38.8934211730957,84.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1990.5,12847.6218172312,38.8934211730957,84.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1991.5,12858.4255453348,38.8934211730957,84.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1992.5,12869.2292734385,38.8934211730957,84.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1993.5,12880.0330015421,38.8934211730957,84.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1994.5,12890.8367296457,38.8934211730957,84.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1995.5,12901.6404577494,38.8934211730957,84.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1996.5,12912.444185853,38.8934211730957,84.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1997.5,12923.2479139566,38.8934211730957,84.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1998.5,12934.0516420603,38.8934211730957,84.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-1999.5,12944.8553701639,38.8934211730957,84.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2000.5,12955.6590982676,38.8934211730957,84.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2001.5,12966.4628263712,38.8934211730957,84.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2002.5,12977.2665544748,38.8934211730957,84.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2003.5,12988.0702825785,38.8934211730957,84.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2004.5,12998.8740106821,38.8934211730957,77.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2005.5,13009.6777387857,38.8934211730957,70.9999969482422,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2006.5,13020.4814668894,38.8934211730957,70.9999969482422,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2007.5,13031.285194993,38.8934211730957,70.9999969482422,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2008.5,13042.0889230967,38.8934211730957,70.9999969482422,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2009.5,13052.8926512003,38.8934211730957,70.9999969482422,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2010.5,13063.6963793039,38.8934211730957,70.9999969482422,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2011.5,13074.5001074076,38.8934211730957,70.9999969482422,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2012.5,13085.3038355112,38.8934211730957,70.9999969482422,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2013.5,13096.1075636148,38.8934211730957,70.9999969482422,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2014.5,13106.9112917185,38.8934211730957,70.9999969482422,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2015.5,13117.7150198221,38.8934211730957,70.9999969482422,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2016.5,13128.5187479258,38.8934211730957,70.9999969482422,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2017.5,13139.3224760294,38.8934211730957,70.9999969482422,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2018.5,13150.126204133,38.8934211730957,70.9999969482422,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2019.5,13160.9299322367,38.8934211730957,70.9999969482422,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2020.5,13171.7336603403,38.8934211730957,70.9999969482422,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2021.5,13182.5373884439,38.8934211730957,70.9999969482422,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2022.5,13193.3411165476,38.8934211730957,70.9999969482422,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2023.5,13204.1448446512,38.8934211730957,70.9999969482422,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2024.5,13214.9485727549,38.8934211730957,70.9999969482422,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2025.5,13225.7523008585,38.8934211730957,70.9999969482422,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2026.5,13236.5560289621,38.8934211730957,70.9999969482422,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2027.5,13247.3597570658,38.8934211730957,70.9999969482422,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2028.5,13258.1634851694,38.8934211730957,70.9999969482422,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2029.5,13268.967213273,38.8934211730957,70.9999969482422,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2030.5,13279.7709413767,38.8934211730957,70.9999969482422,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2031.5,13290.5746694803,38.8934211730957,70.9999969482422,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2032.5,13301.378397584,38.8934211730957,77.5000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2033.5,13312.1821256876,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2034.5,13322.9858537912,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2035.5,13333.7895818949,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2036.5,13344.5933099985,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2037.5,13355.3970381022,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2038.5,13366.2007662058,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2039.5,13377.0044943094,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2040.5,13387.8082224131,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2041.5,13398.6119505167,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2042.5,13409.4156786203,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2043.5,13420.219406724,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2044.5,13431.0231348276,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2045.5,13441.8268629313,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2046.5,13452.6305910349,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2047.5,13463.4343191385,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2048.5,13474.2380472422,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2049.5,13485.0417753458,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2050.5,13495.8455034494,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2051.5,13506.6492315531,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2052.5,13517.4529596567,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2053.5,13528.2566877604,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2054.5,13539.060415864,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2055.5,13549.8641439676,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2056.5,13560.6678720713,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2057.5,13571.4716001749,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2058.5,13582.2753282785,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2059.5,13593.0790563822,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2060.5,13603.8827844858,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2061.5,13614.6865125895,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2062.5,13625.4902406931,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2063.5,13636.2939687967,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2064.5,13647.0976969004,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2065.5,13657.901425004,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2066.5,13668.7051531076,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2067.5,13679.5088812113,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2068.5,13690.3126093149,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2069.5,13701.1163374186,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2070.5,13711.9200655222,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2071.5,13722.7237936258,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2072.5,13733.5275217295,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2073.5,13744.3312498331,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2074.5,13755.1349779367,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2075.5,13765.9387060404,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2076.5,13776.742434144,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2077.5,13787.5461622477,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2078.5,13798.3498903513,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2079.5,13809.1536184549,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2080.5,13819.9573465586,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2081.5,13830.7610746622,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2082.5,13841.5648027658,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2083.5,13852.3685308695,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2084.5,13863.1722589731,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2085.5,13873.9759870768,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2086.5,13884.7797151804,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2087.5,13895.583443284,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2088.5,13906.3871713877,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2089.5,13917.1908994913,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2090.5,13927.9946275949,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2091.5,13938.7983556986,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2092.5,13949.6020838022,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2093.5,13960.4058119059,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2094.5,13971.2095400095,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2095.5,13982.0132681131,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2096.5,13992.8169962168,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2097.5,14003.6207243204,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2098.5,14014.424452424,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2099.5,14025.2281805277,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2100.5,14036.0319086313,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2101.5,14046.835636735,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2102.5,14057.6393648386,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2103.5,14068.4430929422,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2104.5,14079.2468210459,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2105.5,14090.0505491495,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2106.5,14100.8542772532,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2107.5,14111.6580053568,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2108.5,14122.4617334604,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2109.5,14133.2654615641,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2110.5,14144.0691896677,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2111.5,14154.8729177713,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2112.5,14165.676645875,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2113.5,14176.4803739786,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2114.5,14187.2841020823,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2115.5,14198.0878301859,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2116.5,14208.8915582895,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2117.5,14219.6952863932,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2118.5,14230.4990144968,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2119.5,14241.3027426004,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2120.5,14252.1064707041,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2121.5,14262.9101988077,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2122.5,14273.7139269114,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2123.5,14284.517655015,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2124.5,14295.3213831186,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2125.5,14306.1251112223,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2126.5,14316.9288393259,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2127.5,14327.7325674295,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2128.5,14338.5362955332,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2129.5,14349.3400236368,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2130.5,14360.1437517405,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2131.5,14370.9474798441,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2132.5,14381.7512079477,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2133.5,14392.5549360514,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2134.5,14403.358664155,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2135.5,14414.1623922586,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2136.5,14424.9661203623,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2137.5,14435.7698484659,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2138.5,14446.5735765696,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2139.5,14457.3773046732,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2140.5,14468.1810327768,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2141.5,14478.9847608805,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2142.5,14489.7884889841,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2143.5,14500.5922170877,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2144.5,14511.3959451914,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2145.5,14522.199673295,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2146.5,14533.0034013987,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2147.5,14543.8071295023,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2148.5,14554.6108576059,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2149.5,14565.4145857096,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2150.5,14576.2183138132,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2151.5,14587.0220419168,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2152.5,14597.8257700205,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2153.5,14608.6294981241,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2154.5,14619.4332262278,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2155.5,14630.2369543314,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2156.5,14641.040682435,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2157.5,14651.8444105387,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2158.5,14662.6481386423,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2159.5,14673.4518667459,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2160.5,14684.2555948496,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2161.5,14695.0593229532,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2162.5,14705.8630510569,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2163.5,14716.6667791605,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2164.5,14727.4705072641,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2165.5,14738.2742353678,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2166.5,14749.0779634714,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2167.5,14759.8816915751,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2168.5,14770.6854196787,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2169.5,14781.4891477823,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2170.5,14792.292875886,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2171.5,14803.0966039896,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2172.5,14813.9003320932,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2173.5,14824.7040601969,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2174.5,14835.5077883005,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2175.5,14846.3115164042,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2176.5,14857.1152445078,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2177.5,14867.9189726114,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2178.5,14878.7227007151,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2179.5,14889.5264288187,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2180.5,14900.3301569223,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2181.5,14911.133885026,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2182.5,14921.9376131296,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2183.5,14932.7413412333,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2184.5,14943.5450693369,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2185.5,14954.3487974405,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2186.5,14965.1525255442,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2187.5,14975.9562536478,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2188.5,14986.7599817514,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2189.5,14997.5637098551,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2190.5,15008.3674379587,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2191.5,15019.1711660624,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2192.5,15029.974894166,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2193.5,15040.7786222696,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2194.5,15051.5823503733,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2195.5,15062.3860784769,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2196.5,15073.1898065805,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2197.5,15083.9935346842,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2198.5,15094.7972627878,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2199.5,15105.6009908915,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2200.5,15116.4047189951,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2201.5,15127.2084470987,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2202.5,15138.0121752024,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2203.5,15148.815903306,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2204.5,15159.6196314096,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2205.5,15170.4233595133,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2206.5,15181.2270876169,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2207.5,15192.0308157206,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2208.5,15202.8345438242,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2209.5,15213.6382719278,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2210.5,15224.4420000315,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2211.5,15235.2457281351,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2212.5,15246.0494562387,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2213.5,15256.8531843424,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2214.5,15267.656912446,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2215.5,15278.4606405497,38.8934211730957,84.0000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2216.5,15289.2643686533,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2217.5,15300.0680967569,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2218.5,15310.8718248606,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2219.5,15321.6755529642,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2220.5,15332.4792810678,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2221.5,15343.2830091715,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2222.5,15354.0867372751,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2223.5,15364.8904653788,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2224.5,15375.6941934824,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2225.5,15386.497921586,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2226.5,15397.3016496897,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2227.5,15408.1053777933,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2228.5,15418.909105897,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2229.5,15429.7128340006,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2230.5,15440.5165621042,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2231.5,15451.3202902079,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2232.5,15462.1240183115,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2233.5,15472.9277464151,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2234.5,15483.7314745188,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2235.5,15494.5352026224,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2236.5,15505.3389307261,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2237.5,15516.1426588297,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2238.5,15526.9463869333,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2239.5,15537.750115037,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2240.5,15548.5538431406,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2241.5,15559.3575712442,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2242.5,15570.1612993479,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2243.5,15580.9650274515,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2244.5,15591.7687555552,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2245.5,15602.5724836588,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2246.5,15613.3762117624,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2247.5,15624.1799398661,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2248.5,15634.9836679697,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2249.5,15645.7873960733,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2250.5,15656.591124177,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2251.5,15667.3948522806,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2252.5,15678.1985803843,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2253.5,15689.0023084879,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2254.5,15699.8060365915,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2255.5,15710.6097646952,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2256.5,15721.4134927988,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2257.5,15732.2172209024,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2258.5,15743.0209490061,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2259.5,15753.8246771097,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2260.5,15764.6284052134,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2261.5,15775.432133317,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2262.5,15786.2358614206,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2263.5,15797.0395895243,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2264.5,15807.8433176279,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2265.5,15818.6470457315,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2266.5,15829.4507738352,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2267.5,15840.2545019388,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2268.5,15851.0582300425,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2269.5,15861.8619581461,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2270.5,15872.6656862497,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2271.5,15883.4694143534,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2272.5,15894.273142457,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2273.5,15905.0768705606,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2274.5,15915.8805986643,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2275.5,15926.6843267679,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2276.5,15937.4880548716,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2277.5,15948.2917829752,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2278.5,15959.0955110788,38.8934211730957,61.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2279.5,15969.8992391825,38.8934211730957,68.0000015258789,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2280.5,15980.7029672861,38.8934211730957,68.0000015258789,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2281.5,15991.5066953897,38.8934211730957,68.0000015258789,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2282.5,16002.3104234934,38.8934211730957,68.0000015258789,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2283.5,16013.114151597,38.8934211730957,68.0000015258789,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2284.5,16023.9178797007,38.8934211730957,68.0000015258789,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2285.5,16034.7216078043,38.8934211730957,68.0000015258789,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2286.5,16045.5253359079,38.8934211730957,68.0000015258789,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2287.5,16056.3290640116,38.8934211730957,68.0000015258789,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2288.5,16067.1327921152,38.8934211730957,68.0000015258789,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2289.5,16077.9365202188,38.8934211730957,68.0000015258789,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2290.5,16088.7402483225,38.8934211730957,68.0000015258789,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2291.5,16099.5439764261,38.8934211730957,68.0000015258789,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2292.5,16110.3477045298,38.8934211730957,70.9999969482422,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2293.5,16121.1514326334,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2294.5,16131.955160737,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2295.5,16142.7588888407,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2296.5,16153.5626169443,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2297.5,16164.366345048,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2298.5,16175.1700731516,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2299.5,16185.9738012552,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2300.5,16196.7775293589,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2301.5,16207.5812574625,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2302.5,16218.3849855661,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2303.5,16229.1887136698,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2304.5,16239.9924417734,38.8934211730957,76.5,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2305.5,16250.7961698771,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2306.5,16261.5998979807,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2307.5,16272.4036260843,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2308.5,16283.207354188,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2309.5,16294.0110822916,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2310.5,16304.8148103952,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2311.5,16315.6185384989,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2312.5,16326.4222666025,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2313.5,16337.2259947062,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2314.5,16348.0297228098,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2315.5,16358.8334509134,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2316.5,16369.6371790171,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2317.5,16380.4409071207,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2318.5,16391.2446352243,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2319.5,16402.048363328,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2320.5,16412.8520914316,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2321.5,16423.6558195353,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2322.5,16434.4595476389,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2323.5,16445.2632757425,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2324.5,16456.0670038462,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2325.5,16466.8707319498,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2326.5,16477.6744600534,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2327.5,16488.4781881571,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2328.5,16499.2819162607,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2329.5,16510.0856443644,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2330.5,16520.889372468,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2331.5,16531.6931005716,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2332.5,16542.4968286753,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2333.5,16553.3005567789,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2334.5,16564.1042848825,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2335.5,16574.9080129862,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2336.5,16585.7117410898,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2337.5,16596.5154691935,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2338.5,16607.3191972971,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2339.5,16618.1229254007,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2340.5,16628.9266535044,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2341.5,16639.730381608,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2342.5,16650.5341097116,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2343.5,16661.3378378153,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2344.5,16672.1415659189,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2345.5,16682.9452940226,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2346.5,16693.7490221262,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2347.5,16704.5527502298,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2348.5,16715.3564783335,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2349.5,16726.1602064371,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2350.5,16736.9639345407,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2351.5,16747.7676626444,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2352.5,16758.571390748,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2353.5,16769.3751188517,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2354.5,16780.1788469553,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2355.5,16790.9825750589,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2356.5,16801.7863031626,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2357.5,16812.5900312662,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2358.5,16823.3937593699,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2359.5,16834.1974874735,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2360.5,16845.0012155771,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2361.5,16855.8049436808,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2362.5,16866.6086717844,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2363.5,16877.412399888,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2364.5,16888.2161279917,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2365.5,16899.0198560953,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2366.5,16909.823584199,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2367.5,16920.6273123026,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2368.5,16931.4310404062,38.8934211730957,70.4999954223633,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2369.5,16942.2347685099,38.8934211730957,72,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2370.5,16953.0384966135,38.8934211730957,72,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2371.5,16963.8422247171,38.8934211730957,72,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2372.5,16974.6459528208,38.8934211730957,72,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2373.5,16985.4496809244,38.8934211730957,72,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2374.5,16996.2534090281,38.8934211730957,72,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2375.5,17007.0571371317,38.8934211730957,72,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2376.5,17017.8608652353,38.8934211730957,72,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2377.5,17028.664593339,38.8934211730957,72,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2378.5,17039.4683214426,38.8934211730957,72,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2379.5,17050.2720495462,38.8934211730957,72,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2380.5,17061.0757776499,38.8934211730957,72,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2381.5,17071.8795057535,38.8934211730957,72,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2382.5,17082.6832338572,38.8934211730957,72,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2383.5,17093.4869619608,38.8934211730957,72,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2384.5,17104.2906900644,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2385.5,17115.0944181681,38.8934211730957,75.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2386.5,17125.8981462717,38.8934211730957,75.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2387.5,17136.7018743753,38.8934211730957,75.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2388.5,17147.505602479,38.8934211730957,75.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2389.5,17158.3093305826,38.8934211730957,75.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2390.5,17169.1130586863,38.8934211730957,75.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2391.5,17179.9167867899,38.8934211730957,75.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2392.5,17190.7205148935,38.8934211730957,75.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2393.5,17201.5242429972,38.8934211730957,75.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2394.5,17212.3279711008,38.8934211730957,75.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2395.5,17223.1316992044,38.8934211730957,75.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2396.5,17233.9354273081,38.8934211730957,75.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2397.5,17244.7391554117,38.8934211730957,75.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2398.5,17255.5428835154,38.8934211730957,75.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2399.5,17266.346611619,38.8934211730957,75.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2400.5,17277.1503397226,38.8934211730957,75.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2401.5,17287.9540678263,38.8934211730957,75.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2402.5,17298.7577959299,38.8934211730957,75.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2403.5,17309.5615240335,38.8934211730957,75.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2404.5,17320.3652521372,38.8934211730957,75.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2405.5,17331.1689802408,38.8934211730957,75.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2406.5,17341.9727083445,38.8934211730957,75.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2407.5,17352.7764364481,38.8934211730957,75.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2408.5,17363.5801645517,38.8934211730957,75.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2409.5,17374.3838926554,38.8934211730957,75.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2410.5,17385.187620759,38.8934211730957,75.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2411.5,17395.9913488626,38.8934211730957,75.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2412.5,17406.7950769663,38.8934211730957,75.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2413.5,17417.5988050699,38.8934211730957,75.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2414.5,17428.4025331736,38.8934211730957,75.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2415.5,17439.2062612772,38.8934211730957,75.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2416.5,17450.0099893808,38.8934211730957,75.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2417.5,17460.8137174845,38.8934211730957,75.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2418.5,17471.6174455881,38.8934211730957,75.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2419.5,17482.4211736918,38.8934211730957,75.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2420.5,17493.2249017954,38.8934211730957,75.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2421.5,17504.028629899,38.8934211730957,75.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2422.5,17514.8323580027,38.8934211730957,75.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2423.5,17525.6360861063,38.8934211730957,75.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2424.5,17536.4398142099,38.8934211730957,75.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2425.5,17547.2435423136,38.8934211730957,75.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2426.5,17558.0472704172,38.8934211730957,75.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2427.5,17568.8509985209,38.8934211730957,75.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2428.5,17579.6547266245,38.8934211730957,75.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2429.5,17590.4584547281,38.8934211730957,75.9999984741211,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2430.5,17601.2621828318,38.8934211730957,70.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2431.5,17612.0659109354,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2432.5,17622.869639039,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2433.5,17633.6733671427,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2434.5,17644.4770952463,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2435.5,17655.28082335,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2436.5,17666.0845514536,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2437.5,17676.8882795572,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2438.5,17687.6920076609,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2439.5,17698.4957357645,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2440.5,17709.2994638681,38.8934211730957,59.0000015258789,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2441.5,17720.1031919718,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2442.5,17730.9069200754,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2443.5,17741.7106481791,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2444.5,17752.5143762827,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2445.5,17763.3181043863,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2446.5,17774.12183249,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2447.5,17784.9255605936,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2448.5,17795.7292886972,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2449.5,17806.5330168009,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2450.5,17817.3367449045,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2451.5,17828.1404730082,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2452.5,17838.9442011118,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2453.5,17849.7479292154,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2454.5,17860.5516573191,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2455.5,17871.3553854227,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2456.5,17882.1591135263,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2457.5,17892.96284163,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2458.5,17903.7665697336,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2459.5,17914.5702978373,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2460.5,17925.3740259409,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2461.5,17936.1777540445,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2462.5,17946.9814821482,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2463.5,17957.7852102518,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2464.5,17968.5889383554,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2465.5,17979.3926664591,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2466.5,17990.1963945627,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2467.5,18001.0001226664,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2468.5,18011.80385077,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2469.5,18022.6075788736,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2470.5,18033.4113069773,38.8934211730957,56.5000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2471.5,18044.2150350809,38.8934211730957,59.0000015258789,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2472.5,18055.0187631845,38.8934211730957,59.0000015258789,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2473.5,18065.8224912882,38.8934211730957,59.0000015258789,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2474.5,18076.6262193918,38.8934211730957,59.0000015258789,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2475.5,18087.4299474955,38.8934211730957,59.0000015258789,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2476.5,18098.2336755991,38.8934211730957,59.0000015258789,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2477.5,18109.0374037027,38.8934211730957,59.0000015258789,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2478.5,18119.8411318064,38.8934211730957,59.0000015258789,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2479.5,18130.64485991,38.8934211730957,59.0000015258789,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2480.5,18141.4485880136,38.8934211730957,59.0000015258789,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2481.5,18152.2523161173,38.8934211730957,59.0000015258789,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2482.5,18163.0560442209,38.8934211730957,59.0000015258789,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2483.5,18173.8597723246,38.8934211730957,59.0000015258789,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2484.5,18184.6635004282,38.8934211730957,59.0000015258789,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2485.5,18195.4672285318,38.8934211730957,59.0000015258789,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2486.5,18206.2709566355,38.8934211730957,59.0000015258789,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2487.5,18217.0746847391,38.8934211730957,59.0000015258789,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2488.5,18227.8784128428,38.8934211730957,59.0000015258789,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2489.5,18238.6821409464,38.8934211730957,59.0000015258789,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2490.5,18249.48586905,38.8934211730957,59.0000015258789,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2491.5,18260.2895971537,38.8934211730957,59.0000015258789,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2492.5,18271.0933252573,38.8934211730957,59.0000015258789,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2493.5,18281.8970533609,38.8934211730957,59.0000015258789,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2494.5,18292.7007814646,38.8934211730957,59.0000015258789,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2495.5,18303.5045095682,38.8934211730957,59.0000015258789,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2496.5,18314.3082376719,38.8934211730957,59.0000015258789,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2497.5,18325.1119657755,38.8934211730957,59.0000015258789,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2498.5,18335.9156938791,38.8934211730957,59.0000015258789,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2499.5,18346.7194219828,38.8934211730957,59.0000015258789,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2500.5,18357.5231500864,38.8934211730957,66.4999969482422,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2501.5,18368.32687819,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2502.5,18379.1306062937,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2503.5,18389.9343343973,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2504.5,18400.738062501,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2505.5,18411.5417906046,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2506.5,18422.3455187082,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2507.5,18433.1492468119,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2508.5,18443.9529749155,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2509.5,18454.7567030191,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2510.5,18465.5604311228,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2511.5,18476.3641592264,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2512.5,18487.1678873301,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2513.5,18497.9716154337,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2514.5,18508.7753435373,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2515.5,18519.579071641,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2516.5,18530.3827997446,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2517.5,18541.1865278482,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2518.5,18551.9902559519,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2519.5,18562.7939840555,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2520.5,18573.5977121592,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2521.5,18584.4014402628,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2522.5,18595.2051683664,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2523.5,18606.0088964701,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2524.5,18616.8126245737,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2525.5,18627.6163526773,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2526.5,18638.420080781,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2527.5,18649.2238088846,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2528.5,18660.0275369883,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2529.5,18670.8312650919,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2530.5,18681.6349931955,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2531.5,18692.4387212992,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2532.5,18703.2424494028,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2533.5,18714.0461775064,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2534.5,18724.8499056101,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2535.5,18735.6536337137,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2536.5,18746.4573618174,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2537.5,18757.261089921,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2538.5,18768.0648180246,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2539.5,18778.8685461283,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2540.5,18789.6722742319,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2541.5,18800.4760023355,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2542.5,18811.2797304392,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2543.5,18822.0834585428,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2544.5,18832.8871866465,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2545.5,18843.6909147501,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2546.5,18854.4946428537,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2547.5,18865.2983709574,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2548.5,18876.102099061,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2549.5,18886.9058271647,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2550.5,18897.7095552683,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2551.5,18908.5132833719,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2552.5,18919.3170114756,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2553.5,18930.1207395792,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2554.5,18940.9244676828,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2555.5,18951.7281957865,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2556.5,18962.5319238901,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2557.5,18973.3356519938,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2558.5,18984.1393800974,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2559.5,18994.943108201,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2560.5,19005.7468363047,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2561.5,19016.5505644083,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2562.5,19027.3542925119,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2563.5,19038.1580206156,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2564.5,19048.9617487192,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2565.5,19059.7654768229,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2566.5,19070.5692049265,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2567.5,19081.3729330301,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2568.5,19092.1766611338,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2569.5,19102.9803892374,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2570.5,19113.784117341,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2571.5,19124.5878454447,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2572.5,19135.3915735483,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2573.5,19146.195301652,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2574.5,19156.9990297556,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2575.5,19167.8027578592,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2576.5,19178.6064859629,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2577.5,19189.4102140665,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2578.5,19200.2139421701,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2579.5,19211.0176702738,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2580.5,19221.8213983774,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2581.5,19232.6251264811,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2582.5,19243.4288545847,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2583.5,19254.2325826883,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2584.5,19265.036310792,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2585.5,19275.8400388956,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2586.5,19286.6437669992,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2587.5,19297.4474951029,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2588.5,19308.2512232065,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2589.5,19319.0549513102,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2590.5,19329.8586794138,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2591.5,19340.6624075174,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2592.5,19351.4661356211,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2593.5,19362.2698637247,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2594.5,19373.0735918283,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2595.5,19383.877319932,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2596.5,19394.6810480356,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2597.5,19405.4847761393,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2598.5,19416.2885042429,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2599.5,19427.0922323465,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2600.5,19437.8959604502,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2601.5,19448.6996885538,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2602.5,19459.5034166574,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2603.5,19470.3071447611,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2604.5,19481.1108728647,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2605.5,19491.9146009684,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2606.5,19502.718329072,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2607.5,19513.5220571756,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2608.5,19524.3257852793,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2609.5,19535.1295133829,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2610.5,19545.9332414865,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2611.5,19556.7369695902,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2612.5,19567.5406976938,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2613.5,19578.3444257975,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2614.5,19589.1481539011,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2615.5,19599.9518820047,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2616.5,19610.7556101084,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2617.5,19621.559338212,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2618.5,19632.3630663157,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2619.5,19643.1667944193,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2620.5,19653.9705225229,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2621.5,19664.7742506266,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2622.5,19675.5779787302,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2623.5,19686.3817068338,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2624.5,19697.1854349375,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2625.5,19707.9891630411,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2626.5,19718.7928911448,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2627.5,19729.5966192484,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2628.5,19740.400347352,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2629.5,19751.2040754557,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2630.5,19762.0078035593,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2631.5,19772.8115316629,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2632.5,19783.6152597666,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2633.5,19794.4189878702,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2634.5,19805.2227159739,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2635.5,19816.0264440775,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2636.5,19826.8301721811,38.8934211730957,69.0000045776367,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2637.5,19837.6339002848,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2638.5,19848.4376283884,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2639.5,19859.241356492,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2640.5,19870.0450845957,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2641.5,19880.8488126993,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2642.5,19891.652540803,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2643.5,19902.4562689066,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2644.5,19913.2599970102,38.8934211730957,54,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2645.5,19924.0637251139,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2646.5,19934.8674532175,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2647.5,19945.6711813211,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2648.5,19956.4749094248,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2649.5,19967.2786375284,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2650.5,19978.0823656321,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2651.5,19988.8860937357,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2652.5,19999.6898218393,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2653.5,20010.493549943,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2654.5,20021.2972780466,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2655.5,20032.1010061502,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2656.5,20042.9047342539,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2657.5,20053.7084623575,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2658.5,20064.5121904612,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2659.5,20075.3159185648,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2660.5,20086.1196466684,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2661.5,20096.9233747721,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2662.5,20107.7271028757,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2663.5,20118.5308309793,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2664.5,20129.334559083,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2665.5,20140.1382871866,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2666.5,20150.9420152903,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2667.5,20161.7457433939,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2668.5,20172.5494714975,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2669.5,20183.3531996012,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2670.5,20194.1569277048,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2671.5,20204.9606558084,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2672.5,20215.7643839121,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2673.5,20226.5681120157,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2674.5,20237.3718401194,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2675.5,20248.175568223,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2676.5,20258.9792963266,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2677.5,20269.7830244303,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2678.5,20280.5867525339,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2679.5,20291.3904806376,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2680.5,20302.1942087412,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2681.5,20312.9979368448,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2682.5,20323.8016649485,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2683.5,20334.6053930521,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2684.5,20345.4091211557,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2685.5,20356.2128492594,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2686.5,20367.016577363,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2687.5,20377.8203054667,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2688.5,20388.6240335703,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2689.5,20399.4277616739,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2690.5,20410.2314897776,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2691.5,20421.0352178812,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2692.5,20431.8389459848,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2693.5,20442.6426740885,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2694.5,20453.4464021921,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2695.5,20464.2501302958,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2696.5,20475.0538583994,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2697.5,20485.857586503,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2698.5,20496.6613146067,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2699.5,20507.4650427103,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2700.5,20518.2687708139,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2701.5,20529.0724989176,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2702.5,20539.8762270212,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2703.5,20550.6799551249,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2704.5,20561.4836832285,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2705.5,20572.2874113321,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2706.5,20583.0911394358,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2707.5,20593.8948675394,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2708.5,20604.698595643,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2709.5,20615.5023237467,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2710.5,20626.3060518503,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2711.5,20637.109779954,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2712.5,20647.9135080576,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2713.5,20658.7172361612,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2714.5,20669.5209642649,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2715.5,20680.3246923685,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2716.5,20691.1284204721,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2717.5,20701.9321485758,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2718.5,20712.7358766794,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2719.5,20723.5396047831,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2720.5,20734.3433328867,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2721.5,20745.1470609903,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2722.5,20755.950789094,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2723.5,20766.7545171976,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2724.5,20777.5582453012,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2725.5,20788.3619734049,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2726.5,20799.1657015085,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2727.5,20809.9694296122,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2728.5,20820.7731577158,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2729.5,20831.5768858194,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2730.5,20842.3806139231,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2731.5,20853.1843420267,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2732.5,20863.9880701303,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2733.5,20874.791798234,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2734.5,20885.5955263376,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2735.5,20896.3992544413,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2736.5,20907.2029825449,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2737.5,20918.0067106485,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2738.5,20928.8104387522,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2739.5,20939.6141668558,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2740.5,20950.4178949595,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2741.5,20961.2216230631,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2742.5,20972.0253511667,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2743.5,20982.8290792704,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2744.5,20993.632807374,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2745.5,21004.4365354776,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2746.5,21015.2402635813,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2747.5,21026.0439916849,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2748.5,21036.8477197886,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2749.5,21047.6514478922,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2750.5,21058.4551759958,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2751.5,21069.2589040995,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2752.5,21080.0626322031,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2753.5,21090.8663603067,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2754.5,21101.6700884104,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2755.5,21112.473816514,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2756.5,21123.2775446177,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2757.5,21134.0812727213,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2758.5,21144.8850008249,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2759.5,21155.6887289286,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2760.5,21166.4924570322,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2761.5,21177.2961851358,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2762.5,21188.0999132395,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2763.5,21198.9036413431,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2764.5,21209.7073694468,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2765.5,21220.5110975504,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2766.5,21231.314825654,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2767.5,21242.1185537577,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2768.5,21252.9222818613,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2769.5,21263.7260099649,38.8934211730957,44.0000003814697,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2770.5,21274.5297380686,38.8934211730957,61.5000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2771.5,21285.3334661722,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2772.5,21296.1371942759,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2773.5,21306.9409223795,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2774.5,21317.7446504831,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2775.5,21328.5483785868,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2776.5,21339.3521066904,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2777.5,21350.155834794,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2778.5,21360.9595628977,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2779.5,21371.7632910013,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2780.5,21382.567019105,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2781.5,21393.3707472086,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2782.5,21404.1744753122,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2783.5,21414.9782034159,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2784.5,21425.7819315195,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2785.5,21436.5856596231,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2786.5,21447.3893877268,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2787.5,21458.1931158304,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2788.5,21468.9968439341,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2789.5,21479.8005720377,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2790.5,21490.6043001413,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2791.5,21501.408028245,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2792.5,21512.2117563486,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2793.5,21523.0154844522,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2794.5,21533.8192125559,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2795.5,21544.6229406595,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2796.5,21555.4266687632,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2797.5,21566.2303968668,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2798.5,21577.0341249704,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2799.5,21587.8378530741,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2800.5,21598.6415811777,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2801.5,21609.4453092813,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2802.5,21620.249037385,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2803.5,21631.0527654886,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2804.5,21641.8564935923,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2805.5,21652.6602216959,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2806.5,21663.4639497995,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2807.5,21674.2676779032,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2808.5,21685.0714060068,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2809.5,21695.8751341105,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2810.5,21706.6788622141,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2811.5,21717.4825903177,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2812.5,21728.2863184214,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2813.5,21739.090046525,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2814.5,21749.8937746286,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2815.5,21760.6975027323,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2816.5,21771.5012308359,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2817.5,21782.3049589396,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2818.5,21793.1086870432,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2819.5,21803.9124151468,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2820.5,21814.7161432505,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2821.5,21825.5198713541,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2822.5,21836.3235994577,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2823.5,21847.1273275614,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2824.5,21857.931055665,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2825.5,21868.7347837687,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2826.5,21879.5385118723,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2827.5,21890.3422399759,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2828.5,21901.1459680796,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2829.5,21911.9496961832,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2830.5,21922.7534242868,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2831.5,21933.5571523905,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2832.5,21944.3608804941,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2833.5,21955.1646085978,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2834.5,21965.9683367014,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2835.5,21976.772064805,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2836.5,21987.5757929087,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2837.5,21998.3795210123,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2838.5,22009.1832491159,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2839.5,22019.9869772196,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2840.5,22030.7907053232,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2841.5,22041.5944334269,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2842.5,22052.3981615305,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2843.5,22063.2018896341,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2844.5,22074.0056177378,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2845.5,22084.8093458414,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2846.5,22095.613073945,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2847.5,22106.4168020487,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2848.5,22117.2205301523,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2849.5,22128.024258256,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2850.5,22138.8279863596,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2851.5,22149.6317144632,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2852.5,22160.4354425669,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2853.5,22171.2391706705,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2854.5,22182.0428987741,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2855.5,22192.8466268778,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2856.5,22203.6503549814,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2857.5,22214.4540830851,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2858.5,22225.2578111887,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2859.5,22236.0615392923,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2860.5,22246.865267396,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2861.5,22257.6689954996,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2862.5,22268.4727236032,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2863.5,22279.2764517069,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2864.5,22290.0801798105,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2865.5,22300.8839079142,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2866.5,22311.6876360178,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2867.5,22322.4913641214,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2868.5,22333.2950922251,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2869.5,22344.0988203287,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2870.5,22354.9025484324,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2871.5,22365.706276536,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2872.5,22376.5100046396,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2873.5,22387.3137327433,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2874.5,22398.1174608469,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2875.5,22408.9211889505,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2876.5,22419.7249170542,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2877.5,22430.5286451578,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2878.5,22441.3323732615,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2879.5,22452.1361013651,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2880.5,22462.9398294687,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2881.5,22473.7435575724,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2882.5,22484.547285676,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2883.5,22495.3510137796,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2884.5,22506.1547418833,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2885.5,22516.9584699869,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2886.5,22527.7621980906,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2887.5,22538.5659261942,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2888.5,22549.3696542978,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2889.5,22560.1733824015,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2890.5,22570.9771105051,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2891.5,22581.7808386087,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2892.5,22592.5845667124,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2893.5,22603.388294816,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2894.5,22614.1920229197,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2895.5,22624.9957510233,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2896.5,22635.7994791269,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2897.5,22646.6032072306,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2898.5,22657.4069353342,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2899.5,22668.2106634378,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2900.5,22679.0143915415,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2901.5,22689.8181196451,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2902.5,22700.6218477488,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2903.5,22711.4255758524,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2904.5,22722.229303956,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2905.5,22733.0330320597,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2906.5,22743.8367601633,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2907.5,22754.6404882669,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2908.5,22765.4442163706,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2909.5,22776.2479444742,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2910.5,22787.0516725779,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2911.5,22797.8554006815,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2912.5,22808.6591287851,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2913.5,22819.4628568888,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2914.5,22830.2665849924,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2915.5,22841.070313096,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2916.5,22851.8740411997,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2917.5,22862.6777693033,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2918.5,22873.481497407,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2919.5,22884.2852255106,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2920.5,22895.0889536142,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2921.5,22905.8926817179,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2922.5,22916.6964098215,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2923.5,22927.5001379251,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2924.5,22938.3038660288,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2925.5,22949.1075941324,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2926.5,22959.9113222361,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2927.5,22970.7150503397,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2928.5,22981.5187784433,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2929.5,22992.322506547,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2930.5,23003.1262346506,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2931.5,23013.9299627543,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2932.5,23024.7336908579,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2933.5,23035.5374189615,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2934.5,23046.3411470652,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2935.5,23057.1448751688,38.8934211730957,79.0000007629395,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2936.5,23067.9486032724,38.8934211730957,73.9999992370606,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2937.5,23078.7523313761,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2938.5,23089.5560594797,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2939.5,23100.3597875834,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2940.5,23111.163515687,38.8934211730957,68.9999977111816,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-2941.5,23121.9074903727,38.6783088684082,68.9999977111816,-0.1195068,2.842372,2071.678,264.1232,240.6007,1171.371,-314.6189,57.30038,254.1238,-68.25519,52.19728,-0.9968948,6.1,1,2.609865,2.479372,0,0,-25.01289,12.81934,2.404095,56.8975,47.10805,0,17783.13,-,-
-2942.5,23132.4887481928,38.0925281524658,68.9999977111816,-0.2059269,2.842372,2040.303,163.8254,147.8496,1250.437,-308.6576,35.00294,267.1683,-65.94778,31.58955,-2.686606,6.1,1,1.579478,1.500504,0,0,-42.44793,12.62519,2.296512,56.03579,28.50957,0,14370.3,-,-
-2943.5,23142.8640781641,37.3511878967285,68.9999977111816,-0.2059278,2.842372,2000.595,160.5574,147.3895,1350.5,-301.1131,33.63708,282.9322,-63.08376,30.87837,-3.341295,6.1,1,1.543919,1.466723,0,0,-41.62202,12.37948,2.165023,54.94524,27.86773,0,13706.87,-,-
-2944.5,23153.028249383,36.5910163879395,68.9999977111816,-0.2163916,2.842372,1959.879,149.1028,135.7426,1453.305,-293.5777,30.60158,298.2735,-60.25331,27.85955,-3.357973,6.1,1,1.392978,1.323329,0,0,-42.8468,12.12754,2.035507,53.827,25.14324,0,12761.86,-,-
-2945.5,23162.9760280848,35.812003326416,68.9999977111816,-0.2163916,2.842372,1918.154,148.8727,135.2796,1558.661,-285.8585,29.90385,313.0862,-57.42,27.17343,-3.369578,6.1,1,1.358672,1.290738,0,0,-41.9346,11.86934,1.908249,52.68103,24.52402,0,12120.04,-,-
-2946.5,23172.716827035,35.0668762207031,51.4999992370606,-0.1975698,2.842372,1878.244,169.9384,154.9664,1659.435,-278.4751,33.42506,326.3929,-54.77304,30.48021,-3.155154,6.1,1,1.524011,1.44781,0,0,-37.49051,11.62238,1.791598,51.58492,27.50839,0,12112.26,-,-
-2947.5,23182.260056138,34.3556247711182,34.0000007629395,-0.1975689,2.842372,1840.148,170.9096,154.5621,1755.627,-271.4273,32.93425,338.309,-52.304,29.78409,-2.949837,6.1,1,1.489205,1.414745,0,0,-36.72993,11.38665,1.684778,50.53864,26.88014,0,11559.9,-,-
-2948.5,23191.7045007944,34.0000007629395,34.0000007629395,0,2.842372,1821.1,389.9329,365.5615,1803.723,-267.9035,74.36221,343.9792,-51.09057,69.71445,-1.452243,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17378.23,-,-
-2949.5,23201.1489454508,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-2950.5,23210.5933901072,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-2951.5,23220.0378347635,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-2952.5,23229.4822794199,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-2953.5,23238.9267240763,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-2954.5,23248.3711687326,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-2955.5,23257.815613389,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-2956.5,23267.2600580454,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-2957.5,23276.7045027018,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-2958.5,23286.1489473581,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-2959.5,23295.5933920145,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-2960.5,23305.0378366709,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-2961.5,23314.4822813272,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-2962.5,23323.9267259836,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-2963.5,23333.37117064,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-2964.5,23342.8156152964,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-2965.5,23352.2600599527,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-2966.5,23361.7045046091,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-2967.5,23371.1489492655,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-2968.5,23380.5933939219,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-2969.5,23390.0378385782,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-2970.5,23399.4822832346,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-2971.5,23408.926727891,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-2972.5,23418.3711725473,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-2973.5,23427.8156172037,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-2974.5,23437.2600618601,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-2975.5,23446.7045065165,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-2976.5,23456.1489511728,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-2977.5,23465.5933958292,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-2978.5,23475.0378404856,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-2979.5,23484.4822851419,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-2980.5,23493.9267297983,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-2981.5,23503.3711744547,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-2982.5,23512.8156191111,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-2983.5,23522.2600637674,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-2984.5,23531.7045084238,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-2985.5,23541.1489530802,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-2986.5,23550.5933977365,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-2987.5,23560.0378423929,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-2988.5,23569.4822870493,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-2989.5,23578.9267317057,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-2990.5,23588.371176362,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-2991.5,23597.8156210184,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-2992.5,23607.2600656748,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-2993.5,23616.7045103312,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-2994.5,23626.1489549875,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-2995.5,23635.5933996439,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-2996.5,23645.0378443003,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-2997.5,23654.4822889566,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-2998.5,23663.926733613,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-2999.5,23673.3711782694,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-3000.5,23682.8156229258,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-3001.5,23692.2600675821,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-3002.5,23701.7045122385,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-3003.5,23711.1489568949,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-3004.5,23720.5934015512,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-3005.5,23730.0378462076,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-3006.5,23739.482290864,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-3007.5,23748.9267355204,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-3008.5,23758.3711801767,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-3009.5,23767.8156248331,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-3010.5,23777.2600694895,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-3011.5,23786.7045141459,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-3012.5,23796.1489588022,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-3013.5,23805.5934034586,34.0000007629395,34.0000007629395,0,2.842372,1821.1,397.548,365.5615,1803.723,-267.9035,75.81445,343.9792,-51.09057,69.71445,0,6.1,1,3.485723,3.311437,0,0,0,11.26878,1.632999,50.0155,62.91728,0,17600.33,-,-
-3014.5,23815.4271608591,35.4015266418457,49.0000019073486,0.7786244,2.842372,1896.168,1258.685,1198.7,1614.175,-281.7911,249.9323,320.5208,-55.9542,238.0214,5.810912,6.1,1,11.90107,11.30602,0,0,149.1604,11.7333,1.843382,52.07721,214.8143,0,49058.46,-,-
-3015.5,23825.9405599833,37.8482368469238,64.0000030517578,0.5806589,2.842372,2027.218,1067.718,988.5483,1283.41,-306.1714,226.6656,272.4549,-64.99707,209.8587,10.70687,6.1,1,10.49294,9.968291,0,0,118.9242,12.54422,2.252611,55.67643,189.3975,0,46621.01,-,-
-3016.5,23836.7442880869,38.8934211730957,64.0000030517578,0,2.842372,2083.2,418.4166,368.489,1142.335,-316.808,91.2785,249.203,-69.11237,80.3867,4.791804,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,22694.78,-,-
-3017.5,23847.5480161905,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3018.5,23858.3517442942,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3019.5,23869.1554723978,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3020.5,23879.9592005014,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3021.5,23890.7629286051,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3022.5,23901.5666567087,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3023.5,23912.3703848124,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3024.5,23923.174112916,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3025.5,23933.9778410196,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3026.5,23944.7815691233,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3027.5,23955.5852972269,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3028.5,23966.3890253305,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3029.5,23977.1927534342,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3030.5,23987.9964815378,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3031.5,23998.8002096415,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3032.5,24009.6039377451,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3033.5,24020.4076658487,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3034.5,24031.2113939524,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3035.5,24042.015122056,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3036.5,24052.8188501596,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3037.5,24063.6225782633,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3038.5,24074.4263063669,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3039.5,24085.2300344706,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3040.5,24096.0337625742,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3041.5,24106.8374906778,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3042.5,24117.6412187815,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3043.5,24128.4449468851,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3044.5,24139.2486749887,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3045.5,24150.0524030924,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3046.5,24160.856131196,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3047.5,24171.6598592997,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3048.5,24182.4635874033,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3049.5,24193.2673155069,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3050.5,24204.0710436106,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3051.5,24214.8747717142,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3052.5,24225.6784998178,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3053.5,24236.4822279215,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3054.5,24247.2859560251,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3055.5,24258.0896841288,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3056.5,24268.8934122324,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3057.5,24279.697140336,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3058.5,24290.5008684397,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3059.5,24301.3045965433,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3060.5,24312.108324647,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3061.5,24322.9120527506,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3062.5,24333.7157808542,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3063.5,24344.5195089579,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3064.5,24355.3232370615,38.8934211730957,61.5000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3065.5,24366.1269651651,38.8934211730957,59.0000015258789,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3066.5,24376.9306932688,38.8934211730957,59.0000015258789,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3067.5,24387.7344213724,38.8934211730957,59.0000015258789,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3068.5,24398.5381494761,38.8934211730957,59.0000015258789,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3069.5,24409.3418775797,38.8934211730957,59.0000015258789,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3070.5,24420.1456056833,38.8934211730957,59.0000015258789,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3071.5,24430.949333787,38.8934211730957,59.0000015258789,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3072.5,24441.7530618906,38.8934211730957,59.0000015258789,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3073.5,24452.5567899942,38.8934211730957,59.0000015258789,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3074.5,24463.3605180979,38.8934211730957,59.0000015258789,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3075.5,24474.1642462015,38.8934211730957,59.0000015258789,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3076.5,24484.9679743052,38.8934211730957,61.5000022888184,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3077.5,24495.7717024088,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3078.5,24506.5754305124,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3079.5,24517.3791586161,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3080.5,24528.1828867197,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3081.5,24538.9866148233,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3082.5,24549.790342927,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3083.5,24560.5940710306,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3084.5,24571.3977991343,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3085.5,24582.2015272379,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3086.5,24593.0052553415,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3087.5,24603.8089834452,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3088.5,24614.6127115488,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3089.5,24625.4164396524,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3090.5,24636.2201677561,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3091.5,24647.0238958597,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3092.5,24657.8276239634,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3093.5,24668.631352067,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3094.5,24679.4350801706,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3095.5,24690.2388082743,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3096.5,24701.0425363779,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3097.5,24711.8462644815,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3098.5,24722.6499925852,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3099.5,24733.4537206888,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3100.5,24744.2574487925,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3101.5,24755.0611768961,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3102.5,24765.8649049997,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3103.5,24776.6686331034,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3104.5,24787.472361207,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3105.5,24798.2760893106,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3106.5,24809.0798174143,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3107.5,24819.8835455179,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3108.5,24830.6872736216,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3109.5,24841.4910017252,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3110.5,24852.2947298288,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3111.5,24863.0984579325,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3112.5,24873.9021860361,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3113.5,24884.7059141397,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3114.5,24895.5096422434,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3115.5,24906.313370347,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3116.5,24917.1170984507,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3117.5,24927.9208265543,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3118.5,24938.7245546579,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3119.5,24949.5282827616,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3120.5,24960.3320108652,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3121.5,24971.1357389688,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3122.5,24981.9394670725,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3123.5,24992.7431951761,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3124.5,25003.5469232798,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3125.5,25014.3506513834,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3126.5,25025.154379487,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3127.5,25035.9581075907,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3128.5,25046.7618356943,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3129.5,25057.565563798,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3130.5,25068.3692919016,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3131.5,25079.1730200052,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3132.5,25089.9767481089,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3133.5,25100.7804762125,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3134.5,25111.5842043161,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3135.5,25122.3879324198,38.8934211730957,64.0000030517578,0,2.842372,2083.2,396.4512,368.489,1142.335,-316.808,86.4867,249.203,-69.11237,80.3867,0,6.1,1,4.019336,3.81837,0,0,0,12.89063,2.444431,57.21394,72.549,0,21995.91,-,-
-3136.5,25133.1074711084,38.5903392791748,64.0000030517578,-0.1683788,2.842372,2066.967,210.0015,188.3013,1183.244,-313.7236,45.45528,256.1159,-67.90618,40.75825,-1.402961,6.1,1,2.037913,1.936017,0,0,-35.16169,12.79018,2.387729,56.76809,36.78432,0,16124.89,-,-
-3137.5,25143.6405864954,37.9192153930664,64.0000030517578,-0.2044687,2.842372,2031.02,163.5579,149.3002,1273.83,-306.8938,34.78679,270.9282,-65.27259,31.75435,-3.067561,6.1,1,1.587718,1.508332,0,0,-41.95559,12.56775,2.265308,55.78084,28.6583,0,14222.28,-,-
-3138.5,25153.9640604258,37.164506149292,59.0000015258789,-0.2148132,2.842372,1990.596,150.7999,137.777,1375.744,-299.2603,31.43495,286.7804,-62.38224,28.72027,-3.385319,6.1,1,1.436014,1.364213,0,0,-43.20092,12.31761,2.132723,54.67063,25.92004,0,13277.86,-,-
-3139.5,25164.0727211237,36.3911785125732,54,-0.2148132,2.842372,1949.176,150.5464,137.3101,1480.332,-291.5975,30.72912,302.1612,-59.52005,28.02736,-3.398235,6.1,1,1.401368,1.3313,0,0,-42.30198,12.0613,2.002339,53.53303,25.29469,0,12640.01,-,-
-3140.5,25173.961134553,35.5982883453369,54,-0.2256813,2.842372,1906.707,138.696,125.2238,1587.565,-283.7408,27.69341,316.9889,-56.65449,25.00342,-3.410014,6.1,1,1.250171,1.187663,0,0,-43.47387,11.79851,1.874289,52.36665,22.56559,0,11655.98,-,-
-3141.5,25183.6238666773,34.785835647583,54,-0.2256813,2.842372,1863.191,138.5094,124.7545,1697.444,-275.6902,27.02497,331.1931,-53.79071,24.3412,-3.416223,6.1,1,1.21706,1.156207,0,0,-42.48167,11.52924,1.748866,51.1715,21.96793,0,10988.13,-,-
-3142.5,25193.0531975031,33.9455909729004,54,-0.2411222,2.842372,1818.186,121.6916,107.7742,1811.082,-267.3643,23.17008,344.8298,-50.90615,20.52021,-3.450127,6.1,1,1.026011,0.97471,0,0,-44.2919,11.25075,1.625172,49.93546,18.51949,0,9922.345,-,-
-3143.5,25202.2414051294,33.077547454834,54,-0.2411222,2.842372,1771.692,121.4416,107.2967,1888.422,-259.8953,22.5312,350.3611,-48.21866,19.90688,-3.475679,6.1,1,0.9953442,0.945577,0,0,-43.15928,10.96305,1.503658,48.65853,17.96596,0,9370.123,-,-
-3144.5,25211.1799618006,32.1788040161133,54,-0.2581806,2.842372,1723.553,102.9646,88.58017,1941.856,-252.9152,18.5841,350.4857,-45.64869,15.98784,-3.503746,6.1,1,0.7993923,0.7594227,0,0,-44.95698,10.66518,1.384392,47.33644,14.42903,0,8366.823,-,-
-3145.5,25219.8603378534,31.2493537902832,54,-0.2581806,2.842372,1673.77,102.8048,88.09633,1997.115,-245.6967,18.01931,350.0479,-43.06494,15.44124,-3.521939,6.1,1,0.7720624,0.7334592,0,0,-43.65844,10.35712,1.267863,45.96918,13.93572,0,7944.17,-,-
-3146.5,25228.2734819651,30.2873188018799,53.3445350646973,-0.2762833,2.842372,1622.242,83.34769,68.2589,2054.311,-238.2251,14.15917,348.988,-40.46987,11.59588,-3.536706,6.1,1,0.579794,0.5508043,0,0,-45.28131,10.03827,1.154335,44.55398,10.46528,0,7201.106,-,-
-3147.5,25236.4103428125,29.2926990509033,52.6890735626221,-0.2762828,2.842372,1568.969,83.35267,67.77299,2113.29,-230.035,13.69501,347.2177,-37.7952,11.13524,-3.540229,6.1,1,0.5567621,0.528924,0,0,-43.79422,9.708621,1.044305,43.09085,10.04955,0,6830.994,-,-
-3148.5,25244.2619434595,28.2657623291016,43.3445388793945,-0.2942386,2.842372,1513.964,64.29575,48.09332,2174.07,-221.2342,10.19357,344.6812,-35.07491,7.624808,-3.531235,6.1,1,0.3812405,0.3621785,0,0,-45.00533,9.368258,0.9382777,41.58018,6.88139,0,6054.062,-,-
-3149.5,25251.8193050623,27.2065017700195,34.0000007629395,-0.294239,2.842372,1457.228,64.58057,47.61056,2236.763,-212.1565,9.855032,341.3313,-32.37521,7.265399,-3.510366,6.1,1,0.36327,0.3451065,0,0,-43.31882,9.017182,0.8366954,40.02197,6.557022,0,5803.363,-,-
-3150.5,25259.0728660822,26.1128196716309,34.0000007629395,-0.3133621,2.842372,1398.649,44.55195,26.68961,2300,-202.8378,6.525352,336.8721,-29.70887,3.909124,-3.483773,6.1,1,0.1954563,0.1856834,0,0,-44.27962,8.654697,0.7397936,38.41311,3.527985,0,5152.31,-,-
-3151.5,25266.0130649805,24.9847160339355,34.0000007629395,-0.3133621,2.842372,1338.225,45.17141,26.21647,2300,-195.587,6.33026,322.3188,-27.4093,3.67394,-3.44368,6.1,1,0.1836971,0.1745122,0,0,-42.36669,8.280805,0.6479963,36.75362,3.315731,0,4808.263,-,-
-3152.5,25272.6338802576,23.8349349975586,34.0000007629395,-0.3254051,2.842372,1276.641,33.42668,12.88194,2300,-188.1969,4.468797,307.486,-25.15996,1.72218,-3.353383,6.1,1,0.08610904,0.08180359,0,0,-41.97029,7.899727,0.5625889,35.06224,1.554268,0,4289.831,-,-
-3153.5,25278.9292904139,22.6634765625,34.0000007629395,-0.3254051,2.842372,1213.896,34.82206,12.43486,2300,-180.6675,4.42654,292.3734,-22.96624,1.580705,-3.254165,6.1,1,0.07903527,0.0750835,0,0,-39.9075,7.511466,0.4836474,33.33897,1.426586,0,4001.465,-,-
-3154.5,25284.8943740129,21.4743009567261,34.0000007629395,-0.335248,2.842372,1150.201,26.09285,1.482136,2300,-174.2691,3.142852,277.0322,-20.99051,0.1785215,-3.135669,6.1,1,0.008926077,0.008479773,0,0,-38.9573,7.117331,0.4114399,31.58964,0.1611156,0,3601.123,-,-
-3155.5,25290.5242100954,20.2674098968506,34.0000007629395,-0.3352475,2.842372,1085.558,28.25422,1.069183,2300,-168.128,3.211922,261.4626,-19.11269,0.1215441,-3.009622,6.1,1,0.006077205,0.005773345,0,0,-36.76778,6.717326,0.3458948,29.81425,0.1096935,0,3491.741,-,-
-3156.5,25295.8149758577,19.0467567443848,34.0000007629395,-0.3428931,2.842372,1020.178,24.15608,-6.106953,2300,-161.9169,2.580661,245.7154,-17.29803,-0.6524227,-2.866916,6.1,1,0.03433805,0.03614531,0,0,-35.34137,6.312758,0.2870862,28.01862,-0.7229061,0,3283.771,-,-
-3157.5,25300.7628484964,17.8123414993286,34.0000007629395,-0.3428926,2.842372,954.0604,27.43815,-6.410771,2183.083,-157.4733,2.741318,218.1096,-15.733,-0.6404936,-2.718189,6.1,1,0.0337102,0.03548442,0,0,-33.05087,5.90363,0.2348077,26.20274,-0.7096882,0,2968.736,-,-
-3158.5,25305.3646227121,16.5663871765137,34.0000007629395,-0.3493042,2.842372,887.3248,25.82852,-12.27963,2013.242,-153.8029,2.399997,187.0713,-14.29143,-1.141028,-2.558975,6.1,1,0.06005414,0.06321489,0,0,-31.31376,5.490678,0.1889003,24.36989,-1.264297,0,2620.358,-,-
-3159.5,25309.6170927286,15.3088920593262,34.0000007629395,-0.3493047,2.842372,819.9712,30.60464,-12.54798,1841.827,-150.0984,2.627935,158.1525,-12.88853,-1.077459,-2.394606,6.1,1,0.05670841,0.05969306,0,0,-28.93688,5.0739,0.1490667,22.52006,-1.193861,0,2345.785,-,-
-3160.5,25313.5294803381,14.0845953941345,34.0000007629395,-0.3308597,2.842372,754.3957,54.0181,4.016507,1674.937,-148.772,4.267437,132.3203,-11.75301,0.3173046,-2.149868,6.1,1,0.01586524,0.01507197,0,0,-25.21691,4.668126,0.1160867,20.71906,0.2863674,0,2317.504,-,-
-3161.5,25317.1110080481,12.8934997558594,34.0000007629395,-0.3308599,2.842372,690.5985,61.55595,3.752471,1512.573,-148.453,4.451684,109.3883,-10.73602,0.2713761,-1.919693,6.1,1,0.01356881,0.01289037,0,0,-23.0844,4.273355,0.08905569,18.96691,0.2449169,0,2233.731,-,-
-3162.5,25320.3773382902,11.7587888717651,34.0000007629395,-0.299535,2.842372,629.8214,104.1586,37.00884,1357.896,-148.1491,6.869756,89.55965,-9.771136,2.440909,-1.671153,6.1,1,0.1220455,0.1159432,0,0,-19.0596,3.897272,0.06755181,17.2977,2.20292,0,2510.611,-,-
-3163.5,25323.3441337347,10.6804636001587,34.0000007629395,-0.2995348,2.842372,572.0645,114.5058,36.81043,1210.764,-148.6984,6.859637,72.53259,-8.907993,2.205182,-1.445545,6.1,1,0.1102591,0.1047462,0,0,-17.31175,3.539878,0.0506197,15.71143,1.990177,0,2428.506,-,-
-3164.5,25326.0245264769,9.64941387176514,34.0000007629395,-0.2732706,2.842372,593.1891,162.8362,56.38515,1264.632,-148.1703,10.11516,78.55721,-9.204132,3.502568,0.5125943,6.1,1,0.1751284,0.166372,0,0,-14.26913,3.198152,0.03732949,14.19471,3.161067,0,2977.716,-,-
-3165.5,25328.431648612,8.66563968658447,34.0000007629395,-0.2732706,2.842372,593.1891,148.7201,50.52084,1264.632,-148.1703,9.238285,78.55721,-9.204132,3.138285,0,6.1,1,0.1569143,0.1490686,0,0,-12.81437,2.872095,0.02703654,12.74754,2.832302,0,2843.683,-,-
-3166.5,25330.5760861635,7.71997518539429,34.0000007629395,-0.2520986,2.842372,593.1891,158.8948,60.69555,1264.632,-148.1703,9.870323,78.55721,-9.204132,3.770323,0,6.1,1,0.1885162,0.1790904,0,0,-10.53149,2.558669,0.019116,11.35642,3.402717,0,2940.292,-,-
-3167.5,25332.4684250355,6.81241993904114,34.0000007629395,-0.2520988,2.842372,593.1891,151.6927,53.49348,1264.632,-148.1703,9.422941,78.55721,-9.204132,3.322941,0,6.1,1,0.1661471,0.1578397,0,0,-9.293425,2.257873,0.01313571,10.02137,2.998954,0,2871.908,-,-
-3168.5,25334.1184310913,5.94002180099487,34.0000007629395,-0.2325668,2.842372,593.1891,155.9921,57.79285,1264.632,-148.1703,9.690012,78.55721,-9.204132,3.590012,0,6.1,1,0.1795007,0.1705256,0,0,-7.475486,1.96873,0.008707899,8.738034,3.239986,0,2912.731,-,-
-3169.5,25335.5358703136,5.10278120040894,34.0000007629395,-0.232567,2.842372,593.1891,147.8112,49.61198,1264.632,-148.1703,9.181828,78.55721,-9.204132,3.081828,0,6.1,1,0.1540914,0.1463869,0,0,-6.421826,1.691239,0.005520395,7.506416,2.78135,0,2835.053,-,-
-3170.5,25336.7352831364,4.3178861618042,34.0000007629395,-0.2034856,2.842372,593.1891,152.2769,54.07765,1264.632,-148.1703,9.459229,78.55721,-9.204132,3.359229,0,6.1,1,0.1679615,0.1595634,0,0,-4.754539,1.431098,0.003344744,6.351801,3.031704,0,2877.455,-,-
-3171.5,25337.7312104106,3.58533818721771,34.0000007629395,-0.2034856,2.842372,593.1891,143.087,44.88776,1264.632,-148.1703,8.888365,78.55721,-9.204132,2.788365,0,6.1,1,0.1394183,0.1324474,0,0,-3.947912,1.188306,0.001914872,5.27419,2.5165,0,2790.197,-,-
-3172.5,25338.4519920349,2.59481384754181,34.0000007629395,-0.3468057,2.842372,560,90.42837,0,1180,-149,5.302997,69.19881,-8.737817,0,-0.797003,6.1,0,0,0,0,0,-4.869631,0.8600117,0.0007258851,3.817086,-0.1918085,-0.1918085,2133.607,-,-
-3173.5,25338.851603359,1.43860076665878,29.7242866516113,-0.2955349,2.842372,593.1891,116.2472,5.217604,1264.632,-148.1703,7.221113,78.55721,-9.204132,0.3241103,0.797003,6.1,1,0.01620552,0.01539524,0,0,-2.300662,0.4768024,0.0001237001,2.116245,0.2925096,0,2535.353,-,-
-3174.5,25338.9775252938,0.453318965435028,18.950798034668,-0.2518439,2.842372,560,90.42837,0,1180,-149,5.302997,69.19881,-8.737817,0,-0.797003,6.1,0,0,0,0,0,-0.6177872,0.1502457,3.870445E-06,0.6668522,0.1993146,0,2133.607,-,-
-3175.5,25338.9775252938,0,6.22651047706604,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3176.5,25338.9775252938,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3177.5,25338.9775252938,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3178.5,25338.9775252938,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3179.5,25338.9775252938,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3180.5,25338.9775252938,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3181.5,25338.9775252938,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3182.5,25338.9775252938,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3183.5,25338.9775252938,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3184.5,25338.9775252938,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3185.5,25338.9775252938,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3186.5,25338.9775252938,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3187.5,25338.9775252938,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3188.5,25338.9775252938,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3189.5,25338.9775252938,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3190.5,25338.9775252938,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3191.5,25338.9775252938,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3192.5,25338.9775252938,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3193.5,25338.9775252938,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3194.5,25338.9775252938,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3195.5,25338.9775252938,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3196.5,25338.9775252938,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3197.5,25338.9775252938,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3198.5,25338.9775252938,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3199.5,25338.9775252938,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3200.5,25338.9775252938,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3201.5,25338.9775252938,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3202.5,25338.9775252938,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3203.5,25338.9775252938,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3204.5,25338.9775252938,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3205.5,25338.9775252938,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3206.5,25338.9775252938,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3207.5,25338.9775252938,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3208.5,25338.9775252938,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3209.5,25338.9775252938,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3210.5,25338.9775252938,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3211.5,25338.9775252938,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3212.5,25338.9775252938,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3213.5,25338.9775252938,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3214.5,25338.9775252938,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3215.5,25339.2996526062,1.15965832471848,1.15965832471848,0.6442546,2.842372,593.1891,220.4299,109.4004,1264.632,-148.1703,13.6928,78.55721,-9.204132,6.795799,0.797003,6.1,1,0.33979,0.3228005,0,0,4.042883,0.3843512,6.479469E-05,1.705909,6.133208,0,3544.896,-,-
-3216.5,25340.6286667883,4.78445105552673,11.1596580505371,1.369519,2.842372,593.1891,884.5703,786.371,1264.632,-148.1703,54.94828,78.55721,-9.204132,48.84828,0,6.1,1,2.442415,2.320294,0,0,35.45715,1.585734,0.004550358,7.038138,44.08558,0,10742.14,-,-
-3217.5,25343.1430362761,9.05173015594482,19.9999992370605,1.001192,2.842372,593.1891,1264.524,1166.325,1264.632,-148.1703,78.55051,78.55721,-9.204132,72.45051,0,6.1,1,3.622526,3.4414,0,0,49.04022,3.000059,0.03081371,13.31549,65.38658,0,14887.94,-,-
-3218.5,25346.6200594008,12.5172832489014,19.9999992370605,0.9241154,2.842372,670.4477,1461.067,1345.228,1461.289,-148.3522,102.5803,102.5958,-10.41568,94.44727,2.032981,6.1,1,4.722365,4.486247,0,0,62.59504,4.148664,0.08148535,18.41348,85.23866,0,20090.82,-,-
-3219.5,25351.1860770285,16.4376634597778,19.9999992370605,1.253874,2.842372,880.4302,1838.382,1698.668,1995.695,-153.4237,169.496,183.9999,-14.14542,156.6145,6.781485,6.1,1,7.830727,7.43919,0,0,111.5315,5.448014,0.1845311,24.18053,141.3446,0,32329.03,-,-
-3220.5,25356.5603322089,19.347318649292,19.9999992370605,0.3626008,2.842372,1036.276,860.294,746.7617,2300,-163.4463,93.35792,249.5928,-17.73696,81.03754,6.220372,6.1,1,4.051878,3.849284,0,0,37.96236,6.412375,0.3008927,28.46076,73.13638,0,17711.79,-,-
-3221.5,25362.1158875525,19.9999992370605,19.9999992370605,0,2.842372,1071.235,427.4101,359.3565,2300,-166.7673,47.94664,258.0128,-18.70787,40.31242,1.534223,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,10148.05,-,-
-3222.5,25367.6714428961,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3223.5,25373.2269982398,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3224.5,25378.7825535834,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3225.5,25384.338108927,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3226.5,25389.8936642706,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3227.5,25395.4492196143,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3228.5,25401.0047749579,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3229.5,25406.5603303015,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3230.5,25412.1158856452,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3231.5,25417.6714409888,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3232.5,25423.2269963324,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3233.5,25428.782551676,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3234.5,25434.3381070197,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3235.5,25439.8936623633,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3236.5,25445.4492177069,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3237.5,25451.0047730505,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3238.5,25456.5603283942,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3239.5,25462.1158837378,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3240.5,25467.6714390814,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3241.5,25473.2269944251,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3242.5,25478.7825497687,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3243.5,25484.3381051123,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3244.5,25489.8936604559,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3245.5,25495.4492157996,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3246.5,25501.0047711432,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3247.5,25506.5603264868,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3248.5,25512.1158818305,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3249.5,25517.6714371741,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3250.5,25523.2269925177,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3251.5,25528.7825478613,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3252.5,25534.338103205,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3253.5,25539.8936585486,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3254.5,25545.4492138922,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3255.5,25551.0047692358,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3256.5,25556.5603245795,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3257.5,25562.1158799231,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3258.5,25567.6714352667,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3259.5,25573.2269906104,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3260.5,25578.782545954,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3261.5,25584.3381012976,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3262.5,25589.8936566412,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3263.5,25595.4492119849,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3264.5,25601.0047673285,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3265.5,25606.5603226721,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3266.5,25612.1158780158,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3267.5,25617.6714333594,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3268.5,25623.226988703,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3269.5,25628.7825440466,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3270.5,25634.3380993903,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3271.5,25639.8936547339,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3272.5,25645.4492100775,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3273.5,25651.0047654212,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3274.5,25656.5603207648,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3275.5,25662.1158761084,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3276.5,25667.671431452,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3277.5,25673.2269867957,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3278.5,25678.7825421393,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3279.5,25684.3380974829,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3280.5,25689.8936528265,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3281.5,25695.4492081702,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3282.5,25701.0047635138,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3283.5,25706.5603188574,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3284.5,25712.1158742011,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3285.5,25717.6714295447,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3286.5,25723.2269848883,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3287.5,25728.7825402319,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3288.5,25734.3380955756,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3289.5,25739.8936509192,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3290.5,25745.4492062628,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3291.5,25751.0047616065,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3292.5,25756.5603169501,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3293.5,25762.1158722937,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3294.5,25767.6714276373,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3295.5,25773.226982981,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3296.5,25778.7825383246,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3297.5,25784.3380936682,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3298.5,25789.8936490119,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3299.5,25795.4492043555,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3300.5,25801.0047596991,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3301.5,25806.5603150427,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3302.5,25812.1158703864,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3303.5,25817.67142573,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3304.5,25823.2269810736,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3305.5,25828.7825364172,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3306.5,25834.3380917609,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3307.5,25839.8936471045,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3308.5,25845.4492024481,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3309.5,25851.0047577918,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3310.5,25856.5603131354,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3311.5,25862.115868479,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3312.5,25867.6714238226,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3313.5,25873.2269791663,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3314.5,25878.7825345099,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3315.5,25884.3380898535,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3316.5,25889.8936451972,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3317.5,25895.4492005408,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3318.5,25901.0047558844,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3319.5,25906.560311228,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3320.5,25912.1158665717,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3321.5,25917.6714219153,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3322.5,25923.2269772589,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3323.5,25928.7825326025,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3324.5,25934.3380879462,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3325.5,25939.8936432898,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3326.5,25945.4491986334,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3327.5,25951.0047539771,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3328.5,25956.5603093207,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3329.5,25962.1158646643,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3330.5,25967.6714200079,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3331.5,25973.2269753516,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3332.5,25978.7825306952,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3333.5,25984.3380860388,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3334.5,25989.8936413825,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3335.5,25995.4491967261,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3336.5,26001.0047520697,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3337.5,26006.5603074133,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3338.5,26012.115862757,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3339.5,26017.6714181006,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3340.5,26023.2269734442,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3341.5,26028.7825287879,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3342.5,26034.3380841315,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3343.5,26039.8936394751,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3344.5,26045.4491948187,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3345.5,26051.0047501624,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3346.5,26056.560305506,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3347.5,26062.1158608496,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3348.5,26067.6714161932,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3349.5,26073.2269715369,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3350.5,26078.7825268805,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3351.5,26084.3380822241,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3352.5,26089.8936375678,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3353.5,26095.4491929114,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3354.5,26101.004748255,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3355.5,26106.5603035986,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3356.5,26112.1158589423,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3357.5,26117.6714142859,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3358.5,26123.2269696295,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3359.5,26128.7825249732,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3360.5,26134.3380803168,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3361.5,26139.8936356604,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3362.5,26145.449191004,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3363.5,26151.0047463477,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3364.5,26156.5603016913,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3365.5,26162.1158570349,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3366.5,26167.6714123786,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3367.5,26173.2269677222,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3368.5,26178.7825230658,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3369.5,26184.3380784094,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3370.5,26189.8936337531,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3371.5,26195.4491890967,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3372.5,26201.0047444403,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3373.5,26206.5602997839,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3374.5,26212.1158551276,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3375.5,26217.6714104712,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3376.5,26223.2269658148,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3377.5,26228.7825211585,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3378.5,26234.3380765021,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3379.5,26239.8936318457,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3380.5,26245.4491871893,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3381.5,26251.004742533,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3382.5,26256.5602978766,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3383.5,26262.1158532202,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3384.5,26267.6714085639,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3385.5,26273.2269639075,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3386.5,26278.7825192511,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3387.5,26284.3380745947,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3388.5,26289.8936299384,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3389.5,26295.449185282,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3390.5,26301.0047406256,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3391.5,26306.5602959692,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3392.5,26312.1158513129,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3393.5,26317.6714066565,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3394.5,26323.2269620001,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3395.5,26328.7825173438,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3396.5,26334.3380726874,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3397.5,26339.893628031,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3398.5,26345.4491833746,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3399.5,26351.0047387183,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3400.5,26356.5602940619,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3401.5,26362.1158494055,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3402.5,26367.6714047492,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3403.5,26373.2269600928,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3404.5,26378.7825154364,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3405.5,26384.33807078,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3406.5,26389.8936261237,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3407.5,26395.4491814673,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3408.5,26401.0047368109,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3409.5,26406.5602921546,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3410.5,26412.1158474982,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3411.5,26417.6714028418,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3412.5,26423.2269581854,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3413.5,26428.7825135291,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3414.5,26434.3380688727,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3415.5,26439.8936242163,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3416.5,26445.4491795599,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3417.5,26451.0047349036,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3418.5,26456.5602902472,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3419.5,26462.1158455908,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3420.5,26467.6714009345,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3421.5,26473.2269562781,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3422.5,26478.7825116217,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3423.5,26484.3380669653,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3424.5,26489.893622309,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3425.5,26495.4491776526,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3426.5,26501.0047329962,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3427.5,26506.5602883399,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3428.5,26512.1158436835,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3429.5,26517.6713990271,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3430.5,26523.2269543707,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3431.5,26528.7825097144,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3432.5,26534.338065058,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3433.5,26539.8936204016,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3434.5,26545.4491757452,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3435.5,26551.0047310889,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3436.5,26556.5602864325,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3437.5,26562.1158417761,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3438.5,26567.6713971198,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3439.5,26573.2269524634,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3440.5,26578.782507807,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3441.5,26584.3380631506,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3442.5,26589.8936184943,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3443.5,26595.4491738379,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3444.5,26601.0047291815,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3445.5,26606.5602845252,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3446.5,26612.1158398688,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3447.5,26617.6713952124,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3448.5,26623.226950556,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3449.5,26628.7825058997,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3450.5,26634.3380612433,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3451.5,26639.8936165869,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3452.5,26645.4491719306,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3453.5,26651.0047272742,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3454.5,26656.5602826178,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3455.5,26662.1158379614,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3456.5,26667.6713933051,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3457.5,26673.2269486487,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3458.5,26678.7825039923,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3459.5,26684.3380593359,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3460.5,26689.8936146796,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3461.5,26695.4491700232,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3462.5,26701.0047253668,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3463.5,26706.5602807105,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3464.5,26712.1158360541,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3465.5,26717.6713913977,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3466.5,26723.2269467413,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3467.5,26728.782502085,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3468.5,26734.3380574286,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3469.5,26739.8936127722,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3470.5,26745.4491681159,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3471.5,26751.0047234595,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3472.5,26756.5602788031,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3473.5,26762.1158341467,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3474.5,26767.6713894904,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3475.5,26773.226944834,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3476.5,26778.7825001776,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3477.5,26784.3380555213,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3478.5,26789.8936108649,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3479.5,26795.4491662085,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3480.5,26801.0047215521,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3481.5,26806.5602768958,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3482.5,26812.1158322394,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3483.5,26817.671387583,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3484.5,26823.2269429266,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3485.5,26828.7824982703,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3486.5,26834.3380536139,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3487.5,26839.8936089575,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3488.5,26845.4491643012,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3489.5,26851.0047196448,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3490.5,26856.5602749884,19.9999992370605,19.9999992370605,0,2.842372,1071.235,413.7336,359.3565,2300,-166.7673,46.41242,258.0128,-18.70787,40.31242,0,6.1,1,2.015622,1.914841,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9932.239,-,-
-3491.5,26862.1852749884,20.25,20.5000007629395,0.1388893,2.842372,1084.626,566.9085,507.9101,2300,-168.0394,64.39045,261.238,-19.08621,57.6893,0.6011485,6.1,1,2.884466,2.740243,0,0,15.2194,6.711555,0.3450042,29.78864,52.0646,0,12662.55,-,-
-3492.5,26867.9491643012,20.7500015258789,21.0000005722046,0.1388888,2.842372,1111.407,571.0123,508.0778,2300,-170.5836,66.45796,267.6883,-19.85359,59.13326,1.2247,6.1,1,2.956664,2.80883,0,0,15.59513,6.877273,0.3711963,30.52417,53.36777,0,13051.28,-,-
-3493.5,26873.7824977934,21.0000005722046,21.0000005722046,0,2.842372,1124.797,416.7745,359.693,2300,-171.8557,49.09123,270.9135,-20.24262,42.36768,0.6235459,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10369.35,-,-
-3494.5,26879.6158312857,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3495.5,26885.449164778,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3496.5,26891.2824982703,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3497.5,26897.1158317626,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3498.5,26902.9491652548,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3499.5,26908.7824987471,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3500.5,26914.6158322394,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3501.5,26920.4491657317,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3502.5,26926.2824992239,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3503.5,26932.1158327162,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3504.5,26937.9491662085,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3505.5,26943.7824997008,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3506.5,26949.6158331931,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3507.5,26955.4491666853,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3508.5,26961.2825001776,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3509.5,26967.1158336699,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3510.5,26972.9491671622,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3511.5,26978.7825006545,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3512.5,26984.6158341467,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3513.5,26990.449167639,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3514.5,26996.2825011313,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3515.5,27002.1158346236,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3516.5,27007.9491681159,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3517.5,27013.7825016081,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3518.5,27019.6158351004,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3519.5,27025.4491685927,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3520.5,27031.282502085,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3521.5,27037.1158355773,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3522.5,27042.9491690695,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3523.5,27048.7825025618,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3524.5,27054.6158360541,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3525.5,27060.4491695464,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3526.5,27066.2825030386,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3527.5,27072.1158365309,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3528.5,27077.9491700232,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3529.5,27083.7825035155,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3530.5,27089.6158370078,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3531.5,27095.4491705,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3532.5,27101.2825039923,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3533.5,27107.1158374846,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3534.5,27112.9491709769,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3535.5,27118.7825044692,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3536.5,27124.6158379614,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3537.5,27130.4491714537,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3538.5,27136.282504946,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3539.5,27142.1158384383,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3540.5,27147.9491719306,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3541.5,27153.7825054228,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3542.5,27159.6158389151,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3543.5,27165.4491724074,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3544.5,27171.2825058997,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3545.5,27177.1158393919,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3546.5,27182.9491728842,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3547.5,27188.7825063765,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3548.5,27194.6158398688,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3549.5,27200.4491733611,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3550.5,27206.2825068533,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3551.5,27212.1158403456,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3552.5,27217.9491738379,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3553.5,27223.7825073302,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3554.5,27229.6158408225,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3555.5,27235.4491743147,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3556.5,27241.282507807,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3557.5,27247.1158412993,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3558.5,27252.9491747916,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3559.5,27258.7825082839,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3560.5,27264.6158417761,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3561.5,27270.4491752684,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3562.5,27276.2825087607,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3563.5,27282.115842253,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3564.5,27287.9491757452,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3565.5,27293.7825092375,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3566.5,27299.6158427298,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3567.5,27305.4491762221,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3568.5,27311.2825097144,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3569.5,27317.1158432066,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3570.5,27322.9491766989,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3571.5,27328.7825101912,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3572.5,27334.6158436835,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3573.5,27340.4491771758,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3574.5,27346.282510668,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3575.5,27352.1158441603,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3576.5,27357.9491776526,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3577.5,27363.7825111449,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3578.5,27369.6158446372,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3579.5,27375.4491781294,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3580.5,27381.2825116217,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3581.5,27387.115845114,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3582.5,27392.9491786063,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3583.5,27398.7825120986,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3584.5,27404.6158455908,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3585.5,27410.4491790831,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3586.5,27416.2825125754,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3587.5,27422.1158460677,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3588.5,27427.9491795599,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3589.5,27433.7825130522,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3590.5,27439.6158465445,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3591.5,27445.4491800368,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3592.5,27451.2825135291,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3593.5,27457.1158470213,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3594.5,27462.9491805136,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3595.5,27468.7825140059,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3596.5,27474.6158474982,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3597.5,27480.4491809905,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3598.5,27486.2825144827,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3599.5,27492.115847975,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3600.5,27497.9491814673,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3601.5,27503.7825149596,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3602.5,27509.6158484519,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3603.5,27515.4491819441,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3604.5,27521.2825154364,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3605.5,27527.1158489287,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3606.5,27532.949182421,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3607.5,27538.7825159132,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3608.5,27544.6158494055,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3609.5,27550.4491828978,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3610.5,27556.2825163901,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3611.5,27562.1158498824,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3612.5,27567.9491833746,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3613.5,27573.7825168669,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3614.5,27579.6158503592,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3615.5,27585.4491838515,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3616.5,27591.2825173438,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3617.5,27597.115850836,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3618.5,27602.9491843283,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3619.5,27608.7825178206,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3620.5,27614.6158513129,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3621.5,27620.4491848052,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3622.5,27626.2825182974,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3623.5,27632.1158517897,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3624.5,27637.949185282,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3625.5,27643.7825187743,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3626.5,27649.6158522666,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3627.5,27655.4491857588,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3628.5,27661.2825192511,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3629.5,27667.1158527434,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3630.5,27672.9491862357,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3631.5,27678.7825197279,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3632.5,27684.6158532202,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3633.5,27690.4491867125,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3634.5,27696.2825202048,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3635.5,27702.1158536971,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3636.5,27707.9491871893,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3637.5,27713.7825206816,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3638.5,27719.6158541739,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3639.5,27725.4491876662,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3640.5,27731.2825211585,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3641.5,27737.1158546507,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3642.5,27742.949188143,21.0000005722046,21.0000005722046,0,2.842372,1124.797,411.4807,359.693,2300,-171.8557,48.46768,270.9135,-20.24262,42.36768,0,6.1,1,2.118385,2.012465,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,10285.82,-,-
-3643.5,27748.7665385306,20.9424613952637,21.0000005722046,-0.03196621,2.842372,1121.715,376.2043,325.5017,2300,-171.5629,44.19111,270.1712,-20.15277,38.23529,-0.1441759,6.1,1,1.911765,1.816177,0,0,-3.622617,6.941061,0.3816212,30.80728,34.50735,0,9635.615,-,-
-3644.5,27754.5519227088,20.8273830413818,21.0000005722046,-0.03196621,2.842372,1115.551,375.2209,325.4622,2300,-170.9774,43.83341,268.6866,-19.97362,38.02058,-0.2871651,6.1,1,1.901029,1.805978,0,0,-3.602711,6.90292,0.3753647,30.638,34.31357,0,9572.377,-,-
-3645.5,27760.1537703574,20.1666515350342,20.599365234375,-0.3351068,2.842372,1080.161,40.80844,1.186105,2300,-167.6153,4.616015,260.1628,-18.95968,0.1341653,-1.61815,6.1,1,0.006708269,0.006372855,0,0,-36.56964,6.683931,0.3407616,29.66603,0.1210842,0,3674.279,-,-
-3646.5,27765.4205111563,18.9602668762207,20.1987316131592,-0.3351068,2.842372,1015.545,31.64178,0.7987002,2300,-161.4768,3.36503,244.5996,-17.17268,0.08493989,-2.81991,6.1,1,0.004246995,0.004034646,0,0,-34.38202,6.284093,0.2831931,27.89139,0.07665825,0,3389.486,-,-
-3647.5,27770.4949015677,18.267805480957,19.0993658065796,-0.04959345,2.842372,978.4558,350.3005,305.7976,2245.17,-158.8151,35.89307,230.0483,-16.27277,31.33314,-1.540069,6.1,1,1.566657,1.488324,0,0,-4.902462,6.054587,0.2532844,26.87275,28.27816,0,8159.602,-,-
-3648.5,27775.5196985304,18.0892690658569,18,-0.04959393,2.842372,968.8931,362.0428,305.7438,2220.833,-158.2891,36.73367,225.3307,-16.06037,31.02145,-0.3877845,6.1,1,1.551073,1.473519,0,0,-4.854596,5.995414,0.2459305,26.61011,27.99686,0,8245.442,-,-
-3649.5,27780.5196985304,18,18,0,2.842372,964.1117,417.2454,358.7326,2208.664,-158.0261,42.12574,222.9902,-15.95456,36.2182,-0.1924641,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9069.313,-,-
-3650.5,27785.5196985304,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-3651.5,27790.5196985304,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-3652.5,27795.5196985304,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-3653.5,27800.5196985304,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-3654.5,27805.5196985304,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-3655.5,27810.5196985304,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-3656.5,27815.5196985304,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-3657.5,27820.5196985304,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-3658.5,27825.5196985304,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-3659.5,27830.5196985304,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-3660.5,27835.5196985304,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-3661.5,27840.5196985304,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-3662.5,27845.5196985304,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-3663.5,27850.5196985304,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-3664.5,27855.5196985304,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-3665.5,27860.5196985304,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-3666.5,27865.5196985304,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-3667.5,27870.5196985304,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-3668.5,27875.5196985304,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-3669.5,27880.5196985304,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-3670.5,27885.5196985304,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-3671.5,27890.5196985304,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-3672.5,27895.5196985304,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-3673.5,27900.5196985304,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-3674.5,27905.5196985304,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-3675.5,27910.5196985304,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-3676.5,27915.5196985304,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-3677.5,27920.5196985304,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-3678.5,27925.5196985304,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-3679.5,27930.5196985304,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-3680.5,27935.5196985304,18,18,0,2.842372,964.1117,419.1517,358.7326,2208.664,-158.0261,42.3182,222.9902,-15.95456,36.2182,0,6.1,1,1.810911,1.720365,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,9098.27,-,-
-3681.5,27940.3822626174,17.5052307128906,18,-0.2748718,2.842372,937.611,116.1919,64.7537,2141.22,-156.5686,11.40846,210.2387,-15.37291,6.357932,-1.049468,6.1,1,0.3178967,0.3020018,0,0,-26.03765,5.801843,0.2228706,25.75097,5.738033,0,4141.681,-,-
-3682.5,27944.9699548781,16.5156921386719,18,-0.2748718,2.842372,884.6096,108.6159,64.47742,2006.331,-153.6535,10.06175,185.8587,-14.23386,5.972937,-2.011187,6.1,1,0.2986469,0.2837146,0,0,-24.56578,5.473876,0.1871714,24.29531,5.390575,0,3603.317,-,-
-3683.5,27949.248238951,15.4018226623535,18,-0.343945,2.842372,824.9487,38.16336,-7.86229,1854.495,-150.3722,3.296873,160.2069,-12.99042,-0.6792109,-2.123916,6.1,1,0.03574795,0.03762942,0,0,-28.66585,5.104701,0.1517978,22.65676,-0.7525883,0,2461.293,-,-
-3684.5,27953.1825775206,14.163618850708,18,-0.3439453,2.842372,758.6284,41.14791,-8.107204,1685.709,-148.7931,3.268929,133.9184,-11.82063,-0.6440637,-2.187008,6.1,1,0.0338981,0.03568221,0,0,-26.36132,4.694316,0.1180516,20.83531,-0.713644,0,2182.819,-,-
-3685.5,27956.7875541747,12.9779159545898,15.9197542190552,-0.314779,2.842372,695.12,78.3485,20.96067,1524.08,-148.4756,5.703207,110.9421,-10.80795,1.525786,-1.922579,6.1,1,0.07628932,0.07247485,0,0,-22.10621,4.301333,0.09081637,19.09109,1.377022,0,2402.671,-,-
-3686.5,27960.0777517855,11.8447113990784,13.8395092964172,-0.3147788,2.842372,634.4236,87.25256,20.73006,1369.608,-148.1721,5.796771,90.99221,-9.844064,1.377237,-1.680466,6.1,1,0.06886185,0.06541876,0,0,-20.17593,3.92575,0.06904349,17.42409,1.242956,0,2359.752,-,-
-3687.5,27963.191246897,11.2085824012756,12.4197546958923,-0.03862619,2.842372,600.3514,398.9059,315.8136,1282.894,-148.0018,25.07868,80.65383,-9.30467,19.85477,-0.876097,6.1,1,0.992739,0.943102,0,0,-2.342805,3.714915,0.05850612,16.48832,17.91893,0,5487.924,-,-
-3688.5,27966.266115576,11.0695272445679,11.0000000953674,-0.03862643,2.842372,592.9034,411.0537,315.7879,1263.904,-148.1774,25.52179,78.47413,-9.200143,19.60686,-0.1850704,6.1,1,0.9803432,0.931326,0,0,-2.313755,3.668827,0.05635552,16.28376,17.69519,0,5590.208,-,-
-3689.5,27969.2620390952,10.7853246688843,11.0000000953674,-0.1192639,2.842372,577.681,324.238,229.5365,1225.086,-148.558,19.61465,74.11112,-8.986958,13.88572,-0.3710653,6.1,1,0.694286,0.6595718,0,0,-6.960586,3.574632,0.05212534,15.86569,12.53186,0,4574.078,-,-
-3690.5,27972.1386989653,10.3559755325317,11.0000000953674,-0.1192636,2.842372,593.1891,318.8538,214.5674,1264.632,-148.1703,19.80676,78.55721,-9.204132,13.32863,0.378122,6.1,1,0.6664318,0.6331102,0,0,-6.683481,3.432331,0.04614475,15.2341,12.02909,0,4595.17,-,-
-3691.5,27974.8190917075,9.64941387176514,11.0000000953674,-0.2732706,2.842372,593.1891,154.5844,56.38515,1264.632,-148.1703,9.602568,78.55721,-9.204132,3.502568,0,6.1,1,0.1751284,0.166372,0,0,-14.26913,3.198152,0.03732949,14.19471,3.161067,0,2899.365,-,-
-3692.5,27977.2262138426,8.66563968658447,11.0000000953674,-0.2732706,2.842372,593.1891,148.7201,50.52084,1264.632,-148.1703,9.238285,78.55721,-9.204132,3.138285,0,6.1,1,0.1569143,0.1490686,0,0,-12.81437,2.872095,0.02703654,12.74754,2.832302,0,2843.683,-,-
-3693.5,27979.3706513941,7.71997518539429,11.0000000953674,-0.2520986,2.842372,593.1891,158.8948,60.69555,1264.632,-148.1703,9.870323,78.55721,-9.204132,3.770323,0,6.1,1,0.1885162,0.1790904,0,0,-10.53149,2.558669,0.019116,11.35642,3.402717,0,2940.292,-,-
-3694.5,27981.2629902661,6.81241993904114,11.0000000953674,-0.2520988,2.842372,593.1891,151.6927,53.49348,1264.632,-148.1703,9.422941,78.55721,-9.204132,3.322941,0,6.1,1,0.1661471,0.1578397,0,0,-9.293425,2.257873,0.01313571,10.02137,2.998954,0,2871.908,-,-
-3695.5,27982.9129963219,5.94002180099487,11.0000000953674,-0.2325668,2.842372,593.1891,155.9921,57.79285,1264.632,-148.1703,9.690012,78.55721,-9.204132,3.590012,0,6.1,1,0.1795007,0.1705256,0,0,-7.475486,1.96873,0.008707899,8.738034,3.239986,0,2912.731,-,-
-3696.5,27984.3304355443,5.10278120040894,11.0000000953674,-0.232567,2.842372,593.1891,147.8112,49.61198,1264.632,-148.1703,9.181828,78.55721,-9.204132,3.081828,0,6.1,1,0.1540914,0.1463869,0,0,-6.421826,1.691239,0.005520395,7.506416,2.78135,0,2835.053,-,-
-3697.5,27985.529848367,4.3178861618042,11.0000000953674,-0.2034856,2.842372,593.1891,152.2769,54.07765,1264.632,-148.1703,9.459229,78.55721,-9.204132,3.359229,0,6.1,1,0.1679615,0.1595634,0,0,-4.754539,1.431098,0.003344744,6.351801,3.031704,0,2877.455,-,-
-3698.5,27986.5257756412,3.58533818721771,11.0000000953674,-0.2034856,2.842372,593.1891,143.087,44.88776,1264.632,-148.1703,8.888365,78.55721,-9.204132,2.788365,0,6.1,1,0.1394183,0.1324474,0,0,-3.947912,1.188306,0.001914872,5.27419,2.5165,0,2790.197,-,-
-3699.5,27987.2465572655,2.59481384754181,11.0000000953674,-0.3468057,2.842372,560,90.42837,0,1180,-149,5.302997,69.19881,-8.737817,0,-0.797003,6.1,0,0,0,0,0,-4.869631,0.8600117,0.0007258851,3.817086,-0.1918085,-0.1918085,2133.607,-,-
-3700.5,27987.6461685896,1.43860076665878,10.8920036315918,-0.2955349,2.842372,593.1891,116.2472,5.217604,1264.632,-148.1703,7.221113,78.55721,-9.204132,0.3241103,0.797003,6.1,1,0.01620552,0.01539524,0,0,-2.300662,0.4768024,0.0001237001,2.116245,0.2925096,0,2535.353,-,-
-3701.5,27987.7720905244,0.453318965435028,8.68147888183594,-0.2518439,2.842372,560,90.42837,0,1180,-149,5.302997,69.19881,-8.737817,0,-0.797003,6.1,0,0,0,0,0,-0.6177872,0.1502457,3.870445E-06,0.6668522,0.1993146,0,2133.607,-,-
-3702.5,27987.7720905244,0,4.47642316818237,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3703.5,27987.7720905244,0,1.18694776296616,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3704.5,27987.7720905244,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3705.5,27987.7720905244,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3706.5,27987.7720905244,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3707.5,27987.7720905244,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3708.5,27987.7720905244,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3709.5,27987.7720905244,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3710.5,27987.7720905244,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3711.5,27987.7720905244,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3712.5,27987.7720905244,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3713.5,27987.7720905244,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3714.5,27987.7720905244,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3715.5,27987.7720905244,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3716.5,27987.7720905244,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3717.5,27987.7720905244,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3718.5,27987.7720905244,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3719.5,27987.7720905244,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3720.5,27987.7720905244,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3721.5,27987.7720905244,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3722.5,27987.7720905244,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3723.5,27987.7720905244,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3724.5,27987.7720905244,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3725.5,27987.7720905244,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3726.5,27987.7720905244,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3727.5,27987.7720905244,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3728.5,27987.7720905244,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3729.5,27987.7720905244,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3730.5,27987.7720905244,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3731.5,27987.7720905244,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3732.5,27987.7720905244,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3733.5,27987.7720905244,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3734.5,27987.7720905244,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3735.5,27987.7720905244,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3736.5,27987.7720905244,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3737.5,27987.7720905244,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3738.5,27987.7720905244,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3739.5,27987.7720905244,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3740.5,27987.7720905244,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3741.5,27987.7720905244,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
-3742.5,27987.7720905244,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+41.5,0.585833489894867,2.10900056362152,9,1.171667,2.842372,593.1891,387.4918,276.4622,1264.632,-148.1703,24.07046,78.55721,-9.204132,17.17345,0.797003,6.1,1,0,0,0,0,13.37163,0.6989962,0.0003897439,3.102433,17.17345,0,5329.597,-,-
+42.5,2.44422763586044,6.69021892547607,18,1.373454,2.842372,593.1891,1092.982,994.7826,1264.632,-148.1703,67.89452,78.55721,-9.204132,61.79452,0,6.1,1,0,0,0,0,49.7231,2.217371,0.01244143,9.841607,61.79452,0,12870.72,-,-
+43.5,5.44458717107773,10.8012943267822,18,0.9104764,2.842372,594.2877,1267.246,1168.792,1267.434,-148.1428,78.86536,78.87703,-9.219469,72.73819,0.0271655,6.1,1,0,0,0,0,53.21672,3.579925,0.05235723,15.88918,72.73819,0,14953.74,-,-
+44.5,9.54670470952988,14.7676231384277,18,1.29304,2.842372,790.9799,1712.591,1570.447,1768.044,-148.9549,141.856,146.4492,-12.33812,130.0821,5.673943,6.1,1,0,0,0,0,103.3299,4.894505,0.1338077,21.72383,130.0821,0,27298.09,-,-
+45.5,14.4210233092308,17.5475469589233,18,0.2513628,2.842372,939.8775,682.6465,566.1423,2146.988,-156.6933,67.18862,211.3146,-15.42234,55.72185,5.366774,6.1,1,0,0,0,0,23.86827,5.815868,0.2244908,25.81322,55.72185,0,12980.72,-,-
+46.5,19.4210233092308,18,18,0,2.842372,964.1117,393.6923,323.7562,2208.664,-158.0261,39.74778,222.9902,-15.95456,32.68693,0.9608535,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8705.328,-,-
+47.5,24.4210233092308,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+48.5,29.4210233092308,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+49.5,34.4210233092308,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+50.5,39.4210233092308,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+51.5,44.4210233092308,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+52.5,49.4210233092308,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+53.5,54.4210233092308,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+54.5,59.4210233092308,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+55.5,64.4210233092308,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+56.5,69.4210233092308,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+57.5,74.4210233092308,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+58.5,79.4210233092308,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+59.5,84.4210233092308,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+60.5,89.4210233092308,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+61.5,94.4210233092308,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+62.5,99.4210233092308,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+63.5,104.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+64.5,109.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+65.5,114.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+66.5,119.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+67.5,124.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+68.5,129.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+69.5,134.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+70.5,139.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+71.5,144.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+72.5,149.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+73.5,154.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+74.5,159.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+75.5,164.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+76.5,169.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+77.5,174.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+78.5,179.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+79.5,184.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+80.5,189.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+81.5,194.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+82.5,199.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+83.5,204.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+84.5,209.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+85.5,214.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+86.5,219.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+87.5,224.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+88.5,229.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+89.5,234.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+90.5,239.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+91.5,244.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+92.5,249.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+93.5,254.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+94.5,259.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+95.5,264.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+96.5,269.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+97.5,274.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+98.5,279.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+99.5,284.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+100.5,289.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+101.5,294.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+102.5,299.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+103.5,304.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+104.5,309.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+105.5,314.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+106.5,319.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+107.5,324.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+108.5,329.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+109.5,334.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+110.5,339.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+111.5,344.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+112.5,349.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+113.5,354.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+114.5,359.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+115.5,364.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+116.5,369.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+117.5,374.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+118.5,379.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+119.5,384.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+120.5,389.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+121.5,394.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+122.5,399.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+123.5,404.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+124.5,409.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+125.5,414.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+126.5,419.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+127.5,424.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+128.5,429.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+129.5,434.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+130.5,439.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+131.5,444.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+132.5,449.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+133.5,454.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+134.5,459.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+135.5,464.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+136.5,469.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+137.5,474.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+138.5,479.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+139.5,484.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+140.5,489.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+141.5,494.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+142.5,499.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+143.5,504.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+144.5,509.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+145.5,514.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+146.5,519.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+147.5,524.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+148.5,529.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+149.5,534.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+150.5,539.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+151.5,544.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+152.5,549.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+153.5,554.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+154.5,559.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+155.5,564.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+156.5,569.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+157.5,574.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+158.5,579.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+159.5,584.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+160.5,589.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+161.5,594.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+162.5,599.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+163.5,604.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+164.5,609.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+165.5,614.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+166.5,619.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+167.5,624.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+168.5,629.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+169.5,634.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+170.5,639.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+171.5,644.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+172.5,649.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+173.5,654.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+174.5,659.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+175.5,664.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+176.5,669.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+177.5,674.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+178.5,679.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+179.5,684.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+180.5,689.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+181.5,694.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+182.5,699.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+183.5,704.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+184.5,709.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+185.5,714.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+186.5,719.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+187.5,724.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+188.5,729.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+189.5,734.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+190.5,739.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+191.5,744.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+192.5,749.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+193.5,754.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+194.5,759.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+195.5,764.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+196.5,769.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+197.5,774.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+198.5,779.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+199.5,784.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+200.5,789.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+201.5,794.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+202.5,799.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+203.5,804.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+204.5,809.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+205.5,814.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+206.5,819.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+207.5,824.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+208.5,829.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+209.5,834.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+210.5,839.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+211.5,844.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+212.5,849.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+213.5,854.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+214.5,859.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+215.5,864.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+216.5,869.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+217.5,874.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+218.5,879.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+219.5,884.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+220.5,889.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+221.5,894.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+222.5,899.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+223.5,904.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+224.5,909.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+225.5,914.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+226.5,919.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+227.5,924.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+228.5,929.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+229.5,934.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+230.5,939.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+231.5,944.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+232.5,949.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+233.5,954.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+234.5,959.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+235.5,964.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+236.5,969.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+237.5,974.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+238.5,979.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+239.5,984.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+240.5,989.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+241.5,994.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+242.5,999.421023309231,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+243.5,1004.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+244.5,1009.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+245.5,1014.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+246.5,1019.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+247.5,1024.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+248.5,1029.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+249.5,1034.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+250.5,1039.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+251.5,1044.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+252.5,1049.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+253.5,1054.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+254.5,1059.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+255.5,1064.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+256.5,1069.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+257.5,1074.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+258.5,1079.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+259.5,1084.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+260.5,1089.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+261.5,1094.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+262.5,1099.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+263.5,1104.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+264.5,1109.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+265.5,1114.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+266.5,1119.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+267.5,1124.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+268.5,1129.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+269.5,1134.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+270.5,1139.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+271.5,1144.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+272.5,1149.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+273.5,1154.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+274.5,1159.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+275.5,1164.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+276.5,1169.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+277.5,1174.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+278.5,1179.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+279.5,1184.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+280.5,1189.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+281.5,1194.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+282.5,1199.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+283.5,1204.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+284.5,1209.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+285.5,1214.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+286.5,1219.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+287.5,1224.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+288.5,1229.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+289.5,1234.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+290.5,1239.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+291.5,1244.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+292.5,1249.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+293.5,1254.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+294.5,1259.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+295.5,1264.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+296.5,1269.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+297.5,1274.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+298.5,1279.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+299.5,1284.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+300.5,1289.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+301.5,1294.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+302.5,1299.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+303.5,1304.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+304.5,1309.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+305.5,1314.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+306.5,1319.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+307.5,1324.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+308.5,1329.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+309.5,1334.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+310.5,1339.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+311.5,1344.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+312.5,1349.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+313.5,1354.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+314.5,1359.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+315.5,1364.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+316.5,1369.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+317.5,1374.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+318.5,1379.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+319.5,1384.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+320.5,1389.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+321.5,1394.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+322.5,1399.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+323.5,1404.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+324.5,1409.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+325.5,1414.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+326.5,1419.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+327.5,1424.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+328.5,1429.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+329.5,1434.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+330.5,1439.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+331.5,1444.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+332.5,1449.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+333.5,1454.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+334.5,1459.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+335.5,1464.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+336.5,1469.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+337.5,1474.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+338.5,1479.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+339.5,1484.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+340.5,1489.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+341.5,1494.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+342.5,1499.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+343.5,1504.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+344.5,1509.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+345.5,1514.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+346.5,1519.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+347.5,1524.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+348.5,1529.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+349.5,1534.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+350.5,1539.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+351.5,1544.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+352.5,1549.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+353.5,1554.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+354.5,1559.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+355.5,1564.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+356.5,1569.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+357.5,1574.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+358.5,1579.42102330923,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+359.5,1584.32789605856,17.664741897583,18,-0.1862545,2.842372,946.1547,198.3327,143.9764,2162.964,-157.0385,19.65102,214.3088,-15.55955,14.26534,-0.7143196,6.1,1,0,0,0,0,-17.804,5.854711,0.2290188,25.98561,14.26534,0,5485.681,-,-
+360.5,1589.04851430655,16.994225692749,18,-0.186255,2.842372,910.2407,193.2335,143.8038,2071.563,-155.0632,18.41906,197.4617,-14.78065,13.7074,-1.388348,6.1,1,0,0,0,0,-17.12825,5.632478,0.203917,24.99925,13.7074,0,5105.555,-,-
+361.5,1593.50258773565,16.0346643447876,18,-0.3468342,2.842372,858.8448,35.42064,-11.35165,1940.76,-152.2365,3.185663,174.5481,-13.69185,-1.020945,-1.893393,6.1,1,0,0,0,0,-30.09438,5.314446,0.1712888,23.5877,-1.020945,0,2595.393,-,-
+362.5,1597.60982698202,14.7860612869263,18,-0.3468344,2.842372,791.9675,34.1942,-11.63694,1770.557,-148.9598,2.835884,146.8405,-12.35393,-0.9651051,-2.299011,6.1,1,0,0,0,0,-27.75098,4.900616,0.1343095,21.75095,-0.9651051,0,2253.256,-,-
+363.5,1601.38205522299,13.5800216674805,18,-0.3231871,2.842372,727.3699,64.17583,10.92367,1606.156,-148.6369,4.888273,122.3409,-11.32167,0.832056,-2.043783,6.1,1,0,0,0,0,-23.7497,4.500892,0.1040521,19.97681,0.832056,0,2335.826,-,-
+364.5,1604.83109635115,12.4165480613709,18,-0.3231874,2.842372,665.0522,72.34207,10.69939,1447.558,-148.3253,5.038198,100.8139,-10.32998,0.7451496,-1.806951,6.1,1,0,0,0,0,-21.71495,4.115276,0.07953383,18.26529,0.7451496,0,2282.498,-,-
+365.5,1608.06057089567,11.6261083602905,14.4999996185303,-0.1159458,2.842372,622.7148,286.6302,210.4974,1339.809,-148.1136,18.69131,87.3697,-9.658566,13.72665,-1.135338,6.1,1,0,0,0,0,-7.294458,3.853297,0.06529085,17.10252,13.72665,0,4390.34,-,-
+366.5,1611.17409962416,11.2087034225464,11.0000000953674,-0.1159461,2.842372,600.3578,298.396,210.4265,1282.911,-148.0018,18.75996,80.65574,-9.304772,13.22937,-0.5694163,6.1,1,0,0,0,0,-7.032584,3.714955,0.05850802,16.4885,13.22937,0,4412.498,-,-
+367.5,1614.2296552062,11.0000000953674,11.0000000953674,0,2.842372,594.9185,414.8844,319.1438,1269.042,-148.127,25.84718,79.06096,-9.228272,19.88257,-0.1353888,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5644.87,-,-
+368.5,1617.28521078825,11.0000000953674,11.0000000953674,0,2.842372,594.9185,417.0576,319.1438,1269.042,-148.127,25.98257,79.06096,-9.228272,19.88257,0,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5670.079,-,-
+369.5,1620.3407663703,11.0000000953674,11.0000000953674,0,2.842372,594.9185,417.0576,319.1438,1269.042,-148.127,25.98257,79.06096,-9.228272,19.88257,0,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5670.079,-,-
+370.5,1623.39632195234,11.0000000953674,11.0000000953674,0,2.842372,594.9185,417.0576,319.1438,1269.042,-148.127,25.98257,79.06096,-9.228272,19.88257,0,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5670.079,-,-
+371.5,1626.45187753439,11.0000000953674,11.0000000953674,0,2.842372,594.9185,417.0576,319.1438,1269.042,-148.127,25.98257,79.06096,-9.228272,19.88257,0,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5670.079,-,-
+372.5,1629.50743311644,11.0000000953674,11.0000000953674,0,2.842372,594.9185,417.0576,319.1438,1269.042,-148.127,25.98257,79.06096,-9.228272,19.88257,0,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5670.079,-,-
+373.5,1632.56298869848,11.0000000953674,11.0000000953674,0,2.842372,594.9185,417.0576,319.1438,1269.042,-148.127,25.98257,79.06096,-9.228272,19.88257,0,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5670.079,-,-
+374.5,1635.61854428053,11.0000000953674,11.0000000953674,0,2.842372,594.9185,417.0576,319.1438,1269.042,-148.127,25.98257,79.06096,-9.228272,19.88257,0,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5670.079,-,-
+375.5,1638.67409986258,11.0000000953674,11.0000000953674,0,2.842372,594.9185,417.0576,319.1438,1269.042,-148.127,25.98257,79.06096,-9.228272,19.88257,0,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5670.079,-,-
+376.5,1641.72965544462,11.0000000953674,11.0000000953674,0,2.842372,594.9185,417.0576,319.1438,1269.042,-148.127,25.98257,79.06096,-9.228272,19.88257,0,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5670.079,-,-
+377.5,1644.78521102667,11.0000000953674,11.0000000953674,0,2.842372,594.9185,417.0576,319.1438,1269.042,-148.127,25.98257,79.06096,-9.228272,19.88257,0,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5670.079,-,-
+378.5,1647.84076660872,11.0000000953674,11.0000000953674,0,2.842372,594.9185,417.0576,319.1438,1269.042,-148.127,25.98257,79.06096,-9.228272,19.88257,0,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5670.079,-,-
+379.5,1650.89632219076,11.0000000953674,11.0000000953674,0,2.842372,594.9185,417.0576,319.1438,1269.042,-148.127,25.98257,79.06096,-9.228272,19.88257,0,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5670.079,-,-
+380.5,1653.95187777281,11.0000000953674,11.0000000953674,0,2.842372,594.9185,417.0576,319.1438,1269.042,-148.127,25.98257,79.06096,-9.228272,19.88257,0,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5670.079,-,-
+381.5,1657.00743335485,11.0000000953674,11.0000000953674,0,2.842372,594.9185,417.0576,319.1438,1269.042,-148.127,25.98257,79.06096,-9.228272,19.88257,0,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5670.079,-,-
+382.5,1660.0629889369,11.0000000953674,11.0000000953674,0,2.842372,594.9185,417.0576,319.1438,1269.042,-148.127,25.98257,79.06096,-9.228272,19.88257,0,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5670.079,-,-
+383.5,1663.11854451895,11.0000000953674,11.0000000953674,0,2.842372,594.9185,417.0576,319.1438,1269.042,-148.127,25.98257,79.06096,-9.228272,19.88257,0,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5670.079,-,-
+384.5,1666.17410010099,11.0000000953674,11.0000000953674,0,2.842372,594.9185,417.0576,319.1438,1269.042,-148.127,25.98257,79.06096,-9.228272,19.88257,0,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5670.079,-,-
+385.5,1669.22965568304,11.0000000953674,11.0000000953674,0,2.842372,594.9185,417.0576,319.1438,1269.042,-148.127,25.98257,79.06096,-9.228272,19.88257,0,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5670.079,-,-
+386.5,1672.28521126509,11.0000000953674,11.0000000953674,0,2.842372,594.9185,417.0576,319.1438,1269.042,-148.127,25.98257,79.06096,-9.228272,19.88257,0,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5670.079,-,-
+387.5,1675.34076684713,11.0000000953674,11.0000000953674,0,2.842372,594.9185,417.0576,319.1438,1269.042,-148.127,25.98257,79.06096,-9.228272,19.88257,0,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5670.079,-,-
+388.5,1678.39632242918,11.0000000953674,11.0000000953674,0,2.842372,594.9185,417.0576,319.1438,1269.042,-148.127,25.98257,79.06096,-9.228272,19.88257,0,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5670.079,-,-
+389.5,1681.45187801123,11.0000000953674,11.0000000953674,0,2.842372,594.9185,417.0576,319.1438,1269.042,-148.127,25.98257,79.06096,-9.228272,19.88257,0,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5670.079,-,-
+390.5,1684.50743359327,11.0000000953674,11.0000000953674,0,2.842372,594.9185,417.0576,319.1438,1269.042,-148.127,25.98257,79.06096,-9.228272,19.88257,0,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5670.079,-,-
+391.5,1687.56298917532,11.0000000953674,11.0000000953674,0,2.842372,594.9185,417.0576,319.1438,1269.042,-148.127,25.98257,79.06096,-9.228272,19.88257,0,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5670.079,-,-
+392.5,1690.61854475737,11.0000000953674,11.0000000953674,0,2.842372,594.9185,417.0576,319.1438,1269.042,-148.127,25.98257,79.06096,-9.228272,19.88257,0,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5670.079,-,-
+393.5,1693.67410033941,11.0000000953674,11.0000000953674,0,2.842372,594.9185,417.0576,319.1438,1269.042,-148.127,25.98257,79.06096,-9.228272,19.88257,0,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5670.079,-,-
+394.5,1696.72965592146,11.0000000953674,11.0000000953674,0,2.842372,594.9185,417.0576,319.1438,1269.042,-148.127,25.98257,79.06096,-9.228272,19.88257,0,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5670.079,-,-
+395.5,1699.78521150351,11.0000000953674,11.0000000953674,0,2.842372,594.9185,417.0576,319.1438,1269.042,-148.127,25.98257,79.06096,-9.228272,19.88257,0,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5670.079,-,-
+396.5,1702.84076708555,11.0000000953674,11.0000000953674,0,2.842372,594.9185,417.0576,319.1438,1269.042,-148.127,25.98257,79.06096,-9.228272,19.88257,0,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5670.079,-,-
+397.5,1705.8963226676,11.0000000953674,11.0000000953674,0,2.842372,594.9185,417.0576,319.1438,1269.042,-148.127,25.98257,79.06096,-9.228272,19.88257,0,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5670.079,-,-
+398.5,1708.95187824965,11.0000000953674,11.0000000953674,0,2.842372,594.9185,417.0576,319.1438,1269.042,-148.127,25.98257,79.06096,-9.228272,19.88257,0,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5670.079,-,-
+399.5,1712.00743383169,11.0000000953674,11.0000000953674,0,2.842372,594.9185,417.0576,319.1438,1269.042,-148.127,25.98257,79.06096,-9.228272,19.88257,0,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5670.079,-,-
+400.5,1715.06298941374,11.0000000953674,11.0000000953674,0,2.842372,594.9185,417.0576,319.1438,1269.042,-148.127,25.98257,79.06096,-9.228272,19.88257,0,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5670.079,-,-
+401.5,1718.11854499578,11.0000000953674,11.0000000953674,0,2.842372,594.9185,417.0576,319.1438,1269.042,-148.127,25.98257,79.06096,-9.228272,19.88257,0,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5670.079,-,-
+402.5,1721.17410057783,11.0000000953674,11.0000000953674,0,2.842372,594.9185,417.0576,319.1438,1269.042,-148.127,25.98257,79.06096,-9.228272,19.88257,0,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5670.079,-,-
+403.5,1724.22965615988,11.0000000953674,11.0000000953674,0,2.842372,594.9185,417.0576,319.1438,1269.042,-148.127,25.98257,79.06096,-9.228272,19.88257,0,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5670.079,-,-
+404.5,1727.28521174192,11.0000000953674,11.0000000953674,0,2.842372,594.9185,417.0576,319.1438,1269.042,-148.127,25.98257,79.06096,-9.228272,19.88257,0,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5670.079,-,-
+405.5,1730.34076732397,11.0000000953674,11.0000000953674,0,2.842372,594.9185,417.0576,319.1438,1269.042,-148.127,25.98257,79.06096,-9.228272,19.88257,0,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5670.079,-,-
+406.5,1733.39632290602,11.0000000953674,11.0000000953674,0,2.842372,594.9185,417.0576,319.1438,1269.042,-148.127,25.98257,79.06096,-9.228272,19.88257,0,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5670.079,-,-
+407.5,1736.45187848806,11.0000000953674,11.0000000953674,0,2.842372,594.9185,417.0576,319.1438,1269.042,-148.127,25.98257,79.06096,-9.228272,19.88257,0,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5670.079,-,-
+408.5,1739.50743407011,11.0000000953674,11.0000000953674,0,2.842372,594.9185,417.0576,319.1438,1269.042,-148.127,25.98257,79.06096,-9.228272,19.88257,0,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5670.079,-,-
+409.5,1742.56298965216,11.0000000953674,11.0000000953674,0,2.842372,594.9185,417.0576,319.1438,1269.042,-148.127,25.98257,79.06096,-9.228272,19.88257,0,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5670.079,-,-
+410.5,1745.6185452342,11.0000000953674,11.0000000953674,0,2.842372,594.9185,417.0576,319.1438,1269.042,-148.127,25.98257,79.06096,-9.228272,19.88257,0,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5670.079,-,-
+411.5,1748.67410081625,11.0000000953674,11.0000000953674,0,2.842372,594.9185,417.0576,319.1438,1269.042,-148.127,25.98257,79.06096,-9.228272,19.88257,0,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5670.079,-,-
+412.5,1751.7296563983,11.0000000953674,11.0000000953674,0,2.842372,594.9185,417.0576,319.1438,1269.042,-148.127,25.98257,79.06096,-9.228272,19.88257,0,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5670.079,-,-
+413.5,1754.78521198034,11.0000000953674,11.0000000953674,0,2.842372,594.9185,417.0576,319.1438,1269.042,-148.127,25.98257,79.06096,-9.228272,19.88257,0,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5670.079,-,-
+414.5,1757.84076756239,11.0000000953674,11.0000000953674,0,2.842372,594.9185,417.0576,319.1438,1269.042,-148.127,25.98257,79.06096,-9.228272,19.88257,0,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5670.079,-,-
+415.5,1760.89632314444,11.0000000953674,11.0000000953674,0,2.842372,594.9185,417.0576,319.1438,1269.042,-148.127,25.98257,79.06096,-9.228272,19.88257,0,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5670.079,-,-
+416.5,1763.95187872648,11.0000000953674,11.0000000953674,0,2.842372,594.9185,417.0576,319.1438,1269.042,-148.127,25.98257,79.06096,-9.228272,19.88257,0,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5670.079,-,-
+417.5,1767.00743430853,11.0000000953674,11.0000000953674,0,2.842372,594.9185,417.0576,319.1438,1269.042,-148.127,25.98257,79.06096,-9.228272,19.88257,0,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5670.079,-,-
+418.5,1770.06298989058,11.0000000953674,11.0000000953674,0,2.842372,594.9185,417.0576,319.1438,1269.042,-148.127,25.98257,79.06096,-9.228272,19.88257,0,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5670.079,-,-
+419.5,1773.11854547262,11.0000000953674,11.0000000953674,0,2.842372,594.9185,417.0576,319.1438,1269.042,-148.127,25.98257,79.06096,-9.228272,19.88257,0,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5670.079,-,-
+420.5,1776.17410105467,11.0000000953674,11.0000000953674,0,2.842372,594.9185,417.0576,319.1438,1269.042,-148.127,25.98257,79.06096,-9.228272,19.88257,0,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5670.079,-,-
+421.5,1779.22965663671,11.0000000953674,11.0000000953674,0,2.842372,594.9185,417.0576,319.1438,1269.042,-148.127,25.98257,79.06096,-9.228272,19.88257,0,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5670.079,-,-
+422.5,1782.28521221876,11.0000000953674,11.0000000953674,0,2.842372,594.9185,417.0576,319.1438,1269.042,-148.127,25.98257,79.06096,-9.228272,19.88257,0,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5670.079,-,-
+423.5,1785.34076780081,11.0000000953674,11.0000000953674,0,2.842372,594.9185,417.0576,319.1438,1269.042,-148.127,25.98257,79.06096,-9.228272,19.88257,0,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5670.079,-,-
+424.5,1788.39632338285,11.0000000953674,11.0000000953674,0,2.842372,594.9185,417.0576,319.1438,1269.042,-148.127,25.98257,79.06096,-9.228272,19.88257,0,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5670.079,-,-
+425.5,1791.4518789649,11.0000000953674,11.0000000953674,0,2.842372,594.9185,417.0576,319.1438,1269.042,-148.127,25.98257,79.06096,-9.228272,19.88257,0,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5670.079,-,-
+426.5,1794.50743454695,11.0000000953674,11.0000000953674,0,2.842372,594.9185,417.0576,319.1438,1269.042,-148.127,25.98257,79.06096,-9.228272,19.88257,0,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5670.079,-,-
+427.5,1797.56299012899,11.0000000953674,11.0000000953674,0,2.842372,594.9185,417.0576,319.1438,1269.042,-148.127,25.98257,79.06096,-9.228272,19.88257,0,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5670.079,-,-
+428.5,1800.61854571104,11.0000000953674,11.0000000953674,0,2.842372,594.9185,417.0576,319.1438,1269.042,-148.127,25.98257,79.06096,-9.228272,19.88257,0,6.1,1,0,0,0,0,0,3.645783,0.05530028,16.18148,19.88257,0,5670.079,-,-
+429.5,1803.61446923018,10.7853246688843,11.0000000953674,-0.1192639,2.842372,577.681,301.0343,207.1566,1225.086,-148.558,18.21095,74.11112,-8.986958,12.53186,-0.4209085,6.1,1,0,0,0,0,-6.960586,3.574632,0.05212534,15.86569,12.53186,0,4328.016,-,-
+430.5,1806.49112910032,10.3559755325317,11.0000000953674,-0.1192636,2.842372,593.1891,297.9334,193.6471,1264.632,-148.1703,18.50721,78.55721,-9.204132,12.02909,0.378122,6.1,1,0,0,0,0,-6.683481,3.432331,0.04614475,15.2341,12.02909,0,4371.322,-,-
+431.5,1809.17152184248,9.64941387176514,11.0000000953674,-0.2732706,2.842372,593.1891,149.0868,50.8876,1264.632,-148.1703,9.261066,78.55721,-9.204132,3.161067,0,6.1,1,0,0,0,0,-14.26913,3.198152,0.03732949,14.19471,3.161067,0,2847.165,-,-
+432.5,1811.57864397764,8.66563968658447,11.0000000953674,-0.2732706,2.842372,593.1891,143.7943,45.59506,1264.632,-148.1703,8.932302,78.55721,-9.204132,2.832302,0,6.1,1,0,0,0,0,-12.81437,2.872095,0.02703654,12.74754,2.832302,0,2796.913,-,-
+433.5,1813.72308152914,7.71997518539429,11.0000000953674,-0.2520986,2.842372,593.1891,152.9769,54.77773,1264.632,-148.1703,9.502716,78.55721,-9.204132,3.402717,0,6.1,1,0,0,0,0,-10.53149,2.558669,0.019116,11.35642,3.402717,0,2884.102,-,-
+434.5,1815.6154204011,6.81241993904114,11.0000000953674,-0.2520988,2.842372,593.1891,146.4771,48.27787,1264.632,-148.1703,9.098954,78.55721,-9.204132,2.998954,0,6.1,1,0,0,0,0,-9.293425,2.257873,0.01313571,10.02137,2.998954,0,2822.386,-,-
+435.5,1817.26542645693,5.94002180099487,11.0000000953674,-0.2325668,2.842372,593.1891,150.3573,52.15805,1264.632,-148.1703,9.339986,78.55721,-9.204132,3.239986,0,6.1,1,0,0,0,0,-7.475486,1.96873,0.008707899,8.738034,3.239986,0,2859.228,-,-
+436.5,1818.68286567926,5.10278120040894,11.0000000953674,-0.232567,2.842372,593.1891,142.974,44.77482,1264.632,-148.1703,8.88135,78.55721,-9.204132,2.78135,0,6.1,1,0,0,0,0,-6.421826,1.691239,0.005520395,7.506416,2.78135,0,2789.125,-,-
+437.5,1819.88227850199,4.3178861618042,11.0000000953674,-0.2034856,2.842372,593.1891,147.0043,48.80508,1264.632,-148.1703,9.131704,78.55721,-9.204132,3.031704,0,6.1,1,0,0,0,0,-4.754539,1.431098,0.003344744,6.351801,3.031704,0,2827.392,-,-
+438.5,1820.87820577621,3.58533818721771,11.0000000953674,-0.2034856,2.842372,593.1891,138.7104,40.5112,1264.632,-148.1703,8.616499,78.55721,-9.204132,2.5165,0,6.1,1,0,0,0,0,-3.947912,1.188306,0.001914872,5.27419,2.5165,0,2748.642,-,-
+439.5,1821.59898740053,2.59481384754181,11.0000000953674,-0.3468057,2.842372,560,90.42837,0,1180,-149,5.302997,69.19881,-8.737817,0,-0.797003,6.1,0,0,0,0,0,-4.869631,0.8600117,0.0007258851,3.817086,-0.1918085,-0.1918085,2133.607,-,-
+440.5,1821.9985987246,1.43860076665878,9.55577602386475,-0.2955349,2.842372,593.1891,115.7384,4.708887,1264.632,-148.1703,7.189512,78.55721,-9.204132,0.2925096,0.797003,6.1,1,0,0,0,0,-2.300662,0.4768024,0.0001237001,2.116245,0.2925096,0,2530.523,-,-
+441.5,1822.12452065945,0.453318965435028,6.00902366638184,-0.2518439,2.842372,560,90.42837,0,1180,-149,5.302997,69.19881,-8.737817,0,-0.797003,6.1,0,0,0,0,0,-0.6177872,0.1502457,3.870445E-06,0.6668522,0.1993146,0,2133.607,-,-
+442.5,1822.12452065945,0,1.95324790477753,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+443.5,1822.12452065945,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+444.5,1822.12452065945,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+445.5,1822.12452065945,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+446.5,1822.12452065945,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+447.5,1822.12452065945,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+448.5,1822.12452065945,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+449.5,1822.12452065945,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+450.5,1822.12452065945,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+451.5,1822.12452065945,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+452.5,1822.12452065945,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+453.5,1822.12452065945,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+454.5,1822.12452065945,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+455.5,1822.12452065945,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+456.5,1822.12452065945,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+457.5,1822.12452065945,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+458.5,1822.12452065945,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+459.5,1822.12452065945,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+460.5,1822.12452065945,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+461.5,1822.12452065945,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+462.5,1822.12452065945,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+463.5,1822.12452065945,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+464.5,1822.12452065945,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+465.5,1822.12452065945,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+466.5,1822.12452065945,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+467.5,1822.12452065945,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+468.5,1822.12452065945,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+469.5,1822.12452065945,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+470.5,1822.12452065945,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+471.5,1822.12452065945,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+472.5,1822.12452065945,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+473.5,1822.12452065945,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+474.5,1822.12452065945,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+475.5,1822.12452065945,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+476.5,1822.12452065945,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+477.5,1822.12452065945,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+478.5,1822.12452065945,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+479.5,1822.12452065945,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+480.5,1822.12452065945,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+481.5,1822.12452065945,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+482.5,1822.67236196995,1.97222871780396,1.97222871780396,1.095683,2.842372,593.1891,356.5075,245.4779,1264.632,-148.1703,22.14575,78.55721,-9.204132,15.24875,0.797003,6.1,1,0,0,0,0,11.69353,0.6536653,0.0003187286,2.901235,15.24875,0,4998.064,-,-
+483.5,1824.45573151112,6.42013034820557,11.9722283363342,1.375374,2.842372,593.1891,1053.88,955.6808,1264.632,-148.1703,65.46557,78.55721,-9.204132,59.36557,0,6.1,1,0,0,0,0,47.78242,2.127855,0.01099463,9.444295,59.36557,0,12454.29,-,-
+484.5,1827.39355385304,10.5761604309082,19.9999992370605,0.9335315,2.842372,593.573,1265.29,1167.001,1265.611,-148.1607,78.64893,78.66889,-9.209493,72.53944,0.009487648,6.1,1,0,0,0,0,53.42698,3.505308,0.04915111,15.558,72.53944,0,14908.44,-,-
+485.5,1831.44573414326,14.5878490447998,19.9999992370605,1.295185,2.842372,781.3509,1712.736,1572.478,1743.538,-148.9068,140.141,142.6613,-12.18398,128.6647,5.376347,6.1,1,0,0,0,0,102.2414,4.834921,0.1289802,21.45937,128.6647,0,27084.92,-,-
+486.5,1836.57339823246,18.4595907211304,19.9999992370605,0.8557825,2.842372,988.7281,1282.248,1149.507,2271.313,-159.3801,132.7632,235.1703,-16.50211,119.0192,7.643952,6.1,1,0,0,0,0,85.48484,6.118151,0.2613458,27.15487,119.0192,0,24770.9,-,-
+487.5,1842.12895357609,19.9999992370605,19.9999992370605,0,2.842372,1071.235,410.2465,324.3192,2300,-166.7673,46.02123,258.0128,-18.70787,36.38196,3.539274,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9877.212,-,-
+488.5,1847.68450891972,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+489.5,1853.24006426334,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+490.5,1858.79561960697,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+491.5,1864.3511749506,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+492.5,1869.90673029423,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+493.5,1875.46228563786,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+494.5,1881.01784098148,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+495.5,1886.57339632511,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+496.5,1892.12895166874,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+497.5,1897.68450701237,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+498.5,1903.240062356,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+499.5,1908.79561769962,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+500.5,1914.35117304325,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+501.5,1919.90672838688,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+502.5,1925.46228373051,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+503.5,1931.01783907413,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+504.5,1936.57339441776,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+505.5,1942.12894976139,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+506.5,1947.68450510502,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+507.5,1953.24006044865,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+508.5,1958.79561579227,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+509.5,1964.3511711359,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+510.5,1969.90672647953,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+511.5,1975.46228182316,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+512.5,1981.01783716679,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+513.5,1986.57339251041,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+514.5,1992.12894785404,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+515.5,1997.68450319767,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+516.5,2003.2400585413,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+517.5,2008.79561388493,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+518.5,2014.35116922855,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+519.5,2019.90672457218,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+520.5,2025.46227991581,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+521.5,2031.01783525944,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+522.5,2036.57339060307,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+523.5,2042.12894594669,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+524.5,2047.68450129032,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+525.5,2053.24005663395,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+526.5,2058.79561197758,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+527.5,2064.35116732121,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+528.5,2069.90672266483,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+529.5,2075.46227800846,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+530.5,2081.01783335209,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+531.5,2086.57338869572,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+532.5,2092.12894403934,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+533.5,2097.68449938297,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+534.5,2103.2400547266,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+535.5,2108.79561007023,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+536.5,2114.35116541386,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+537.5,2119.90672075748,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+538.5,2125.46227610111,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+539.5,2131.01783144474,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+540.5,2136.57338678837,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+541.5,2142.128942132,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+542.5,2147.68449747562,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+543.5,2153.24005281925,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+544.5,2158.79560816288,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+545.5,2164.35116350651,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+546.5,2169.90671885014,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+547.5,2175.46227419376,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+548.5,2181.01782953739,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+549.5,2186.57338488102,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+550.5,2192.12894022465,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+551.5,2197.68449556828,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+552.5,2203.2400509119,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+553.5,2208.79560625553,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+554.5,2214.35116159916,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+555.5,2219.90671694279,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+556.5,2225.46227228642,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+557.5,2231.01782763004,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+558.5,2236.57338297367,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+559.5,2242.1289383173,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+560.5,2247.68449366093,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+561.5,2253.24004900455,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+562.5,2258.79560434818,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+563.5,2264.35115969181,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+564.5,2269.90671503544,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+565.5,2275.46227037907,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+566.5,2281.01782572269,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+567.5,2286.57338106632,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+568.5,2292.12893640995,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+569.5,2297.68449175358,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+570.5,2303.24004709721,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+571.5,2308.79560244083,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+572.5,2314.35115778446,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+573.5,2319.90671312809,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+574.5,2325.46226847172,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+575.5,2331.01782381535,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+576.5,2336.57337915897,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+577.5,2342.1289345026,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+578.5,2347.68448984623,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+579.5,2353.24004518986,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+580.5,2358.79560053349,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+581.5,2364.35115587711,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+582.5,2369.90671122074,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+583.5,2375.46226656437,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+584.5,2381.017821908,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+585.5,2386.57337725163,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+586.5,2392.12893259525,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+587.5,2397.68448793888,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+588.5,2403.24004328251,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+589.5,2408.79559862614,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+590.5,2414.35115396976,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+591.5,2419.90670931339,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+592.5,2425.46226465702,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+593.5,2431.01782000065,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+594.5,2436.57337534428,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+595.5,2442.1289306879,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+596.5,2447.68448603153,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+597.5,2453.24004137516,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+598.5,2458.79559671879,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+599.5,2464.35115206242,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+600.5,2469.90670740604,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+601.5,2475.46226274967,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+602.5,2481.0178180933,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+603.5,2486.57337343693,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+604.5,2492.12892878056,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+605.5,2497.68448412418,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+606.5,2503.24003946781,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+607.5,2508.79559481144,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+608.5,2514.35115015507,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+609.5,2519.9067054987,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+610.5,2525.46226084232,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+611.5,2531.01781618595,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+612.5,2536.57337152958,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+613.5,2542.12892687321,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+614.5,2547.68448221684,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+615.5,2553.24003756046,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+616.5,2558.79559290409,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+617.5,2564.35114824772,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+618.5,2569.90670359135,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+619.5,2575.46225893497,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+620.5,2581.0178142786,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+621.5,2586.57336962223,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+622.5,2592.12892496586,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+623.5,2597.68448030949,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+624.5,2603.24003565311,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+625.5,2608.79559099674,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+626.5,2614.35114634037,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+627.5,2619.906701684,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+628.5,2625.46225702763,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+629.5,2631.01781237125,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+630.5,2636.57336771488,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+631.5,2642.12892305851,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+632.5,2647.68447840214,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+633.5,2653.24003374577,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+634.5,2658.79558908939,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+635.5,2664.35114443302,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+636.5,2669.90669977665,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+637.5,2675.46225512028,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+638.5,2681.01781046391,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+639.5,2686.57336580753,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+640.5,2692.12892115116,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+641.5,2697.68447649479,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+642.5,2703.24003183842,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+643.5,2708.79558718205,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+644.5,2714.42058718205,20.25,20.5000007629395,0.1388893,2.842372,1084.626,517.3873,458.3889,2300,-168.0394,58.76574,261.238,-19.08621,52.0646,0.6011485,6.1,1,0,0,0,0,15.2194,6.711555,0.3450042,29.78864,52.0646,0,11673.61,-,-
+645.5,2720.18447649479,20.7500015258789,21.0000005722046,0.1388888,2.842372,1111.407,521.4747,458.5402,2300,-170.5836,60.69247,267.6883,-19.85359,53.36777,1.2247,6.1,1,0,0,0,0,15.59513,6.877273,0.3711963,30.52417,53.36777,0,12062.01,-,-
+646.5,2726.01780998707,21.0000005722046,21.0000005722046,0,2.842372,1124.797,381.7044,324.6229,2300,-171.8557,44.96038,270.9135,-20.24262,38.23683,0.6235459,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9761.242,-,-
+647.5,2731.85114347935,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+648.5,2737.68447697163,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+649.5,2743.51781046391,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+650.5,2749.35114395618,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+651.5,2755.18447744846,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+652.5,2761.01781094074,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+653.5,2766.85114443302,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+654.5,2772.6844779253,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+655.5,2778.51781141758,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+656.5,2784.35114490986,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+657.5,2790.18447840214,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+658.5,2796.01781189442,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+659.5,2801.8511453867,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+660.5,2807.68447887897,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+661.5,2813.51781237125,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+662.5,2819.35114586353,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+663.5,2825.18447935581,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+664.5,2831.01781284809,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+665.5,2836.85114634037,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+666.5,2842.68447983265,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+667.5,2848.51781332493,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+668.5,2854.35114681721,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+669.5,2860.18448030949,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+670.5,2866.01781380177,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+671.5,2871.85114729404,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+672.5,2877.68448078632,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+673.5,2883.5178142786,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+674.5,2889.35114777088,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+675.5,2895.18448126316,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+676.5,2901.01781475544,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+677.5,2906.85114824772,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+678.5,2912.68448174,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+679.5,2918.51781523228,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+680.5,2924.35114872456,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+681.5,2930.18448221684,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+682.5,2936.01781570911,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+683.5,2941.85114920139,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+684.5,2947.68448269367,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+685.5,2953.51781618595,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+686.5,2959.35114967823,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+687.5,2965.18448317051,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+688.5,2971.01781666279,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+689.5,2976.85115015507,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+690.5,2982.68448364735,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+691.5,2988.51781713963,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+692.5,2994.3511506319,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+693.5,3000.18448412418,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+694.5,3006.01781761646,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+695.5,3011.85115110874,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+696.5,3017.68448460102,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+697.5,3023.5178180933,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+698.5,3029.35115158558,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+699.5,3035.18448507786,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+700.5,3041.01781857014,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+701.5,3046.85115206242,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+702.5,3052.6844855547,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+703.5,3058.51781904697,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+704.5,3064.35115253925,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+705.5,3070.18448603153,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+706.5,3076.01781952381,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+707.5,3081.85115301609,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+708.5,3087.68448650837,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+709.5,3093.51782000065,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+710.5,3099.35115349293,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+711.5,3105.18448698521,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+712.5,3111.01782047749,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+713.5,3116.85115396976,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+714.5,3122.68448746204,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+715.5,3128.51782095432,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+716.5,3134.3511544466,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+717.5,3140.18448793888,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+718.5,3146.01782143116,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+719.5,3151.85115492344,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+720.5,3157.68448841572,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+721.5,3163.517821908,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+722.5,3169.35115540028,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+723.5,3175.18448889256,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+724.5,3181.01782238483,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+725.5,3186.85115587711,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+726.5,3192.68448936939,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+727.5,3198.51782286167,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+728.5,3204.35115635395,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+729.5,3210.18448984623,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+730.5,3216.01782333851,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+731.5,3221.85115683079,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+732.5,3227.68449032307,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+733.5,3233.51782381535,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+734.5,3239.35115730762,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+735.5,3245.1844907999,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+736.5,3251.01782429218,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+737.5,3256.85115778446,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+738.5,3262.68449127674,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+739.5,3268.51782476902,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+740.5,3274.3511582613,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+741.5,3280.18449175358,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+742.5,3286.01782524586,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+743.5,3291.85115873814,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+744.5,3297.68449223042,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+745.5,3303.51782572269,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+746.5,3309.35115921497,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+747.5,3315.18449270725,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+748.5,3321.01782619953,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+749.5,3326.85115969181,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+750.5,3332.61504900455,20.7500015258789,20.5000007629395,-0.1388888,2.842372,1111.407,237.605,190.5509,2300,-170.5836,27.65396,267.6883,-19.85359,22.1775,-0.6235459,6.1,1,0,0,0,0,-15.59513,6.877273,0.3711963,30.52417,22.1775,0,7091.53,-,-
+751.5,3338.24004900455,20.25,19.9999992370605,-0.1388893,2.842372,1084.626,233.3219,190.3986,2300,-168.0394,26.5011,261.238,-19.08621,21.6258,-1.2247,6.1,1,0,0,0,0,-15.2194,6.711555,0.3450042,29.78864,21.6258,0,6897.183,-,-
+752.5,3343.79560434818,19.9999992370605,19.9999992370605,0,2.842372,1071.235,373.3376,324.3192,2300,-166.7673,41.88081,258.0128,-18.70787,36.38196,-0.6011485,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9215.069,-,-
+753.5,3349.35115969181,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+754.5,3354.90671503544,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+755.5,3360.46227037907,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+756.5,3366.01782572269,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+757.5,3371.57338106632,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+758.5,3377.12893640995,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+759.5,3382.68449175358,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+760.5,3388.24004709721,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+761.5,3393.79560244083,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+762.5,3399.35115778446,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+763.5,3404.90671312809,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+764.5,3410.46226847172,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+765.5,3416.01782381535,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+766.5,3421.57337915897,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+767.5,3427.1289345026,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+768.5,3432.68448984623,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+769.5,3438.24004518986,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+770.5,3443.79560053349,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+771.5,3449.35115587711,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+772.5,3454.90671122074,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+773.5,3460.46226656437,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+774.5,3466.017821908,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+775.5,3471.57337725163,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+776.5,3477.12893259525,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+777.5,3482.68448793888,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+778.5,3488.24004328251,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+779.5,3493.79559862614,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+780.5,3499.35115396976,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+781.5,3504.90670931339,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+782.5,3510.46226465702,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+783.5,3516.01782000065,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+784.5,3521.57337534428,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+785.5,3527.1289306879,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+786.5,3532.68448603153,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+787.5,3538.24004137516,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+788.5,3543.79559671879,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+789.5,3549.35115206242,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+790.5,3554.90670740604,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+791.5,3560.46226274967,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+792.5,3566.0178180933,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+793.5,3571.57337343693,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+794.5,3577.12892878056,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+795.5,3582.68448412418,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+796.5,3588.24003946781,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+797.5,3593.79559481144,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+798.5,3599.35115015507,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+799.5,3604.9067054987,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+800.5,3610.46226084232,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+801.5,3616.01781618595,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+802.5,3621.57337152958,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+803.5,3627.12892687321,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+804.5,3632.68448221684,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+805.5,3638.24003756046,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+806.5,3643.79559290409,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+807.5,3649.35114824772,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+808.5,3654.90670359135,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+809.5,3660.46225893497,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+810.5,3666.0178142786,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+811.5,3671.57336962223,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+812.5,3677.12892496586,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+813.5,3682.68448030949,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+814.5,3688.24003565311,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+815.5,3693.79559099674,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+816.5,3699.35114634037,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+817.5,3704.906701684,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+818.5,3710.46225702763,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+819.5,3716.01781237125,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+820.5,3721.57336771488,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+821.5,3727.12892305851,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+822.5,3732.68447840214,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+823.5,3738.24003374577,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+824.5,3743.79558908939,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+825.5,3749.35114443302,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+826.5,3754.90669977665,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+827.5,3760.46225512028,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+828.5,3766.01781046391,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+829.5,3771.57336580753,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+830.5,3777.12892115116,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+831.5,3782.68447649479,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+832.5,3788.24003183842,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+833.5,3793.79558718205,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+834.5,3799.35114252567,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+835.5,3804.9066978693,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+836.5,3810.46225321293,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+837.5,3816.01780855656,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+838.5,3821.48250067234,19.6728916168213,19.9999992370605,-0.1817265,2.842372,1053.715,197.1557,148.9003,2300,-165.1029,21.75509,253.7929,-18.21824,16.43037,-0.7752762,6.1,1,0,0,0,0,-19.34595,6.520281,0.3163398,28.93969,16.43037,0,6162.792,-,-
+839.5,3826.76546633244,19.0186763763428,19.9999992370605,-0.1817265,2.842372,1018.674,191.7199,148.7128,2300,-161.774,20.45177,245.3531,-17.25728,15.86398,-1.512207,6.1,1,0,0,0,0,-18.7026,6.303452,0.2858184,27.97731,15.86398,0,5901.579,-,-
+840.5,3831.90954315662,18.5186765670776,18.9999996185303,-0.09605122,2.842372,991.8929,279.162,231.23,2279.367,-159.5541,28.99678,236.7597,-16.57301,24.01804,-1.121263,6.1,1,0,0,0,0,-9.625348,6.137734,0.2638634,27.24179,24.01804,0,7155.2,-,-
+841.5,3836.95756876469,18.1728921890259,18,-0.09605122,2.842372,973.3721,283.5443,231.136,2232.232,-158.5355,28.90203,227.5343,-16.15972,23.55999,-0.7579583,6.1,1,0,0,0,0,-9.445621,6.023129,0.2493569,26.73313,23.55999,0,7024.484,-,-
+842.5,3841.95756876469,18,18,0,2.842372,964.1117,380.4746,323.7562,2208.664,-158.0261,38.41331,222.9902,-15.95456,32.68693,-0.3736206,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8491.533,-,-
+843.5,3846.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+844.5,3851.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+845.5,3856.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+846.5,3861.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+847.5,3866.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+848.5,3871.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+849.5,3876.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+850.5,3881.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+851.5,3886.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+852.5,3891.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+853.5,3896.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+854.5,3901.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+855.5,3906.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+856.5,3911.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+857.5,3916.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+858.5,3921.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+859.5,3926.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+860.5,3931.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+861.5,3936.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+862.5,3941.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+863.5,3946.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+864.5,3951.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+865.5,3956.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+866.5,3961.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+867.5,3966.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+868.5,3971.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+869.5,3976.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+870.5,3981.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+871.5,3986.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+872.5,3991.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+873.5,3996.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+874.5,4001.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+875.5,4006.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+876.5,4011.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+877.5,4016.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+878.5,4021.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+879.5,4026.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+880.5,4031.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+881.5,4036.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+882.5,4041.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+883.5,4046.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+884.5,4051.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+885.5,4056.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+886.5,4061.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+887.5,4066.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+888.5,4071.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+889.5,4076.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+890.5,4081.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+891.5,4086.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+892.5,4091.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+893.5,4096.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+894.5,4101.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+895.5,4106.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+896.5,4111.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+897.5,4116.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+898.5,4121.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+899.5,4126.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+900.5,4131.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+901.5,4136.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+902.5,4141.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+903.5,4146.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+904.5,4151.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+905.5,4156.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+906.5,4161.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+907.5,4166.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+908.5,4171.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+909.5,4176.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+910.5,4181.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+911.5,4186.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+912.5,4191.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+913.5,4196.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+914.5,4201.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+915.5,4206.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+916.5,4211.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+917.5,4216.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+918.5,4221.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+919.5,4226.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+920.5,4231.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+921.5,4236.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+922.5,4241.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+923.5,4246.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+924.5,4251.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+925.5,4256.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+926.5,4261.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+927.5,4266.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+928.5,4271.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+929.5,4276.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+930.5,4281.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+931.5,4286.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+932.5,4291.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+933.5,4296.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+934.5,4301.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+935.5,4306.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+936.5,4311.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+937.5,4316.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+938.5,4321.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+939.5,4326.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+940.5,4331.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+941.5,4336.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+942.5,4341.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+943.5,4346.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+944.5,4351.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+945.5,4356.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+946.5,4361.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+947.5,4366.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+948.5,4371.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+949.5,4376.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+950.5,4381.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+951.5,4386.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+952.5,4391.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+953.5,4396.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+954.5,4401.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+955.5,4406.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+956.5,4411.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+957.5,4416.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+958.5,4421.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+959.5,4426.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+960.5,4431.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+961.5,4436.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+962.5,4441.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+963.5,4446.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+964.5,4451.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+965.5,4456.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+966.5,4461.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+967.5,4466.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+968.5,4471.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+969.5,4476.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+970.5,4481.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+971.5,4486.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+972.5,4491.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+973.5,4496.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+974.5,4501.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+975.5,4506.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+976.5,4511.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+977.5,4516.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+978.5,4521.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+979.5,4526.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+980.5,4531.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+981.5,4536.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+982.5,4541.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+983.5,4546.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+984.5,4551.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+985.5,4556.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+986.5,4561.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+987.5,4566.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+988.5,4571.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+989.5,4576.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+990.5,4581.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+991.5,4586.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+992.5,4591.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+993.5,4596.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+994.5,4601.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+995.5,4606.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+996.5,4611.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+997.5,4616.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+998.5,4621.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+999.5,4626.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1000.5,4631.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1001.5,4636.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1002.5,4641.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1003.5,4646.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1004.5,4651.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1005.5,4656.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1006.5,4661.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1007.5,4666.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1008.5,4671.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1009.5,4676.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1010.5,4681.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1011.5,4686.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1012.5,4691.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1013.5,4696.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1014.5,4701.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1015.5,4706.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1016.5,4711.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1017.5,4716.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1018.5,4721.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1019.5,4726.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1020.5,4731.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1021.5,4736.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1022.5,4741.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1023.5,4746.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1024.5,4751.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1025.5,4756.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1026.5,4761.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1027.5,4766.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1028.5,4771.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1029.5,4776.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1030.5,4781.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1031.5,4786.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1032.5,4791.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1033.5,4796.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1034.5,4801.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1035.5,4806.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1036.5,4811.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1037.5,4816.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1038.5,4821.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1039.5,4826.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1040.5,4831.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1041.5,4836.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1042.5,4841.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1043.5,4846.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1044.5,4851.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1045.5,4856.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1046.5,4861.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1047.5,4866.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1048.5,4871.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1049.5,4876.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1050.5,4881.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1051.5,4886.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1052.5,4891.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1053.5,4896.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1054.5,4901.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1055.5,4906.95756876469,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1056.5,4912.30065691471,19.2351173400879,20.4702346801758,0.6861763,2.842372,1030.267,1068.099,986.0936,2300,-162.8753,115.2364,248.1453,-17.5725,106.3889,2.74748,6.1,1,0,0,0,0,71.42235,6.375188,0.2956881,28.29571,106.3889,0,21689.29,-,-
+1057.5,4918.32992136478,21.7053520202637,22.9404676437378,0.6861758,2.842372,1162.577,1086.574,986.8423,2300,-175.4448,132.2847,280.013,-21.35949,120.1429,6.041783,6.1,1,0,0,0,0,80.59459,7.19391,0.4248638,31.92953,120.1429,0,24756.12,-,-
+1058.5,4924.84529650211,23.4553504943848,23.9702350616455,0.2860465,2.842372,1256.31,683.6525,601.3982,2300,-185.7572,89.94164,302.5891,-24.4383,79.12022,4.721411,6.1,1,0,0,0,0,36.30632,7.77392,0.5361361,34.50385,79.12022,0,17324.93,-,-
+1059.5,4931.64671814442,24.4851179122925,25.0000007629395,0.286046,2.842372,1311.466,667.6548,601.7635,2300,-192.3759,91.6933,315.8737,-26.42021,82.64403,2.949273,6.1,1,0,0,0,0,37.90022,8.115221,0.6098961,36.01869,82.64403,0,17761.08,-,-
+1060.5,4938.59116280079,25.0000007629395,25.0000007629395,0,2.842372,1339.044,380.3427,325.9858,2300,-195.6853,53.33331,322.5161,-27.43985,45.71116,1.522153,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11641.34,-,-
+1061.5,4945.53560745716,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1062.5,4952.48005211353,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1063.5,4959.42449676991,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1064.5,4966.36894142628,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1065.5,4973.31338608265,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1066.5,4980.25783073902,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1067.5,4987.20227539539,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1068.5,4994.14672005177,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1069.5,5001.09116470814,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1070.5,5008.03560936451,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1071.5,5014.98005402088,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1072.5,5021.92449867725,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1073.5,5028.86894333363,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1074.5,5035.81338799,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1075.5,5042.75783264637,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1076.5,5049.70227730274,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1077.5,5056.64672195911,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1078.5,5063.59116661549,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1079.5,5070.53561127186,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1080.5,5077.48005592823,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1081.5,5084.4245005846,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1082.5,5091.36894524097,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1083.5,5098.31338989735,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1084.5,5105.25783455372,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1085.5,5112.20227921009,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1086.5,5119.14672386646,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1087.5,5126.09116852283,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1088.5,5133.03561317921,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1089.5,5139.98005783558,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1090.5,5146.92450249195,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1091.5,5153.86894714832,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1092.5,5160.8133918047,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1093.5,5167.75783646107,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1094.5,5174.70228111744,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1095.5,5181.64672577381,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1096.5,5188.59117043018,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1097.5,5195.53561508656,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1098.5,5202.48005974293,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1099.5,5209.4245043993,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1100.5,5216.36894905567,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1101.5,5223.31339371204,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1102.5,5230.25783836842,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1103.5,5237.20228302479,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1104.5,5244.14672768116,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1105.5,5251.09117233753,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1106.5,5258.0356169939,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1107.5,5264.98006165028,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1108.5,5271.92450630665,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1109.5,5278.86895096302,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1110.5,5285.81339561939,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1111.5,5292.75784027576,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1112.5,5299.70228493214,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1113.5,5306.64672958851,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1114.5,5313.59117424488,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1115.5,5320.53561890125,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1116.5,5327.48006355762,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1117.5,5334.424508214,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1118.5,5341.36895287037,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1119.5,5348.31339752674,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1120.5,5355.25784218311,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1121.5,5362.20228683949,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1122.5,5369.14673149586,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1123.5,5376.09117615223,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1124.5,5383.0356208086,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1125.5,5389.98006546497,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1126.5,5396.92451012135,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1127.5,5403.86895477772,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1128.5,5410.81339943409,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1129.5,5417.75784409046,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1130.5,5424.70228874683,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1131.5,5431.64673340321,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1132.5,5438.59117805958,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1133.5,5445.53562271595,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1134.5,5452.48006737232,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1135.5,5459.42451202869,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1136.5,5466.36895668507,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1137.5,5473.31340134144,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1138.5,5480.25784599781,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1139.5,5487.20229065418,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1140.5,5494.14673531055,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1141.5,5501.09117996693,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1142.5,5508.0356246233,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1143.5,5514.98006927967,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1144.5,5521.92451393604,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1145.5,5528.86895859241,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1146.5,5535.81340324879,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1147.5,5542.75784790516,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1148.5,5549.70229256153,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1149.5,5556.6467372179,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1150.5,5563.59118187428,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1151.5,5570.53562653065,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1152.5,5577.48007118702,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1153.5,5584.42451584339,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1154.5,5591.36896049976,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1155.5,5598.31340515614,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1156.5,5605.25784981251,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1157.5,5612.20229446888,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1158.5,5619.14673912525,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1159.5,5626.09118378162,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1160.5,5633.035628438,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1161.5,5639.98007309437,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1162.5,5646.92451775074,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1163.5,5653.86896240711,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1164.5,5660.81340706348,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1165.5,5667.75785171986,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1166.5,5674.70229637623,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1167.5,5681.6467410326,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1168.5,5688.59118568897,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1169.5,5695.53563034534,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1170.5,5702.48007500172,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1171.5,5709.42451965809,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1172.5,5716.36896431446,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1173.5,5723.31340897083,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1174.5,5730.2578536272,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1175.5,5737.20229828358,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1176.5,5744.14674293995,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1177.5,5751.09118759632,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1178.5,5758.03563225269,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1179.5,5764.98007690907,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1180.5,5771.92452156544,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1181.5,5778.86896622181,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1182.5,5785.81341087818,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1183.5,5792.75785553455,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1184.5,5799.70230019093,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1185.5,5806.6467448473,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1186.5,5813.59118950367,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1187.5,5820.53563416004,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1188.5,5827.48007881641,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1189.5,5834.42452347279,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1190.5,5841.36896812916,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1191.5,5848.31341278553,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1192.5,5855.2578574419,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1193.5,5862.20230209827,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1194.5,5869.14674675465,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1195.5,5876.09119141102,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1196.5,5883.03563606739,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1197.5,5889.98008072376,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1198.5,5896.92452538013,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1199.5,5903.86897003651,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1200.5,5910.81341469288,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1201.5,5917.75785934925,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1202.5,5924.70230400562,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1203.5,5931.64674866199,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1204.5,5938.59119331837,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1205.5,5945.53563797474,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1206.5,5952.48008263111,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1207.5,5959.42452728748,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1208.5,5966.36897194386,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1209.5,5973.31341660023,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1210.5,5980.2578612566,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1211.5,5987.20230591297,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1212.5,5994.14675056934,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1213.5,6001.09119522572,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1214.5,6008.03563988209,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1215.5,6014.98008453846,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1216.5,6021.92452919483,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1217.5,6028.8689738512,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1218.5,6035.81341850758,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1219.5,6042.75786316395,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1220.5,6049.70230782032,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1221.5,6056.64675247669,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1222.5,6063.59119713306,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1223.5,6070.53564178944,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1224.5,6077.48008644581,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1225.5,6084.42453110218,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1226.5,6091.36897575855,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1227.5,6098.31342041492,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1228.5,6105.2578650713,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1229.5,6112.20230972767,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1230.5,6119.14675438404,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1231.5,6126.09119904041,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1232.5,6133.03564369679,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1233.5,6139.98008835316,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1234.5,6146.92453300953,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1235.5,6153.8689776659,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1236.5,6160.81342232227,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1237.5,6167.75786697865,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1238.5,6174.70231163502,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1239.5,6181.64675629139,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1240.5,6188.59120094776,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1241.5,6195.53564560413,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1242.5,6202.48009026051,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1243.5,6209.42453491688,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1244.5,6216.36897957325,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1245.5,6223.31342422962,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1246.5,6230.25786888599,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1247.5,6237.20231354237,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1248.5,6244.14675819874,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1249.5,6251.09120285511,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1250.5,6258.03564751148,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1251.5,6264.98009216785,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1252.5,6271.92453682423,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1253.5,6278.8689814806,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1254.5,6285.81342613697,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1255.5,6292.75787079334,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1256.5,6299.70231544971,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1257.5,6306.64676010609,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1258.5,6313.59120476246,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1259.5,6320.53564941883,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1260.5,6327.4800940752,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1261.5,6334.42453873158,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1262.5,6341.36898338795,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1263.5,6348.31342804432,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1264.5,6355.25787270069,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1265.5,6362.20231735706,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1266.5,6369.14676201344,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1267.5,6376.09120666981,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1268.5,6383.03565132618,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1269.5,6389.98009598255,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1270.5,6396.92454063892,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1271.5,6403.8689852953,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1272.5,6410.81342995167,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1273.5,6417.75787460804,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1274.5,6424.70231926441,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1275.5,6431.64676392078,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1276.5,6438.59120857716,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1277.5,6445.53565323353,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1278.5,6452.4800978899,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1279.5,6459.42454254627,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1280.5,6466.36898720264,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1281.5,6473.31343185902,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1282.5,6480.25787651539,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1283.5,6487.20232117176,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1284.5,6494.14676582813,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1285.5,6501.0912104845,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1286.5,6508.03565514088,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1287.5,6514.98009979725,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1288.5,6521.92454445362,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1289.5,6528.86898910999,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1290.5,6535.81343376637,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1291.5,6542.75787842274,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1292.5,6549.70232307911,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1293.5,6556.64676773548,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1294.5,6563.59121239185,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1295.5,6570.53565704823,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1296.5,6577.4801017046,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1297.5,6584.42454636097,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1298.5,6591.36899101734,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1299.5,6598.31343567371,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1300.5,6605.25788033009,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1301.5,6612.20232498646,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1302.5,6619.14676964283,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1303.5,6626.0912142992,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1304.5,6633.03565895557,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1305.5,6639.98010361195,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1306.5,6646.92454826832,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1307.5,6653.86899292469,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1308.5,6660.81343758106,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1309.5,6667.75788223743,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1310.5,6674.70232689381,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1311.5,6681.64677155018,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1312.5,6688.59121620655,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1313.5,6695.53566086292,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1314.5,6702.48010551929,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1315.5,6709.42455017567,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1316.5,6716.36899483204,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1317.5,6723.31343948841,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1318.5,6730.25788414478,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1319.5,6737.20232880116,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1320.5,6744.14677345753,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1321.5,6751.0912181139,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1322.5,6758.03566277027,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1323.5,6764.98010742664,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1324.5,6771.92455208302,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1325.5,6778.86899673939,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1326.5,6785.81344139576,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1327.5,6792.75788605213,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1328.5,6799.7023307085,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1329.5,6806.64677536488,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1330.5,6813.59122002125,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1331.5,6820.53566467762,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1332.5,6827.48010933399,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1333.5,6834.42455399036,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1334.5,6841.36899864674,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1335.5,6848.31344330311,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1336.5,6855.25788795948,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1337.5,6862.20233261585,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1338.5,6869.14677727222,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1339.5,6876.0912219286,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1340.5,6883.03566658497,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1341.5,6889.98011124134,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1342.5,6896.92455589771,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1343.5,6903.86900055408,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1344.5,6910.81344521046,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1345.5,6917.75788986683,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1346.5,6924.7023345232,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1347.5,6931.64677917957,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1348.5,6938.59122383595,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1349.5,6945.53566849232,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1350.5,6952.48011314869,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1351.5,6959.42455780506,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1352.5,6966.36900246143,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1353.5,6973.31344711781,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1354.5,6980.25789177418,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1355.5,6987.20233643055,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1356.5,6994.14678108692,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1357.5,7001.09122574329,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1358.5,7008.03567039967,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1359.5,7014.98011505604,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1360.5,7021.92455971241,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1361.5,7028.86900436878,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1362.5,7035.81344902515,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1363.5,7042.75789368153,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1364.5,7049.7023383379,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1365.5,7056.64678299427,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1366.5,7063.59122765064,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1367.5,7070.53567230701,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1368.5,7077.48011696339,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1369.5,7084.42456161976,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1370.5,7091.36900627613,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1371.5,7098.3134509325,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1372.5,7105.25789558887,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1373.5,7112.20234024525,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1374.5,7119.14678490162,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1375.5,7126.09122955799,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1376.5,7133.03567421436,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1377.5,7139.98011887074,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1378.5,7146.92456352711,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1379.5,7153.86900818348,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1380.5,7160.81345283985,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1381.5,7167.75789749622,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1382.5,7174.7023421526,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1383.5,7181.64678680897,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1384.5,7188.59123146534,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1385.5,7195.53567612171,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1386.5,7202.48012077808,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1387.5,7209.42456543446,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1388.5,7216.36901009083,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1389.5,7223.3134547472,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1390.5,7230.25789940357,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1391.5,7237.20234405994,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1392.5,7244.14678871632,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1393.5,7251.09123337269,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1394.5,7258.03567802906,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1395.5,7264.98012268543,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1396.5,7271.9245673418,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1397.5,7278.86901199818,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1398.5,7285.81345665455,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1399.5,7292.75790131092,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1400.5,7299.70234596729,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1401.5,7306.64679062366,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1402.5,7313.59123528004,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1403.5,7320.53567993641,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1404.5,7327.48012459278,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1405.5,7334.42456924915,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1406.5,7341.36901390553,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1407.5,7348.3134585619,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1408.5,7355.25790321827,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1409.5,7362.20234787464,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1410.5,7369.14679253101,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1411.5,7376.09123718739,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1412.5,7383.03568184376,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1413.5,7389.98012650013,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1414.5,7396.9245711565,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1415.5,7403.86901581287,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1416.5,7410.81346046925,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1417.5,7417.75790512562,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1418.5,7424.70234978199,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1419.5,7431.64679443836,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1420.5,7438.59123909473,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1421.5,7445.53568375111,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1422.5,7452.48012840748,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1423.5,7459.42457306385,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1424.5,7466.36901772022,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1425.5,7473.31346237659,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1426.5,7480.25790703297,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1427.5,7487.20235168934,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1428.5,7494.14679634571,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1429.5,7501.09124100208,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1430.5,7508.03568565845,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1431.5,7514.98013031483,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1432.5,7521.9245749712,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1433.5,7528.86901962757,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1434.5,7535.81346428394,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1435.5,7542.75790894032,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1436.5,7549.70235359669,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1437.5,7556.64679825306,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1438.5,7563.59124290943,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1439.5,7570.5356875658,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1440.5,7577.48013222218,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1441.5,7584.42457687855,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1442.5,7591.36902153492,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1443.5,7598.31346619129,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1444.5,7605.25791084766,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1445.5,7612.20235550404,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1446.5,7619.14680016041,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1447.5,7626.09124481678,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1448.5,7633.03568947315,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1449.5,7639.98013412952,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1450.5,7646.9245787859,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1451.5,7653.86902344227,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1452.5,7660.81346809864,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1453.5,7667.75791275501,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1454.5,7674.70235741138,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1455.5,7681.64680206776,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1456.5,7688.59124672413,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1457.5,7695.5356913805,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1458.5,7702.48013603687,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1459.5,7709.42458069324,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1460.5,7716.36902534962,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1461.5,7723.31347000599,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1462.5,7730.25791466236,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1463.5,7737.20235931873,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1464.5,7744.14680397511,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1465.5,7751.09124863148,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1466.5,7758.03569328785,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1467.5,7764.98013794422,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1468.5,7771.92458260059,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1469.5,7778.86902725697,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1470.5,7785.81347191334,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1471.5,7792.75791656971,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1472.5,7799.70236122608,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1473.5,7806.64680588245,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1474.5,7813.59125053883,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1475.5,7820.5356951952,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1476.5,7827.48013985157,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1477.5,7834.42458450794,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1478.5,7841.36902916431,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1479.5,7848.31347382069,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1480.5,7855.25791847706,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1481.5,7862.20236313343,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1482.5,7869.1468077898,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1483.5,7876.09125244617,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1484.5,7883.03569710255,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1485.5,7889.98014175892,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1486.5,7896.92458641529,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1487.5,7903.86903107166,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1488.5,7910.81347572804,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1489.5,7917.75792038441,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1490.5,7924.70236504078,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1491.5,7931.64680969715,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1492.5,7938.59125435352,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1493.5,7945.5356990099,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1494.5,7952.48014366627,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1495.5,7959.42458832264,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1496.5,7966.36903297901,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1497.5,7973.31347763538,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1498.5,7980.25792229176,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1499.5,7987.20236694813,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1500.5,7994.1468116045,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1501.5,8001.09125626087,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1502.5,8008.03570091724,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1503.5,8014.98014557362,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1504.5,8021.92459022999,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1505.5,8028.86903488636,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1506.5,8035.81347954273,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1507.5,8042.7579241991,25.0000007629395,25.0000007629395,0,2.842372,1339.044,369.4875,325.9858,2300,-195.6853,51.81116,322.5161,-27.43985,45.71116,0,6.1,1,0,0,0,0,0,8.285871,0.6491863,36.7761,45.71116,0,11392.76,-,-
+1508.5,8049.61713087559,24.6931440353394,25.0000007629395,-0.170476,2.842372,1322.608,198.8692,161.4042,2300,-193.713,27.54403,318.5574,-26.82987,22.355,-0.9109742,6.1,1,0,0,0,0,-22.77945,8.184168,0.6255736,36.3247,22.355,0,7639.155,-,-
+1509.5,8056.30586159229,24.0794305801392,25.0000007629395,-0.170476,2.842372,1289.737,193.1074,161.1825,2300,-189.7684,26.08126,310.6401,-25.63029,21.76945,-1.788197,6.1,1,0,0,0,0,-22.21329,7.980762,0.58008,35.42191,21.76945,0,7323.824,-,-
+1510.5,8062.74630463123,23.1855949401855,25.0000007629395,-0.3260994,2.842372,1241.861,38.22844,10.73,2300,-184.0233,4.971509,299.109,-23.93176,1.395409,-2.5239,6.1,1,0,0,0,0,-40.91399,7.684514,0.51785,34.10703,1.395409,0,4202.297,-,-
+1511.5,8068.86064827442,22.0116371154785,25.0000007629395,-0.3260994,2.842372,1178.982,34.07006,10.33692,2300,-177.0033,4.206383,283.9642,-21.85331,1.276224,-3.169841,6.1,1,0,0,0,0,-38.84239,7.295423,0.4431046,32.38009,1.276224,0,3820.404,-,-
+1512.5,8074.64377510548,20.8192565917969,25.0000007629395,-0.3363342,2.842372,1115.116,26.1943,0.08444462,2300,-170.936,3.058831,268.5818,-19.961,0.009860992,-3.05103,6.1,1,0,0,0,0,-37.89133,6.900227,0.3749254,30.62604,0.009860992,0,3525.156,-,-
+1513.5,8080.09056770802,19.6084533691406,25.0000007629395,-0.3363338,2.842372,1050.263,28.59645,-0.2776827,2300,-164.775,3.145132,252.9616,-18.1225,-0.03054047,-2.924327,6.1,1,0,0,0,0,-35.68761,6.498924,0.3132415,28.8449,-0.03054047,0,3419.041,-,-
+1514.5,8085.29953682423,18.7522888183594,21.5000003814697,-0.1393132,2.842372,1004.406,228.8978,189.557,2300,-160.4185,24.07572,241.9165,-16.873,19.93781,-1.962088,6.1,1,0,0,0,0,-14.13677,6.215162,0.2739757,27.58544,19.93781,0,6450.996,-,-
+1515.5,8090.3691931963,18.2507629394531,18,-0.1393127,2.842372,977.543,238.1785,189.42,2242.847,-158.7649,24.38188,229.5959,-16.25245,19.39055,-1.108676,6.1,1,0,0,0,0,-13.75864,6.048938,0.2525761,26.84768,19.39055,0,6336.093,-,-
+1516.5,8095.3691931963,18,18,0,2.842372,964.1117,378.7963,323.7562,2208.664,-158.0261,38.24386,222.9902,-15.95456,32.68693,-0.5430669,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8464.386,-,-
+1517.5,8100.3691931963,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1518.5,8105.3691931963,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1519.5,8110.3691931963,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1520.5,8115.3691931963,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1521.5,8120.3691931963,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1522.5,8125.3691931963,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1523.5,8130.3691931963,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1524.5,8135.3691931963,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1525.5,8140.3691931963,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1526.5,8145.3691931963,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1527.5,8150.3691931963,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1528.5,8155.3691931963,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1529.5,8160.3691931963,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1530.5,8165.3691931963,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1531.5,8170.3691931963,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1532.5,8175.3691931963,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1533.5,8180.3691931963,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1534.5,8185.3691931963,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1535.5,8190.3691931963,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1536.5,8195.3691931963,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1537.5,8200.3691931963,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1538.5,8205.3691931963,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1539.5,8210.3691931963,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1540.5,8215.3691931963,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1541.5,8220.3691931963,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1542.5,8225.3691931963,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1543.5,8230.3691931963,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1544.5,8235.3691931963,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1545.5,8240.3691931963,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1546.5,8245.3691931963,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1547.5,8250.3691931963,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1548.5,8255.3691931963,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1549.5,8260.3691931963,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1550.5,8265.3691931963,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1551.5,8270.3691931963,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1552.5,8275.3691931963,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1553.5,8280.3691931963,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1554.5,8285.3691931963,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1555.5,8290.3691931963,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1556.5,8295.3691931963,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1557.5,8300.3691931963,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+1558.5,8305.94992268085,20.0906261444092,36,1.161459,2.842372,1076.089,1541.227,1444.877,2300,-167.2285,173.6774,259.1819,-18.84461,162.82,4.757382,6.1,1,0,0,0,0,126.2702,6.658733,0.3369222,29.5542,162.82,0,32016.08,-,-
+1559.5,8312.64268648624,24.0939496994019,54,1.062611,2.842372,1290.514,1474.154,1350.823,2300,-189.8617,199.2207,310.8274,-25.65836,182.5533,10.56733,6.1,1,0,0,0,0,138.5434,7.985574,0.58113,35.44326,182.5533,0,36418.5,-,-
+1560.5,8320.35113203526,27.7504039764404,54,0.9687529,2.842372,1486.36,1373.625,1261.676,2204.572,-216.8177,213.8065,343.1445,-33.74796,196.3816,11.32492,6.1,1,0,0,0,0,145.4742,9.197451,0.887886,40.82207,196.3816,0,39203.95,-,-
+1561.5,8328.98560392857,31.084098815918,54,0.8833016,2.842372,1664.919,1282.883,1180.689,2006.94,-244.4133,223.6705,349.9098,-42.61343,205.853,11.71742,6.1,1,0,0,0,0,148.5768,10.30235,1.247855,45.72608,205.853,0,41452.31,-,-
+1562.5,8338.46551477909,34.1276790618897,54,0.8075756,2.842372,1827.939,1202.912,1109.102,1786.455,-269.1686,230.263,341.9655,-51.5246,212.3057,11.85727,6.1,1,0,0,0,0,149.1398,11.3111,1.651466,50.20332,212.3057,0,44295.31,-,-
+1563.5,8348.72469961643,36.9330654144287,54,0.7509727,2.842372,1978.2,1142.907,1055.97,1407.045,-296.967,236.7608,291.4787,-61.51867,218.7512,11.90957,6.1,1,0,0,0,0,150.087,12.2409,2.093126,54.33017,218.7512,0,47817.27,-,-
+1564.5,8359.44389975071,38.5891204833984,54,0.1690569,2.842372,2066.901,558.1893,495.4864,1183.409,-313.7112,120.8175,256.1435,-67.90134,107.2457,7.47176,6.1,1,0,0,0,0,35.30217,12.78978,2.387503,56.7663,107.2457,0,26943.03,-,-
+1565.5,8370.24762785435,38.8934211730957,54,0,2.842372,2083.2,366.9804,332.5614,1142.335,-316.808,80.05759,249.203,-69.11237,72.549,1.408594,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,21102.36,-,-
+1566.5,8381.05135595798,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1567.5,8391.85508406162,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1568.5,8402.65881216526,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1569.5,8413.4625402689,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1570.5,8424.26626837254,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1571.5,8435.06999647617,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1572.5,8445.87372457981,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1573.5,8456.67745268345,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1574.5,8467.48118078709,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1575.5,8478.28490889072,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1576.5,8489.08863699436,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1577.5,8499.892365098,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1578.5,8510.69609320164,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1579.5,8521.49982130528,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1580.5,8532.30354940891,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1581.5,8543.10727751255,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1582.5,8553.91100561619,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1583.5,8564.71473371983,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1584.5,8575.51846182346,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1585.5,8586.3221899271,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1586.5,8597.12591803074,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1587.5,8607.92964613438,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1588.5,8618.73337423801,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1589.5,8629.53710234165,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1590.5,8640.34083044529,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1591.5,8651.14455854893,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1592.5,8661.94828665257,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1593.5,8672.7520147562,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1594.5,8683.55574285984,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1595.5,8694.35947096348,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1596.5,8705.16319906712,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1597.5,8715.96692717075,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1598.5,8726.77065527439,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1599.5,8737.57438337803,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1600.5,8748.37811148167,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1601.5,8759.1818395853,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1602.5,8769.98556768894,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1603.5,8780.78929579258,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1604.5,8791.59302389622,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1605.5,8802.39675199986,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1606.5,8813.20048010349,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1607.5,8824.00420820713,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1608.5,8834.80793631077,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1609.5,8845.61166441441,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1610.5,8856.41539251804,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1611.5,8867.21912062168,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1612.5,8878.02284872532,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1613.5,8888.82657682896,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1614.5,8899.63030493259,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1615.5,8910.43403303623,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1616.5,8921.23776113987,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1617.5,8932.04148924351,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1618.5,8942.84521734715,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1619.5,8953.64894545078,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1620.5,8964.45267355442,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1621.5,8975.25640165806,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1622.5,8986.0601297617,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1623.5,8996.86385786533,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1624.5,9007.66758596897,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1625.5,9018.47131407261,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1626.5,9029.27504217625,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1627.5,9040.07877027988,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1628.5,9050.88249838352,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1629.5,9061.68622648716,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1630.5,9072.4899545908,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1631.5,9083.29368269444,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1632.5,9094.09741079807,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1633.5,9104.90113890171,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1634.5,9115.70486700535,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1635.5,9126.50859510899,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1636.5,9137.31232321262,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1637.5,9148.11605131626,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1638.5,9158.9197794199,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1639.5,9169.72350752354,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1640.5,9180.52723562717,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1641.5,9191.33096373081,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1642.5,9202.13469183445,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1643.5,9212.93841993809,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1644.5,9223.74214804173,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1645.5,9234.54587614536,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1646.5,9245.349604249,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1647.5,9256.15333235264,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1648.5,9266.95706045628,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1649.5,9277.76078855991,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1650.5,9288.56451666355,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1651.5,9299.36824476719,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1652.5,9310.17197287083,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1653.5,9320.97570097446,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1654.5,9331.7794290781,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1655.5,9342.58315718174,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1656.5,9353.38688528538,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1657.5,9364.19061338902,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1658.5,9374.99434149265,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1659.5,9385.79806959629,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1660.5,9396.60179769993,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1661.5,9407.40552580357,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1662.5,9418.2092539072,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1663.5,9429.01298201084,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1664.5,9439.81671011448,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1665.5,9450.62043821812,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1666.5,9461.42416632175,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1667.5,9472.22789442539,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1668.5,9483.03162252903,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1669.5,9493.83535063267,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1670.5,9504.63907873631,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1671.5,9515.44280683994,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1672.5,9526.24653494358,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1673.5,9537.05026304722,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1674.5,9547.85399115086,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1675.5,9558.65771925449,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1676.5,9569.46144735813,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1677.5,9580.26517546177,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1678.5,9591.06890356541,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1679.5,9601.87263166904,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1680.5,9612.67635977268,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1681.5,9623.48008787632,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1682.5,9634.28381597996,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1683.5,9645.0875440836,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1684.5,9655.89127218723,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1685.5,9666.69500029087,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1686.5,9677.49872839451,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1687.5,9688.30245649815,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1688.5,9699.10618460178,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1689.5,9709.90991270542,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1690.5,9720.71364080906,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1691.5,9731.5173689127,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1692.5,9742.32109701633,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1693.5,9753.12482511997,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1694.5,9763.92855322361,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1695.5,9774.73228132725,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1696.5,9785.53600943089,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1697.5,9796.33973753452,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1698.5,9807.14346563816,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1699.5,9817.9471937418,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1700.5,9828.75092184544,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1701.5,9839.55464994907,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1702.5,9850.35837805271,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1703.5,9861.16210615635,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1704.5,9871.96583425999,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1705.5,9882.76956236362,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1706.5,9893.57329046726,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1707.5,9904.3770185709,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1708.5,9915.18074667454,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1709.5,9925.98447477818,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1710.5,9936.78820288181,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1711.5,9947.59193098545,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1712.5,9958.39565908909,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1713.5,9969.19938719273,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1714.5,9980.00311529636,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1715.5,9990.8068434,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1716.5,10001.6105715036,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1717.5,10012.4142996073,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1718.5,10023.2180277109,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1719.5,10034.0217558146,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1720.5,10044.8254839182,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1721.5,10055.6292120218,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1722.5,10066.4329401255,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1723.5,10077.2366682291,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1724.5,10088.0403963327,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1725.5,10098.8441244364,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1726.5,10109.64785254,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1727.5,10120.4515806437,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1728.5,10131.2553087473,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1729.5,10142.0590368509,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1730.5,10152.8627649546,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1731.5,10163.6664930582,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1732.5,10174.4702211618,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1733.5,10185.2739492655,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1734.5,10196.0776773691,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1735.5,10206.8814054728,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1736.5,10217.6851335764,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1737.5,10228.48886168,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1738.5,10239.2925897837,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1739.5,10250.0963178873,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1740.5,10260.9000459909,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1741.5,10271.7037740946,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1742.5,10282.5075021982,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1743.5,10293.3112303019,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1744.5,10304.1149584055,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1745.5,10314.9186865091,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1746.5,10325.7224146128,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1747.5,10336.5261427164,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1748.5,10347.32987082,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1749.5,10358.1335989237,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1750.5,10368.9373270273,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1751.5,10379.741055131,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1752.5,10390.5447832346,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1753.5,10401.3485113382,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1754.5,10412.1522394419,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1755.5,10422.9559675455,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1756.5,10433.7596956491,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1757.5,10444.5634237528,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1758.5,10455.3671518564,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1759.5,10466.1708799601,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1760.5,10476.9746080637,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1761.5,10487.7783361673,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1762.5,10498.582064271,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1763.5,10509.3857923746,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1764.5,10520.1895204782,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1765.5,10530.9932485819,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1766.5,10541.7969766855,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1767.5,10552.6007047892,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1768.5,10563.4044328928,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1769.5,10574.2081609964,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1770.5,10585.0118891001,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1771.5,10595.8156172037,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1772.5,10606.6193453074,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1773.5,10617.423073411,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1774.5,10628.2268015146,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1775.5,10639.0305296183,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1776.5,10649.8342577219,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1777.5,10660.6379858255,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1778.5,10671.4417139292,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1779.5,10682.2454420328,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1780.5,10693.0491701365,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1781.5,10703.8528982401,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1782.5,10714.6566263437,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1783.5,10725.4603544474,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1784.5,10736.264082551,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1785.5,10747.0678106546,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1786.5,10757.8715387583,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1787.5,10768.6752668619,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1788.5,10779.4789949656,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1789.5,10790.2827230692,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1790.5,10801.0864511728,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1791.5,10811.8901792765,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1792.5,10822.6939073801,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1793.5,10833.4976354837,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1794.5,10844.3013635874,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1795.5,10855.105091691,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1796.5,10865.9088197947,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1797.5,10876.7125478983,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1798.5,10887.5162760019,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1799.5,10898.3200041056,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1800.5,10909.1237322092,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1801.5,10919.9274603128,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1802.5,10930.7311884165,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1803.5,10941.5318294764,38.8823078155518,73.9999992370606,-0.006174088,2.842372,2082.605,354.3318,326.5985,1143.836,-316.6949,77.27616,249.459,-69.06794,71.22782,-0.0516553,6.1,1,0,0,0,0,-1.299058,12.88695,2.442336,57.19759,71.22782,0,20708.49,-,-
+1804.5,10952.2278658152,38.5057308197022,73.9999992370606,-0.2030354,2.842372,2062.435,156.641,136.4583,1194.664,-312.8626,33.83096,258.0208,-67.57133,29.47196,-1.740993,6.1,1,0,0,0,0,-42.30587,12.76214,2.372058,56.64363,29.47196,0,14493.91,-,-
+1805.5,10962.7208658457,37.7748001098633,73.9999992370606,-0.2030363,2.842372,2023.285,149.1136,136.0444,1293.322,-305.4241,31.59388,274.0264,-64.71262,28.82481,-3.330924,6.1,1,0,0,0,0,-41.503,12.51988,2.239524,55.5684,28.82481,0,13685.73,-,-
+1806.5,10973.0056215525,37.0251205444336,73.9999992370606,-0.2134523,2.842372,1983.131,138.8218,125.58,1394.595,-297.8792,28.82953,289.6197,-61.86144,26.07958,-3.350047,6.1,1,0,0,0,0,-42.76624,12.27141,2.108816,54.46558,26.07958,0,12823.11,-,-
+1807.5,10983.0769249201,36.2566921234131,73.9999992370606,-0.2134533,2.842372,1941.972,138.6152,125.162,1498.52,-290.2649,28.18917,304.7433,-59.02909,25.4533,-3.364131,6.1,1,0,0,0,0,-41.87884,12.01673,1.980222,53.33519,25.4533,0,12190.59,-,-
+1808.5,10992.9294086695,35.4689414978027,73.9999992370606,-0.2241859,2.842372,1899.779,128.0838,114.389,1605.058,-282.4591,25.48156,319.3173,-56.19365,22.75705,-3.375495,6.1,1,0,0,0,0,-43.0289,11.75564,1.853933,52.17638,22.75705,0,11248.32,-,-
+1809.5,11002.5577064753,34.6618721008301,73.9999992370606,-0.2241869,2.842372,1856.551,127.9523,113.9688,1714.209,-274.4619,24.87617,333.2723,-53.36021,22.15754,-3.381374,6.1,1,0,0,0,0,-42.04999,11.48815,1.730236,50.98914,22.15754,0,10611.77,-,-
+1810.5,11011.9539619684,33.8265197753906,73.9999992370606,-0.2398958,2.842372,1811.808,112.5259,98.38968,1827.185,-266.1845,21.34977,346.6756,-50.50374,18.66768,-3.417907,6.1,1,0,0,0,0,-43.91204,11.21129,1.60813,49.7603,18.66768,0,9589.665,-,-
+1811.5,11021.1103225946,32.9628982543945,73.9999992370606,-0.2398958,2.842372,1765.551,112.3175,97.96245,1895.239,-259.0049,20.76616,350.407,-47.8869,18.11209,-3.445926,6.1,1,0,0,0,0,-42.79092,10.92505,1.488077,48.48988,18.11209,0,9060.507,-,-
+1812.5,11030.0182491541,32.0685356140137,73.9999992370606,-0.2569723,2.842372,1717.647,95.65257,81.05684,1948.412,-252.0588,17.20518,350.4639,-45.33823,14.57982,-3.474643,6.1,1,0,0,0,0,-44.59325,10.62863,1.370209,47.17423,14.57982,0,8108.317,-,-
+1813.5,11038.6692024469,31.143431854248,73.9999992370606,-0.2569733,2.842372,1668.097,95.54398,80.62276,2003.412,-244.8741,16.68988,349.9615,-42.77527,14.0834,-3.493522,6.1,1,0,0,0,0,-43.30699,10.32202,1.255014,45.81336,14.0834,0,7748.213,-,-
+1814.5,11047.0542141199,30.1860420227051,73.9999992370606,-0.274909,2.842372,1616.818,78.19433,62.88408,2060.333,-237.4385,13.2393,348.8405,-40.20137,10.64708,-3.50778,6.1,1,0,0,0,0,-44.90542,10.00471,1.142794,44.405,10.64708,0,7053.639,-,-
+1815.5,11055.1643177271,29.1963729858398,73.9999992370606,-0.2749085,2.842372,1563.809,78.25921,62.4492,2118.991,-229.2095,12.81586,347.0096,-37.53573,10.22679,-3.510926,6.1,1,0,0,0,0,-43.43309,9.676695,1.034037,42.94915,10.22679,0,6678.043,-,-
+1816.5,11062.9903637171,28.1737655639648,73.9999992370606,-0.2932067,2.842372,1509.036,60.78367,44.36129,2179.515,-220.4458,9.605396,344.4198,-34.83616,7.010235,-3.504839,6.1,1,0,0,0,0,-44.70153,9.337767,0.929146,41.44485,7.010235,0,5964.435,-,-
+1817.5,11070.5232030153,27.1182214736938,73.9999992370606,-0.2932062,2.842372,1452.5,61.11034,43.92941,2241.988,-211.3999,9.295214,341.0185,-32.15508,6.6819,-3.486687,6.1,1,0,0,0,0,-43.0267,8.987923,0.828577,39.8921,6.6819,0,5715.438,-,-
+1818.5,11077.7533866167,26.0286609649658,73.9999992370606,-0.3121057,2.842372,1394.141,43.35394,25.26702,2300,-202.2969,6.329419,335.7864,-29.53415,3.688835,-3.459417,6.1,1,0,0,0,0,-43.95994,8.626804,0.7326638,38.28931,3.688835,0,5101.243,-,-
+1819.5,11084.6714640856,24.9050788879395,73.9999992370606,-0.3121057,2.842372,1333.96,44.03621,24.84314,2300,-195.0752,6.151505,321.2915,-27.25043,3.470387,-3.418882,6.1,1,0,0,0,0,-42.06231,8.254411,0.6418197,36.63647,3.470387,0,4766.58,-,-
+1820.5,11091.4096494913,24.2574674606323,48.9999984741211,-0.04767895,2.842372,1299.273,310.5698,279.7161,2300,-190.9127,42.25598,312.9369,-25.97549,38.05804,-1.902056,6.1,1,0,0,0,0,-6.258579,8.039769,0.5930423,35.6838,38.05804,0,9631.513,-,-
+1821.5,11098.1001554728,24.0858215332031,23.9999994277954,-0.04767942,2.842372,1290.079,321.1376,279.6542,2300,-189.8095,43.38465,310.7225,-25.64264,37.78037,-0.4957251,6.1,1,0,0,0,0,-6.214355,7.98288,0.580542,35.4313,37.78037,0,9778.27,-,-
+1822.5,11104.7668219805,23.9999994277954,23.9999994277954,0,2.842372,1285.482,369.1057,325.6229,2300,-189.2579,49.68731,309.6154,-25.47702,43.83385,-0.2465425,6.1,1,0,0,0,0,0,7.954436,0.5743583,35.30506,43.83385,0,10829.12,-,-
+1823.5,11111.4334884882,23.9999994277954,23.9999994277954,0,2.842372,1285.482,370.9372,325.6229,2300,-189.2579,49.93385,309.6154,-25.47702,43.83385,0,6.1,1,0,0,0,0,0,7.954436,0.5743583,35.30506,43.83385,0,10871.06,-,-
+1824.5,11118.1001549959,23.9999994277954,23.9999994277954,0,2.842372,1285.482,370.9372,325.6229,2300,-189.2579,49.93385,309.6154,-25.47702,43.83385,0,6.1,1,0,0,0,0,0,7.954436,0.5743583,35.30506,43.83385,0,10871.06,-,-
+1825.5,11124.7668215036,23.9999994277954,23.9999994277954,0,2.842372,1285.482,370.9372,325.6229,2300,-189.2579,49.93385,309.6154,-25.47702,43.83385,0,6.1,1,0,0,0,0,0,7.954436,0.5743583,35.30506,43.83385,0,10871.06,-,-
+1826.5,11131.4334880114,23.9999994277954,23.9999994277954,0,2.842372,1285.482,370.9372,325.6229,2300,-189.2579,49.93385,309.6154,-25.47702,43.83385,0,6.1,1,0,0,0,0,0,7.954436,0.5743583,35.30506,43.83385,0,10871.06,-,-
+1827.5,11138.1001545191,23.9999994277954,23.9999994277954,0,2.842372,1285.482,370.9372,325.6229,2300,-189.2579,49.93385,309.6154,-25.47702,43.83385,0,6.1,1,0,0,0,0,0,7.954436,0.5743583,35.30506,43.83385,0,10871.06,-,-
+1828.5,11144.7668210268,23.9999994277954,23.9999994277954,0,2.842372,1285.482,370.9372,325.6229,2300,-189.2579,49.93385,309.6154,-25.47702,43.83385,0,6.1,1,0,0,0,0,0,7.954436,0.5743583,35.30506,43.83385,0,10871.06,-,-
+1829.5,11151.4334875345,23.9999994277954,23.9999994277954,0,2.842372,1285.482,370.9372,325.6229,2300,-189.2579,49.93385,309.6154,-25.47702,43.83385,0,6.1,1,0,0,0,0,0,7.954436,0.5743583,35.30506,43.83385,0,10871.06,-,-
+1830.5,11158.1001540422,23.9999994277954,23.9999994277954,0,2.842372,1285.482,370.9372,325.6229,2300,-189.2579,49.93385,309.6154,-25.47702,43.83385,0,6.1,1,0,0,0,0,0,7.954436,0.5743583,35.30506,43.83385,0,10871.06,-,-
+1831.5,11164.76682055,23.9999994277954,23.9999994277954,0,2.842372,1285.482,370.9372,325.6229,2300,-189.2579,49.93385,309.6154,-25.47702,43.83385,0,6.1,1,0,0,0,0,0,7.954436,0.5743583,35.30506,43.83385,0,10871.06,-,-
+1832.5,11171.4334870577,23.9999994277954,23.9999994277954,0,2.842372,1285.482,370.9372,325.6229,2300,-189.2579,49.93385,309.6154,-25.47702,43.83385,0,6.1,1,0,0,0,0,0,7.954436,0.5743583,35.30506,43.83385,0,10871.06,-,-
+1833.5,11178.1001535654,23.9999994277954,23.9999994277954,0,2.842372,1285.482,370.9372,325.6229,2300,-189.2579,49.93385,309.6154,-25.47702,43.83385,0,6.1,1,0,0,0,0,0,7.954436,0.5743583,35.30506,43.83385,0,10871.06,-,-
+1834.5,11184.7668200731,23.9999994277954,23.9999994277954,0,2.842372,1285.482,370.9372,325.6229,2300,-189.2579,49.93385,309.6154,-25.47702,43.83385,0,6.1,1,0,0,0,0,0,7.954436,0.5743583,35.30506,43.83385,0,10871.06,-,-
+1835.5,11191.4334865808,23.9999994277954,23.9999994277954,0,2.842372,1285.482,370.9372,325.6229,2300,-189.2579,49.93385,309.6154,-25.47702,43.83385,0,6.1,1,0,0,0,0,0,7.954436,0.5743583,35.30506,43.83385,0,10871.06,-,-
+1836.5,11198.1001530886,23.9999994277954,23.9999994277954,0,2.842372,1285.482,370.9372,325.6229,2300,-189.2579,49.93385,309.6154,-25.47702,43.83385,0,6.1,1,0,0,0,0,0,7.954436,0.5743583,35.30506,43.83385,0,10871.06,-,-
+1837.5,11204.7668195963,23.9999994277954,23.9999994277954,0,2.842372,1285.482,370.9372,325.6229,2300,-189.2579,49.93385,309.6154,-25.47702,43.83385,0,6.1,1,0,0,0,0,0,7.954436,0.5743583,35.30506,43.83385,0,10871.06,-,-
+1838.5,11211.9427763224,25.8334442138672,48.9999984741211,1.018581,2.842372,1383.685,1388.756,1308.988,2300,-201.0422,201.2295,333.268,-29.13083,189.6712,5.458364,6.1,1,0,0,0,0,142.3906,8.562103,0.716302,38.00214,189.6712,0,37019.52,-,-
+1839.5,11220.0917841196,29.3364280700684,73.9999992370606,0.9275221,2.842372,1571.311,1329.806,1222.569,2110.702,-230.4097,218.816,347.3102,-37.91329,201.1704,11.54553,6.1,1,0,0,0,0,147.2431,9.723114,1.048989,43.15518,201.1704,0,40139.59,-,-
+1840.5,11229.1282030344,32.5311080932617,73.9999992370606,0.8472992,2.842372,1742.423,1244.78,1146.637,1920.91,-255.6514,227.1302,350.5011,-46.64772,209.2225,11.80766,6.1,1,0,0,0,0,149.1555,10.78194,1.430362,47.85469,209.2225,0,42649.26,-,-
+1841.5,11238.9770923853,35.456001663208,73.9999992370606,0.7776409,2.842372,1899.086,1171.316,1080.907,1606.808,-282.3309,232.9417,319.5489,-56.14765,214.9619,11.87984,6.1,1,0,0,0,0,149.2012,11.75135,1.851904,52.15734,214.9619,0,45838.89,-,-
+1842.5,11249.4978119135,37.8745903015137,73.9999992370606,0.5660181,2.842372,2028.63,956.6448,878.0547,1279.853,-306.4397,203.2273,271.8889,-65.09931,186.5318,10.5955,6.1,1,0,0,0,0,116.0064,12.55296,2.25732,55.71519,186.5318,0,41488.63,-,-
+1843.5,11260.3015400171,38.8934211730957,73.9999992370606,0,2.842372,2083.2,381.9424,332.5614,1142.335,-316.808,83.32158,249.203,-69.11237,72.549,4.67258,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,21556.01,-,-
+1844.5,11271.1052681208,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1845.5,11281.9089962244,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1846.5,11292.712724328,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1847.5,11303.5164524317,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1848.5,11314.3201805353,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1849.5,11325.123908639,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1850.5,11335.9276367426,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1851.5,11346.7313648462,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1852.5,11357.5350929499,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1853.5,11368.3388210535,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1854.5,11379.1425491571,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1855.5,11389.9462772608,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1856.5,11400.7500053644,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1857.5,11411.5537334681,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1858.5,11422.3574615717,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1859.5,11433.1611896753,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1860.5,11443.964917779,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1861.5,11454.7686458826,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1862.5,11465.5723739862,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1863.5,11476.3761020899,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1864.5,11487.1798301935,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1865.5,11497.9835582972,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1866.5,11508.7872864008,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1867.5,11519.5910145044,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1868.5,11530.3947426081,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1869.5,11541.1984707117,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1870.5,11552.0021988153,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1871.5,11562.805926919,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1872.5,11573.6096550226,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1873.5,11584.4133831263,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1874.5,11595.2171112299,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1875.5,11606.0208393335,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1876.5,11616.8245674372,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1877.5,11627.6282955408,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1878.5,11638.4320236444,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1879.5,11649.2357517481,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1880.5,11660.0394798517,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1881.5,11670.8432079554,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1882.5,11681.646936059,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1883.5,11692.4506641626,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1884.5,11703.2543922663,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1885.5,11714.0581203699,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1886.5,11724.8618484735,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1887.5,11735.6655765772,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1888.5,11746.4693046808,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1889.5,11757.2730327845,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1890.5,11768.0767608881,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1891.5,11778.8804889917,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1892.5,11789.6842170954,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1893.5,11800.487945199,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1894.5,11811.2916733027,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1895.5,11822.0954014063,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1896.5,11832.8991295099,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1897.5,11843.7028576136,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1898.5,11854.5065857172,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1899.5,11865.3103138208,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1900.5,11876.1140419245,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1901.5,11886.9177700281,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1902.5,11897.7214981318,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1903.5,11908.5252262354,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1904.5,11919.328954339,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1905.5,11930.1326824427,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1906.5,11940.9364105463,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1907.5,11951.7401386499,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1908.5,11962.5438667536,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1909.5,11973.3475948572,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1910.5,11984.1513229609,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1911.5,11994.9550510645,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1912.5,12005.7587791681,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1913.5,12016.5625072718,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1914.5,12027.3662353754,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1915.5,12038.169963479,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1916.5,12048.9736915827,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1917.5,12059.7774196863,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1918.5,12070.58114779,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1919.5,12081.3848758936,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1920.5,12092.1886039972,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1921.5,12102.9923321009,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1922.5,12113.7960602045,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1923.5,12124.5997883081,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1924.5,12135.4035164118,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1925.5,12146.2072445154,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1926.5,12157.0109726191,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1927.5,12167.8147007227,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1928.5,12178.6184288263,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1929.5,12189.42215693,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1930.5,12200.2258850336,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1931.5,12211.0296131372,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1932.5,12221.8333412409,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1933.5,12232.6370693445,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1934.5,12243.4407974482,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1935.5,12254.2445255518,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1936.5,12265.0482536554,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1937.5,12275.8519817591,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1938.5,12286.6557098627,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1939.5,12297.4594379663,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1940.5,12308.26316607,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1941.5,12319.0668941736,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1942.5,12329.8706222773,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1943.5,12340.6743503809,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1944.5,12351.4780784845,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1945.5,12362.2818065882,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1946.5,12373.0855346918,38.8934211730957,79.4999954223633,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1947.5,12383.8892627954,38.8934211730957,84.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1948.5,12394.6929908991,38.8934211730957,84.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1949.5,12405.4967190027,38.8934211730957,84.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1950.5,12416.3004471064,38.8934211730957,84.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1951.5,12427.10417521,38.8934211730957,84.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1952.5,12437.9079033136,38.8934211730957,84.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1953.5,12448.7116314173,38.8934211730957,84.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1954.5,12459.5153595209,38.8934211730957,84.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1955.5,12470.3190876246,38.8934211730957,84.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1956.5,12481.1228157282,38.8934211730957,84.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1957.5,12491.9265438318,38.8934211730957,84.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1958.5,12502.7302719355,38.8934211730957,84.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1959.5,12513.5340000391,38.8934211730957,84.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1960.5,12524.3377281427,38.8934211730957,84.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1961.5,12535.1414562464,38.8934211730957,84.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1962.5,12545.94518435,38.8934211730957,84.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1963.5,12556.7489124537,38.8934211730957,84.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1964.5,12567.5526405573,38.8934211730957,84.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1965.5,12578.3563686609,38.8934211730957,84.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1966.5,12589.1600967646,38.8934211730957,84.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1967.5,12599.9638248682,38.8934211730957,84.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1968.5,12610.7675529718,38.8934211730957,84.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1969.5,12621.5712810755,38.8934211730957,84.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1970.5,12632.3750091791,38.8934211730957,84.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1971.5,12643.1787372828,38.8934211730957,84.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1972.5,12653.9824653864,38.8934211730957,84.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1973.5,12664.78619349,38.8934211730957,84.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1974.5,12675.5899215937,38.8934211730957,84.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1975.5,12686.3936496973,38.8934211730957,84.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1976.5,12697.1973778009,38.8934211730957,84.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1977.5,12708.0011059046,38.8934211730957,84.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1978.5,12718.8048340082,38.8934211730957,84.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1979.5,12729.6085621119,38.8934211730957,84.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1980.5,12740.4122902155,38.8934211730957,84.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1981.5,12751.2160183191,38.8934211730957,84.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1982.5,12762.0197464228,38.8934211730957,84.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1983.5,12772.8234745264,38.8934211730957,84.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1984.5,12783.62720263,38.8934211730957,84.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1985.5,12794.4309307337,38.8934211730957,84.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1986.5,12805.2346588373,38.8934211730957,84.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1987.5,12816.038386941,38.8934211730957,84.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1988.5,12826.8421150446,38.8934211730957,84.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1989.5,12837.6458431482,38.8934211730957,84.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1990.5,12848.4495712519,38.8934211730957,84.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1991.5,12859.2532993555,38.8934211730957,84.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1992.5,12870.0570274591,38.8934211730957,84.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1993.5,12880.8607555628,38.8934211730957,84.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1994.5,12891.6644836664,38.8934211730957,84.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1995.5,12902.4682117701,38.8934211730957,84.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1996.5,12913.2719398737,38.8934211730957,84.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1997.5,12924.0756679773,38.8934211730957,84.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1998.5,12934.879396081,38.8934211730957,84.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+1999.5,12945.6831241846,38.8934211730957,84.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2000.5,12956.4868522882,38.8934211730957,84.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2001.5,12967.2905803919,38.8934211730957,84.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2002.5,12978.0943084955,38.8934211730957,84.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2003.5,12988.8980365992,38.8934211730957,84.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2004.5,12999.7017647028,38.8934211730957,77.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2005.5,13010.5054928064,38.8934211730957,70.9999969482422,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2006.5,13021.3092209101,38.8934211730957,70.9999969482422,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2007.5,13032.1129490137,38.8934211730957,70.9999969482422,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2008.5,13042.9166771173,38.8934211730957,70.9999969482422,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2009.5,13053.720405221,38.8934211730957,70.9999969482422,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2010.5,13064.5241333246,38.8934211730957,70.9999969482422,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2011.5,13075.3278614283,38.8934211730957,70.9999969482422,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2012.5,13086.1315895319,38.8934211730957,70.9999969482422,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2013.5,13096.9353176355,38.8934211730957,70.9999969482422,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2014.5,13107.7390457392,38.8934211730957,70.9999969482422,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2015.5,13118.5427738428,38.8934211730957,70.9999969482422,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2016.5,13129.3465019464,38.8934211730957,70.9999969482422,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2017.5,13140.1502300501,38.8934211730957,70.9999969482422,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2018.5,13150.9539581537,38.8934211730957,70.9999969482422,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2019.5,13161.7576862574,38.8934211730957,70.9999969482422,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2020.5,13172.561414361,38.8934211730957,70.9999969482422,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2021.5,13183.3651424646,38.8934211730957,70.9999969482422,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2022.5,13194.1688705683,38.8934211730957,70.9999969482422,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2023.5,13204.9725986719,38.8934211730957,70.9999969482422,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2024.5,13215.7763267756,38.8934211730957,70.9999969482422,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2025.5,13226.5800548792,38.8934211730957,70.9999969482422,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2026.5,13237.3837829828,38.8934211730957,70.9999969482422,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2027.5,13248.1875110865,38.8934211730957,70.9999969482422,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2028.5,13258.9912391901,38.8934211730957,70.9999969482422,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2029.5,13269.7949672937,38.8934211730957,70.9999969482422,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2030.5,13280.5986953974,38.8934211730957,70.9999969482422,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2031.5,13291.402423501,38.8934211730957,70.9999969482422,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2032.5,13302.2061516047,38.8934211730957,77.5000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2033.5,13313.0098797083,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2034.5,13323.8136078119,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2035.5,13334.6173359156,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2036.5,13345.4210640192,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2037.5,13356.2247921228,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2038.5,13367.0285202265,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2039.5,13377.8322483301,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2040.5,13388.6359764338,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2041.5,13399.4397045374,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2042.5,13410.243432641,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2043.5,13421.0471607447,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2044.5,13431.8508888483,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2045.5,13442.6546169519,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2046.5,13453.4583450556,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2047.5,13464.2620731592,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2048.5,13475.0658012629,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2049.5,13485.8695293665,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2050.5,13496.6732574701,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2051.5,13507.4769855738,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2052.5,13518.2807136774,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2053.5,13529.084441781,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2054.5,13539.8881698847,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2055.5,13550.6918979883,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2056.5,13561.495626092,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2057.5,13572.2993541956,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2058.5,13583.1030822992,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2059.5,13593.9068104029,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2060.5,13604.7105385065,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2061.5,13615.5142666101,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2062.5,13626.3179947138,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2063.5,13637.1217228174,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2064.5,13647.9254509211,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2065.5,13658.7291790247,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2066.5,13669.5329071283,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2067.5,13680.336635232,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2068.5,13691.1403633356,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2069.5,13701.9440914392,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2070.5,13712.7478195429,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2071.5,13723.5515476465,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2072.5,13734.3552757502,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2073.5,13745.1590038538,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2074.5,13755.9627319574,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2075.5,13766.7664600611,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2076.5,13777.5701881647,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2077.5,13788.3739162683,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2078.5,13799.177644372,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2079.5,13809.9813724756,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2080.5,13820.7851005793,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2081.5,13831.5888286829,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2082.5,13842.3925567865,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2083.5,13853.1962848902,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2084.5,13864.0000129938,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2085.5,13874.8037410975,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2086.5,13885.6074692011,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2087.5,13896.4111973047,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2088.5,13907.2149254084,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2089.5,13918.018653512,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2090.5,13928.8223816156,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2091.5,13939.6261097193,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2092.5,13950.4298378229,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2093.5,13961.2335659266,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2094.5,13972.0372940302,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2095.5,13982.8410221338,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2096.5,13993.6447502375,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2097.5,14004.4484783411,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2098.5,14015.2522064447,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2099.5,14026.0559345484,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2100.5,14036.859662652,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2101.5,14047.6633907557,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2102.5,14058.4671188593,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2103.5,14069.2708469629,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2104.5,14080.0745750666,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2105.5,14090.8783031702,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2106.5,14101.6820312738,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2107.5,14112.4857593775,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2108.5,14123.2894874811,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2109.5,14134.0932155848,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2110.5,14144.8969436884,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2111.5,14155.700671792,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2112.5,14166.5043998957,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2113.5,14177.3081279993,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2114.5,14188.1118561029,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2115.5,14198.9155842066,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2116.5,14209.7193123102,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2117.5,14220.5230404139,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2118.5,14231.3267685175,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2119.5,14242.1304966211,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2120.5,14252.9342247248,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2121.5,14263.7379528284,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2122.5,14274.541680932,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2123.5,14285.3454090357,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2124.5,14296.1491371393,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2125.5,14306.952865243,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2126.5,14317.7565933466,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2127.5,14328.5603214502,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2128.5,14339.3640495539,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2129.5,14350.1677776575,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2130.5,14360.9715057611,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2131.5,14371.7752338648,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2132.5,14382.5789619684,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2133.5,14393.3826900721,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2134.5,14404.1864181757,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2135.5,14414.9901462793,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2136.5,14425.793874383,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2137.5,14436.5976024866,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2138.5,14447.4013305902,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2139.5,14458.2050586939,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2140.5,14469.0087867975,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2141.5,14479.8125149012,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2142.5,14490.6162430048,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2143.5,14501.4199711084,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2144.5,14512.2236992121,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2145.5,14523.0274273157,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2146.5,14533.8311554194,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2147.5,14544.634883523,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2148.5,14555.4386116266,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2149.5,14566.2423397303,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2150.5,14577.0460678339,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2151.5,14587.8497959375,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2152.5,14598.6535240412,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2153.5,14609.4572521448,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2154.5,14620.2609802485,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2155.5,14631.0647083521,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2156.5,14641.8684364557,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2157.5,14652.6721645594,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2158.5,14663.475892663,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2159.5,14674.2796207666,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2160.5,14685.0833488703,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2161.5,14695.8870769739,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2162.5,14706.6908050776,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2163.5,14717.4945331812,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2164.5,14728.2982612848,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2165.5,14739.1019893885,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2166.5,14749.9057174921,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2167.5,14760.7094455957,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2168.5,14771.5131736994,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2169.5,14782.316901803,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2170.5,14793.1206299067,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2171.5,14803.9243580103,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2172.5,14814.7280861139,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2173.5,14825.5318142176,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2174.5,14836.3355423212,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2175.5,14847.1392704248,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2176.5,14857.9429985285,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2177.5,14868.7467266321,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2178.5,14879.5504547358,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2179.5,14890.3541828394,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2180.5,14901.157910943,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2181.5,14911.9616390467,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2182.5,14922.7653671503,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2183.5,14933.5690952539,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2184.5,14944.3728233576,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2185.5,14955.1765514612,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2186.5,14965.9802795649,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2187.5,14976.7840076685,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2188.5,14987.5877357721,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2189.5,14998.3914638758,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2190.5,15009.1951919794,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2191.5,15019.998920083,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2192.5,15030.8026481867,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2193.5,15041.6063762903,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2194.5,15052.410104394,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2195.5,15063.2138324976,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2196.5,15074.0175606012,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2197.5,15084.8212887049,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2198.5,15095.6250168085,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2199.5,15106.4287449121,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2200.5,15117.2324730158,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2201.5,15128.0362011194,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2202.5,15138.8399292231,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2203.5,15149.6436573267,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2204.5,15160.4473854303,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2205.5,15171.251113534,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2206.5,15182.0548416376,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2207.5,15192.8585697412,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2208.5,15203.6622978449,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2209.5,15214.4660259485,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2210.5,15225.2697540522,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2211.5,15236.0734821558,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2212.5,15246.8772102594,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2213.5,15257.6809383631,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2214.5,15268.4846664667,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2215.5,15279.2883945704,38.8934211730957,84.0000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2216.5,15290.092122674,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2217.5,15300.8958507776,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2218.5,15311.6995788813,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2219.5,15322.5033069849,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2220.5,15333.3070350885,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2221.5,15344.1107631922,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2222.5,15354.9144912958,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2223.5,15365.7182193995,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2224.5,15376.5219475031,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2225.5,15387.3256756067,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2226.5,15398.1294037104,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2227.5,15408.933131814,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2228.5,15419.7368599176,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2229.5,15430.5405880213,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2230.5,15441.3443161249,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2231.5,15452.1480442286,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2232.5,15462.9517723322,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2233.5,15473.7555004358,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2234.5,15484.5592285395,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2235.5,15495.3629566431,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2236.5,15506.1666847467,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2237.5,15516.9704128504,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2238.5,15527.774140954,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2239.5,15538.5778690577,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2240.5,15549.3815971613,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2241.5,15560.1853252649,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2242.5,15570.9890533686,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2243.5,15581.7927814722,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2244.5,15592.5965095758,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2245.5,15603.4002376795,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2246.5,15614.2039657831,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2247.5,15625.0076938868,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2248.5,15635.8114219904,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2249.5,15646.615150094,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2250.5,15657.4188781977,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2251.5,15668.2226063013,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2252.5,15679.0263344049,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2253.5,15689.8300625086,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2254.5,15700.6337906122,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2255.5,15711.4375187159,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2256.5,15722.2412468195,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2257.5,15733.0449749231,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2258.5,15743.8487030268,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2259.5,15754.6524311304,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2260.5,15765.456159234,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2261.5,15776.2598873377,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2262.5,15787.0636154413,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2263.5,15797.867343545,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2264.5,15808.6710716486,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2265.5,15819.4747997522,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2266.5,15830.2785278559,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2267.5,15841.0822559595,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2268.5,15851.8859840631,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2269.5,15862.6897121668,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2270.5,15873.4934402704,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2271.5,15884.2971683741,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2272.5,15895.1008964777,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2273.5,15905.9046245813,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2274.5,15916.708352685,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2275.5,15927.5120807886,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2276.5,15938.3158088923,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2277.5,15949.1195369959,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2278.5,15959.9232650995,38.8934211730957,61.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2279.5,15970.7269932032,38.8934211730957,68.0000015258789,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2280.5,15981.5307213068,38.8934211730957,68.0000015258789,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2281.5,15992.3344494104,38.8934211730957,68.0000015258789,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2282.5,16003.1381775141,38.8934211730957,68.0000015258789,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2283.5,16013.9419056177,38.8934211730957,68.0000015258789,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2284.5,16024.7456337214,38.8934211730957,68.0000015258789,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2285.5,16035.549361825,38.8934211730957,68.0000015258789,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2286.5,16046.3530899286,38.8934211730957,68.0000015258789,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2287.5,16057.1568180323,38.8934211730957,68.0000015258789,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2288.5,16067.9605461359,38.8934211730957,68.0000015258789,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2289.5,16078.7642742395,38.8934211730957,68.0000015258789,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2290.5,16089.5680023432,38.8934211730957,68.0000015258789,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2291.5,16100.3717304468,38.8934211730957,68.0000015258789,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2292.5,16111.1754585505,38.8934211730957,70.9999969482422,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2293.5,16121.9791866541,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2294.5,16132.7829147577,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2295.5,16143.5866428614,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2296.5,16154.390370965,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2297.5,16165.1940990686,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2298.5,16175.9978271723,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2299.5,16186.8015552759,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2300.5,16197.6052833796,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2301.5,16208.4090114832,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2302.5,16219.2127395868,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2303.5,16230.0164676905,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2304.5,16240.8201957941,38.8934211730957,76.5,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2305.5,16251.6239238977,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2306.5,16262.4276520014,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2307.5,16273.231380105,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2308.5,16284.0351082087,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2309.5,16294.8388363123,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2310.5,16305.6425644159,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2311.5,16316.4462925196,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2312.5,16327.2500206232,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2313.5,16338.0537487268,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2314.5,16348.8574768305,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2315.5,16359.6612049341,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2316.5,16370.4649330378,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2317.5,16381.2686611414,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2318.5,16392.072389245,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2319.5,16402.8761173487,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2320.5,16413.6798454523,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2321.5,16424.4835735559,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2322.5,16435.2873016596,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2323.5,16446.0910297632,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2324.5,16456.8947578669,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2325.5,16467.6984859705,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2326.5,16478.5022140741,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2327.5,16489.3059421778,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2328.5,16500.1096702814,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2329.5,16510.913398385,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2330.5,16521.7171264887,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2331.5,16532.5208545923,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2332.5,16543.324582696,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2333.5,16554.1283107996,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2334.5,16564.9320389032,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2335.5,16575.7357670069,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2336.5,16586.5394951105,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2337.5,16597.3432232141,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2338.5,16608.1469513178,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2339.5,16618.9506794214,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2340.5,16629.7544075251,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2341.5,16640.5581356287,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2342.5,16651.3618637323,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2343.5,16662.165591836,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2344.5,16672.9693199396,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2345.5,16683.7730480433,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2346.5,16694.5767761469,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2347.5,16705.3805042505,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2348.5,16716.1842323542,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2349.5,16726.9879604578,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2350.5,16737.7916885614,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2351.5,16748.5954166651,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2352.5,16759.3991447687,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2353.5,16770.2028728724,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2354.5,16781.006600976,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2355.5,16791.8103290796,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2356.5,16802.6140571833,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2357.5,16813.4177852869,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2358.5,16824.2215133905,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2359.5,16835.0252414942,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2360.5,16845.8289695978,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2361.5,16856.6326977015,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2362.5,16867.4364258051,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2363.5,16878.2401539087,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2364.5,16889.0438820124,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2365.5,16899.847610116,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2366.5,16910.6513382196,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2367.5,16921.4550663233,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2368.5,16932.2587944269,38.8934211730957,70.4999954223633,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2369.5,16943.0625225306,38.8934211730957,72,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2370.5,16953.8662506342,38.8934211730957,72,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2371.5,16964.6699787378,38.8934211730957,72,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2372.5,16975.4737068415,38.8934211730957,72,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2373.5,16986.2774349451,38.8934211730957,72,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2374.5,16997.0811630487,38.8934211730957,72,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2375.5,17007.8848911524,38.8934211730957,72,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2376.5,17018.688619256,38.8934211730957,72,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2377.5,17029.4923473597,38.8934211730957,72,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2378.5,17040.2960754633,38.8934211730957,72,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2379.5,17051.0998035669,38.8934211730957,72,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2380.5,17061.9035316706,38.8934211730957,72,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2381.5,17072.7072597742,38.8934211730957,72,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2382.5,17083.5109878778,38.8934211730957,72,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2383.5,17094.3147159815,38.8934211730957,72,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2384.5,17105.1184440851,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2385.5,17115.9221721888,38.8934211730957,75.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2386.5,17126.7259002924,38.8934211730957,75.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2387.5,17137.529628396,38.8934211730957,75.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2388.5,17148.3333564997,38.8934211730957,75.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2389.5,17159.1370846033,38.8934211730957,75.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2390.5,17169.9408127069,38.8934211730957,75.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2391.5,17180.7445408106,38.8934211730957,75.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2392.5,17191.5482689142,38.8934211730957,75.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2393.5,17202.3519970179,38.8934211730957,75.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2394.5,17213.1557251215,38.8934211730957,75.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2395.5,17223.9594532251,38.8934211730957,75.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2396.5,17234.7631813288,38.8934211730957,75.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2397.5,17245.5669094324,38.8934211730957,75.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2398.5,17256.370637536,38.8934211730957,75.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2399.5,17267.1743656397,38.8934211730957,75.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2400.5,17277.9780937433,38.8934211730957,75.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2401.5,17288.781821847,38.8934211730957,75.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2402.5,17299.5855499506,38.8934211730957,75.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2403.5,17310.3892780542,38.8934211730957,75.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2404.5,17321.1930061579,38.8934211730957,75.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2405.5,17331.9967342615,38.8934211730957,75.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2406.5,17342.8004623652,38.8934211730957,75.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2407.5,17353.6041904688,38.8934211730957,75.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2408.5,17364.4079185724,38.8934211730957,75.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2409.5,17375.2116466761,38.8934211730957,75.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2410.5,17386.0153747797,38.8934211730957,75.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2411.5,17396.8191028833,38.8934211730957,75.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2412.5,17407.622830987,38.8934211730957,75.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2413.5,17418.4265590906,38.8934211730957,75.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2414.5,17429.2302871943,38.8934211730957,75.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2415.5,17440.0340152979,38.8934211730957,75.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2416.5,17450.8377434015,38.8934211730957,75.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2417.5,17461.6414715052,38.8934211730957,75.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2418.5,17472.4451996088,38.8934211730957,75.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2419.5,17483.2489277124,38.8934211730957,75.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2420.5,17494.0526558161,38.8934211730957,75.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2421.5,17504.8563839197,38.8934211730957,75.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2422.5,17515.6601120234,38.8934211730957,75.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2423.5,17526.463840127,38.8934211730957,75.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2424.5,17537.2675682306,38.8934211730957,75.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2425.5,17548.0712963343,38.8934211730957,75.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2426.5,17558.8750244379,38.8934211730957,75.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2427.5,17569.6787525415,38.8934211730957,75.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2428.5,17580.4824806452,38.8934211730957,75.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2429.5,17591.2862087488,38.8934211730957,75.9999984741211,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2430.5,17602.0899368525,38.8934211730957,70.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2431.5,17612.8936649561,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2432.5,17623.6973930597,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2433.5,17634.5011211634,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2434.5,17645.304849267,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2435.5,17656.1085773706,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2436.5,17666.9123054743,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2437.5,17677.7160335779,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2438.5,17688.5197616816,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2439.5,17699.3234897852,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2440.5,17710.1272178888,38.8934211730957,59.0000015258789,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2441.5,17720.9309459925,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2442.5,17731.7346740961,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2443.5,17742.5384021997,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2444.5,17753.3421303034,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2445.5,17764.145858407,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2446.5,17774.9495865107,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2447.5,17785.7533146143,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2448.5,17796.5570427179,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2449.5,17807.3607708216,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2450.5,17818.1644989252,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2451.5,17828.9682270288,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2452.5,17839.7719551325,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2453.5,17850.5756832361,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2454.5,17861.3794113398,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2455.5,17872.1831394434,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2456.5,17882.986867547,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2457.5,17893.7905956507,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2458.5,17904.5943237543,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2459.5,17915.3980518579,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2460.5,17926.2017799616,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2461.5,17937.0055080652,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2462.5,17947.8092361689,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2463.5,17958.6129642725,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2464.5,17969.4166923761,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2465.5,17980.2204204798,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2466.5,17991.0241485834,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2467.5,18001.8278766871,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2468.5,18012.6316047907,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2469.5,18023.4353328943,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2470.5,18034.239060998,38.8934211730957,56.5000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2471.5,18045.0427891016,38.8934211730957,59.0000015258789,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2472.5,18055.8465172052,38.8934211730957,59.0000015258789,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2473.5,18066.6502453089,38.8934211730957,59.0000015258789,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2474.5,18077.4539734125,38.8934211730957,59.0000015258789,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2475.5,18088.2577015162,38.8934211730957,59.0000015258789,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2476.5,18099.0614296198,38.8934211730957,59.0000015258789,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2477.5,18109.8651577234,38.8934211730957,59.0000015258789,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2478.5,18120.6688858271,38.8934211730957,59.0000015258789,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2479.5,18131.4726139307,38.8934211730957,59.0000015258789,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2480.5,18142.2763420343,38.8934211730957,59.0000015258789,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2481.5,18153.080070138,38.8934211730957,59.0000015258789,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2482.5,18163.8837982416,38.8934211730957,59.0000015258789,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2483.5,18174.6875263453,38.8934211730957,59.0000015258789,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2484.5,18185.4912544489,38.8934211730957,59.0000015258789,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2485.5,18196.2949825525,38.8934211730957,59.0000015258789,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2486.5,18207.0987106562,38.8934211730957,59.0000015258789,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2487.5,18217.9024387598,38.8934211730957,59.0000015258789,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2488.5,18228.7061668634,38.8934211730957,59.0000015258789,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2489.5,18239.5098949671,38.8934211730957,59.0000015258789,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2490.5,18250.3136230707,38.8934211730957,59.0000015258789,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2491.5,18261.1173511744,38.8934211730957,59.0000015258789,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2492.5,18271.921079278,38.8934211730957,59.0000015258789,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2493.5,18282.7248073816,38.8934211730957,59.0000015258789,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2494.5,18293.5285354853,38.8934211730957,59.0000015258789,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2495.5,18304.3322635889,38.8934211730957,59.0000015258789,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2496.5,18315.1359916925,38.8934211730957,59.0000015258789,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2497.5,18325.9397197962,38.8934211730957,59.0000015258789,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2498.5,18336.7434478998,38.8934211730957,59.0000015258789,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2499.5,18347.5471760035,38.8934211730957,59.0000015258789,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2500.5,18358.3509041071,38.8934211730957,66.4999969482422,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2501.5,18369.1546322107,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2502.5,18379.9583603144,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2503.5,18390.762088418,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2504.5,18401.5658165216,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2505.5,18412.3695446253,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2506.5,18423.1732727289,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2507.5,18433.9770008326,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2508.5,18444.7807289362,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2509.5,18455.5844570398,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2510.5,18466.3881851435,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2511.5,18477.1919132471,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2512.5,18487.9956413507,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2513.5,18498.7993694544,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2514.5,18509.603097558,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2515.5,18520.4068256617,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2516.5,18531.2105537653,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2517.5,18542.0142818689,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2518.5,18552.8180099726,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2519.5,18563.6217380762,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2520.5,18574.4254661798,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2521.5,18585.2291942835,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2522.5,18596.0329223871,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2523.5,18606.8366504908,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2524.5,18617.6403785944,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2525.5,18628.444106698,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2526.5,18639.2478348017,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2527.5,18650.0515629053,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2528.5,18660.8552910089,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2529.5,18671.6590191126,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2530.5,18682.4627472162,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2531.5,18693.2664753199,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2532.5,18704.0702034235,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2533.5,18714.8739315271,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2534.5,18725.6776596308,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2535.5,18736.4813877344,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2536.5,18747.2851158381,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2537.5,18758.0888439417,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2538.5,18768.8925720453,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2539.5,18779.696300149,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2540.5,18790.5000282526,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2541.5,18801.3037563562,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2542.5,18812.1074844599,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2543.5,18822.9112125635,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2544.5,18833.7149406672,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2545.5,18844.5186687708,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2546.5,18855.3223968744,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2547.5,18866.1261249781,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2548.5,18876.9298530817,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2549.5,18887.7335811853,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2550.5,18898.537309289,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2551.5,18909.3410373926,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2552.5,18920.1447654963,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2553.5,18930.9484935999,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2554.5,18941.7522217035,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2555.5,18952.5559498072,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2556.5,18963.3596779108,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2557.5,18974.1634060144,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2558.5,18984.9671341181,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2559.5,18995.7708622217,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2560.5,19006.5745903254,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2561.5,19017.378318429,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2562.5,19028.1820465326,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2563.5,19038.9857746363,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2564.5,19049.7895027399,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2565.5,19060.5932308435,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2566.5,19071.3969589472,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2567.5,19082.2006870508,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2568.5,19093.0044151545,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2569.5,19103.8081432581,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2570.5,19114.6118713617,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2571.5,19125.4155994654,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2572.5,19136.219327569,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2573.5,19147.0230556726,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2574.5,19157.8267837763,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2575.5,19168.6305118799,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2576.5,19179.4342399836,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2577.5,19190.2379680872,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2578.5,19201.0416961908,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2579.5,19211.8454242945,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2580.5,19222.6491523981,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2581.5,19233.4528805017,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2582.5,19244.2566086054,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2583.5,19255.060336709,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2584.5,19265.8640648127,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2585.5,19276.6677929163,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2586.5,19287.4715210199,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2587.5,19298.2752491236,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2588.5,19309.0789772272,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2589.5,19319.8827053308,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2590.5,19330.6864334345,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2591.5,19341.4901615381,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2592.5,19352.2938896418,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2593.5,19363.0976177454,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2594.5,19373.901345849,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2595.5,19384.7050739527,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2596.5,19395.5088020563,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2597.5,19406.31253016,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2598.5,19417.1162582636,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2599.5,19427.9199863672,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2600.5,19438.7237144709,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2601.5,19449.5274425745,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2602.5,19460.3311706781,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2603.5,19471.1348987818,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2604.5,19481.9386268854,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2605.5,19492.7423549891,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2606.5,19503.5460830927,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2607.5,19514.3498111963,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2608.5,19525.1535393,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2609.5,19535.9572674036,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2610.5,19546.7609955072,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2611.5,19557.5647236109,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2612.5,19568.3684517145,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2613.5,19579.1721798182,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2614.5,19589.9759079218,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2615.5,19600.7796360254,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2616.5,19611.5833641291,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2617.5,19622.3870922327,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2618.5,19633.1908203363,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2619.5,19643.99454844,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2620.5,19654.7982765436,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2621.5,19665.6020046473,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2622.5,19676.4057327509,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2623.5,19687.2094608545,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2624.5,19698.0131889582,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2625.5,19708.8169170618,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2626.5,19719.6206451654,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2627.5,19730.4243732691,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2628.5,19741.2281013727,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2629.5,19752.0318294764,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2630.5,19762.83555758,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2631.5,19773.6392856836,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2632.5,19784.4430137873,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2633.5,19795.2467418909,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2634.5,19806.0504699945,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2635.5,19816.8541980982,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2636.5,19827.6579262018,38.8934211730957,69.0000045776367,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2637.5,19838.4616543055,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2638.5,19849.2653824091,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2639.5,19860.0691105127,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2640.5,19870.8728386164,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2641.5,19881.67656672,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2642.5,19892.4802948236,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2643.5,19903.2840229273,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2644.5,19914.0877510309,38.8934211730957,54,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2645.5,19924.8914791346,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2646.5,19935.6952072382,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2647.5,19946.4989353418,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2648.5,19957.3026634455,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2649.5,19968.1063915491,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2650.5,19978.9101196527,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2651.5,19989.7138477564,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2652.5,20000.51757586,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2653.5,20011.3213039637,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2654.5,20022.1250320673,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2655.5,20032.9287601709,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2656.5,20043.7324882746,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2657.5,20054.5362163782,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2658.5,20065.3399444819,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2659.5,20076.1436725855,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2660.5,20086.9474006891,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2661.5,20097.7511287928,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2662.5,20108.5548568964,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2663.5,20119.358585,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2664.5,20130.1623131037,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2665.5,20140.9660412073,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2666.5,20151.769769311,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2667.5,20162.5734974146,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2668.5,20173.3772255182,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2669.5,20184.1809536219,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2670.5,20194.9846817255,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2671.5,20205.7884098291,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2672.5,20216.5921379328,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2673.5,20227.3958660364,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2674.5,20238.1995941401,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2675.5,20249.0033222437,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2676.5,20259.8070503473,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2677.5,20270.610778451,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2678.5,20281.4145065546,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2679.5,20292.2182346582,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2680.5,20303.0219627619,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2681.5,20313.8256908655,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2682.5,20324.6294189692,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2683.5,20335.4331470728,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2684.5,20346.2368751764,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2685.5,20357.0406032801,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2686.5,20367.8443313837,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2687.5,20378.6480594873,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2688.5,20389.451787591,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2689.5,20400.2555156946,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2690.5,20411.0592437983,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2691.5,20421.8629719019,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2692.5,20432.6667000055,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2693.5,20443.4704281092,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2694.5,20454.2741562128,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2695.5,20465.0778843164,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2696.5,20475.8816124201,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2697.5,20486.6853405237,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2698.5,20497.4890686274,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2699.5,20508.292796731,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2700.5,20519.0965248346,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2701.5,20529.9002529383,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2702.5,20540.7039810419,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2703.5,20551.5077091455,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2704.5,20562.3114372492,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2705.5,20573.1151653528,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2706.5,20583.9188934565,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2707.5,20594.7226215601,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2708.5,20605.5263496637,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2709.5,20616.3300777674,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2710.5,20627.133805871,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2711.5,20637.9375339746,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2712.5,20648.7412620783,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2713.5,20659.5449901819,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2714.5,20670.3487182856,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2715.5,20681.1524463892,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2716.5,20691.9561744928,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2717.5,20702.7599025965,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2718.5,20713.5636307001,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2719.5,20724.3673588037,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2720.5,20735.1710869074,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2721.5,20745.974815011,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2722.5,20756.7785431147,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2723.5,20767.5822712183,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2724.5,20778.3859993219,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2725.5,20789.1897274256,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2726.5,20799.9934555292,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2727.5,20810.7971836329,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2728.5,20821.6009117365,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2729.5,20832.4046398401,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2730.5,20843.2083679438,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2731.5,20854.0120960474,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2732.5,20864.815824151,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2733.5,20875.6195522547,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2734.5,20886.4232803583,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2735.5,20897.227008462,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2736.5,20908.0307365656,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2737.5,20918.8344646692,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2738.5,20929.6381927729,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2739.5,20940.4419208765,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2740.5,20951.2456489801,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2741.5,20962.0493770838,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2742.5,20972.8531051874,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2743.5,20983.6568332911,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2744.5,20994.4605613947,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2745.5,21005.2642894983,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2746.5,21016.068017602,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2747.5,21026.8717457056,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2748.5,21037.6754738092,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2749.5,21048.4792019129,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2750.5,21059.2829300165,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2751.5,21070.0866581202,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2752.5,21080.8903862238,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2753.5,21091.6941143274,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2754.5,21102.4978424311,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2755.5,21113.3015705347,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2756.5,21124.1052986383,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2757.5,21134.909026742,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2758.5,21145.7127548456,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2759.5,21156.5164829493,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2760.5,21167.3202110529,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2761.5,21178.1239391565,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2762.5,21188.9276672602,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2763.5,21199.7313953638,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2764.5,21210.5351234674,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2765.5,21221.3388515711,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2766.5,21232.1425796747,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2767.5,21242.9463077784,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2768.5,21253.750035882,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2769.5,21264.5537639856,38.8934211730957,44.0000003814697,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2770.5,21275.3574920893,38.8934211730957,61.5000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2771.5,21286.1612201929,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2772.5,21296.9649482965,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2773.5,21307.7686764002,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2774.5,21318.5724045038,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2775.5,21329.3761326075,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2776.5,21340.1798607111,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2777.5,21350.9835888147,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2778.5,21361.7873169184,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2779.5,21372.591045022,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2780.5,21383.3947731256,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2781.5,21394.1985012293,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2782.5,21405.0022293329,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2783.5,21415.8059574366,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2784.5,21426.6096855402,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2785.5,21437.4134136438,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2786.5,21448.2171417475,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2787.5,21459.0208698511,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2788.5,21469.8245979548,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2789.5,21480.6283260584,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2790.5,21491.432054162,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2791.5,21502.2357822657,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2792.5,21513.0395103693,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2793.5,21523.8432384729,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2794.5,21534.6469665766,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2795.5,21545.4506946802,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2796.5,21556.2544227839,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2797.5,21567.0581508875,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2798.5,21577.8618789911,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2799.5,21588.6656070948,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2800.5,21599.4693351984,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2801.5,21610.273063302,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2802.5,21621.0767914057,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2803.5,21631.8805195093,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2804.5,21642.684247613,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2805.5,21653.4879757166,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2806.5,21664.2917038202,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2807.5,21675.0954319239,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2808.5,21685.8991600275,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2809.5,21696.7028881311,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2810.5,21707.5066162348,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2811.5,21718.3103443384,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2812.5,21729.1140724421,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2813.5,21739.9178005457,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2814.5,21750.7215286493,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2815.5,21761.525256753,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2816.5,21772.3289848566,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2817.5,21783.1327129602,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2818.5,21793.9364410639,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2819.5,21804.7401691675,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2820.5,21815.5438972712,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2821.5,21826.3476253748,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2822.5,21837.1513534784,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2823.5,21847.9550815821,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2824.5,21858.7588096857,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2825.5,21869.5625377893,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2826.5,21880.366265893,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2827.5,21891.1699939966,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2828.5,21901.9737221003,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2829.5,21912.7774502039,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2830.5,21923.5811783075,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2831.5,21934.3849064112,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2832.5,21945.1886345148,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2833.5,21955.9923626184,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2834.5,21966.7960907221,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2835.5,21977.5998188257,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2836.5,21988.4035469294,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2837.5,21999.207275033,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2838.5,22010.0110031366,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2839.5,22020.8147312403,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2840.5,22031.6184593439,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2841.5,22042.4221874475,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2842.5,22053.2259155512,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2843.5,22064.0296436548,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2844.5,22074.8333717585,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2845.5,22085.6370998621,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2846.5,22096.4408279657,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2847.5,22107.2445560694,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2848.5,22118.048284173,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2849.5,22128.8520122766,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2850.5,22139.6557403803,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2851.5,22150.4594684839,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2852.5,22161.2631965876,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2853.5,22172.0669246912,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2854.5,22182.8706527948,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2855.5,22193.6743808985,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2856.5,22204.4781090021,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2857.5,22215.2818371058,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2858.5,22226.0855652094,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2859.5,22236.889293313,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2860.5,22247.6930214167,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2861.5,22258.4967495203,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2862.5,22269.3004776239,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2863.5,22280.1042057276,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2864.5,22290.9079338312,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2865.5,22301.7116619349,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2866.5,22312.5153900385,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2867.5,22323.3191181421,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2868.5,22334.1228462458,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2869.5,22344.9265743494,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2870.5,22355.730302453,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2871.5,22366.5340305567,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2872.5,22377.3377586603,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2873.5,22388.141486764,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2874.5,22398.9452148676,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2875.5,22409.7489429712,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2876.5,22420.5526710749,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2877.5,22431.3563991785,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2878.5,22442.1601272821,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2879.5,22452.9638553858,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2880.5,22463.7675834894,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2881.5,22474.5713115931,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2882.5,22485.3750396967,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2883.5,22496.1787678003,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2884.5,22506.982495904,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2885.5,22517.7862240076,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2886.5,22528.5899521112,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2887.5,22539.3936802149,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2888.5,22550.1974083185,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2889.5,22561.0011364222,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2890.5,22571.8048645258,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2891.5,22582.6085926294,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2892.5,22593.4123207331,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2893.5,22604.2160488367,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2894.5,22615.0197769403,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2895.5,22625.823505044,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2896.5,22636.6272331476,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2897.5,22647.4309612513,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2898.5,22658.2346893549,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2899.5,22669.0384174585,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2900.5,22679.8421455622,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2901.5,22690.6458736658,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2902.5,22701.4496017694,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2903.5,22712.2533298731,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2904.5,22723.0570579767,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2905.5,22733.8607860804,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2906.5,22744.664514184,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2907.5,22755.4682422876,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2908.5,22766.2719703913,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2909.5,22777.0756984949,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2910.5,22787.8794265985,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2911.5,22798.6831547022,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2912.5,22809.4868828058,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2913.5,22820.2906109095,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2914.5,22831.0943390131,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2915.5,22841.8980671167,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2916.5,22852.7017952204,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2917.5,22863.505523324,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2918.5,22874.3092514277,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2919.5,22885.1129795313,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2920.5,22895.9167076349,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2921.5,22906.7204357386,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2922.5,22917.5241638422,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2923.5,22928.3278919458,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2924.5,22939.1316200495,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2925.5,22949.9353481531,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2926.5,22960.7390762568,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2927.5,22971.5428043604,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2928.5,22982.346532464,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2929.5,22993.1502605677,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2930.5,23003.9539886713,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2931.5,23014.7577167749,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2932.5,23025.5614448786,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2933.5,23036.3651729822,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2934.5,23047.1689010859,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2935.5,23057.9726291895,38.8934211730957,79.0000007629395,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2936.5,23068.7763572931,38.8934211730957,73.9999992370606,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2937.5,23079.5800853968,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2938.5,23090.3838135004,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2939.5,23101.187541604,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2940.5,23111.9912697077,38.8934211730957,68.9999977111816,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+2941.5,23122.7352443933,38.6783088684082,68.9999977111816,-0.1195068,2.842372,2071.678,240.6647,217.1422,1171.371,-314.6189,52.21115,254.1238,-68.25519,47.10805,-0.9968948,6.1,1,0,0,0,0,-25.01289,12.81934,2.404095,56.8975,47.10805,0,17090.33,-,-
+2942.5,23133.3165022135,38.0925281524658,68.9999977111816,-0.2059269,2.842372,2040.303,149.4101,133.4343,1250.437,-308.6576,31.92296,267.1683,-65.94778,28.50957,-2.686606,6.1,1,0,0,0,0,-42.44793,12.62519,2.296512,56.03579,28.50957,0,13947.78,-,-
+2943.5,23143.6918321848,37.3511878967285,68.9999977111816,-0.2059278,2.842372,2000.595,146.187,133.019,1350.5,-301.1131,30.62644,282.9322,-63.08376,27.86773,-3.341295,6.1,1,0,0,0,0,-41.62202,12.37948,2.165023,54.94524,27.86773,0,13297.67,-,-
+2944.5,23153.8560034037,36.5910163879395,68.9999977111816,-0.2163916,2.842372,1959.879,135.8679,122.5077,1453.305,-293.5777,27.88527,298.2735,-60.25331,25.14324,-3.357973,6.1,1,0,0,0,0,-42.8468,12.12754,2.035507,53.827,25.14324,0,12385,-,-
+2945.5,23163.8037821054,35.812003326416,68.9999977111816,-0.2163916,2.842372,1918.154,135.6829,122.0899,1558.661,-285.8585,27.25444,313.0862,-57.42,24.52402,-3.369578,6.1,1,0,0,0,0,-41.9346,11.86934,1.908249,52.68103,24.52402,0,11744.46,-,-
+2946.5,23173.5445810556,35.0668762207031,51.4999992370606,-0.1975698,2.842372,1878.244,154.8292,139.8571,1659.435,-278.4751,30.45323,326.3929,-54.77304,27.50839,-3.155154,6.1,1,0,0,0,0,-37.49051,11.62238,1.791598,51.58492,27.50839,0,11682.02,-,-
+2947.5,23183.0878101587,34.3556247711182,34.0000007629395,-0.1975689,2.842372,1840.148,155.8398,139.4923,1755.627,-271.4273,30.0303,338.309,-52.304,26.88014,-2.949837,6.1,1,0,0,0,0,-36.72993,11.38665,1.684778,50.53864,26.88014,0,11137.35,-,-
+2948.5,23192.5322548151,34.0000007629395,34.0000007629395,0,2.842372,1821.1,354.2906,329.9192,1803.723,-267.9035,67.56504,343.9792,-51.09057,62.91728,-1.452243,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16374.41,-,-
+2949.5,23201.9766994715,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+2950.5,23211.4211441278,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+2951.5,23220.8655887842,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+2952.5,23230.3100334406,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+2953.5,23239.754478097,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+2954.5,23249.1989227533,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+2955.5,23258.6433674097,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+2956.5,23268.0878120661,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+2957.5,23277.5322567225,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+2958.5,23286.9767013788,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+2959.5,23296.4211460352,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+2960.5,23305.8655906916,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+2961.5,23315.3100353479,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+2962.5,23324.7544800043,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+2963.5,23334.1989246607,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+2964.5,23343.6433693171,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+2965.5,23353.0878139734,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+2966.5,23362.5322586298,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+2967.5,23371.9767032862,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+2968.5,23381.4211479425,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+2969.5,23390.8655925989,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+2970.5,23400.3100372553,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+2971.5,23409.7544819117,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+2972.5,23419.198926568,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+2973.5,23428.6433712244,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+2974.5,23438.0878158808,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+2975.5,23447.5322605371,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+2976.5,23456.9767051935,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+2977.5,23466.4211498499,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+2978.5,23475.8655945063,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+2979.5,23485.3100391626,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+2980.5,23494.754483819,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+2981.5,23504.1989284754,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+2982.5,23513.6433731318,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+2983.5,23523.0878177881,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+2984.5,23532.5322624445,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+2985.5,23541.9767071009,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+2986.5,23551.4211517572,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+2987.5,23560.8655964136,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+2988.5,23570.31004107,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+2989.5,23579.7544857264,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+2990.5,23589.1989303827,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+2991.5,23598.6433750391,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+2992.5,23608.0878196955,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+2993.5,23617.5322643518,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+2994.5,23626.9767090082,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+2995.5,23636.4211536646,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+2996.5,23645.865598321,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+2997.5,23655.3100429773,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+2998.5,23664.7544876337,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+2999.5,23674.1989322901,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+3000.5,23683.6433769464,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+3001.5,23693.0878216028,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+3002.5,23702.5322662592,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+3003.5,23711.9767109156,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+3004.5,23721.4211555719,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+3005.5,23730.8656002283,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+3006.5,23740.3100448847,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+3007.5,23749.7544895411,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+3008.5,23759.1989341974,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+3009.5,23768.6433788538,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+3010.5,23778.0878235102,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+3011.5,23787.5322681665,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+3012.5,23796.9767128229,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+3013.5,23806.4211574793,34.0000007629395,34.0000007629395,0,2.842372,1821.1,361.9057,329.9192,1803.723,-267.9035,69.01728,343.9792,-51.09057,62.91728,0,6.1,1,0,0,0,0,0,11.26878,1.632999,50.0155,62.91728,0,16585.46,-,-
+3014.5,23816.2549148798,35.4015266418457,49.0000019073486,0.7786244,2.842372,1896.168,1141.812,1081.827,1614.175,-281.7911,226.7252,320.5208,-55.9542,214.8143,5.810912,6.1,1,0,0,0,0,149.1604,11.7333,1.843382,52.07721,214.8143,0,44516.19,-,-
+3015.5,23826.7683140039,37.8482368469238,64.0000030517578,0.5806589,2.842372,2027.218,971.3344,892.1649,1283.41,-306.1714,206.2044,272.4549,-64.99707,189.3975,10.70687,6.1,1,0,0,0,0,118.9242,12.54422,2.252611,55.67643,189.3975,0,42178.07,-,-
+3016.5,23837.5720421076,38.8934211730957,64.0000030517578,0,2.842372,2083.2,382.4889,332.5614,1142.335,-316.808,83.4408,249.203,-69.11237,72.549,4.791804,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,21572.58,-,-
+3017.5,23848.3757702112,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3018.5,23859.1794983149,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3019.5,23869.9832264185,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3020.5,23880.7869545221,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3021.5,23891.5906826258,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3022.5,23902.3944107294,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3023.5,23913.198138833,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3024.5,23924.0018669367,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3025.5,23934.8055950403,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3026.5,23945.609323144,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3027.5,23956.4130512476,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3028.5,23967.2167793512,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3029.5,23978.0205074549,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3030.5,23988.8242355585,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3031.5,23999.6279636621,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3032.5,24010.4316917658,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3033.5,24021.2354198694,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3034.5,24032.0391479731,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3035.5,24042.8428760767,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3036.5,24053.6466041803,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3037.5,24064.450332284,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3038.5,24075.2540603876,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3039.5,24086.0577884912,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3040.5,24096.8615165949,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3041.5,24107.6652446985,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3042.5,24118.4689728022,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3043.5,24129.2727009058,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3044.5,24140.0764290094,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3045.5,24150.8801571131,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3046.5,24161.6838852167,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3047.5,24172.4876133204,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3048.5,24183.291341424,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3049.5,24194.0950695276,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3050.5,24204.8987976313,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3051.5,24215.7025257349,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3052.5,24226.5062538385,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3053.5,24237.3099819422,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3054.5,24248.1137100458,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3055.5,24258.9174381495,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3056.5,24269.7211662531,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3057.5,24280.5248943567,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3058.5,24291.3286224604,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3059.5,24302.132350564,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3060.5,24312.9360786676,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3061.5,24323.7398067713,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3062.5,24334.5435348749,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3063.5,24345.3472629786,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3064.5,24356.1509910822,38.8934211730957,61.5000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3065.5,24366.9547191858,38.8934211730957,59.0000015258789,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3066.5,24377.7584472895,38.8934211730957,59.0000015258789,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3067.5,24388.5621753931,38.8934211730957,59.0000015258789,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3068.5,24399.3659034967,38.8934211730957,59.0000015258789,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3069.5,24410.1696316004,38.8934211730957,59.0000015258789,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3070.5,24420.973359704,38.8934211730957,59.0000015258789,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3071.5,24431.7770878077,38.8934211730957,59.0000015258789,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3072.5,24442.5808159113,38.8934211730957,59.0000015258789,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3073.5,24453.3845440149,38.8934211730957,59.0000015258789,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3074.5,24464.1882721186,38.8934211730957,59.0000015258789,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3075.5,24474.9920002222,38.8934211730957,59.0000015258789,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3076.5,24485.7957283258,38.8934211730957,61.5000022888184,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3077.5,24496.5994564295,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3078.5,24507.4031845331,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3079.5,24518.2069126368,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3080.5,24529.0106407404,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3081.5,24539.814368844,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3082.5,24550.6180969477,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3083.5,24561.4218250513,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3084.5,24572.2255531549,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3085.5,24583.0292812586,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3086.5,24593.8330093622,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3087.5,24604.6367374659,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3088.5,24615.4404655695,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3089.5,24626.2441936731,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3090.5,24637.0479217768,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3091.5,24647.8516498804,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3092.5,24658.655377984,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3093.5,24669.4591060877,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3094.5,24680.2628341913,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3095.5,24691.066562295,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3096.5,24701.8702903986,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3097.5,24712.6740185022,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3098.5,24723.4777466059,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3099.5,24734.2814747095,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3100.5,24745.0852028131,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3101.5,24755.8889309168,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3102.5,24766.6926590204,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3103.5,24777.4963871241,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3104.5,24788.3001152277,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3105.5,24799.1038433313,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3106.5,24809.907571435,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3107.5,24820.7112995386,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3108.5,24831.5150276423,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3109.5,24842.3187557459,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3110.5,24853.1224838495,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3111.5,24863.9262119532,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3112.5,24874.7299400568,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3113.5,24885.5336681604,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3114.5,24896.3373962641,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3115.5,24907.1411243677,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3116.5,24917.9448524714,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3117.5,24928.748580575,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3118.5,24939.5523086786,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3119.5,24950.3560367823,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3120.5,24961.1597648859,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3121.5,24971.9634929895,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3122.5,24982.7672210932,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3123.5,24993.5709491968,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3124.5,25004.3746773005,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3125.5,25015.1784054041,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3126.5,25025.9821335077,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3127.5,25036.7858616114,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3128.5,25047.589589715,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3129.5,25058.3933178186,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3130.5,25069.1970459223,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3131.5,25080.0007740259,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3132.5,25090.8045021296,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3133.5,25101.6082302332,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3134.5,25112.4119583368,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3135.5,25123.2156864405,38.8934211730957,64.0000030517578,0,2.842372,2083.2,360.5235,332.5614,1142.335,-316.808,78.649,249.203,-69.11237,72.549,0,6.1,1,0,0,0,0,0,12.89063,2.444431,57.21394,72.549,0,20906.59,-,-
+3136.5,25133.9352251291,38.5903392791748,64.0000030517578,-0.1683788,2.842372,2066.967,191.6421,169.942,1183.244,-313.7236,41.48135,256.1159,-67.90618,36.78432,-1.402961,6.1,1,0,0,0,0,-35.16169,12.79018,2.387729,56.76809,36.78432,0,15588.22,-,-
+3137.5,25144.4683405161,37.9192153930664,64.0000030517578,-0.2044687,2.842372,2031.02,149.0011,134.7435,1273.83,-306.8938,31.69074,270.9282,-65.27259,28.6583,-3.067561,6.1,1,0,0,0,0,-41.95559,12.56775,2.265308,55.78084,28.6583,0,13795.62,-,-
+3138.5,25154.7918144464,37.164506149292,59.0000015258789,-0.2148132,2.842372,1990.596,137.3666,124.3437,1375.744,-299.2603,28.63472,286.7804,-62.38224,25.92004,-3.385319,6.1,1,0,0,0,0,-43.20092,12.31761,2.132723,54.67063,25.92004,0,12895.34,-,-
+3139.5,25164.9004751444,36.3911785125732,54,-0.2148132,2.842372,1949.176,137.1587,123.9224,1480.332,-291.5975,27.99645,302.1612,-59.52005,25.29469,-3.398235,6.1,1,0,0,0,0,-42.30198,12.0613,2.002339,53.53303,25.29469,0,12258.79,-,-
+3140.5,25174.7888885736,35.5982883453369,54,-0.2256813,2.842372,1906.707,126.4866,113.0145,1587.565,-283.7408,25.25557,316.9889,-56.65449,22.56559,-3.410014,6.1,1,0,0,0,0,-43.47387,11.79851,1.874289,52.36665,22.56559,0,11308.32,-,-
+3141.5,25184.451620698,34.785835647583,54,-0.2256813,2.842372,1863.191,126.3459,112.5909,1697.444,-275.6902,24.65171,331.1931,-53.79071,21.96793,-3.416223,6.1,1,0,0,0,0,-42.48167,11.52924,1.748866,51.1715,21.96793,0,10658.88,-,-
+3142.5,25193.8809515238,33.9455909729004,54,-0.2411222,2.842372,1818.186,111.1836,97.26624,1811.082,-267.3643,21.16936,344.8298,-50.90615,18.51949,-3.450127,6.1,1,0,0,0,0,-44.2919,11.25075,1.625172,49.93546,18.51949,0,9640.311,-,-
+3143.5,25203.0691591501,33.077547454834,54,-0.2411222,2.842372,1771.692,110.9802,96.83528,1888.422,-259.8953,20.59028,350.3611,-48.21866,17.96596,-3.475679,6.1,1,0,0,0,0,-43.15928,10.96305,1.503658,48.65853,17.96596,0,9089.339,-,-
+3144.5,25212.0077158213,32.1788040161133,54,-0.2581806,2.842372,1723.553,94.32807,79.9436,1941.856,-252.9152,17.02528,350.4857,-45.64869,14.42903,-3.503746,6.1,1,0,0,0,0,-44.95698,10.66518,1.384392,47.33644,14.42903,0,8135.018,-,-
+3145.5,25220.6880918741,31.2493537902832,54,-0.2581806,2.842372,1673.77,94.21545,79.50693,1997.115,-245.6967,16.51378,350.0479,-43.06494,13.93572,-3.521939,6.1,1,0,0,0,0,-43.65844,10.35712,1.267863,45.96918,13.93572,0,7752.627,-,-
+3146.5,25229.1012359858,30.2873188018799,53.3445350646973,-0.2762833,2.842372,1622.242,76.69244,61.60366,2054.311,-238.2251,13.02857,348.988,-40.46987,10.46528,-3.536706,6.1,1,0,0,0,0,-45.28131,10.03827,1.154335,44.55398,10.46528,0,7052.694,-,-
+3147.5,25237.2380968332,29.2926990509033,52.6890735626221,-0.2762828,2.842372,1568.969,76.7448,61.16513,2113.29,-230.035,12.60932,347.2177,-37.7952,10.04955,-3.540229,6.1,1,0,0,0,0,-43.79422,9.708621,1.044305,43.09085,10.04955,0,6683.639,-,-
+3148.5,25245.0896974802,28.2657623291016,43.3445388793945,-0.2942386,2.842372,1513.964,59.60666,43.40422,2174.07,-221.2342,9.450155,344.6812,-35.07491,6.88139,-3.531235,6.1,1,0,0,0,0,-45.00533,9.368258,0.9382777,41.58018,6.88139,0,5964.101,-,-
+3149.5,25252.647059083,27.2065017700195,34.0000007629395,-0.294239,2.842372,1457.228,59.93854,42.96853,2236.763,-212.1565,9.146656,341.3313,-32.37521,6.557022,-3.510366,6.1,1,0,0,0,0,-43.31882,9.017182,0.8366954,40.02197,6.557022,0,5714.306,-,-
+3150.5,25259.9006201029,26.1128196716309,34.0000007629395,-0.3133621,2.842372,1398.649,41.94971,24.08737,2300,-202.8378,6.144212,336.8721,-29.70887,3.527985,-3.483773,6.1,1,0,0,0,0,-44.27962,8.654697,0.7397936,38.41311,3.527985,0,5102.386,-,-
+3151.5,25266.8408190012,24.9847160339355,34.0000007629395,-0.3133621,2.842372,1338.225,42.61531,23.66036,2300,-195.587,5.972051,322.3188,-27.4093,3.315731,-3.44368,6.1,1,0,0,0,0,-42.36669,8.280805,0.6479963,36.75362,3.315731,0,4762.38,-,-
+3152.5,25273.4616342783,23.8349349975586,34.0000007629395,-0.3254051,2.842372,1276.641,32.17069,11.62595,2300,-188.1969,4.300885,307.486,-25.15996,1.554268,-3.353383,6.1,1,0,0,0,0,-41.97029,7.899727,0.5625889,35.06224,1.554268,0,4267.286,-,-
+3153.5,25279.7570444345,22.6634765625,34.0000007629395,-0.3254051,2.842372,1213.896,33.60966,11.22246,2300,-180.6675,4.272421,292.3734,-22.96624,1.426586,-3.254165,6.1,1,0,0,0,0,-39.9075,7.511466,0.4836474,33.33897,1.426586,0,3979.702,-,-
+3154.5,25285.7221280336,21.4743009567261,34.0000007629395,-0.335248,2.842372,1150.201,25.94834,1.337628,2300,-174.2691,3.125446,277.0322,-20.99051,0.1611156,-3.135669,6.1,1,0,0,0,0,-38.9573,7.117331,0.4114399,31.58964,0.1611156,0,3598.885,-,-
+3155.5,25291.3519641161,20.2674098968506,34.0000007629395,-0.3352475,2.842372,1085.558,28.14997,0.9649378,2300,-168.128,3.200071,261.4626,-19.11269,0.1096935,-3.009622,6.1,1,0,0,0,0,-36.76778,6.717326,0.3458948,29.81425,0.1096935,0,3490.126,-,-
+3156.5,25296.6427298784,19.0467567443848,34.0000007629395,-0.3428931,2.842372,1020.178,23.49632,-6.766707,2300,-161.9169,2.510177,245.7154,-17.29803,-0.7229061,-2.866916,6.1,1,0,0,0,0,-35.34137,6.312758,0.2870862,28.01862,-0.7229061,0,3273.551,-,-
+3157.5,25301.5906025171,17.8123414993286,34.0000007629395,-0.3428926,2.842372,954.0604,26.74557,-7.103348,2183.083,-157.4733,2.672123,218.1096,-15.733,-0.7096882,-2.718189,6.1,1,0,0,0,0,-33.05087,5.90363,0.2348077,26.20274,-0.7096882,0,2960.401,-,-
+3158.5,25306.1923767328,16.5663871765137,34.0000007629395,-0.3493042,2.842372,887.3248,24.50191,-13.60624,2013.242,-153.8029,2.276728,187.0713,-14.29143,-1.264297,-2.558975,6.1,1,0,0,0,0,-31.31376,5.490678,0.1889003,24.36989,-1.264297,0,2604.392,-,-
+3159.5,25310.4448467493,15.3088920593262,34.0000007629395,-0.3493047,2.842372,819.9712,29.24904,-13.90358,1841.827,-150.0984,2.511533,158.1525,-12.88853,-1.193861,-2.394606,6.1,1,0,0,0,0,-28.93688,5.0739,0.1490667,22.52006,-1.193861,0,2329.47,-,-
+3160.5,25314.3572343588,14.0845953941345,34.0000007629395,-0.3308597,2.842372,754.3957,53.62649,3.624898,1674.937,-148.772,4.2365,132.3203,-11.75301,0.2863674,-2.149868,6.1,1,0,0,0,0,-25.21691,4.668126,0.1160867,20.71906,0.2863674,0,2312.791,-,-
+3161.5,25317.9387620687,12.8934997558594,34.0000007629395,-0.3308599,2.842372,690.5985,61.19008,3.386605,1512.573,-148.453,4.425224,109.3883,-10.73602,0.2449169,-1.919693,6.1,1,0,0,0,0,-23.0844,4.273355,0.08905569,18.96691,0.2449169,0,2230.257,-,-
+3162.5,25321.2050923109,11.7587888717651,34.0000007629395,-0.299535,2.842372,629.8214,100.5503,33.40048,1357.896,-148.1491,6.631766,89.55965,-9.771136,2.20292,-1.671153,6.1,1,0,0,0,0,-19.0596,3.897272,0.06755181,17.2977,2.20292,0,2476.35,-,-
+3163.5,25324.1718877554,10.6804636001587,34.0000007629395,-0.2995348,2.842372,572.0645,110.9168,33.22142,1210.764,-148.6984,6.644632,72.53259,-8.907993,1.990177,-1.445545,6.1,1,0,0,0,0,-17.31175,3.539878,0.0506197,15.71143,1.990177,0,2393.675,-,-
+3164.5,25326.8522804976,9.64941387176514,34.0000007629395,-0.2732706,2.842372,593.1891,157.3387,50.8876,1264.632,-148.1703,9.773661,78.55721,-9.204132,3.161067,0.5125943,6.1,1,0,0,0,0,-14.26913,3.198152,0.03732949,14.19471,3.161067,0,2925.517,-,-
+3165.5,25329.2594026327,8.66563968658447,34.0000007629395,-0.2732706,2.842372,593.1891,143.7943,45.59506,1264.632,-148.1703,8.932302,78.55721,-9.204132,2.832302,0,6.1,1,0,0,0,0,-12.81437,2.872095,0.02703654,12.74754,2.832302,0,2796.913,-,-
+3166.5,25331.4038401842,7.71997518539429,34.0000007629395,-0.2520986,2.842372,593.1891,152.9769,54.77773,1264.632,-148.1703,9.502716,78.55721,-9.204132,3.402717,0,6.1,1,0,0,0,0,-10.53149,2.558669,0.019116,11.35642,3.402717,0,2884.102,-,-
+3167.5,25333.2961790562,6.81241993904114,34.0000007629395,-0.2520988,2.842372,593.1891,146.4771,48.27787,1264.632,-148.1703,9.098954,78.55721,-9.204132,2.998954,0,6.1,1,0,0,0,0,-9.293425,2.257873,0.01313571,10.02137,2.998954,0,2822.386,-,-
+3168.5,25334.946185112,5.94002180099487,34.0000007629395,-0.2325668,2.842372,593.1891,150.3573,52.15805,1264.632,-148.1703,9.339986,78.55721,-9.204132,3.239986,0,6.1,1,0,0,0,0,-7.475486,1.96873,0.008707899,8.738034,3.239986,0,2859.228,-,-
+3169.5,25336.3636243343,5.10278120040894,34.0000007629395,-0.232567,2.842372,593.1891,142.974,44.77482,1264.632,-148.1703,8.88135,78.55721,-9.204132,2.78135,0,6.1,1,0,0,0,0,-6.421826,1.691239,0.005520395,7.506416,2.78135,0,2789.125,-,-
+3170.5,25337.5630371571,4.3178861618042,34.0000007629395,-0.2034856,2.842372,593.1891,147.0043,48.80508,1264.632,-148.1703,9.131704,78.55721,-9.204132,3.031704,0,6.1,1,0,0,0,0,-4.754539,1.431098,0.003344744,6.351801,3.031704,0,2827.392,-,-
+3171.5,25338.5589644313,3.58533818721771,34.0000007629395,-0.2034856,2.842372,593.1891,138.7104,40.5112,1264.632,-148.1703,8.616499,78.55721,-9.204132,2.5165,0,6.1,1,0,0,0,0,-3.947912,1.188306,0.001914872,5.27419,2.5165,0,2748.642,-,-
+3172.5,25339.2797460556,2.59481384754181,34.0000007629395,-0.3468057,2.842372,560,90.42837,0,1180,-149,5.302997,69.19881,-8.737817,0,-0.797003,6.1,0,0,0,0,0,-4.869631,0.8600117,0.0007258851,3.817086,-0.1918085,-0.1918085,2133.607,-,-
+3173.5,25339.6793573797,1.43860076665878,29.7242866516113,-0.2955349,2.842372,593.1891,115.7384,4.708887,1264.632,-148.1703,7.189512,78.55721,-9.204132,0.2925096,0.797003,6.1,1,0,0,0,0,-2.300662,0.4768024,0.0001237001,2.116245,0.2925096,0,2530.523,-,-
+3174.5,25339.8052793145,0.453318965435028,18.950798034668,-0.2518439,2.842372,560,90.42837,0,1180,-149,5.302997,69.19881,-8.737817,0,-0.797003,6.1,0,0,0,0,0,-0.6177872,0.1502457,3.870445E-06,0.6668522,0.1993146,0,2133.607,-,-
+3175.5,25339.8052793145,0,6.22651047706604,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3176.5,25339.8052793145,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3177.5,25339.8052793145,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3178.5,25339.8052793145,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3179.5,25339.8052793145,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3180.5,25339.8052793145,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3181.5,25339.8052793145,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3182.5,25339.8052793145,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3183.5,25339.8052793145,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3184.5,25339.8052793145,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3185.5,25339.8052793145,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3186.5,25339.8052793145,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3187.5,25339.8052793145,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3188.5,25339.8052793145,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3189.5,25339.8052793145,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3190.5,25339.8052793145,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3191.5,25339.8052793145,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3192.5,25339.8052793145,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3193.5,25339.8052793145,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3194.5,25339.8052793145,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3195.5,25339.8052793145,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3196.5,25339.8052793145,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3197.5,25339.8052793145,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3198.5,25339.8052793145,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3199.5,25339.8052793145,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3200.5,25339.8052793145,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3201.5,25339.8052793145,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3202.5,25339.8052793145,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3203.5,25339.8052793145,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3204.5,25339.8052793145,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3205.5,25339.8052793145,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3206.5,25339.8052793145,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3207.5,25339.8052793145,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3208.5,25339.8052793145,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3209.5,25339.8052793145,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3210.5,25339.8052793145,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3211.5,25339.8052793145,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3212.5,25339.8052793145,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3213.5,25339.8052793145,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3214.5,25339.8052793145,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3215.5,25340.1274066269,1.15965832471848,1.15965832471848,0.6442546,2.842372,593.1891,209.7634,98.73382,1264.632,-148.1703,13.03021,78.55721,-9.204132,6.133208,0.797003,6.1,1,0,0,0,0,4.042883,0.3843512,6.479469E-05,1.705909,6.133208,0,3433.004,-,-
+3216.5,25341.456420809,4.78445105552673,11.1596580505371,1.369519,2.842372,593.1891,807.8991,709.6999,1264.632,-148.1703,50.18557,78.55721,-9.204132,44.08558,0,6.1,1,0,0,0,0,35.45715,1.585734,0.004550358,7.038138,44.08558,0,9978.815,-,-
+3217.5,25344.0266856253,9.25295333862305,19.9999992370605,1.112983,2.842372,593.1891,1264.34,1166.14,1264.632,-148.1703,78.53902,78.55721,-9.204132,72.43903,0,6.1,1,0,0,0,0,55.72786,3.066751,0.03291474,13.6115,72.43903,0,14885.45,-,-
+3218.5,25347.7376910746,13.3596196174622,19.9999992370605,1.168499,2.842372,715.5648,1575.915,1450.001,1576.112,-148.5778,118.0892,118.104,-11.1335,108.654,3.335164,6.1,1,0,0,0,0,84.47455,4.427843,0.09906758,19.65259,108.654,0,23159.44,-,-
+3219.5,25352.6443606913,17.6640106201172,19.9999992370605,1.22283,2.842372,946.1155,1645.496,1503.407,2162.864,-157.0363,163.0308,214.29,-15.55869,148.953,7.977707,6.1,1,0,0,0,0,116.8851,5.854468,0.2289904,25.98454,148.953,0,30449.25,-,-
+3220.5,25358.1811806262,19.9325517654419,19.9999992370605,0.03747082,2.842372,1067.623,460.5854,360.4497,2300,-166.4241,51.49398,257.1427,-18.60641,40.2987,5.095288,6.1,1,0,0,0,0,4.041659,6.606342,0.3290319,29.32166,40.2987,0,10645.31,-,-
+3221.5,25363.7367359698,19.9999992370605,19.9999992370605,0,2.842372,1071.235,380.1307,324.3192,2300,-166.7673,42.64286,258.0128,-18.70787,36.38196,0.1609014,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9342.576,-,-
+3222.5,25369.2922913134,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3223.5,25374.847846657,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3224.5,25380.4034020007,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3225.5,25385.9589573443,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3226.5,25391.5145126879,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3227.5,25397.0700680315,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3228.5,25402.6256233752,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3229.5,25408.1811787188,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3230.5,25413.7367340624,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3231.5,25419.2922894061,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3232.5,25424.8478447497,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3233.5,25430.4034000933,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3234.5,25435.9589554369,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3235.5,25441.5145107806,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3236.5,25447.0700661242,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3237.5,25452.6256214678,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3238.5,25458.1811768115,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3239.5,25463.7367321551,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3240.5,25469.2922874987,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3241.5,25474.8478428423,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3242.5,25480.403398186,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3243.5,25485.9589535296,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3244.5,25491.5145088732,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3245.5,25497.0700642169,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3246.5,25502.6256195605,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3247.5,25508.1811749041,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3248.5,25513.7367302477,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3249.5,25519.2922855914,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3250.5,25524.847840935,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3251.5,25530.4033962786,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3252.5,25535.9589516222,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3253.5,25541.5145069659,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3254.5,25547.0700623095,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3255.5,25552.6256176531,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3256.5,25558.1811729968,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3257.5,25563.7367283404,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3258.5,25569.292283684,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3259.5,25574.8478390276,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3260.5,25580.4033943713,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3261.5,25585.9589497149,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3262.5,25591.5145050585,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3263.5,25597.0700604022,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3264.5,25602.6256157458,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3265.5,25608.1811710894,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3266.5,25613.736726433,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3267.5,25619.2922817767,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3268.5,25624.8478371203,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3269.5,25630.4033924639,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3270.5,25635.9589478076,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3271.5,25641.5145031512,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3272.5,25647.0700584948,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3273.5,25652.6256138384,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3274.5,25658.1811691821,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3275.5,25663.7367245257,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3276.5,25669.2922798693,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3277.5,25674.8478352129,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3278.5,25680.4033905566,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3279.5,25685.9589459002,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3280.5,25691.5145012438,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3281.5,25697.0700565875,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3282.5,25702.6256119311,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3283.5,25708.1811672747,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3284.5,25713.7367226183,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3285.5,25719.292277962,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3286.5,25724.8478333056,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3287.5,25730.4033886492,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3288.5,25735.9589439929,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3289.5,25741.5144993365,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3290.5,25747.0700546801,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3291.5,25752.6256100237,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3292.5,25758.1811653674,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3293.5,25763.736720711,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3294.5,25769.2922760546,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3295.5,25774.8478313982,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3296.5,25780.4033867419,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3297.5,25785.9589420855,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3298.5,25791.5144974291,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3299.5,25797.0700527728,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3300.5,25802.6256081164,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3301.5,25808.18116346,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3302.5,25813.7367188036,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3303.5,25819.2922741473,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3304.5,25824.8478294909,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3305.5,25830.4033848345,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3306.5,25835.9589401782,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3307.5,25841.5144955218,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3308.5,25847.0700508654,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3309.5,25852.625606209,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3310.5,25858.1811615527,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3311.5,25863.7367168963,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3312.5,25869.2922722399,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3313.5,25874.8478275836,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3314.5,25880.4033829272,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3315.5,25885.9589382708,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3316.5,25891.5144936144,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3317.5,25897.0700489581,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3318.5,25902.6256043017,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3319.5,25908.1811596453,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3320.5,25913.7367149889,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3321.5,25919.2922703326,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3322.5,25924.8478256762,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3323.5,25930.4033810198,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3324.5,25935.9589363635,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3325.5,25941.5144917071,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3326.5,25947.0700470507,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3327.5,25952.6256023943,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3328.5,25958.181157738,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3329.5,25963.7367130816,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3330.5,25969.2922684252,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3331.5,25974.8478237689,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3332.5,25980.4033791125,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3333.5,25985.9589344561,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3334.5,25991.5144897997,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3335.5,25997.0700451434,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3336.5,26002.625600487,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3337.5,26008.1811558306,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3338.5,26013.7367111743,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3339.5,26019.2922665179,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3340.5,26024.8478218615,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3341.5,26030.4033772051,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3342.5,26035.9589325488,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3343.5,26041.5144878924,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3344.5,26047.070043236,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3345.5,26052.6255985796,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3346.5,26058.1811539233,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3347.5,26063.7367092669,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3348.5,26069.2922646105,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3349.5,26074.8478199542,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3350.5,26080.4033752978,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3351.5,26085.9589306414,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3352.5,26091.514485985,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3353.5,26097.0700413287,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3354.5,26102.6255966723,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3355.5,26108.1811520159,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3356.5,26113.7367073596,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3357.5,26119.2922627032,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3358.5,26124.8478180468,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3359.5,26130.4033733904,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3360.5,26135.9589287341,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3361.5,26141.5144840777,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3362.5,26147.0700394213,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3363.5,26152.6255947649,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3364.5,26158.1811501086,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3365.5,26163.7367054522,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3366.5,26169.2922607958,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3367.5,26174.8478161395,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3368.5,26180.4033714831,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3369.5,26185.9589268267,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3370.5,26191.5144821703,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3371.5,26197.070037514,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3372.5,26202.6255928576,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3373.5,26208.1811482012,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3374.5,26213.7367035449,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3375.5,26219.2922588885,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3376.5,26224.8478142321,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3377.5,26230.4033695757,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3378.5,26235.9589249194,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3379.5,26241.514480263,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3380.5,26247.0700356066,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3381.5,26252.6255909503,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3382.5,26258.1811462939,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3383.5,26263.7367016375,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3384.5,26269.2922569811,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3385.5,26274.8478123248,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3386.5,26280.4033676684,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3387.5,26285.958923012,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3388.5,26291.5144783556,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3389.5,26297.0700336993,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3390.5,26302.6255890429,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3391.5,26308.1811443865,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3392.5,26313.7366997302,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3393.5,26319.2922550738,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3394.5,26324.8478104174,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3395.5,26330.403365761,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3396.5,26335.9589211047,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3397.5,26341.5144764483,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3398.5,26347.0700317919,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3399.5,26352.6255871356,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3400.5,26358.1811424792,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3401.5,26363.7366978228,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3402.5,26369.2922531664,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3403.5,26374.8478085101,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3404.5,26380.4033638537,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3405.5,26385.9589191973,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3406.5,26391.5144745409,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3407.5,26397.0700298846,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3408.5,26402.6255852282,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3409.5,26408.1811405718,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3410.5,26413.7366959155,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3411.5,26419.2922512591,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3412.5,26424.8478066027,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3413.5,26430.4033619463,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3414.5,26435.95891729,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3415.5,26441.5144726336,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3416.5,26447.0700279772,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3417.5,26452.6255833209,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3418.5,26458.1811386645,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3419.5,26463.7366940081,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3420.5,26469.2922493517,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3421.5,26474.8478046954,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3422.5,26480.403360039,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3423.5,26485.9589153826,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3424.5,26491.5144707263,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3425.5,26497.0700260699,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3426.5,26502.6255814135,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3427.5,26508.1811367571,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3428.5,26513.7366921008,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3429.5,26519.2922474444,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3430.5,26524.847802788,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3431.5,26530.4033581316,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3432.5,26535.9589134753,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3433.5,26541.5144688189,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3434.5,26547.0700241625,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3435.5,26552.6255795062,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3436.5,26558.1811348498,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3437.5,26563.7366901934,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3438.5,26569.292245537,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3439.5,26574.8478008807,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3440.5,26580.4033562243,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3441.5,26585.9589115679,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3442.5,26591.5144669116,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3443.5,26597.0700222552,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3444.5,26602.6255775988,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3445.5,26608.1811329424,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3446.5,26613.7366882861,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3447.5,26619.2922436297,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3448.5,26624.8477989733,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3449.5,26630.403354317,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3450.5,26635.9589096606,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3451.5,26641.5144650042,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3452.5,26647.0700203478,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3453.5,26652.6255756915,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3454.5,26658.1811310351,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3455.5,26663.7366863787,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3456.5,26669.2922417223,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3457.5,26674.847797066,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3458.5,26680.4033524096,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3459.5,26685.9589077532,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3460.5,26691.5144630969,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3461.5,26697.0700184405,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3462.5,26702.6255737841,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3463.5,26708.1811291277,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3464.5,26713.7366844714,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3465.5,26719.292239815,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3466.5,26724.8477951586,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3467.5,26730.4033505023,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3468.5,26735.9589058459,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3469.5,26741.5144611895,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3470.5,26747.0700165331,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3471.5,26752.6255718768,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3472.5,26758.1811272204,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3473.5,26763.736682564,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3474.5,26769.2922379076,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3475.5,26774.8477932513,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3476.5,26780.4033485949,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3477.5,26785.9589039385,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3478.5,26791.5144592822,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3479.5,26797.0700146258,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3480.5,26802.6255699694,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3481.5,26808.181125313,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3482.5,26813.7366806567,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3483.5,26819.2922360003,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3484.5,26824.8477913439,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3485.5,26830.4033466876,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3486.5,26835.9589020312,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3487.5,26841.5144573748,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3488.5,26847.0700127184,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3489.5,26852.6255680621,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3490.5,26858.1811234057,19.9999992370605,19.9999992370605,0,2.842372,1071.235,378.6964,324.3192,2300,-166.7673,42.48196,258.0128,-18.70787,36.38196,0,6.1,1,0,0,0,0,0,6.628696,0.3323833,29.42088,36.38196,0,9315.653,-,-
+3491.5,26863.8061234057,20.25,20.5000007629395,0.1388893,2.842372,1084.626,517.3873,458.3889,2300,-168.0394,58.76574,261.238,-19.08621,52.0646,0.6011485,6.1,1,0,0,0,0,15.2194,6.711555,0.3450042,29.78864,52.0646,0,11673.61,-,-
+3492.5,26869.5700127184,20.7500015258789,21.0000005722046,0.1388888,2.842372,1111.407,521.4747,458.5402,2300,-170.5836,60.69247,267.6883,-19.85359,53.36777,1.2247,6.1,1,0,0,0,0,15.59513,6.877273,0.3711963,30.52417,53.36777,0,12062.01,-,-
+3493.5,26875.4033462107,21.0000005722046,21.0000005722046,0,2.842372,1124.797,381.7044,324.6229,2300,-171.8557,44.96038,270.9135,-20.24262,38.23683,0.6235459,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9761.242,-,-
+3494.5,26881.236679703,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3495.5,26887.0700131953,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3496.5,26892.9033466876,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3497.5,26898.7366801798,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3498.5,26904.5700136721,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3499.5,26910.4033471644,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3500.5,26916.2366806567,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3501.5,26922.070014149,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3502.5,26927.9033476412,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3503.5,26933.7366811335,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3504.5,26939.5700146258,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3505.5,26945.4033481181,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3506.5,26951.2366816103,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3507.5,26957.0700151026,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3508.5,26962.9033485949,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3509.5,26968.7366820872,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3510.5,26974.5700155795,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3511.5,26980.4033490717,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3512.5,26986.236682564,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3513.5,26992.0700160563,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3514.5,26997.9033495486,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3515.5,27003.7366830409,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3516.5,27009.5700165331,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3517.5,27015.4033500254,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3518.5,27021.2366835177,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3519.5,27027.07001701,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3520.5,27032.9033505023,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3521.5,27038.7366839945,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3522.5,27044.5700174868,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3523.5,27050.4033509791,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3524.5,27056.2366844714,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3525.5,27062.0700179636,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3526.5,27067.9033514559,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3527.5,27073.7366849482,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3528.5,27079.5700184405,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3529.5,27085.4033519328,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3530.5,27091.236685425,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3531.5,27097.0700189173,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3532.5,27102.9033524096,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3533.5,27108.7366859019,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3534.5,27114.5700193942,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3535.5,27120.4033528864,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3536.5,27126.2366863787,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3537.5,27132.070019871,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3538.5,27137.9033533633,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3539.5,27143.7366868556,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3540.5,27149.5700203478,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3541.5,27155.4033538401,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3542.5,27161.2366873324,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3543.5,27167.0700208247,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3544.5,27172.903354317,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3545.5,27178.7366878092,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3546.5,27184.5700213015,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3547.5,27190.4033547938,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3548.5,27196.2366882861,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3549.5,27202.0700217783,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3550.5,27207.9033552706,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3551.5,27213.7366887629,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3552.5,27219.5700222552,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3553.5,27225.4033557475,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3554.5,27231.2366892397,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3555.5,27237.070022732,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3556.5,27242.9033562243,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3557.5,27248.7366897166,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3558.5,27254.5700232089,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3559.5,27260.4033567011,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3560.5,27266.2366901934,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3561.5,27272.0700236857,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3562.5,27277.903357178,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3563.5,27283.7366906703,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3564.5,27289.5700241625,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3565.5,27295.4033576548,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3566.5,27301.2366911471,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3567.5,27307.0700246394,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3568.5,27312.9033581316,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3569.5,27318.7366916239,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3570.5,27324.5700251162,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3571.5,27330.4033586085,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3572.5,27336.2366921008,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3573.5,27342.070025593,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3574.5,27347.9033590853,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3575.5,27353.7366925776,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3576.5,27359.5700260699,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3577.5,27365.4033595622,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3578.5,27371.2366930544,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3579.5,27377.0700265467,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3580.5,27382.903360039,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3581.5,27388.7366935313,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3582.5,27394.5700270236,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3583.5,27400.4033605158,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3584.5,27406.2366940081,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3585.5,27412.0700275004,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3586.5,27417.9033609927,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3587.5,27423.7366944849,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3588.5,27429.5700279772,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3589.5,27435.4033614695,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3590.5,27441.2366949618,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3591.5,27447.0700284541,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3592.5,27452.9033619463,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3593.5,27458.7366954386,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3594.5,27464.5700289309,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3595.5,27470.4033624232,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3596.5,27476.2366959155,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3597.5,27482.0700294077,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3598.5,27487.9033629,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3599.5,27493.7366963923,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3600.5,27499.5700298846,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3601.5,27505.4033633769,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3602.5,27511.2366968691,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3603.5,27517.0700303614,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3604.5,27522.9033638537,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3605.5,27528.736697346,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3606.5,27534.5700308383,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3607.5,27540.4033643305,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3608.5,27546.2366978228,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3609.5,27552.0700313151,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3610.5,27557.9033648074,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3611.5,27563.7366982996,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3612.5,27569.5700317919,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3613.5,27575.4033652842,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3614.5,27581.2366987765,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3615.5,27587.0700322688,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3616.5,27592.903365761,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3617.5,27598.7366992533,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3618.5,27604.5700327456,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3619.5,27610.4033662379,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3620.5,27616.2366997302,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3621.5,27622.0700332224,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3622.5,27627.9033667147,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3623.5,27633.736700207,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3624.5,27639.5700336993,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3625.5,27645.4033671916,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3626.5,27651.2367006838,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3627.5,27657.0700341761,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3628.5,27662.9033676684,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3629.5,27668.7367011607,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3630.5,27674.5700346529,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3631.5,27680.4033681452,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3632.5,27686.2367016375,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3633.5,27692.0700351298,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3634.5,27697.9033686221,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3635.5,27703.7367021143,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3636.5,27709.5700356066,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3637.5,27715.4033690989,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3638.5,27721.2367025912,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3639.5,27727.0700360835,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3640.5,27732.9033695757,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3641.5,27738.736703068,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3642.5,27744.5700365603,21.0000005722046,21.0000005722046,0,2.842372,1124.797,376.4106,324.6229,2300,-171.8557,44.33683,270.9135,-20.24262,38.23683,0,6.1,1,0,0,0,0,0,6.960132,0.3847753,30.89193,38.23683,0,9661.877,-,-
+3643.5,27750.3873869479,20.9424613952637,21.0000005722046,-0.03196621,2.842372,1121.715,344.4679,293.7652,2300,-171.5629,40.46317,270.1712,-20.15277,34.50735,-0.1441759,6.1,1,0,0,0,0,-3.622617,6.941061,0.3816212,30.80728,34.50735,0,9039.922,-,-
+3644.5,27756.172771126,20.8273830413818,21.0000005722046,-0.03196621,2.842372,1115.551,343.4884,293.7296,2300,-170.9774,40.1264,268.6866,-19.97362,34.31357,-0.2871651,6.1,1,0,0,0,0,-3.602711,6.90292,0.3753647,30.638,34.31357,0,8976.757,-,-
+3645.5,27761.7746187747,20.1666515350342,20.599365234375,-0.3351068,2.842372,1080.161,40.69279,1.07046,2300,-167.6153,4.602934,260.1628,-18.95968,0.1210842,-1.61815,6.1,1,0,0,0,0,-36.56964,6.683931,0.3407616,29.66603,0.1210842,0,3672.488,-,-
+3646.5,27767.0413595736,18.9602668762207,20.1987316131592,-0.3351068,2.842372,1015.545,31.56391,0.7208269,2300,-161.4768,3.356748,244.5996,-17.17268,0.07665825,-2.81991,6.1,1,0,0,0,0,-34.38202,6.284093,0.2831931,27.89139,0.07665825,0,3388.28,-,-
+3647.5,27772.115749985,18.267805480957,19.0993658065796,-0.04959345,2.842372,978.4558,320.4852,275.9823,2245.17,-158.8151,32.83809,230.0483,-16.27277,28.27816,-1.540069,6.1,1,0,0,0,0,-4.902462,6.054587,0.2532844,26.87275,28.27816,0,7677.339,-,-
+3648.5,27777.1405469477,18.0892690658569,18,-0.04959393,2.842372,968.8931,332.2327,275.9338,2220.833,-158.2891,33.70908,225.3307,-16.06037,27.99686,-0.3877845,6.1,1,0,0,0,0,-4.854596,5.995414,0.2459305,26.61011,27.99686,0,7763.265,-,-
+3649.5,27782.1405469477,18,18,0,2.842372,964.1117,382.269,323.7562,2208.664,-158.0261,38.59446,222.9902,-15.95456,32.68693,-0.1924641,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8520.556,-,-
+3650.5,27787.1405469477,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+3651.5,27792.1405469477,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+3652.5,27797.1405469477,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+3653.5,27802.1405469477,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+3654.5,27807.1405469477,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+3655.5,27812.1405469477,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+3656.5,27817.1405469477,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+3657.5,27822.1405469477,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+3658.5,27827.1405469477,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+3659.5,27832.1405469477,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+3660.5,27837.1405469477,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+3661.5,27842.1405469477,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+3662.5,27847.1405469477,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+3663.5,27852.1405469477,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+3664.5,27857.1405469477,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+3665.5,27862.1405469477,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+3666.5,27867.1405469477,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+3667.5,27872.1405469477,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+3668.5,27877.1405469477,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+3669.5,27882.1405469477,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+3670.5,27887.1405469477,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+3671.5,27892.1405469477,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+3672.5,27897.1405469477,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+3673.5,27902.1405469477,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+3674.5,27907.1405469477,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+3675.5,27912.1405469477,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+3676.5,27917.1405469477,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+3677.5,27922.1405469477,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+3678.5,27927.1405469477,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+3679.5,27932.1405469477,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+3680.5,27937.1405469477,18,18,0,2.842372,964.1117,384.1753,323.7562,2208.664,-158.0261,38.78693,222.9902,-15.95456,32.68693,0,6.1,1,0,0,0,0,0,5.965827,0.2423075,26.47879,32.68693,0,8551.391,-,-
+3681.5,27942.0031110346,17.5052307128906,18,-0.2748718,2.842372,937.611,109.8784,58.44021,2141.22,-156.5686,10.78857,210.2387,-15.37291,5.738033,-1.049468,6.1,1,0,0,0,0,-26.03765,5.801843,0.2228706,25.75097,5.738033,0,4043.885,-,-
+3682.5,27946.5908032954,16.5156921386719,18,-0.2748718,2.842372,884.6096,102.3293,58.19087,2006.331,-153.6535,9.479389,185.8587,-14.23386,5.390575,-2.011187,6.1,1,0,0,0,0,-24.56578,5.473876,0.1871714,24.29531,5.390575,0,3527.658,-,-
+3683.5,27950.8690873683,15.4018226623535,18,-0.343945,2.842372,824.9487,37.31398,-8.711679,1854.495,-150.3722,3.223496,160.2069,-12.99042,-0.7525883,-2.123916,6.1,1,0,0,0,0,-28.66585,5.104701,0.1517978,22.65676,-0.7525883,0,2451.071,-,-
+3684.5,27954.8034259379,14.163618850708,18,-0.3439453,2.842372,758.6284,40.27206,-8.983052,1685.709,-148.7931,3.199348,133.9184,-11.82063,-0.713644,-2.187008,6.1,1,0,0,0,0,-26.36132,4.694316,0.1180516,20.83531,-0.713644,0,2174.503,-,-
+3685.5,27958.4084025919,12.9779159545898,15.9197542190552,-0.314779,2.842372,695.12,76.30484,18.91701,1524.08,-148.4756,5.554442,110.9421,-10.80795,1.377022,-1.922579,6.1,1,0,0,0,0,-22.10621,4.301333,0.09081637,19.09109,1.377022,0,2383.266,-,-
+3686.5,27961.6986002028,11.8447113990784,13.8395092964172,-0.3147788,2.842372,634.4236,85.23138,18.70888,1369.608,-148.1721,5.66249,90.99221,-9.844064,1.242956,-1.680466,6.1,1,0,0,0,0,-20.17593,3.92575,0.06904349,17.42409,1.242956,0,2340.562,-,-
+3687.5,27964.8120953143,11.2085824012756,12.4197546958923,-0.03862619,2.842372,600.3514,368.1141,285.0218,1282.894,-148.0018,23.14284,80.65383,-9.30467,17.91893,-0.876097,6.1,1,0,0,0,0,-2.342805,3.714915,0.05850612,16.48832,17.91893,0,5158.451,-,-
+3688.5,27967.8869639933,11.0695272445679,11.0000000953674,-0.03862643,2.842372,592.9034,380.2644,284.9986,1263.904,-148.1774,23.61012,78.47413,-9.200143,17.69519,-0.1850704,6.1,1,0,0,0,0,-2.313755,3.668827,0.05635552,16.28376,17.69519,0,5250.814,-,-
+3689.5,27970.8828875124,10.7853246688843,11.0000000953674,-0.1192639,2.842372,577.681,301.8582,207.1566,1225.086,-148.558,18.2608,74.11112,-8.986958,12.53186,-0.3710653,6.1,1,0,0,0,0,-6.960586,3.574632,0.05212534,15.86569,12.53186,0,4336.659,-,-
+3690.5,27973.7595473826,10.3559755325317,11.0000000953674,-0.1192636,2.842372,593.1891,297.9334,193.6471,1264.632,-148.1703,18.50721,78.55721,-9.204132,12.02909,0.378122,6.1,1,0,0,0,0,-6.683481,3.432331,0.04614475,15.2341,12.02909,0,4371.322,-,-
+3691.5,27976.4399401248,9.64941387176514,11.0000000953674,-0.2732706,2.842372,593.1891,149.0868,50.8876,1264.632,-148.1703,9.261066,78.55721,-9.204132,3.161067,0,6.1,1,0,0,0,0,-14.26913,3.198152,0.03732949,14.19471,3.161067,0,2847.165,-,-
+3692.5,27978.8470622599,8.66563968658447,11.0000000953674,-0.2732706,2.842372,593.1891,143.7943,45.59506,1264.632,-148.1703,8.932302,78.55721,-9.204132,2.832302,0,6.1,1,0,0,0,0,-12.81437,2.872095,0.02703654,12.74754,2.832302,0,2796.913,-,-
+3693.5,27980.9914998114,7.71997518539429,11.0000000953674,-0.2520986,2.842372,593.1891,152.9769,54.77773,1264.632,-148.1703,9.502716,78.55721,-9.204132,3.402717,0,6.1,1,0,0,0,0,-10.53149,2.558669,0.019116,11.35642,3.402717,0,2884.102,-,-
+3694.5,27982.8838386834,6.81241993904114,11.0000000953674,-0.2520988,2.842372,593.1891,146.4771,48.27787,1264.632,-148.1703,9.098954,78.55721,-9.204132,2.998954,0,6.1,1,0,0,0,0,-9.293425,2.257873,0.01313571,10.02137,2.998954,0,2822.386,-,-
+3695.5,27984.5338447392,5.94002180099487,11.0000000953674,-0.2325668,2.842372,593.1891,150.3573,52.15805,1264.632,-148.1703,9.339986,78.55721,-9.204132,3.239986,0,6.1,1,0,0,0,0,-7.475486,1.96873,0.008707899,8.738034,3.239986,0,2859.228,-,-
+3696.5,27985.9512839615,5.10278120040894,11.0000000953674,-0.232567,2.842372,593.1891,142.974,44.77482,1264.632,-148.1703,8.88135,78.55721,-9.204132,2.78135,0,6.1,1,0,0,0,0,-6.421826,1.691239,0.005520395,7.506416,2.78135,0,2789.125,-,-
+3697.5,27987.1506967843,4.3178861618042,11.0000000953674,-0.2034856,2.842372,593.1891,147.0043,48.80508,1264.632,-148.1703,9.131704,78.55721,-9.204132,3.031704,0,6.1,1,0,0,0,0,-4.754539,1.431098,0.003344744,6.351801,3.031704,0,2827.392,-,-
+3698.5,27988.1466240585,3.58533818721771,11.0000000953674,-0.2034856,2.842372,593.1891,138.7104,40.5112,1264.632,-148.1703,8.616499,78.55721,-9.204132,2.5165,0,6.1,1,0,0,0,0,-3.947912,1.188306,0.001914872,5.27419,2.5165,0,2748.642,-,-
+3699.5,27988.8674056828,2.59481384754181,11.0000000953674,-0.3468057,2.842372,560,90.42837,0,1180,-149,5.302997,69.19881,-8.737817,0,-0.797003,6.1,0,0,0,0,0,-4.869631,0.8600117,0.0007258851,3.817086,-0.1918085,-0.1918085,2133.607,-,-
+3700.5,27989.2670170069,1.43860076665878,10.8920036315918,-0.2955349,2.842372,593.1891,115.7384,4.708887,1264.632,-148.1703,7.189512,78.55721,-9.204132,0.2925096,0.797003,6.1,1,0,0,0,0,-2.300662,0.4768024,0.0001237001,2.116245,0.2925096,0,2530.523,-,-
+3701.5,27989.3929389417,0.453318965435028,8.68147888183594,-0.2518439,2.842372,560,90.42837,0,1180,-149,5.302997,69.19881,-8.737817,0,-0.797003,6.1,0,0,0,0,0,-0.6177872,0.1502457,3.870445E-06,0.6668522,0.1993146,0,2133.607,-,-
+3702.5,27989.3929389417,0,4.47642316818237,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3703.5,27989.3929389417,0,1.18694776296616,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3704.5,27989.3929389417,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3705.5,27989.3929389417,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3706.5,27989.3929389417,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3707.5,27989.3929389417,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3708.5,27989.3929389417,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3709.5,27989.3929389417,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3710.5,27989.3929389417,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3711.5,27989.3929389417,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3712.5,27989.3929389417,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3713.5,27989.3929389417,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3714.5,27989.3929389417,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3715.5,27989.3929389417,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3716.5,27989.3929389417,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3717.5,27989.3929389417,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3718.5,27989.3929389417,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3719.5,27989.3929389417,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3720.5,27989.3929389417,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3721.5,27989.3929389417,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3722.5,27989.3929389417,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3723.5,27989.3929389417,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3724.5,27989.3929389417,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3725.5,27989.3929389417,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3726.5,27989.3929389417,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3727.5,27989.3929389417,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3728.5,27989.3929389417,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3729.5,27989.3929389417,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3730.5,27989.3929389417,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3731.5,27989.3929389417,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3732.5,27989.3929389417,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3733.5,27989.3929389417,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3734.5,27989.3929389417,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3735.5,27989.3929389417,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3736.5,27989.3929389417,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3737.5,27989.3929389417,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3738.5,27989.3929389417,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3739.5,27989.3929389417,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3740.5,27989.3929389417,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3741.5,27989.3929389417,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
+3742.5,27989.3929389417,0,0,0,2.842372,560,104.0191,0,1180,-149,6.1,69.19881,-8.737817,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,2265.506,-,-
diff --git a/VectoCoreTest/TestData/Integration/MinimalPowerTrain/Coach_24t_InitTest.vdri b/VectoCoreTest/TestData/Integration/MinimalPowerTrain/Coach_24t_InitTest.vdri
new file mode 100644
index 0000000000000000000000000000000000000000..30157719b565ce025e92eab6672b7f7199134a11
--- /dev/null
+++ b/VectoCoreTest/TestData/Integration/MinimalPowerTrain/Coach_24t_InitTest.vdri
@@ -0,0 +1,39 @@
+<s>,<v>,<grad>,<stop>
+110652,18,2.842372037,0
+110653,18,2.842372037,0
+110654,18,2.842372037,0
+110655,18,2.842372037,0
+110656,18,2.842372037,0
+110657,18,2.842372037,0
+110658,18,2.842372037,0
+110659,18,2.842372037,0
+110660,18,2.842372037,0
+110661,18,2.842372037,0
+110662,18,2.842372037,0
+110663,18,2.842372037,0
+110664,18,2.842372037,0
+110665,18,2.842372037,0
+110666,18,2.842372037,0
+110667,18,2.842372037,0
+110668,18,2.842372037,0
+110669,18,2.842372037,0
+110670,18,2.842372037,0
+110671,18,2.842372037,0
+110672,18,2.842372037,0
+110673,18,2.842372037,0
+110674,18,2.842372037,0
+110675,18,2.842372037,0
+110676,18,2.842372037,0
+110677,18,2.842372037,0
+110678,18,2.842372037,0
+110679,18,2.842372037,0
+110680,18,2.842372037,0
+110681,18,2.842372037,0
+110682,18,2.842372037,0
+110683,18,2.842372037,0
+110684,18,2.842372037,0
+110685,18,2.842372037,0
+110686,18,2.842372037,0
+110687,18,2.842372037,0
+110688,18,2.842372037,0
+110689,18,2.842372037,0
\ No newline at end of file
diff --git a/VectoCoreTest/Utils/SITest.cs b/VectoCoreTest/Utils/SITest.cs
index 1572bf5d1a22e23159f1bde3b72ed5109333b1e4..65e5027efd29db6ff454adefda8857908695046d 100644
--- a/VectoCoreTest/Utils/SITest.cs
+++ b/VectoCoreTest/Utils/SITest.cs
@@ -37,6 +37,10 @@ namespace TUGraz.VectoCore.Tests.Utils
 			Assert.IsInstanceOfType(force, typeof(Newton));
 			Assert.AreEqual(15, force.Value());
 
+			var test = 2.0.SI<PerSecond>();
+			var reziprok = 1.0 / test;
+			Assert.AreEqual(0.5, reziprok.Value());
+			Assert.IsTrue(1.SI<Second>().HasEqualUnit(reziprok));
 
 			//add
 			var angularVelocity2 = 400.SI<RoundsPerMinute>().Cast<PerSecond>();
diff --git a/VectoCoreTest/VectoCoreTest.csproj b/VectoCoreTest/VectoCoreTest.csproj
index 750f13f441a996f106ab17b561ef709b9fb470fc..1a091779ad9a0b543ca98287da5a3e40644fe4e2 100644
--- a/VectoCoreTest/VectoCoreTest.csproj
+++ b/VectoCoreTest/VectoCoreTest.csproj
@@ -73,6 +73,8 @@
     <Compile Include="FileIO\JsonTest.cs" />
     <Compile Include="FileIO\SimulationDataReaderTest.cs" />
     <Compile Include="Integration\EngineOnlyCycle\EngineOnlyCycleTest.cs" />
+    <Compile Include="Models\SimulationComponentData\AuxiliaryTypeHelperTest.cs" />
+    <Compile Include="Models\SimulationComponentData\CombustionEngineDataTest.cs" />
     <Compile Include="Models\Simulation\AuxTests.cs" />
     <Compile Include="Utils\MockAuxiliaryDemand.cs" />
     <Compile Include="Integration\SimulationRuns\MinimalPowertrain.cs" />
@@ -261,6 +263,9 @@
     <None Include="TestData\EngineFullLoadJumps.csv">
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </None>
+    <None Include="TestData\Integration\MinimalPowerTrain\1-Gear-StopTest-dist.vdri">
+      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
+    </None>
     <None Include="TestData\Integration\MinimalPowerTrain\1-Gear-Test-dist.vdri">
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </None>
diff --git a/VectoCoreTest/app.config b/VectoCoreTest/app.config
index 275e46a27e77b434708c616ce57bc44e44093d6f..d1ca176ab548d2fd255b31c7a4004cd34ff80d7e 100644
--- a/VectoCoreTest/app.config
+++ b/VectoCoreTest/app.config
@@ -29,7 +29,10 @@
 					layout="${longdate} [${processid}@${machinename}] ${callsite} ${level:uppercase=true}: ${message}" />
 		</targets>
 		<rules>
-			<logger name="*" minlevel="Info" writeTo="LogFile" />
+			<logger name="TUGraz.VectoCore.Models.SimulationComponent.Impl.Vehicle" minlevel="Info" writeTo="ConsoleLogger" />
+			<logger name="TUGraz.VectoCore.Models.SimulationComponent.Impl.Clutch" minlevel="Info" writeTo="ConsoleLogger" />
+			<logger name="TUGraz.VectoCore.Models.SimulationComponent.Impl.AxleGear" minlevel="Info" writeTo="ConsoleLogger" />
+			<logger name="TUGraz.VectoCore.Models.SimulationComponent.Impl.Driver" minlevel="Debug" writeTo="ConsoleLogger" />
 		</rules>
 	</nlog>
 </configuration>
\ No newline at end of file