diff --git a/.gitignore b/.gitignore
index eb85b28f0450b6d69d46f65eba5ee6e564bba112..bb6a80f0b5ae7db4ea130d575c5e47a1d4d8ed00 100644
--- a/.gitignore
+++ b/.gitignore
@@ -189,3 +189,4 @@ UpgradeLog*.htm
 # Microsoft Fakes
 FakesAssemblies/
 VectoCoreTest/TestData/EngineOnly/Test1/Test1_results.vmod.csv
+*.orig
diff --git a/VECTO.sln.DotSettings b/VECTO.sln.DotSettings
index 11271d92f6489738bb9f961d2278206600823f3c..16a678e66c187d77cdf6020db8ce6f8575cdf8f6 100644
--- a/VECTO.sln.DotSettings
+++ b/VECTO.sln.DotSettings
@@ -16,6 +16,8 @@
 	<s:String x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/SIMPLE_EMBEDDED_STATEMENT_STYLE/@EntryValue">LINE_BREAK</s:String>
 	<s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/SPACE_AROUND_MULTIPLICATIVE_OP/@EntryValue">True</s:Boolean>
 	<s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/SPACE_WITHIN_SINGLE_LINE_ARRAY_INITIALIZER_BRACES/@EntryValue">True</s:Boolean>
+	<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/Abbreviations/=CSV/@EntryIndexedValue">CSV</s:String>
+	<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/Abbreviations/=RP/@EntryIndexedValue">RP</s:String>
 	<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/Abbreviations/=SI/@EntryIndexedValue">SI</s:String>
 	<s:Boolean x:Key="/Default/Environment/InjectedLayers/FileInjectedLayer/=2BF7A1E51991F2458D2D1F0B29CF888B/@KeyIndexDefined">True</s:Boolean>
 	<s:String x:Key="/Default/Environment/InjectedLayers/FileInjectedLayer/=2BF7A1E51991F2458D2D1F0B29CF888B/AbsolutePath/@EntryValue">C:\Workspaces\VisualStudio\VECTO_quam\VECTO.sln.DotSettings</s:String>
diff --git a/VectoCore/FileIO/InputFileReader.cs b/VectoCore/FileIO/InputFileReader.cs
new file mode 100644
index 0000000000000000000000000000000000000000..2c023d53b2a1d2230ded3db40339052db9ab7825
--- /dev/null
+++ b/VectoCore/FileIO/InputFileReader.cs
@@ -0,0 +1,23 @@
+using System;
+using Common.Logging;
+using Newtonsoft.Json;
+
+namespace TUGraz.VectoCore.FileIO
+{
+	public class InputFileReader
+	{
+		protected ILog Log;
+
+		protected InputFileReader()
+		{
+			Log = LogManager.GetLogger(GetType());
+		}
+
+		protected Tuple<int, bool> GetFileVersion(string jsonStr)
+		{
+			dynamic json = JsonConvert.DeserializeObject(jsonStr);
+			return new Tuple<int, bool>(Int32.Parse(json.Header.FileVersion.ToString()),
+				Boolean.Parse(json.Body.SavedInDeclMode.ToString()));
+		}
+	}
+}
\ No newline at end of file
diff --git a/VectoCore/FileIO/VehicleFileDeclaration.cs b/VectoCore/FileIO/VehicleFileDeclaration.cs
new file mode 100644
index 0000000000000000000000000000000000000000..138b36d15399f9d4cb7a0e21d9fc48be1ae253f3
--- /dev/null
+++ b/VectoCore/FileIO/VehicleFileDeclaration.cs
@@ -0,0 +1,131 @@
+using System;
+using System.Collections.Generic;
+using System.Runtime.Serialization;
+using Newtonsoft.Json;
+using TUGraz.VectoCore.Exceptions;
+using TUGraz.VectoCore.Models.SimulationComponent.Data;
+using TUGraz.VectoCore.Utils;
+
+namespace TUGraz.VectoCore.FileIO
+{
+//	public class VehicleFileDeclaration
+//	{
+
+	public class VehicleFileV5Declaration
+	{
+		[JsonProperty(Required = Required.Always)] public JsonDataHeader Header;
+		[JsonProperty(Required = Required.Always)] public DataBodyDecl Body;
+
+		//public void SetProperties(VehicleData vehicleData)
+		//{
+		//	vehicleData.AxleConfiguration = AxleConfiguration.AxleConfig4x2;
+
+		//	vehicleData.Retarder = new RetarderData(Body.Retarder, vehicleData.BasePath);
+
+		//	vehicleData.AxleData = new List<VehicleData.Axle>(Body.AxleConfig.Axles.Count);
+		//	var RRC = 0.0;
+		//	var mRed0 = 0.SI<Kilogram>();
+		//	foreach (var axleData in Body.AxleConfig.Axles) {
+		//		var axle = new VehicleData.Axle(axleData);
+		//		if (axle.RollResistanceCoefficient < 0) {
+		//			throw new VectoException("Axle roll resistance coefficient < 0");
+		//		}
+		//		if (axle.TyreTestLoad <= 0) {
+		//			throw new VectoException("Axle tyre test load (FzISO) must be greater than 0!");
+		//		}
+		//		var nrWheels = axle.TwinTyres ? 4 : 2;
+		//		RRC += axle.AxleWeightShare * axle.RollResistanceCoefficient *
+		//				Math.Pow(
+		//					(axle.AxleWeightShare * vehicleData.TotalVehicleWeight() * Physics.GravityAccelleration / axle.TyreTestLoad /
+		//					nrWheels).Double(), Physics.RollResistanceExponent - 1);
+		//		mRed0 += nrWheels * (axle.Inertia / vehicleData.DynamicTyreRadius / vehicleData.DynamicTyreRadius).Cast<Kilogram>();
+
+		//		vehicleData._axleData.Add(axle);
+		//	}
+		//	vehicleData.TotalRollResistanceCoefficient = RRC;
+		//	vehicleData.ReducedMassWheels = mRed0;
+
+		//	vehicleData.VehicleCategory = Enum.Parse(typeof (VehicleCategory), Body.VehicleCategoryStr, true);
+
+
+		//	//switch (Body.CrossWindCorrectionModeStr) {
+		//	//	case "CdOfBeta":
+		//	//		vehicleData._crossWindCorrectionMode = CrossWindCorrectionMode.VAirBeta;
+		//	//		break;
+		//	//	case "CdOfV":
+		//	//		vehicleData._crossWindCorrectionMode = CrossWindCorrectionMode.SpeedDependent;
+		//	//		break;
+		//	//	default:
+		//	//		vehicleData._crossWindCorrectionMode = CrossWindCorrectionMode.NoCorrection;
+		//	//		break;
+		//	//}
+		//}
+
+		public class DataBodyDecl
+		{
+			[JsonProperty("SavedInDeclMode", Required = Required.Always)] public bool SavedInDeclarationMode;
+
+			[JsonProperty("VehCat", Required = Required.Always)] public string VehicleCategoryStr;
+
+			public VehicleCategory VehicleCategory()
+			{
+				return (VehicleCategory) Enum.Parse(typeof (VehicleCategory), VehicleCategoryStr, true);
+			}
+
+			[JsonProperty(Required = Required.Always)] public double CurbWeight;
+
+			//[JsonProperty]
+			//public double CurbWeightExtra;
+
+			//[JsonProperty]
+			//public double Loading;
+
+			[JsonProperty("MassMax", Required = Required.Always)] public double GrossVehicleMassRating;
+
+			[JsonProperty("Cd", Required = Required.Always)] public double DragCoefficient;
+
+			[JsonProperty("CrossSecArea", Required = Required.Always)] public double CrossSectionArea;
+
+			[JsonProperty("Cd2")] public double DragCoefficientRigidTruck; // without trailer
+
+			[JsonProperty("CrossSecArea2")] public double CrossSectionAreaRigidTruck;
+
+
+			//[JsonProperty("rdyn")]
+			//public double DynamicTyreRadius;
+
+			[JsonProperty("Rim", Required = Required.Always)] public string RimStr;
+
+			//[JsonProperty("CdCorrMode")]
+			//public string CrossWindCorrectionModeStr;
+
+			//[JsonProperty("CdCorrFile")]
+			//public string CrossWindCorrectionFile;
+
+			[JsonProperty("Retarder", Required = Required.Always)] public RetarderData.Data Retarder;
+
+			[JsonProperty(Required = Required.Always)] public AxleConfigData AxleConfig;
+
+
+			public class AxleConfigData
+			{
+				[JsonProperty("Type", Required = Required.Always)] public string TypeStr;
+				[JsonProperty(Required = Required.Always)] public IList<AxleDataDecl> Axles;
+			}
+
+			public class AxleDataDecl
+			{
+				//[JsonProperty]
+				//public double Inertia;
+				[JsonProperty("Wheels", Required = Required.Always)] public string WheelsStr;
+				//[JsonProperty(Required = Required.Always)]
+				//public double AxleWeightShare;
+				[JsonProperty(Required = Required.Always)] public bool TwinTyres;
+				[JsonProperty("RRCISO", Required = Required.Always)] public double RollResistanceCoefficient;
+				[JsonProperty("FzISO", Required = Required.Always)] public double TyreTestLoad;
+			}
+		}
+	}
+
+//	}
+}
\ No newline at end of file
diff --git a/VectoCore/FileIO/VehicleFileEngineering.cs b/VectoCore/FileIO/VehicleFileEngineering.cs
new file mode 100644
index 0000000000000000000000000000000000000000..aa2d7ebc14f859d7c36d643578d5b22e0e613771
--- /dev/null
+++ b/VectoCore/FileIO/VehicleFileEngineering.cs
@@ -0,0 +1,135 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using Newtonsoft.Json;
+using TUGraz.VectoCore.Exceptions;
+using TUGraz.VectoCore.Models.SimulationComponent.Data;
+using TUGraz.VectoCore.Utils;
+
+namespace TUGraz.VectoCore.FileIO
+{
+//	class VehicleFileEngineering
+//	{
+
+	public class VehicleFileV5Engineering : VehicleFileV5Declaration
+	{
+//		[JsonProperty(Required = Required.Always)] public JsonDataHeader Header;
+		[JsonProperty(Required = Required.Always)] public new DataBodyEng Body;
+
+		//public void SetProperties(VehicleData vehicleData)
+		//{
+		//	vehicleData._axleConfiguration = VehicleData.AxleConfiguration.AxleConfig4x2;
+
+		//	vehicleData._retarder = new RetarderData(Body.Retarder, vehicleData.BasePath);
+
+		//	vehicleData._axleData = new List<VehicleData.Axle>(Body.AxleConfig.Axles.Count);
+		//	var RRC = 0.0;
+		//	var mRed0 = 0.SI<Kilogram>();
+		//	foreach (var axleData in Body.AxleConfig.Axles) {
+		//		var axle = new VehicleData.Axle(axleData);
+		//		if (axle.RollResistanceCoefficient < 0) {
+		//			throw new VectoException("Axle roll resistance coefficient < 0");
+		//		}
+		//		if (axle.TyreTestLoad <= 0) {
+		//			throw new VectoException("Axle tyre test load (FzISO) must be greater than 0!");
+		//		}
+		//		var nrWheels = axle.TwinTyres ? 4 : 2;
+		//		RRC += axle.AxleWeightShare * axle.RollResistanceCoefficient *
+		//				Math.Pow(
+		//					(axle.AxleWeightShare * vehicleData.TotalVehicleWeight() * Physics.GravityAccelleration / axle.TyreTestLoad /
+		//					nrWheels).Double(), Physics.RollResistanceExponent - 1);
+		//		mRed0 += nrWheels * (axle.Inertia / vehicleData.DynamicTyreRadius / vehicleData.DynamicTyreRadius).Cast<Kilogram>();
+
+		//		vehicleData._axleData.Add(axle);
+		//	}
+		//	vehicleData.TotalRollResistanceCoefficient = RRC;
+		//	vehicleData.ReducedMassWheels = mRed0;
+
+		//	switch (Body.VehicleCategoryStr) {
+		//		case "RigidTruck":
+		//			vehicleData.Category = VehicleData.VehicleCategory.RigidTruck;
+		//			break;
+		//		case "Tractor":
+		//			vehicleData.Category = VehicleData.VehicleCategory.Tractor;
+		//			break;
+		//		case "CityBus":
+		//			vehicleData.Category = VehicleData.VehicleCategory.CityBus;
+		//			break;
+		//		case "InterurbanBus":
+		//			vehicleData.Category = VehicleData.VehicleCategory.InterurbanBus;
+		//			break;
+		//		case "Coach":
+		//			vehicleData.Category = VehicleData.VehicleCategory.Coach;
+		//			break;
+		//	}
+
+		//	switch (Body.CrossWindCorrectionModeStr) {
+		//		case "CdOfBeta":
+		//			vehicleData._crossWindCorrectionMode = VehicleData.CrossWindCorrectionMode.VAirBeta;
+		//			break;
+		//		case "CdOfV":
+		//			vehicleData._crossWindCorrectionMode = VehicleData.CrossWindCorrectionMode.SpeedDependent;
+		//			break;
+		//		default:
+		//			vehicleData._crossWindCorrectionMode = VehicleData.CrossWindCorrectionMode.NoCorrection;
+		//			break;
+		//	}
+		//}
+
+		public class DataBodyEng : DataBodyDecl
+		{
+			//[JsonProperty("SavedInDeclMode")] public bool SavedInDeclarationMode;
+
+			//[JsonProperty("VehCat", Required = Required.Always)] public string VehicleCategoryStr;
+
+			//[JsonProperty(Required = Required.Always)] public double CurbWeight;
+
+			[JsonProperty] public double CurbWeightExtra;
+
+			[JsonProperty] public double Loading;
+
+			//[JsonProperty("MassMax", Required = Required.Always)] public double GrossVehicleMassRating;
+
+			//[JsonProperty("Cd2")] public double DragCoefficientRigidTruck; // without trailer
+
+			//[JsonProperty("CrossSecArea2")] public double CrossSectionAreaRigidTruck;
+
+			//[JsonProperty("Cd", Required = Required.Always)] public double DragCoefficient;
+
+			//[JsonProperty("CrossSecArea", Required = Required.Always)] public double CrossSectionArea;
+
+			[JsonProperty("rdyn")] public double DynamicTyreRadius;
+
+			//[JsonProperty("Rim")] public string RimStr;
+
+			[JsonProperty("CdCorrMode")] public string CrossWindCorrectionModeStr;
+
+			[JsonProperty("CdCorrFile")] public string CrossWindCorrectionFile;
+
+			//[JsonProperty("Retarder", Required = Required.Always)] public RetarderData.Data Retarder;
+
+			[JsonProperty(Required = Required.Always)] public new AxleConfigData AxleConfig;
+
+
+			public new class AxleConfigData
+			{
+				[JsonProperty("Type", Required = Required.Always)] public string TypeStr;
+				[JsonProperty(Required = Required.Always)] public IList<AxleDataEng> Axles;
+			}
+
+			public class AxleDataEng : AxleDataDecl
+			{
+				[JsonProperty] public double Inertia;
+//				[JsonProperty] public string WheelsStr;
+				[JsonProperty] public double AxleWeightShare;
+//				[JsonProperty(Required = Required.Always)] public bool TwinTyres;
+//				[JsonProperty("RRCISO", Required = Required.Always)] public double RollResistanceCoefficient;
+//				[JsonProperty("FzISO", Required = Required.Always)] public double TyreTestLoad;
+			}
+		}
+	}
+}
+
+//}
\ No newline at end of file
diff --git a/VectoCore/Models/Connector/Ports/IDriverDemandProvider.cs b/VectoCore/Models/Connector/Ports/IDriverDemandProvider.cs
index f960621dc279dc68779cfe9b2df7ca5bdd7033f0..bce021607fd92a0e1aa9267e9b075f4b33b27db4 100644
--- a/VectoCore/Models/Connector/Ports/IDriverDemandProvider.cs
+++ b/VectoCore/Models/Connector/Ports/IDriverDemandProvider.cs
@@ -9,7 +9,7 @@
 		/// Returns the inport to connect it to another outport.
 		/// </summary>
 		/// <returns></returns>
-		IDriverDemandInPort InPort();
+		IDriverDemandInPort InShaft();
 	}
 
 	/// <summary>
@@ -21,6 +21,6 @@
 		/// Returns the outport to send requests to.
 		/// </summary>
 		/// <returns></returns>
-		IDriverDemandOutPort OutPort();
+		IDriverDemandOutPort OutShaft();
 	}
 }
\ No newline at end of file
diff --git a/VectoCore/Models/Connector/Ports/IDrivingCycleDemandProvider.cs b/VectoCore/Models/Connector/Ports/IDrivingCycleDemandProvider.cs
index 54a062609aa7cbc245006c5a0fe981c492896466..c33b4f8d4d637e77f2d13c6aec57197557954e40 100644
--- a/VectoCore/Models/Connector/Ports/IDrivingCycleDemandProvider.cs
+++ b/VectoCore/Models/Connector/Ports/IDrivingCycleDemandProvider.cs
@@ -9,7 +9,7 @@
 		/// Returns the inport to connect it to another outport.
 		/// </summary>
 		/// <returns></returns>
-		IDrivingCycleDemandInPort InPort();
+		IDrivingCycleDemandInPort InShaft();
 	}
 
 	/// <summary>
@@ -21,6 +21,6 @@
 		/// Returns the outport to send requests to.
 		/// </summary>
 		/// <returns></returns>
-		IDrivingCycleDemandOutPort OutPort();
+		IDrivingCycleDemandOutPort OutShaft();
 	}
 }
\ No newline at end of file
diff --git a/VectoCore/Models/Connector/Ports/IDrivingCyclePort.cs b/VectoCore/Models/Connector/Ports/IDrivingCyclePort.cs
index ba04f9ad721f6910babcd0cbd40f2eb45ba4ed84..549e9edb457335ef13ef1e4118f00c6e301a59bd 100644
--- a/VectoCore/Models/Connector/Ports/IDrivingCyclePort.cs
+++ b/VectoCore/Models/Connector/Ports/IDrivingCyclePort.cs
@@ -2,17 +2,17 @@ using System;
 
 namespace TUGraz.VectoCore.Models.Connector.Ports
 {
-    /// <summary>
-    /// Defines a method to request the outport.
-    /// </summary>
-    public interface IDrivingCycleOutPort
-    {
-        /// <summary>
-        /// Requests a demand for a specific absolute time and a time interval dt.
-        /// </summary>
-        /// <param name="absTime">The absolute time of the simulation.</param>
-        /// <param name="dt">The current time interval.</param>
-        /// <returns></returns>
-        IResponse Request(TimeSpan absTime, TimeSpan dt);
-    }
+	/// <summary>
+	/// Defines a method to request the outport.
+	/// </summary>
+	public interface IDrivingCycleOutPort
+	{
+		/// <summary>
+		/// Requests a demand for a specific absolute time and a time interval dt.
+		/// </summary>
+		/// <param name="absTime">The absolute time of the simulation.</param>
+		/// <param name="dt">The current time interval.</param>
+		/// <returns></returns>
+		IResponse Request(TimeSpan absTime, TimeSpan dt);
+	}
 }
\ No newline at end of file
diff --git a/VectoCore/Models/Connector/Ports/IDrivingCycleProvider.cs b/VectoCore/Models/Connector/Ports/IDrivingCycleProvider.cs
index efefcf1f8f6d956e6957827435a8900723d2240a..624b3953b626dfb320bea1028182f31816b8ab9f 100644
--- a/VectoCore/Models/Connector/Ports/IDrivingCycleProvider.cs
+++ b/VectoCore/Models/Connector/Ports/IDrivingCycleProvider.cs
@@ -1,14 +1,14 @@
 namespace TUGraz.VectoCore.Models.Connector.Ports
 {
-    /// <summary>
-    /// Defines a method to acquire an DriverCycle Demand out port.
-    /// </summary>
-    public interface IDrivingCycleOutProvider
-    {
-        /// <summary>
-        /// Returns the outport to send requests to.
-        /// </summary>
-        /// <returns></returns>
-        IDrivingCycleOutPort OutPort();
-    }
+	/// <summary>
+	/// Defines a method to acquire an DriverCycle Demand out port.
+	/// </summary>
+	public interface IDrivingCycleOutProvider
+	{
+		/// <summary>
+		/// Returns the outport to send requests to.
+		/// </summary>
+		/// <returns></returns>
+		IDrivingCycleOutPort OutShaft();
+	}
 }
\ No newline at end of file
diff --git a/VectoCore/Models/Connector/Ports/IRoadPortProvider.cs b/VectoCore/Models/Connector/Ports/IRoadPortProvider.cs
index 646295907a9ce73ed3a45f95e6ce237f2bdca940..4a55c700dd871037a00d5b15e02d2857d80a69fd 100644
--- a/VectoCore/Models/Connector/Ports/IRoadPortProvider.cs
+++ b/VectoCore/Models/Connector/Ports/IRoadPortProvider.cs
@@ -1,26 +1,26 @@
 namespace TUGraz.VectoCore.Models.Connector.Ports
 {
-    /// <summary>
-    /// Defines a method to acquire an Fv in port.
-    /// </summary>
-    public interface IRoadPortInProvider
-    {
-        /// <summary>
-        /// Returns the inport to connect it to another outport.
-        /// </summary>
-        /// <returns></returns>
-        IFvInPort InPort();
-    }
+	/// <summary>
+	/// Defines a method to acquire an Fv in port.
+	/// </summary>
+	public interface IRoadPortInProvider
+	{
+		/// <summary>
+		/// Returns the inport to connect it to another outport.
+		/// </summary>
+		/// <returns></returns>
+		IFvInPort InShaft();
+	}
 
-    /// <summary>
-    /// Defines a method to acquire an Fv out port.
-    /// </summary>
-    public interface IRoadPortOutProvider
-    {
-        /// <summary>
-        /// Returns the outport to send requests to.
-        /// </summary>
-        /// <returns></returns>
-        IFvOutPort OutPort();
-    }
+	/// <summary>
+	/// Defines a method to acquire an Fv out port.
+	/// </summary>
+	public interface IRoadPortOutProvider
+	{
+		/// <summary>
+		/// Returns the outport to send requests to.
+		/// </summary>
+		/// <returns></returns>
+		IFvOutPort OutShaft();
+	}
 }
\ No newline at end of file
diff --git a/VectoCore/Models/Declaration/LookupData.cs b/VectoCore/Models/Declaration/LookupData.cs
new file mode 100644
index 0000000000000000000000000000000000000000..ac6411b5d1cd507026e153b43c0260dfe432e1dd
--- /dev/null
+++ b/VectoCore/Models/Declaration/LookupData.cs
@@ -0,0 +1,33 @@
+using System;
+using System.Collections.Generic;
+using System.Data;
+using TUGraz.VectoCore.Utils;
+
+namespace TUGraz.VectoCore.Resources.Declaration
+{
+	public abstract class LookupData<TEntryType>
+	{
+		protected Dictionary<String, TEntryType> _data;
+
+
+		protected DataTable ReadCsvFile(string resourceId)
+		{
+			var myAssembly = System.Reflection.Assembly.GetExecutingAssembly();
+
+			var file = myAssembly.GetManifestResourceStream(resourceId);
+
+			return VectoCSVFile.ReadStream(file);
+		}
+
+		protected abstract void ParseData(DataTable table);
+
+		public TEntryType Lookup(String key)
+		{
+			var retVal = default(TEntryType);
+			if (_data.ContainsKey(key)) {
+				retVal = _data[key];
+			}
+			return retVal;
+		}
+	}
+}
\ No newline at end of file
diff --git a/VectoCore/Models/Declaration/Rims.cs b/VectoCore/Models/Declaration/Rims.cs
new file mode 100644
index 0000000000000000000000000000000000000000..21fd9f9125793ea48b965df5f4ecc1fbe93ed009
--- /dev/null
+++ b/VectoCore/Models/Declaration/Rims.cs
@@ -0,0 +1,37 @@
+using System;
+using System.Data;
+using System.Linq;
+using TUGraz.VectoCore.Resources.Declaration;
+using TUGraz.VectoCore.Utils;
+
+namespace TUGraz.VectoCore.Models.Declaration
+{
+	public class Rims : LookupData<Rims.RimsEntry>
+	{
+		private const string ResourceId = "TUGraz.VectoCore.Resources.Declaration.Rims.csv";
+
+		internal Rims()
+		{
+			var csvFile = ReadCsvFile(ResourceId);
+			ParseData(csvFile);
+		}
+
+
+		protected override sealed void ParseData(DataTable table)
+		{
+			_data = (from DataRow row in table.Rows
+				select new RimsEntry {
+					RimsType = row[0].ToString(),
+					F_a = row.ParseDouble(1),
+					F_b = row.ParseDouble(2),
+				}).ToDictionary(e => e.RimsType);
+		}
+
+		public class RimsEntry
+		{
+			public string RimsType;
+			public double F_a;
+			public double F_b;
+		}
+	}
+}
\ No newline at end of file
diff --git a/VectoCore/Models/Declaration/Wheels.cs b/VectoCore/Models/Declaration/Wheels.cs
new file mode 100644
index 0000000000000000000000000000000000000000..c5467822f8ca867eee1de632a5ebc5f89412e20d
--- /dev/null
+++ b/VectoCore/Models/Declaration/Wheels.cs
@@ -0,0 +1,44 @@
+using System;
+using System.Collections;
+using System.Collections.Generic;
+using System.Data;
+using System.IO;
+using System.Linq;
+using System.Security.AccessControl;
+using TUGraz.VectoCore.Models.SimulationComponent.Data.Gearbox;
+using TUGraz.VectoCore.Resources.Declaration;
+using TUGraz.VectoCore.Utils;
+
+namespace TUGraz.VectoCore.Models.Declaration
+{
+	public class Wheels : LookupData<Wheels.WheelsEntry>
+	{
+		private const string ResourceId = "TUGraz.VectoCore.Resources.Declaration.Wheels.csv";
+
+		internal Wheels()
+		{
+			var csvFile = ReadCsvFile(ResourceId);
+			ParseData(csvFile);
+		}
+
+
+		protected override sealed void ParseData(DataTable table)
+		{
+			_data = (from DataRow row in table.Rows
+				select new WheelsEntry {
+					WheelType = row[0].ToString(),
+					Inertia = row.ParseDouble(1).SI<KilogramSquareMeter>(),
+					DynamicTyreRadius = row.ParseDouble(2).SI().Milli.Meter.Cast<Meter>(),
+					SizeClass = Int32.Parse(row[3].ToString())
+				}).ToDictionary(e => e.WheelType);
+		}
+
+		public class WheelsEntry
+		{
+			public string WheelType;
+			public KilogramSquareMeter Inertia;
+			public Meter DynamicTyreRadius;
+			public int SizeClass;
+		}
+	}
+}
\ No newline at end of file
diff --git a/VectoCore/Models/DeclarationData.cs b/VectoCore/Models/DeclarationData.cs
new file mode 100644
index 0000000000000000000000000000000000000000..260a7f878086e3ac2c48e94aa320164b2ce3307e
--- /dev/null
+++ b/VectoCore/Models/DeclarationData.cs
@@ -0,0 +1,24 @@
+using TUGraz.VectoCore.Models.Declaration;
+
+namespace TUGraz.VectoCore.Models
+{
+	public class DeclarationData
+	{
+		private static DeclarationData _instance;
+
+		public readonly Wheels Wheels;
+
+		public readonly Rims Rims;
+
+		private DeclarationData()
+		{
+			Wheels = new Wheels();
+			Rims = new Rims();
+		}
+
+		public static DeclarationData Instance()
+		{
+			return _instance ?? (_instance = new DeclarationData());
+		}
+	}
+}
\ No newline at end of file
diff --git a/VectoCore/Models/DeclarationData/Wheels.cs b/VectoCore/Models/DeclarationData/Wheels.cs
deleted file mode 100644
index f37a3074ef64a15790a1806dbdfb02a614a81acc..0000000000000000000000000000000000000000
--- a/VectoCore/Models/DeclarationData/Wheels.cs
+++ /dev/null
@@ -1,46 +0,0 @@
-using System.IO;
-using System.Security.AccessControl;
-using TUGraz.VectoCore.Utils;
-
-namespace TUGraz.VectoCore.Models.DeclarationData
-{
-	public class Wheels
-	{
-		private static Wheels _instance;
-
-		private const string ResourceId = "DeclarationWheels";
-
-		protected Wheels()
-		{
-			System.Reflection.Assembly myAssembly;
-			//myAssembly = this.GetType().Assembly;
-			myAssembly = System.Reflection.Assembly.GetExecutingAssembly();
-			//string[] resources = myAssembly.GetManifestResourceNames();
-			//string list = "";
-
-			//foreach (string resource in resources)
-			//	{
-			//	list += resource + "\r\n";
-			//	}
-			//System.Resources.ResourceManager myManager = new System.Resources.ResourceManager("Resources.Wheels", myAssembly);
-
-			System.IO.Stream file =
-				myAssembly.GetManifestResourceStream("TUGraz.VectoCore.Properties.Resources.resources");
-
-			//var csvFile = VectoCSVFile.ReadStream(file);
-			var reader = new StreamReader(file);
-			while (!reader.EndOfStream) {
-				var line = reader.ReadLine();
-			}
-			//var test = myManager.GetObject(ResourceId);
-		}
-
-		public static Wheels Instance()
-		{
-			if (_instance == null) {
-				_instance = new Wheels();
-			}
-			return _instance;
-		}
-	}
-}
\ No newline at end of file
diff --git a/VectoCore/Models/Simulation/Cockpit/IVehicleCockpit.cs b/VectoCore/Models/Simulation/Cockpit/IVehicleCockpit.cs
index 005304c69a1081fa00c8c46e7e3e2bca18303edb..6a4f09ab88700f15ef1066af6925faecacfe62d0 100644
--- a/VectoCore/Models/Simulation/Cockpit/IVehicleCockpit.cs
+++ b/VectoCore/Models/Simulation/Cockpit/IVehicleCockpit.cs
@@ -2,15 +2,19 @@
 
 namespace TUGraz.VectoCore.Models.Simulation.Cockpit
 {
-    /// <summary>
-    /// Defines a method to access shared data of the vehicle.
-    /// </summary>
-    public interface IVehicleCockpit
-    {
-        /// <summary>
-        /// Returns the current vehicle speed.
-        /// </summary>
-        /// <returns></returns>
-        MeterPerSecond VehicleSpeed();
-    }
+	/// <summary>
+	/// Defines a method to access shared data of the vehicle.
+	/// </summary>
+	public interface IVehicleCockpit
+	{
+		/// <summary>
+		/// Returns the current vehicle speed.
+		/// </summary>
+		/// <returns></returns>
+		MeterPerSecond VehicleSpeed();
+
+		double VehicleMass();
+
+		double VehicleLoading();
+	}
 }
\ No newline at end of file
diff --git a/VectoCore/Models/Simulation/Data/IModalDataWriter.cs b/VectoCore/Models/Simulation/Data/IModalDataWriter.cs
index cd7ad3baa36951cbb7feaaa39ed227482c48d106..fa3c9c3a9d945c27cb7dd97f8d36dcf050b72cff 100644
--- a/VectoCore/Models/Simulation/Data/IModalDataWriter.cs
+++ b/VectoCore/Models/Simulation/Data/IModalDataWriter.cs
@@ -1,3 +1,7 @@
+using System;
+using System.Collections.Generic;
+using System.Data;
+
 namespace TUGraz.VectoCore.Models.Simulation.Data
 {
 	public interface IModalDataWriter
@@ -9,11 +13,17 @@ namespace TUGraz.VectoCore.Models.Simulation.Data
 		/// <returns></returns>
 		object this[ModalResultField key] { get; set; }
 
+		bool HasTorqueConverter { get; set; }
+
 		/// <summary>
 		///     Commits the data of the current simulation step.
 		/// </summary>
 		void CommitSimulationStep();
 
 		void Finish();
+
+		Object Compute(string expression, string filter);
+
+		IEnumerable<T> GetValues<T>(ModalResultField key);
 	}
 }
\ No newline at end of file
diff --git a/VectoCore/Models/Simulation/Data/ISummaryDataWriter.cs b/VectoCore/Models/Simulation/Data/ISummaryDataWriter.cs
new file mode 100644
index 0000000000000000000000000000000000000000..41e5b257c0a647e0a2f519f517d6e86757f1395d
--- /dev/null
+++ b/VectoCore/Models/Simulation/Data/ISummaryDataWriter.cs
@@ -0,0 +1,21 @@
+namespace TUGraz.VectoCore.Models.Simulation.Data
+{
+	/// <summary>
+	/// Provides methods to write and finish the Summary.
+	/// </summary>
+	public interface ISummaryDataWriter
+	{
+		/// <summary>
+		/// Writes a single sum entry for the given modaldata of the job.
+		/// </summary>
+		/// <param name="data">The modal data.</param>
+		/// <param name="vehicleMass">The vehicle mass.</param>
+		/// <param name="vehicleLoading">The vehicle loading.</param>
+		void Write(IModalDataWriter data, double vehicleMass = 0, double vehicleLoading = 0);
+
+		/// <summary>
+		/// Writes the data to the sum file.
+		/// </summary>
+		void Finish();
+	}
+}
\ No newline at end of file
diff --git a/VectoCore/Models/Simulation/Data/ModalDataWriter.cs b/VectoCore/Models/Simulation/Data/ModalDataWriter.cs
index cfb75f2132f0c4a34ccce568f513c8997316f06d..4e947fed36e13510b4a5bebd3784ccf1c6dff8ae 100644
--- a/VectoCore/Models/Simulation/Data/ModalDataWriter.cs
+++ b/VectoCore/Models/Simulation/Data/ModalDataWriter.cs
@@ -1,20 +1,28 @@
-using System.Data;
+using System.Data;
+using System.Linq;
+using System.Collections.Generic;
 using TUGraz.VectoCore.Utils;
 
 namespace TUGraz.VectoCore.Models.Simulation.Data
 {
 	public class ModalDataWriter : IModalDataWriter
 	{
-		public ModalDataWriter(string fileName)
+		private readonly bool _engineOnly;
+		private ModalResults Data { get; set; }
+		private DataRow CurrentRow { get; set; }
+		private string ModFileName { get; set; }
+
+
+		public ModalDataWriter(string modFileName, bool engineOnly)
 		{
-			FileName = fileName;
+			HasTorqueConverter = false;
+			ModFileName = modFileName;
 			Data = new ModalResults();
 			CurrentRow = Data.NewRow();
+			_engineOnly = engineOnly;
 		}
 
-		private ModalResults Data { get; set; }
-		private DataRow CurrentRow { get; set; }
-		public string FileName { get; set; }
+		public bool HasTorqueConverter { get; set; }
 
 		public void CommitSimulationStep()
 		{
@@ -24,13 +32,78 @@ namespace TUGraz.VectoCore.Models.Simulation.Data
 
 		public void Finish()
 		{
-			VectoCSVFile.Write(FileName, Data);
+			var dataColumns = new List<ModalResultField> { ModalResultField.time };
+
+			if (!_engineOnly) {
+				dataColumns.AddRange(new[] {
+					ModalResultField.time,
+					ModalResultField.dist,
+					ModalResultField.v_act,
+					ModalResultField.v_targ,
+					ModalResultField.acc,
+					ModalResultField.grad
+				});
+			}
+
+			dataColumns.AddRange(new[] {
+				ModalResultField.n,
+				ModalResultField.Tq_eng,
+				ModalResultField.Tq_clutch,
+				ModalResultField.Tq_full,
+				ModalResultField.Tq_drag,
+				ModalResultField.Pe_eng,
+				ModalResultField.Pe_full,
+				ModalResultField.Pe_drag,
+				ModalResultField.Pe_clutch,
+				ModalResultField.PaEng,
+				ModalResultField.Paux
+			});
+
+			if (!_engineOnly) {
+				dataColumns.AddRange(new[] {
+					ModalResultField.Gear,
+					ModalResultField.PlossGB,
+					ModalResultField.PlossDiff,
+					ModalResultField.PlossRetarder,
+					ModalResultField.PaGB,
+					ModalResultField.PaVeh,
+					ModalResultField.Proll,
+					ModalResultField.Pair,
+					ModalResultField.Pgrad,
+					ModalResultField.Pwheel,
+					ModalResultField.Pbrake
+				});
+
+				if (HasTorqueConverter) {
+					dataColumns.AddRange(new[] {
+						ModalResultField.TCν,
+						ModalResultField.TCmu,
+						ModalResultField.TC_M_Out,
+						ModalResultField.TC_n_Out
+					});
+				}
+
+				//todo: auxiliaries
+			}
+			VectoCSVFile.Write(ModFileName, new DataView(Data).ToTable(false, dataColumns.Select(x => x.GetName()).ToArray()));
+		}
+
+
+		public object Compute(string expression, string filter)
+		{
+			return Data.Compute(expression, filter);
 		}
 
+		public IEnumerable<T> GetValues<T>(ModalResultField key)
+		{
+			return Data.Rows.Cast<DataRow>().Select(x => x.Field<T>((int)key));
+		}
+
+
 		public object this[ModalResultField key]
 		{
-			get { return CurrentRow[(int) key]; }
-			set { CurrentRow[(int) key] = value; }
+			get { return CurrentRow[(int)key]; }
+			set { CurrentRow[(int)key] = value; }
 		}
 	}
 }
\ No newline at end of file
diff --git a/VectoCore/Models/Simulation/Data/ModalResult.cs b/VectoCore/Models/Simulation/Data/ModalResult.cs
index 5167a72d20a84d7791db47dcf85286ff8977204c..93b637fe3646e8ae0a86abf4894eeb31b9ea3c11 100644
--- a/VectoCore/Models/Simulation/Data/ModalResult.cs
+++ b/VectoCore/Models/Simulation/Data/ModalResult.cs
@@ -14,7 +14,7 @@ namespace TUGraz.VectoCore.Models.Simulation.Data
 	{
 		public ModalResults()
 		{
-			foreach (ModalResultField value in Enum.GetValues(typeof (ModalResultField))) {
+			foreach (ModalResultField value in Enum.GetValues(typeof(ModalResultField))) {
 				var col = new DataColumn(value.GetName(), value.GetDataType()) { Caption = value.GetCaption() };
 				Columns.Add(col);
 			}
@@ -66,188 +66,188 @@ namespace TUGraz.VectoCore.Models.Simulation.Data
 		///     Time step [s].
 		///     Midpoint of the simulated interval.
 		/// </summary>
-		[ModalResultField(typeof (double), caption: "time [s]")] time,
+		[ModalResultField(typeof(double), caption: "time [s]")] time,
 
 		/// <summary>
 		///     Simulation interval around the current time step. [s]
 		/// </summary>
-		[ModalResultField(typeof (double), "simulation_interval", "simulation_interval [s]")] simulationInterval,
+		[ModalResultField(typeof(double), "simulation_interval", "simulation_interval [s]")] simulationInterval,
 
 		/// <summary>
 		///     Engine speed [1/min].
 		/// </summary>
-		[ModalResultField(typeof (double), caption: "n [1/min]")] n,
+		[ModalResultField(typeof(double), caption: "n [1/min]")] n,
 
 		/// <summary>
 		///     [Nm]	Engine torque.
 		/// </summary>
-		[ModalResultField(typeof (double), caption: "Tq_eng [Nm]")] Tq_eng,
+		[ModalResultField(typeof(double), caption: "Tq_eng [Nm]")] Tq_eng,
 
 		/// <summary>
 		///     [Nm]	Torque at clutch (before clutch, engine-side)
 		/// </summary>
-		[ModalResultField(typeof (double), caption: "Tq_clutch [Nm]")] Tq_clutch,
+		[ModalResultField(typeof(double), caption: "Tq_clutch [Nm]")] Tq_clutch,
 
 		/// <summary>
 		///     [Nm]	Full load torque
 		/// </summary>
-		[ModalResultField(typeof (double), caption: "Tq_full [Nm]")] Tq_full,
+		[ModalResultField(typeof(double), caption: "Tq_full [Nm]")] Tq_full,
 
 		/// <summary>
 		///     [Nm]	Motoring torque
 		/// </summary>
-		[ModalResultField(typeof (double), caption: "Tq_drag [Nm]")] Tq_drag,
+		[ModalResultField(typeof(double), caption: "Tq_drag [Nm]")] Tq_drag,
 
 		/// <summary>
 		///     [kW]	Engine power.
 		/// </summary>
-		[ModalResultField(typeof (double), caption: "Pe_eng [kW]")] Pe_eng,
+		[ModalResultField(typeof(double), caption: "Pe_eng [kW]")] Pe_eng,
 
 		/// <summary>
 		///     [kW]	Engine full load power.
 		/// </summary>
-		[ModalResultField(typeof (double), caption: "Pe_full [kW]")] Pe_full,
+		[ModalResultField(typeof(double), caption: "Pe_full [kW]")] Pe_full,
 
 		/// <summary>
 		///     [kW]	Engine drag power.
 		/// </summary>
-		[ModalResultField(typeof (double), caption: "Pe_drag [kW]")] Pe_drag,
+		[ModalResultField(typeof(double), caption: "Pe_drag [kW]")] Pe_drag,
 
 		/// <summary>
 		///     [kW]	Engine power at clutch (equals Pe minus loss due to rotational inertia Pa Eng).
 		/// </summary>
-		[ModalResultField(typeof (double), caption: "Pe_clutch [kW]")] Pe_clutch,
+		[ModalResultField(typeof(double), caption: "Pe_clutch [kW]")] Pe_clutch,
 
 		/// <summary>
 		///     [kW]	Rotational acceleration power: Engine.
 		/// </summary>
-		[ModalResultField(typeof (double), "Pa", "Pa [Eng]")] PaEng,
+		[ModalResultField(typeof(double), "Pa", "Pa [Eng]")] PaEng,
 
 		/// <summary>
 		///     [kW]	Total auxiliary power demand .
 		/// </summary>
-		[ModalResultField(typeof (double), caption: "Paux [kW]")] Paux,
+		[ModalResultField(typeof(double), caption: "Paux [kW]")] Paux,
 
 		/// <summary>
 		///     [g/h]	Fuel consumption from FC map..
 		/// </summary>
-		[ModalResultField(typeof (double), caption: "FC [g/h]")] FC,
+		[ModalResultField(typeof(double), caption: "FC [g/h]")] FC,
 
 		/// <summary>
 		///     [g/h]	Fuel consumption after Auxiliary-Start/Stop Correction. (Based on FC.)
 		/// </summary>
-		[ModalResultField(typeof (double), "FC-AUXc", "FC-AUXc [g/h]")] FCAUXc,
+		[ModalResultField(typeof(double), "FC-AUXc", "FC-AUXc [g/h]")] FCAUXc,
 
 		/// <summary>
 		///     [g/h]	Fuel consumption after WHTC Correction. (Based on FC-AUXc.)
 		/// </summary>
-		[ModalResultField(typeof (double), "FC-WHTCc", "FC-WHTCc [g/h]")] FCWHTCc,
+		[ModalResultField(typeof(double), "FC-WHTCc", "FC-WHTCc [g/h]")] FCWHTCc,
 
 		/// <summary>
 		///     [km]	Travelled distance.
 		/// </summary>
-		[ModalResultField(typeof (double))] dist,
+		[ModalResultField(typeof(double))] dist,
 
 		/// <summary>
 		///     [km/h]	Actual vehicle speed.
 		/// </summary>
-		[ModalResultField(typeof (double))] v_act,
+		[ModalResultField(typeof(double))] v_act,
 
 		/// <summary>
 		///     [km/h]	Target vehicle speed.
 		/// </summary>
-		[ModalResultField(typeof (double))] v_targ,
+		[ModalResultField(typeof(double))] v_targ,
 
 		/// <summary>
 		///     [m/s2]	Vehicle acceleration.
 		/// </summary>
-		[ModalResultField(typeof (double))] acc,
+		[ModalResultField(typeof(double))] acc,
 
 		/// <summary>
 		///     [%]	    Road gradient.
 		/// </summary>
-		[ModalResultField(typeof (double))] grad,
+		[ModalResultField(typeof(double))] grad,
 
 		/// <summary>
 		///     [-]	 GearData. "0" = clutch opened / neutral. "0.5" = lock-up clutch is open (AT with torque converter only, see
 		///     Gearbox)
 		/// </summary>
-		[ModalResultField(typeof (double))] Gear,
+		[ModalResultField(typeof(double))] Gear,
 
 		/// <summary>
 		///     [kW]	Gearbox losses.
 		/// </summary>
-		[ModalResultField(typeof (double), "Ploss GB")] PlossGB,
+		[ModalResultField(typeof(double), "Ploss GB")] PlossGB,
 
 		/// <summary>
 		///     [kW]	Losses in differential / axle transmission.
 		/// </summary>
-		[ModalResultField(typeof (double), "Ploss Diff")] PlossDiff,
+		[ModalResultField(typeof(double), "Ploss Diff")] PlossDiff,
 
 		/// <summary>
 		///     [kW]	Retarder losses.
 		/// </summary>
-		[ModalResultField(typeof (double), "Ploss Retarder")] PlossRetarder,
+		[ModalResultField(typeof(double), "Ploss Retarder")] PlossRetarder,
 
 		/// <summary>
 		///     [kW]	Rotational acceleration power: Gearbox.
 		/// </summary>
-		[ModalResultField(typeof (double), "Pa GB")] PaGB,
+		[ModalResultField(typeof(double), "Pa GB")] PaGB,
 
 		/// <summary>
 		///     [kW]	Vehicle acceleration power.
 		/// </summary>
-		[ModalResultField(typeof (double), "Pa Veh")] PaVeh,
+		[ModalResultField(typeof(double), "Pa Veh")] PaVeh,
 
 		/// <summary>
 		///     [kW]	Rolling resistance power demand.
 		/// </summary>
-		[ModalResultField(typeof (double))] Proll,
+		[ModalResultField(typeof(double))] Proll,
 
 		/// <summary>
 		///     [kW]	Air resistance power demand.
 		/// </summary>
-		[ModalResultField(typeof (double))] Pair,
+		[ModalResultField(typeof(double))] Pair,
 
 		/// <summary>
 		///     [kW]	Power demand due to road gradient.
 		/// </summary>
-		[ModalResultField(typeof (double))] Pgrad,
+		[ModalResultField(typeof(double))] Pgrad,
 
 		/// <summary>
 		///     [kW]	Total power demand at wheel = sum of rolling, air, acceleration and road gradient resistance.
 		/// </summary>
-		[ModalResultField(typeof (double))] Pwheel,
+		[ModalResultField(typeof(double))] Pwheel,
 
 		/// <summary>
 		///     [kW]	Brake power. Drag power is included in Pe.
 		/// </summary>
-		[ModalResultField(typeof (double))] Pbrake,
+		[ModalResultField(typeof(double))] Pbrake,
 
 		/// <summary>
 		///     [kW]	Power demand of Auxiliary with ID xxx. See also Aux Dialog and Driving Cycle.
 		/// </summary>
-		[ModalResultField(typeof (double))] Paux_xxx,
+		[ModalResultField(typeof(double))] Paux_xxx,
 
 		/// <summary>
 		///     [-]	    Torque converter speed ratio
 		/// </summary>
-		[ModalResultField(typeof (double))] TCν,
+		[ModalResultField(typeof(double))] TCν,
 
 		/// <summary>
 		///     [-]	    Torque converter torque ratio
 		/// </summary>
-		[ModalResultField(typeof (double), "TCµ")] TCmu,
+		[ModalResultField(typeof(double), "TCµ")] TCmu,
 
 		/// <summary>
 		///     [Nm]	Torque converter output torque
 		/// </summary>
-		[ModalResultField(typeof (double))] TC_M_Out,
+		[ModalResultField(typeof(double))] TC_M_Out,
 
 		/// <summary>
 		///     [1/min]	Torque converter output speed
 		/// </summary>
-		[ModalResultField(typeof (double))] TC_n_Out
+		[ModalResultField(typeof(double))] TC_n_Out
 	}
 
 
@@ -280,17 +280,17 @@ namespace TUGraz.VectoCore.Models.Simulation.Data
 
 		public static string GetCaption(this ModalResultField field)
 		{
-			return GetAttr(field).Caption ?? field.GetName() ?? field.ToString();
+			return GetAttr(field).Caption ?? field.GetName();
 		}
 
 		private static ModalResultFieldAttribute GetAttr(ModalResultField field)
 		{
-			return (ModalResultFieldAttribute) Attribute.GetCustomAttribute(ForValue(field), typeof (ModalResultFieldAttribute));
+			return (ModalResultFieldAttribute)Attribute.GetCustomAttribute(ForValue(field), typeof(ModalResultFieldAttribute));
 		}
 
 		private static MemberInfo ForValue(ModalResultField field)
 		{
-			return typeof (ModalResultField).GetField(Enum.GetName(typeof (ModalResultField), field));
+			return typeof(ModalResultField).GetField(Enum.GetName(typeof(ModalResultField), field));
 		}
 	}
 }
\ No newline at end of file
diff --git a/VectoCore/Models/Simulation/Data/SummaryFileWriter.cs b/VectoCore/Models/Simulation/Data/SummaryFileWriter.cs
new file mode 100644
index 0000000000000000000000000000000000000000..1ec8730c7ce03efb7a83a2964e0dc90a210ce69e
--- /dev/null
+++ b/VectoCore/Models/Simulation/Data/SummaryFileWriter.cs
@@ -0,0 +1,279 @@
+using System.Collections.Generic;
+using TUGraz.VectoCore.Utils;
+using System.Linq;
+using System.Data;
+using TUGraz.VectoCore.Models.Simulation.Data;
+
+namespace TUGraz.VectoCore.Models.Simulation.Data
+{
+	/// <summary>
+	/// Class for the sum file in vecto.
+	/// </summary>
+	public class SummaryFileWriter
+	{
+		// ReSharper disable InconsistentNaming
+		private const string JOB = "Job [-]";
+		private const string INPUTFILE = "Input File [-]";
+		private const string CYCLE = "Cycle [-]";
+		private const string TIME = "time [s]";
+		private const string DISTANCE = "distance [km]";
+		private const string SPEED = "speed [km/h]";
+		private const string ALTITUDE = "∆altitude [m]";
+		private const string PPOS = "Ppos [kW]";
+		private const string PNEG = "Pneg [kW]";
+		private const string FC = "FC [g/h]";
+		private const string FCAUXC = "FC-AUXc [g/h]";
+		private const string FCWHTCC = "FC-WHTCc [g/h]";
+		private const string PBRAKE = "Pbrake [kW]";
+		private const string EPOSICE = "EposICE [kWh]";
+		private const string ENEGICE = "EnegICE [kWh]";
+		private const string EAIR = "Eair [kWh]";
+		private const string EROLL = "Eroll [kWh]";
+		private const string EGRAD = "Egrad [kWh]";
+		private const string EACC = "Eacc [kWh]";
+		private const string EAUX = "Eaux [kWh]";
+		private const string EBRAKE = "Ebrake [kWh]";
+		private const string ETRANSM = "Etransm [kWh]";
+		private const string ERETARDER = "Eretarder [kWh]";
+		private const string MASS = "Mass [kg]";
+		private const string LOADING = "Loading [kg]";
+		private const string A = "a [m/s2]";
+		private const string APOS = "a_pos [m/s2]";
+		private const string ANEG = "a_neg [m/s2]";
+		private const string PACC = "pAcc [%]";
+		private const string PDEC = "pDec [%]";
+		private const string PCRUISE = "pCruise [%]";
+		private const string PSTOP = "pStop [%]";
+		private const string ETORQUECONV = "Etorqueconv [kWh]";
+		private const string CO2 = "CO2 [g/km]";
+		private const string CO2T = "CO2 [g/tkm]";
+		private const string FCFINAL = "FC-Final [g/km]";
+		private const string FCFINAL_LITER = "FC-Final [l/km]";
+		private const string FCFINAL_LITERPER100TKM = "FC-Final [l/tkm]";
+		private const string ACCNOISE = "Acc.Noise [m/s^2]";
+		// ReSharper restore InconsistentNaming
+
+		private readonly DataTable _table;
+		private readonly string _sumFileName;
+		private bool _engineOnly = true;
+
+		protected SummaryFileWriter() {}
+
+		/// <summary>
+		/// Initializes a new instance of the <see cref="SummaryFileWriter"/> class.
+		/// </summary>
+		/// <param name="sumFileName">Name of the sum file.</param>
+		public SummaryFileWriter(string sumFileName)
+		{
+			_sumFileName = sumFileName;
+
+			_table = new DataTable();
+			_table.Columns.Add(JOB, typeof(string));
+			_table.Columns.Add(INPUTFILE, typeof(string));
+			_table.Columns.Add(CYCLE, typeof(string));
+
+			_table.Columns.AddRange(new[] {
+				TIME, DISTANCE, SPEED, ALTITUDE, PPOS, PNEG, FC, FCAUXC, FCWHTCC, PBRAKE, EPOSICE, ENEGICE, EAIR, EROLL, EGRAD,
+				EACC, EAUX, EBRAKE, ETRANSM, ERETARDER, MASS, LOADING, A, APOS, ANEG, PACC, PDEC, PCRUISE, PSTOP, ETORQUECONV, CO2,
+				CO2T, FCFINAL, FCFINAL_LITER, FCFINAL_LITERPER100TKM, ACCNOISE
+			}.Select(x => new DataColumn(x, typeof(double))).ToArray());
+		}
+
+		public void WriteEngineOnly(IModalDataWriter data, string jobFileName, string jobName, string cycleFileName)
+		{
+			var row = _table.NewRow();
+			row[JOB] = jobName;
+			row[INPUTFILE] = jobFileName;
+			row[CYCLE] = cycleFileName;
+			row[TIME] = data.Compute("Max(time)", "");
+			row[PPOS] = data.Compute("Avg(Pe_eng)", "Pe_eng > 0");
+			row[PNEG] = data.Compute("Avg(Pe_eng)", "Pe_eng < 0");
+			row[FC] = data.Compute("Avg(FC)", "");
+			row[FCAUXC] = data.Compute("Avg([FC-AUXc])", "");
+			row[FCWHTCC] = data.Compute("Avg([FC-WHTCc])", "");
+
+			//todo auxiliaries
+			//foreach (var auxCol in data.Auxiliaries) {
+			//    row["Eaux_" + auxCol.jobName + " [kwh]"] = data.Compute("Sum(aux_" + auxCol.jobName + ")", "");
+			//}
+
+			_table.Rows.Add(row);
+		}
+
+
+		public void WriteFullPowertrain(IModalDataWriter data, string jobFileName, string jobName, string cycleFileName,
+			double vehicleMass,
+			double vehicleLoading)
+		{
+			_engineOnly = false;
+
+			var row = _table.NewRow();
+			row[JOB] = jobName;
+			row[INPUTFILE] = jobFileName;
+			row[CYCLE] = cycleFileName;
+			row[TIME] = data.Compute("Max(time)", "");
+			row[DISTANCE] = data.Compute("Max(dist)", "");
+			row[SPEED] = data.Compute("Avg(v_act)", "");
+			row[PPOS] = data.Compute("Avg(Pe_eng)", "Pe_eng > 0");
+			row[PNEG] = data.Compute("Avg(Pe_eng)", "Pe_eng < 0");
+			row[FC] = data.Compute("Avg(FC)", "");
+			row[FCAUXC] = data.Compute("Avg([FC-AUXc])", "");
+			row[FCWHTCC] = data.Compute("Avg([FC-WHTCc])", "");
+			row[PBRAKE] = data.Compute("Avg(Pbrake)", "");
+			row[EPOSICE] = data.Compute("Avg(Pe_eng)", "Pe_eng > 0");
+			row[ENEGICE] = data.Compute("Avg(Pe_eng)", "Pe_eng < 0");
+			row[EAIR] = data.Compute("Sum(Pair)", "");
+			row[EROLL] = data.Compute("Sum(Proll)", "");
+			row[EGRAD] = data.Compute("Sum(Pgrad)", "");
+			row[EAUX] = data.Compute("Sum(Paux)", "");
+			row[EBRAKE] = data.Compute("Sum(Pbrake)", "");
+			row[ETRANSM] = data.Compute("Sum([Ploss Diff]) + Sum([Ploss GB])", "");
+			row[ERETARDER] = data.Compute("Sum([Ploss Retarder])", "");
+			row[EACC] = data.Compute("Sum(Pa)+Sum([Pa GB])", ""); // TODO +PaEng?
+
+			//todo altitude - calculate when reading the cycle file, add column for altitude
+			//row["∆altitude [m]"] = Data.Rows[Data.Rows.Count - 1].Field<double>("altitude") -
+			//						Data.Rows[0].Field<double>("altitude");
+
+			//todo auxiliaries
+			//foreach (var auxCol in data.Auxiliaries) {
+			//    row["Eaux_" + auxCol.jobName + " [kwh]"] = data.Compute("Sum(aux_" + auxCol.jobName + ")", "");
+			//}
+
+			//todo get data from vehicle file
+			row[MASS] = vehicleMass;
+			row[LOADING] = vehicleLoading;
+
+			var dtValues = data.GetValues<double>(ModalResultField.simulationInterval).ToList();
+			var accValues = data.GetValues<double?>(ModalResultField.acc);
+			var accelerations = CalculateAverageOverSeconds(dtValues, accValues).ToList();
+			row[A] = accelerations.Average();
+
+			var acceleration3SecondAverage = Calculate3SecondAverage(accelerations).ToList();
+
+			row[APOS] = acceleration3SecondAverage.Where(x => x > 0.125).DefaultIfEmpty(0).Average();
+			row[ANEG] = acceleration3SecondAverage.Where(x => x < -0.125).DefaultIfEmpty(0).Average();
+			row[PACC] = 100.0 * acceleration3SecondAverage.Count(x => x > 0.125) / acceleration3SecondAverage.Count;
+			row[PDEC] = 100.0 * acceleration3SecondAverage.Count(x => x < -0.125) / acceleration3SecondAverage.Count;
+			row[PCRUISE] = 100.0 * acceleration3SecondAverage.Count(x => x < 0.125 && x > -0.125) /
+							acceleration3SecondAverage.Count;
+
+			var pStopTime = data.GetValues<double?>(ModalResultField.v_act)
+				.Zip(dtValues, (velocity, dt) => new { velocity, dt })
+				.Where(x => x.velocity < 0.1)
+				.Sum(x => x.dt);
+			row[PSTOP] = 100.0 * pStopTime / dtValues.Sum();
+
+			_table.Rows.Add(row);
+		}
+
+		private static IEnumerable<double> Calculate3SecondAverage(List<double> accelerations)
+		{
+			if (accelerations.Count >= 3) {
+				var runningAverage = (accelerations[0] + accelerations[1] + accelerations[2]) / 3.0;
+				for (var i = 2; i < accelerations.Count() - 1; i++) {
+					runningAverage -= accelerations[i - 2] / 3.0;
+					runningAverage += accelerations[i + 1] / 3.0;
+					yield return runningAverage;
+				}
+			}
+		}
+
+
+		private static IEnumerable<double> CalculateAverageOverSeconds(IEnumerable<double> dtValues,
+			IEnumerable<double?> accValues)
+		{
+			var dtSum = 0.0;
+			var accSum = 0.0;
+			var acceleration = dtValues.Zip(accValues, (dt, acc) => new { dt, acc }).ToList();
+			foreach (var x in acceleration.ToList()) {
+				var currentX = x;
+
+				while (dtSum + currentX.dt >= 1) {
+					var splitX = new { dt = 1 - dtSum, currentX.acc };
+					yield return accSum;
+					accSum = 0.0;
+					dtSum = 0.0;
+
+					currentX = new { dt = currentX.dt - splitX.dt, currentX.acc };
+				}
+				if (currentX.dt > 0) {
+					accSum += currentX.dt * currentX.acc ?? 0.0;
+					dtSum += currentX.dt;
+				}
+			}
+
+			// return remaining data. acts like extrapolation to next whole second.
+			if (dtSum > 0) {
+				yield return accSum;
+			}
+		}
+
+		public virtual void Finish()
+		{
+			//todo aux
+			string[] dataColumns;
+			if (_engineOnly) {
+				dataColumns = new[] { JOB, INPUTFILE, CYCLE, TIME, PPOS, PNEG, FC, FCAUXC, FCWHTCC };
+			} else {
+				dataColumns = new[] {
+					JOB, INPUTFILE, CYCLE, TIME, PPOS, PNEG, DISTANCE, SPEED, ALTITUDE, PBRAKE, EPOSICE, ENEGICE, EAIR, EROLL, EGRAD,
+					EACC, EAUX, EBRAKE, ETRANSM, ERETARDER, ETORQUECONV, MASS, LOADING, FC, FCAUXC, FCWHTCC, CO2, CO2T, FCFINAL,
+					FCFINAL_LITER, FCFINAL_LITERPER100TKM, A, APOS, ANEG, ACCNOISE, PACC, PDEC, PCRUISE, PSTOP
+				};
+			}
+
+			VectoCSVFile.Write(_sumFileName, new DataView(_table).ToTable(false, dataColumns));
+		}
+	}
+}
+
+/// <summary>
+/// Decorator for FullPowertrain which adds some data for later use in the SummaryFileWriter.
+/// </summary>
+public class SumWriterDecoratorFullPowertrain : SummaryFileWriter, ISummaryDataWriter
+{
+	private readonly SummaryFileWriter _writer;
+	private readonly string _jobFileName;
+	private readonly string _jobName;
+	private readonly string _cycleFileName;
+
+	public SumWriterDecoratorFullPowertrain(SummaryFileWriter writer, string jobFileName, string jobName,
+		string cycleFileName)
+	{
+		_writer = writer;
+		_jobFileName = jobFileName;
+		_jobName = jobName;
+		_cycleFileName = cycleFileName;
+	}
+
+	public void Write(IModalDataWriter data, double vehicleMass = 0, double vehicleLoading = 0)
+	{
+		_writer.WriteFullPowertrain(data, _jobFileName, _jobName, _cycleFileName, vehicleMass, vehicleLoading);
+	}
+}
+
+
+/// <summary>
+/// Decorator for EngineOnly Mode which adds some data for later use in the SummaryFileWriter.
+/// </summary>
+public class SumWriterDecoratorEngineOnly : SummaryFileWriter, ISummaryDataWriter
+{
+	private readonly SummaryFileWriter _writer;
+	private readonly string _jobFileName;
+	private readonly string _jobName;
+	private readonly string _cycleFileName;
+
+	public SumWriterDecoratorEngineOnly(SummaryFileWriter writer, string jobFileName, string jobName, string cycleFileName)
+	{
+		_writer = writer;
+		_jobFileName = jobFileName;
+		_jobName = jobName;
+		_cycleFileName = cycleFileName;
+	}
+
+	public void Write(IModalDataWriter data, double vehicleMass = 0, double vehicleLoading = 0)
+	{
+		_writer.WriteEngineOnly(data, _jobFileName, _jobName, _cycleFileName);
+	}
+}
\ No newline at end of file
diff --git a/VectoCore/Models/Simulation/Data/VectoJobData.cs b/VectoCore/Models/Simulation/Data/VectoJobData.cs
new file mode 100644
index 0000000000000000000000000000000000000000..feb6ba377ec33ad778cf54a14412f0cc619111cd
--- /dev/null
+++ b/VectoCore/Models/Simulation/Data/VectoJobData.cs
@@ -0,0 +1,231 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.IO;
+using System.Runtime.Serialization;
+using Newtonsoft.Json;
+using TUGraz.VectoCore.Exceptions;
+using TUGraz.VectoCore.Models.SimulationComponent.Data;
+
+namespace TUGraz.VectoCore.Models.Simulation.Data
+{
+	/// <summary>
+	///     Represents the Vecto Job File. Fileformat: .vecto
+	/// </summary>
+	/// <code>
+	///{
+	///  "Header": {
+	///    "CreatedBy": " ()",
+	///    "Date": "3/4/2015 2:09:13 PM",
+	///    "AppVersion": "2.0.4-beta3",
+	///    "FileVersion": 2
+	///  },
+	///  "Body": {
+	///    "SavedInDeclMode": false,
+	///    "VehicleFile": "24t Coach.vveh",
+	///    "EngineFile": "24t Coach.veng",
+	///    "GearboxFile": "24t Coach.vgbx",
+	///    "Cycles": [
+	///      "W:\\VECTO\\CITnet\\VECTO\\bin\\Debug\\Declaration\\MissionCycles\\LOT2_rural Engine Only.vdri"
+	///    ],
+	///    "Aux": [
+	///      {
+	///        "ID": "ALT1",
+	///        "Type": "Alternator",
+	///        "Path": "24t_Coach_ALT.vaux",
+	///        "Technology": ""
+	///      },
+	///      {
+	///        "ID": "ALT2",
+	///        "Type": "Alternator",
+	///        "Path": "24t_Coach_ALT.vaux",
+	///        "Technology": ""
+	///      },
+	///      {
+	///        "ID": "ALT3",
+	///        "Type": "Alternator",
+	///        "Path": "24t_Coach_ALT.vaux",
+	///        "Technology": ""
+	///      }
+	///    ],
+	///    "AccelerationLimitingFile": "Coach.vacc",
+	///    "IsEngineOnly": true,
+	///    "StartStop": {
+	///      "Enabled": false,
+	///      "MaxSpeed": 5.0,
+	///      "MinTime": 0.0,
+	///      "Delay": 0
+	///    },
+	///    "LookAheadCoasting": {
+	///      "Enabled": true,
+	///      "Dec": -0.5,
+	///      "MinSpeed": 50.0
+	///    },
+	///    "OverSpeedEcoRoll": {
+	///      "Mode": "OverSpeed",
+	///      "MinSpeed": 70.0,
+	///      "OverSpeed": 5.0,
+	///      "UnderSpeed": 5.0
+	///    }
+	///  }
+	///}
+	/// </code>
+	[DataContract]
+	public class VectoJobData : SimulationComponentData
+	{
+		/// <summary>
+		///     A class which represents the json data format for serializing and deserializing the Job Data files.
+		/// </summary>
+		public class Data
+		{
+			[JsonProperty(Required = Required.Always)] public DataHeader Header;
+			[JsonProperty(Required = Required.Always)] public DataBody Body;
+
+			public class DataHeader
+			{
+				[JsonProperty(Required = Required.Always)] public string CreatedBy;
+				[JsonProperty(Required = Required.Always)] public DateTime Date;
+				[JsonProperty(Required = Required.Always)] public string AppVersion;
+				[JsonProperty(Required = Required.Always)] public double FileVersion;
+			}
+
+			public class DataBody
+			{
+				[JsonProperty("SavedInDeclMode")] public bool SavedInDeclarationMode;
+
+				[JsonProperty(Required = Required.Always)] public string VehicleFile;
+				[JsonProperty(Required = Required.Always)] public string EngineFile;
+				[JsonProperty(Required = Required.Always)] public string GearboxFile;
+				[JsonProperty(Required = Required.Always)] public IList<string> Cycles;
+				[JsonProperty] public IList<AuxData> Aux = new List<AuxData>();
+				[JsonProperty(Required = Required.Always)] public string VACC;
+				[JsonProperty(Required = Required.Always)] public bool EngineOnlyMode;
+				[JsonProperty(Required = Required.Always)] public StartStopData StartStop;
+				[JsonProperty(Required = Required.Always)] public LACData LAC;
+				[JsonProperty(Required = Required.Always)] public OverSpeedEcoRollData OverSpeedEcoRoll;
+
+				public class AuxData
+				{
+					[JsonProperty(Required = Required.Always)] public string ID;
+					[JsonProperty(Required = Required.Always)] public string Type;
+					[JsonProperty(Required = Required.Always)] public string Path;
+					[JsonProperty(Required = Required.Always)] public string Technology;
+				}
+
+				public class StartStopData
+				{
+					[JsonProperty(Required = Required.Always)] public bool Enabled;
+					[JsonProperty(Required = Required.Always)] public double MaxSpeed;
+					[JsonProperty(Required = Required.Always)] public double MinTime;
+					[JsonProperty(Required = Required.Always)] public double Delay;
+				}
+
+				public class LACData
+				{
+					[JsonProperty(Required = Required.Always)] public bool Enabled;
+					[JsonProperty(Required = Required.Always)] public double Dec;
+					[JsonProperty(Required = Required.Always)] public double MinSpeed;
+				}
+
+				public class OverSpeedEcoRollData
+				{
+					[JsonProperty(Required = Required.Always)] public string Mode;
+					[JsonProperty(Required = Required.Always)] public double MinSpeed;
+					[JsonProperty(Required = Required.Always)] public double OverSpeed;
+					[JsonProperty(Required = Required.Always)] public double UnderSpeed;
+				}
+			}
+		}
+
+		[DataMember] private Data _data;
+
+
+		public string VehicleFile
+		{
+			get { return _data.Body.VehicleFile; }
+		}
+
+		public string EngineFile
+		{
+			get { return _data.Body.EngineFile; }
+		}
+
+		public string GearboxFile
+		{
+			get { return _data.Body.GearboxFile; }
+		}
+
+		public IList<string> Cycles
+		{
+			get { return _data.Body.Cycles; }
+		}
+
+		public IList<Data.DataBody.AuxData> Aux
+		{
+			get { return _data.Body.Aux; }
+		}
+
+		public string AccelerationLimitingFile
+		{
+			get { return _data.Body.VACC; }
+		}
+
+		public bool IsEngineOnly
+		{
+			get { return _data.Body.EngineOnlyMode; }
+		}
+
+		public Data.DataBody.StartStopData StartStop
+		{
+			get { return _data.Body.StartStop; }
+		}
+
+		public Data.DataBody.LACData LookAheadCoasting
+		{
+			get { return _data.Body.LAC; }
+		}
+
+		public Data.DataBody.OverSpeedEcoRollData OverSpeedEcoRoll
+		{
+			get { return _data.Body.OverSpeedEcoRoll; }
+		}
+
+		public string JobFileName { get; set; }
+
+		public static VectoJobData ReadFromFile(string fileName)
+		{
+			return ReadFromJson(File.ReadAllText(fileName), Path.GetDirectoryName(fileName), fileName);
+		}
+
+		public static VectoJobData ReadFromJson(string json, string basePath = "", string fileName = "")
+		{
+			var data = new VectoJobData();
+			data.JobFileName = fileName;
+			//todo handle conversion errors
+			var d = JsonConvert.DeserializeObject<Data>(json);
+
+			data._data = d;
+
+			if (d.Header.FileVersion > 2) {
+				throw new UnsupportedFileVersionException("Unsupported Version of .vecto file. Got Version: " + d.Header.FileVersion);
+			}
+			return data;
+		}
+
+		public void WriteToFile(string fileName)
+		{
+			//todo handle file exceptions
+			File.WriteAllText(fileName, ToJson());
+		}
+
+		public string ToJson()
+		{
+			_data.Header.Date = DateTime.Now;
+			_data.Header.FileVersion = 2;
+			_data.Header.AppVersion = "3.0.0"; // todo: get current app version!
+			_data.Header.CreatedBy = ""; // todo: get current user
+			_data.Body.SavedInDeclarationMode = false; //todo: get declaration mode setting
+			return JsonConvert.SerializeObject(_data, Formatting.Indented);
+		}
+	}
+}
\ No newline at end of file
diff --git a/VectoCore/Models/Simulation/IVehicleContainer.cs b/VectoCore/Models/Simulation/IVehicleContainer.cs
index 16a89af63adcd1325d8b7d4925e22d9a79e61db9..b6a39c8f3d099e469067136eb6d744ff362782f0 100644
--- a/VectoCore/Models/Simulation/IVehicleContainer.cs
+++ b/VectoCore/Models/Simulation/IVehicleContainer.cs
@@ -1,31 +1,28 @@
 using TUGraz.VectoCore.Models.Simulation.Cockpit;
-using TUGraz.VectoCore.Models.Simulation.Data;
 using TUGraz.VectoCore.Models.SimulationComponent;
 
 namespace TUGraz.VectoCore.Models.Simulation
 {
-    /// <summary>
-    /// Defines Methods for adding components, commiting a simulation step and finishing the simulation.
-    /// Also defines interfaces for all cockpit access to data.
-    /// </summary>
-    public interface IVehicleContainer : ICockpit
-    {
-        /// <summary>
-        /// Adds a component to the vehicle container.
-        /// </summary>
-        /// <param name="component"></param>
-        void AddComponent(VectoSimulationComponent component);
+	/// <summary>
+	/// Defines Methods for adding components, commiting a simulation step and finishing the simulation.
+	/// Also defines interfaces for all cockpit access to data.
+	/// </summary>
+	public interface IVehicleContainer : ICockpit
+	{
+		/// <summary>
+		/// Adds a component to the vehicle container.
+		/// </summary>
+		/// <param name="component"></param>
+		void AddComponent(VectoSimulationComponent component);
 
-        /// <summary>
-        /// Commits the current simulation step.
-        /// </summary>
-        /// <param name="dataWriter"></param>
-        void CommitSimulationStep(IModalDataWriter dataWriter);
+		/// <summary>
+		/// Commits the current simulation step.
+		/// </summary>
+		void CommitSimulationStep(double time, double simulationInterval);
 
-        /// <summary>
-        /// Finishes the simulation.
-        /// </summary>
-        /// <param name="dataWriter"></param>
-        void FinishSimulation(IModalDataWriter dataWriter);
-    }
+		/// <summary>
+		/// Finishes the simulation.
+		/// </summary>
+		void FinishSimulation();
+	}
 }
\ No newline at end of file
diff --git a/VectoCore/Models/Simulation/Impl/JobContainer.cs b/VectoCore/Models/Simulation/Impl/JobContainer.cs
index 74d91913360e76391e6f9055e4514ea5c7e1639d..93b3a56df7e622e17529e2ceeca02b5bf37d50d4 100644
--- a/VectoCore/Models/Simulation/Impl/JobContainer.cs
+++ b/VectoCore/Models/Simulation/Impl/JobContainer.cs
@@ -1,25 +1,78 @@
 using System.Collections.Generic;
+using System.IO;
 using System.Linq;
 using System.Threading.Tasks;
 using Common.Logging;
+using TUGraz.VectoCore.Models.Simulation.Data;
 
 namespace TUGraz.VectoCore.Models.Simulation.Impl
 {
-	//todo: add job tracking (state of jobs, iteration, ...)
+	//todo: add job tracking (state of jobs, ...)
 	//todo: add job control (pause, stop)
+
+
+	/// <summary>
+	/// Container for simulation jobs.
+	/// </summary>
 	public class JobContainer
 	{
 		private readonly List<IVectoSimulator> _simulators = new List<IVectoSimulator>();
+		private readonly SummaryFileWriter _sumWriter;
+
+		private static int _jobNumber;
+
+		/// <summary>
+		/// Initializes a new empty instance of the <see cref="JobContainer"/> class.
+		/// </summary>
+		/// <param name="sumWriter">The sum writer.</param>
+		public JobContainer(SummaryFileWriter sumWriter)
+		{
+			_sumWriter = sumWriter;
+		}
+
+		/// <summary>
+		/// Initializes a new instance of the <see cref="JobContainer"/> class from a VectoJobData object.
+		/// </summary>
+		/// <param name="data">The data.</param>
+		public JobContainer(VectoJobData data)
+		{
+			var sumFileName = Path.GetFileNameWithoutExtension(data.JobFileName);
+			var sumFilePath = Path.GetDirectoryName(data.JobFileName);
+			_sumWriter = new SummaryFileWriter(string.Format("{0}.vsum", Path.Combine(sumFilePath, sumFileName)));
 
+			AddJobs(data);
+		}
+
+		/// <summary>
+		/// Creates and Adds jobs from the VectoJobData object.
+		/// </summary>
+		/// <param name="data">The data.</param>
+		public void AddJobs(VectoJobData data)
+		{
+			_jobNumber++;
+			_simulators.AddRange(SimulatorFactory.CreateJobs(data, _sumWriter, _jobNumber));
+		}
+
+		/// <summary>
+		/// Adds a custom created job.
+		/// </summary>
+		/// <param name="sim">The sim.</param>
 		public void AddJob(IVectoSimulator sim)
 		{
+			_jobNumber++;
 			_simulators.Add(sim);
 		}
 
-		public void RunSimulation()
+		/// <summary>
+		/// Runs all jobs, waits until finished.
+		/// </summary>
+		public void RunJobs()
 		{
 			LogManager.GetLogger(GetType()).Info("VectoSimulator started running. Starting Jobs.");
+
 			Task.WaitAll(_simulators.Select(job => Task.Factory.StartNew(job.Run)).ToArray());
+
+			_sumWriter.Finish();
 		}
 	}
 }
\ No newline at end of file
diff --git a/VectoCore/Models/Simulation/Impl/SimulatorFactory.cs b/VectoCore/Models/Simulation/Impl/SimulatorFactory.cs
index 93b1c8c13672086c3f4a0f68540a72d8f6f7f0a9..064d70baa2be7da3aad967ec6b5f18637fded3b7 100644
--- a/VectoCore/Models/Simulation/Impl/SimulatorFactory.cs
+++ b/VectoCore/Models/Simulation/Impl/SimulatorFactory.cs
@@ -1,57 +1,233 @@
-using System;
-using Common.Logging;
+using System.IO;
+using System.Collections.Generic;
 using TUGraz.VectoCore.Models.Simulation.Data;
+using TUGraz.VectoCore.Models.SimulationComponent;
 using TUGraz.VectoCore.Models.SimulationComponent.Data;
+using TUGraz.VectoCore.Models.SimulationComponent.Factories;
 using TUGraz.VectoCore.Models.SimulationComponent.Impl;
 
 namespace TUGraz.VectoCore.Models.Simulation.Impl
 {
-    public class SimulatorFactory
-    {
-        /// <summary>
-        /// Creates a time based engine only powertrain and simulation job for the given files.
-        /// </summary>
-        /// <param name="engineFile"></param>
-        /// <param name="cycleFile"></param>
-        /// <param name="resultFile"></param>
-        /// <returns></returns>
-        public static IVectoSimulator CreateTimeBasedEngineOnlyJob(string engineFile, string cycleFile,
-            string resultFile)
-        {
-            Action<string> debug = LogManager.GetLogger<SimulatorFactory>().Debug;
-
-            debug("Creating VehicleContainer.");
-            var container = new VehicleContainer();
-
-            debug("SimulationFactory creating cycle.");
-            var cycleData = DrivingCycleData.ReadFromFileEngineOnly(cycleFile);
-            var cycle = new EngineOnlyDrivingCycle(container, cycleData);
-
-            debug("SimulationFactory creating engine.");
-            var engineData = CombustionEngineData.ReadFromFile(engineFile);
-            var engine = new CombustionEngine(container, engineData);
-
-            debug("Creating gearbox.");
-            var gearBox = new EngineOnlyGearbox(container);
-
-            debug("SimulationFactory creating auxiliary");
-            var aux = new EngineOnlyAuxiliary(container, new AuxiliariesDemandAdapter(cycleData));
-
-            debug("SimulationFactory connecting auxiliary with engine.");
-			aux.InShaft().Connect(engine.OutShaft());
-
-            debug("SimulationFactory connecting gearbox with auxiliary.");
-            gearBox.InShaft().Connect(aux.OutShaft());
-
-            debug("SimulationFactory connecting cycle with gearbox.");
-            cycle.InShaft().Connect(gearBox.OutShaft());
-
-            var dataWriter = new ModalDataWriter(resultFile);
-
-            debug("Creating Simulator.");
-            var simulator = new VectoSimulator(container, cycle, dataWriter);
-
-            return simulator;
-        }
-    }
+	public class SimulatorFactory
+	{
+		private static IModalDataWriter _dataWriter;
+
+		/// <summary>
+		/// Creates a simulation job for time based engine only powertrain.
+		/// </summary>
+		public static IVectoSimulator CreateTimeBasedEngineOnlyJob(string engineFile, string cycleFile, string jobFileName,
+			string jobName, IModalDataWriter dataWriter, SummaryFileWriter sumWriter)
+		{
+			var sumWriterDecorator = new SumWriterDecoratorEngineOnly(sumWriter, jobFileName, jobName, cycleFile);
+			var builder = new SimulatorBuilder(dataWriter, sumWriterDecorator, engineOnly: true);
+
+			builder.AddEngine(engineFile);
+
+			return builder.Build(cycleFile);
+		}
+
+		/// <summary>
+		/// Creates powertrains and jobs from a VectoJobData Object.
+		/// </summary>
+		/// <param name="data">The data.</param>
+		/// <param name="sumWriter">The sum writer.</param>
+		/// <param name="jobNumber">The job number.</param>
+		/// <returns></returns>
+		public static IEnumerable<IVectoSimulator> CreateJobs(VectoJobData data, SummaryFileWriter sumWriter, int jobNumber)
+		{
+			for (var i = 0; i < data.Cycles.Count; i++) {
+				var cycleFile = data.Cycles[i];
+				var jobName = string.Format("{0}-{1}", jobNumber, i);
+				var modFileName = string.Format("{0}_{1}.vmod", Path.GetFileNameWithoutExtension(data.JobFileName),
+					Path.GetFileNameWithoutExtension(cycleFile));
+
+				_dataWriter = new ModalDataWriter(modFileName, data.IsEngineOnly);
+
+				var sumWriterDecorator = DecorateSumWriter(data.IsEngineOnly, sumWriter, data.JobFileName, jobName, cycleFile);
+				var builder = new SimulatorBuilder(_dataWriter, sumWriterDecorator, data.IsEngineOnly);
+
+				builder.AddEngine(data.EngineFile);
+
+				if (!data.IsEngineOnly) {
+					builder.AddVehicle(data.VehicleFile);
+					builder.AddGearbox(data.GearboxFile);
+
+					foreach (var aux in data.Aux) {
+						builder.AddAuxiliary(aux.Path, aux.ID);
+					}
+
+					builder.AddDriver(data.StartStop, data.OverSpeedEcoRoll, data.LookAheadCoasting, data.AccelerationLimitingFile);
+				}
+				yield return builder.Build(cycleFile);
+			}
+		}
+
+		/// <summary>
+		/// Decorates the sum writer with a correct decorator (either EngineOnly or FullPowertrain).
+		/// </summary>
+		/// <param name="engineOnly">if set to <c>true</c> [engine only].</param>
+		/// <param name="sumWriter">The sum writer.</param>
+		/// <param name="jobFileName">Name of the job file.</param>
+		/// <param name="jobName">Name of the job.</param>
+		/// <param name="cycleFile">The cycle file.</param>
+		/// <returns></returns>
+		private static ISummaryDataWriter DecorateSumWriter(bool engineOnly, SummaryFileWriter sumWriter,
+			string jobFileName, string jobName, string cycleFile)
+		{
+			if (engineOnly) {
+				return new SumWriterDecoratorEngineOnly(sumWriter, jobFileName, jobName, cycleFile);
+			}
+
+			return new SumWriterDecoratorFullPowertrain(sumWriter, jobFileName, jobName, cycleFile);
+		}
+
+		/// <summary>
+		/// Provides Methods to build a simulator with a powertrain step by step.
+		/// </summary>
+		public class SimulatorBuilder
+		{
+			private readonly bool _engineOnly;
+			private readonly VehicleContainer _container;
+			private ICombustionEngine _engine;
+			private IGearbox _gearBox;
+			private IVehicle _vehicle;
+			private IWheels _wheels;
+			private IDriver _driver;
+			private readonly Dictionary<string, AuxiliaryData> _auxDict = new Dictionary<string, AuxiliaryData>();
+			private IPowerTrainComponent _retarder;
+			private IClutch _clutch;
+			private IPowerTrainComponent _axleGear;
+
+			public SimulatorBuilder(IModalDataWriter dataWriter, ISummaryDataWriter sumWriter, bool engineOnly)
+			{
+				_engineOnly = engineOnly;
+				_container = new VehicleContainer(dataWriter, sumWriter);
+			}
+
+			public IVectoSimulator Build(string cycleFile)
+			{
+				return _engineOnly ? BuildEngineOnly(cycleFile) : BuildFullPowertrain(cycleFile);
+			}
+
+			private IVectoSimulator BuildFullPowertrain(string cycleFile)
+			{
+				//throw new NotImplementedException("FullPowertrain is not fully implemented yet.");
+				var cycleData = DrivingCycleData.ReadFromFileEngineOnly(cycleFile);
+				//todo: make distinction between time based and distance based driving cycle!
+				var cycle = new TimeBasedDrivingCycle(_container, cycleData);
+
+				_axleGear = null;
+				_wheels = null;
+
+				// connect cycle --> driver --> vehicle --> wheels --> axleGear --> gearBox --> retarder --> clutch
+				cycle.InShaft().Connect(_driver.OutShaft());
+				_driver.InShaft().Connect(_vehicle.OutShaft());
+				_vehicle.InShaft().Connect(_wheels.OutShaft());
+				_wheels.InShaft().Connect(_axleGear.OutShaft());
+				_axleGear.InShaft().Connect(_gearBox.OutShaft());
+				_gearBox.InShaft().Connect(_retarder.OutShaft());
+				_retarder.InShaft().Connect(_clutch.OutShaft());
+
+				// connect directAux --> engine
+				IAuxiliary directAux = new DirectAuxiliary(_container, new AuxiliaryCycleDataAdapter(cycleData));
+				directAux.InShaft().Connect(_engine.OutShaft());
+
+				// connect aux --> ... --> aux_XXX --> directAux
+				var previousAux = directAux;
+				foreach (var auxData in _auxDict) {
+					var auxCycleData = new AuxiliaryCycleDataAdapter(cycleData, auxData.Key);
+					IAuxiliary auxiliary = new MappingAuxiliary(_container, auxCycleData, auxData.Value);
+					auxiliary.InShaft().Connect(previousAux.OutShaft());
+					previousAux = auxiliary;
+				}
+
+				// connect clutch --> aux
+				_clutch.InShaft().Connect(previousAux.OutShaft());
+
+				var simulator = new VectoSimulator(_container, cycle);
+				return simulator;
+			}
+
+			private IVectoSimulator BuildEngineOnly(string cycleFile)
+			{
+				var cycleData = DrivingCycleData.ReadFromFileEngineOnly(cycleFile);
+				var cycle = new EngineOnlyDrivingCycle(_container, cycleData);
+
+				IAuxiliary addAux = new DirectAuxiliary(_container, new AuxiliaryCycleDataAdapter(cycleData));
+				addAux.InShaft().Connect(_engine.OutShaft());
+
+				if (_gearBox == null) {
+					_gearBox = new EngineOnlyGearbox(_container);
+				}
+
+				_gearBox.InShaft().Connect(addAux.OutShaft());
+
+				cycle.InShaft().Connect(_gearBox.OutShaft());
+
+				var simulator = new VectoSimulator(_container, cycle);
+				return simulator;
+			}
+
+
+			public void AddCycle(string cycleFile) {}
+
+			public void AddEngine(string engineFile)
+			{
+				var engineData = CombustionEngineData.ReadFromFile(engineFile);
+				_engine = new CombustionEngine(_container, engineData);
+
+				AddClutch(engineFile);
+			}
+
+			public void AddClutch(string engineFile)
+			{
+				var engineData = CombustionEngineData.ReadFromFile(engineFile);
+				_clutch = new Clutch(_container, engineData);
+			}
+
+			public void AddGearbox(string gearboxFile)
+			{
+				var gearboxData = GearboxData.ReadFromFile(gearboxFile);
+				_axleGear = new AxleGear(gearboxData.AxleGearData);
+
+				_dataWriter.HasTorqueConverter = gearboxData.HasTorqueConverter;
+
+				//todo init gearbox with gearbox data
+				_gearBox = new Gearbox(_container);
+			}
+
+			public void AddAuxiliary(string auxFileName, string auxID)
+			{
+				_auxDict[auxID] = AuxiliaryData.ReadFromFile(auxFileName);
+			}
+
+			public void AddDriver(VectoJobData.Data.DataBody.StartStopData startStop,
+				VectoJobData.Data.DataBody.OverSpeedEcoRollData overSpeedEcoRoll,
+				VectoJobData.Data.DataBody.LACData lookAheadCoasting, string accelerationLimitingFile)
+			{
+				if (_engineOnly) {
+					return;
+				}
+				var driverData = new DriverData(startStop, overSpeedEcoRoll, lookAheadCoasting, accelerationLimitingFile);
+				_driver = new Driver(driverData);
+			}
+
+			public void AddVehicle(string vehicleFile)
+			{
+				if (_engineOnly) {
+					return;
+				}
+
+				var vehicleData = EngineeringModeSimulationComponentFactory.Instance().CreateVehicleData(vehicleFile);
+					//VehicleData.ReadFromFile(vehicleFile);
+				_vehicle = new Vehicle(_container, vehicleData);
+			}
+
+			public void AddRetarder(string retarderFile)
+			{
+				var retarderData = RetarderLossMap.ReadFromFile(retarderFile);
+				_retarder = new Retarder(_container, retarderData);
+			}
+		}
+	}
 }
\ No newline at end of file
diff --git a/VectoCore/Models/Simulation/Impl/VectoSimulator.cs b/VectoCore/Models/Simulation/Impl/VectoSimulator.cs
index e2056f9105ee0e17f65e0830f20e5b5ec177772a..e55bfa77a7eb54b464df3c37dabc3da87f8529a4 100644
--- a/VectoCore/Models/Simulation/Impl/VectoSimulator.cs
+++ b/VectoCore/Models/Simulation/Impl/VectoSimulator.cs
@@ -1,4 +1,6 @@
-using System;
+using System;
+using System.Data;
+using System.IO;
 using Common.Logging;
 using TUGraz.VectoCore.Models.Connector.Ports;
 using TUGraz.VectoCore.Models.Connector.Ports.Impl;
@@ -6,58 +8,64 @@ using TUGraz.VectoCore.Models.Simulation.Data;
 
 namespace TUGraz.VectoCore.Models.Simulation.Impl
 {
-    public class VectoSimulator : IVectoSimulator
-    {
-        private TimeSpan _absTime = new TimeSpan(seconds: 0, minutes: 0, hours: 0);
-        private TimeSpan _dt = new TimeSpan(seconds: 1, minutes: 0, hours: 0);
-
-        public VectoSimulator(IVehicleContainer container, IDrivingCycleOutPort cycle, IModalDataWriter dataWriter)
-        {
-            Container = container;
-            Cycle = cycle;
-            DataWriter = dataWriter;
-        }
-
-        protected IDrivingCycleOutPort Cycle { get; set; }
-        protected IModalDataWriter DataWriter { get; set; }
-        protected IVehicleContainer Container { get; set; }
-
-        public IVehicleContainer GetContainer()
-        {
-            return Container;
-        }
-
-        public void Run()
-        {
-            LogManager.GetLogger(GetType()).Info("VectoJob started running.");
-            IResponse response;
-            do {
-                response = Cycle.Request(_absTime, _dt);
-                while (response is ResponseFailTimeInterval) {
-                    _dt = (response as ResponseFailTimeInterval).DeltaT;
-                    response = Cycle.Request(_absTime, _dt);
-                }
-
-                if (response is ResponseCycleFinished) {
-                    break;
-                }
-
-
-                DataWriter[ModalResultField.time] = (_absTime + TimeSpan.FromTicks(_dt.Ticks / 2)).TotalSeconds;
-                DataWriter[ModalResultField.simulationInterval] = _dt.TotalSeconds;
-
-                Container.CommitSimulationStep(DataWriter);
-
-                // set _dt to difference to next full second.
-                _absTime += _dt;
-                _dt = TimeSpan.FromSeconds(1) - TimeSpan.FromMilliseconds(_dt.Milliseconds);
-            } while (response is ResponseSuccess);
-
-            Container.FinishSimulation(DataWriter);
-
-            //todo: write vsum file
-
-            LogManager.GetLogger(GetType()).Info("VectoJob finished.");
-        }
-    }
+	/// <summary>
+	/// Simulator for one vecto simulation job.
+	/// </summary>
+	public class VectoSimulator : IVectoSimulator
+	{
+		private TimeSpan _absTime = new TimeSpan(seconds: 0, minutes: 0, hours: 0);
+		private TimeSpan _dt = new TimeSpan(seconds: 1, minutes: 0, hours: 0);
+
+		public VectoSimulator(IVehicleContainer container, IDrivingCycleOutPort cyclePort)
+		{
+			Container = container;
+			CyclePort = cyclePort;
+		}
+
+		protected SummaryFileWriter SumWriter { get; set; }
+
+		protected string JobFileName { get; set; }
+
+		protected string JobName { get; set; }
+
+		protected IDrivingCycleOutPort CyclePort { get; set; }
+		protected IModalDataWriter DataWriter { get; set; }
+		protected IVehicleContainer Container { get; set; }
+
+		public IVehicleContainer GetContainer()
+		{
+			return Container;
+		}
+
+		public void Run()
+		{
+			LogManager.GetLogger(GetType()).Info("VectoJob started running.");
+			IResponse response;
+			do {
+				response = CyclePort.Request(_absTime, _dt);
+				while (response is ResponseFailTimeInterval) {
+					_dt = (response as ResponseFailTimeInterval).DeltaT;
+					response = CyclePort.Request(_absTime, _dt);
+				}
+
+				if (response is ResponseCycleFinished) {
+					break;
+				}
+
+				var time = (_absTime + TimeSpan.FromTicks(_dt.Ticks / 2)).TotalSeconds;
+				var simulationInterval = _dt.TotalSeconds;
+
+
+				Container.CommitSimulationStep(time, simulationInterval);
+
+				// set _dt to difference to next full second.
+				_absTime += _dt;
+				_dt = TimeSpan.FromSeconds(1) - TimeSpan.FromMilliseconds(_dt.Milliseconds);
+			} while (response is ResponseSuccess);
+
+			Container.FinishSimulation();
+
+			LogManager.GetLogger(GetType()).Info("VectoJob finished.");
+		}
+	}
 }
\ No newline at end of file
diff --git a/VectoCore/Models/Simulation/Impl/VehicleContainer.cs b/VectoCore/Models/Simulation/Impl/VehicleContainer.cs
index dc2aa6bf36ce98aedd0bfd5a4dde971bb69c1ba3..4ed63e5b8df8f904ac0eb06b7e5fc9abe9f09fed 100644
--- a/VectoCore/Models/Simulation/Impl/VehicleContainer.cs
+++ b/VectoCore/Models/Simulation/Impl/VehicleContainer.cs
@@ -14,6 +14,10 @@ namespace TUGraz.VectoCore.Models.Simulation.Impl
 		private readonly IList<VectoSimulationComponent> _components = new List<VectoSimulationComponent>();
 		private IEngineCockpit _engine;
 		private IGearboxCockpit _gearbox;
+		private IVehicleCockpit _vehicle;
+		private ILog _logger;
+		private ISummaryDataWriter _sumWriter;
+		private IModalDataWriter _dataWriter;
 
 		#region IGearCockpit
 
@@ -29,7 +33,7 @@ namespace TUGraz.VectoCore.Models.Simulation.Impl
 
 		#region IEngineCockpit
 
-        public PerSecond EngineSpeed()
+		public PerSecond EngineSpeed()
 		{
 			if (_engine == null) {
 				throw new VectoException("no engine available!");
@@ -43,18 +47,34 @@ namespace TUGraz.VectoCore.Models.Simulation.Impl
 
 		public MeterPerSecond VehicleSpeed()
 		{
-			throw new VectoException("no vehicle available!");
+			return _vehicle != null ? _vehicle.VehicleSpeed() : 0.SI<MeterPerSecond>();
+		}
+
+		public double VehicleMass()
+		{
+			return _vehicle != null ? _vehicle.VehicleMass() : 0;
+		}
+
+		public double VehicleLoading()
+		{
+			return _vehicle != null ? _vehicle.VehicleLoading() : 0;
 		}
 
 		#endregion
 
+		public VehicleContainer(IModalDataWriter dataWriter = null, ISummaryDataWriter sumWriter = null)
+		{
+			_logger = LogManager.GetLogger(GetType());
+			_dataWriter = dataWriter;
+			_sumWriter = sumWriter;
+		}
+
 		#region IVehicleContainer
 
 		public virtual void AddComponent(VectoSimulationComponent component)
 		{
 			_components.Add(component);
 
-			// TODO: refactor the following to use polymorphism?
 			var engine = component as IEngineCockpit;
 			if (engine != null) {
 				_engine = engine;
@@ -64,22 +84,32 @@ namespace TUGraz.VectoCore.Models.Simulation.Impl
 			if (gearbox != null) {
 				_gearbox = gearbox;
 			}
+
+			var vehicle = component as IVehicleCockpit;
+			if (vehicle != null) {
+				_vehicle = vehicle;
+			}
 		}
 
 
-		public void CommitSimulationStep(IModalDataWriter dataWriter)
+		public void CommitSimulationStep(double time, double simulationInterval)
 		{
-			LogManager.GetLogger(GetType()).Info("VehicleContainer committing simulation.");
+			_logger.Info("VehicleContainer committing simulation.");
 			foreach (var component in _components) {
-				component.CommitSimulationStep(dataWriter);
+				component.CommitSimulationStep(_dataWriter);
 			}
-			dataWriter.CommitSimulationStep();
+
+			_dataWriter[ModalResultField.time] = time;
+			_dataWriter[ModalResultField.simulationInterval] = simulationInterval;
+			_dataWriter.CommitSimulationStep();
 		}
 
-		public void FinishSimulation(IModalDataWriter dataWriter)
+		public void FinishSimulation()
 		{
-			LogManager.GetLogger(GetType()).Info("VehicleContainer finishing simulation.");
-			dataWriter.Finish();
+			_logger.Info("VehicleContainer finishing simulation.");
+			_dataWriter.Finish();
+
+			_sumWriter.Write(_dataWriter, VehicleMass(), VehicleLoading());
 		}
 
 		#endregion
diff --git a/VectoCore/Models/SimulationComponent/Data/AuxiliariesDemandAdapter.cs b/VectoCore/Models/SimulationComponent/Data/AuxiliaryCycleDataAdapter.cs
similarity index 86%
rename from VectoCore/Models/SimulationComponent/Data/AuxiliariesDemandAdapter.cs
rename to VectoCore/Models/SimulationComponent/Data/AuxiliaryCycleDataAdapter.cs
index d84c0b207d21f8121e8607bdebb3bc54ac9c1352..e7d6d2be3dc5db857b0f8faf552f7d9eb6350747 100644
--- a/VectoCore/Models/SimulationComponent/Data/AuxiliariesDemandAdapter.cs
+++ b/VectoCore/Models/SimulationComponent/Data/AuxiliaryCycleDataAdapter.cs
@@ -7,16 +7,15 @@ using TUGraz.VectoCore.Utils;
 
 namespace TUGraz.VectoCore.Models.SimulationComponent.Data
 {
-	public class AuxiliariesDemandAdapter
+	public class AuxiliaryCycleDataAdapter : IAuxiliaryCycleData
 	{
 		private readonly string _auxiliaryId;
 		private readonly DrivingCycleData _drivingCycle;
 		private readonly IEnumerator<DrivingCycleData.DrivingCycleEntry> _nextCycleEntry;
-		//protected DrivingCycleData.DrivingCycleEntry NextCycleEntry { get { return _nextCycleEntry.Current; } }
 
 		private readonly ILog Log;
 
-		public AuxiliariesDemandAdapter(DrivingCycleData inputData, string column = null)
+		public AuxiliaryCycleDataAdapter(DrivingCycleData inputData, string column = null)
 		{
 			Log = LogManager.GetLogger(GetType());
 			_drivingCycle = inputData;
diff --git a/VectoCore/Models/SimulationComponent/Data/CombustionEngineData.cs b/VectoCore/Models/SimulationComponent/Data/CombustionEngineData.cs
index f22cee58bdd9152a09c6a6717f668ff12687492e..ce53411e44e4e91f8ed3bb25d338729c62a2ebfc 100644
--- a/VectoCore/Models/SimulationComponent/Data/CombustionEngineData.cs
+++ b/VectoCore/Models/SimulationComponent/Data/CombustionEngineData.cs
@@ -84,9 +84,9 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Data
 		/// <summary>
 		///     [kgm^2]
 		/// </summary>
-		public SI Inertia
+		public KilogramSquareMeter Inertia
 		{
-			get { return _data.Body.Inertia.SI().Kilo.Gramm.Square.Meter; }
+			get { return _data.Body.Inertia.SI<KilogramSquareMeter>(); }
 			protected set { _data.Body.Inertia = (double) value.ConvertTo().Kilo.Gramm.Square.Meter; }
 		}
 
@@ -109,7 +109,7 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Data
 		}
 
 		/// <summary>
-		///     [g/Ws]
+		///     [kg/Ws]
 		/// </summary>
 		public SI WHTCMotorway
 		{
@@ -157,7 +157,7 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Data
 
 		public string ToJson()
 		{
-			_data.Header.Date = DateTime.Now;
+			_data.Header.Date = DateTime.Now.ToString(CultureInfo.InvariantCulture);
 			_data.Header.FileVersion = 2;
 			_data.Header.AppVersion = "3.0.0"; // todo: get current app version!
 			_data.Header.CreatedBy = ""; // todo: get current user
@@ -168,7 +168,7 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Data
 		public FullLoadCurve GetFullLoadCurve(uint gear)
 		{
 			var curve = _fullLoadCurves.FirstOrDefault(kv => kv.Key.Contains(gear));
-			if (curve.Key.Equals(null)) {
+			if (curve.Key == null) {
 				throw new KeyNotFoundException(string.Format("GearData '{0}' was not found in the FullLoadCurves.", gear));
 			}
 
diff --git a/VectoCore/Models/SimulationComponent/Data/DriverData.cs b/VectoCore/Models/SimulationComponent/Data/DriverData.cs
new file mode 100644
index 0000000000000000000000000000000000000000..61a7c266f74b540fa691cfa0adef06df08e9c33d
--- /dev/null
+++ b/VectoCore/Models/SimulationComponent/Data/DriverData.cs
@@ -0,0 +1,15 @@
+using System;
+using TUGraz.VectoCore.Models.Simulation.Data;
+
+namespace TUGraz.VectoCore.Models.SimulationComponent.Data
+{
+	public class DriverData
+	{
+		public DriverData(VectoJobData.Data.DataBody.StartStopData startStop,
+			VectoJobData.Data.DataBody.OverSpeedEcoRollData overSpeedEcoRoll,
+			VectoJobData.Data.DataBody.LACData lookAheadCoasting, string accelerationLimitingFile)
+		{
+			throw new NotImplementedException();
+		}
+	}
+}
\ No newline at end of file
diff --git a/VectoCore/Models/SimulationComponent/Data/DrivingCycleData.cs b/VectoCore/Models/SimulationComponent/Data/DrivingCycleData.cs
index a61f1e7e71a59f5f50da2e87ad4b844963441757..c793463df4e25462080941c5a4c91e15a03eacae 100644
--- a/VectoCore/Models/SimulationComponent/Data/DrivingCycleData.cs
+++ b/VectoCore/Models/SimulationComponent/Data/DrivingCycleData.cs
@@ -103,7 +103,7 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Data
 			public const string EngineSpeed = "n";
 
 			/// <summary>
-			///     [-]	GearData input. Overwrites the gear shift model.
+            ///     [-]	Gear input. Overwrites the gear shift model.
 			/// </summary>
 			public const string Gear = "gear";
 
@@ -181,7 +181,7 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Data
 			public PerSecond EngineSpeed { get; set; }
 
 			/// <summary>
-			///     [-]	GearData input. Overwrites the gear shift model.
+            ///     [-]	Gear input. Overwrites the gear shift model.
 			/// </summary>
 			public double Gear { get; set; }
 
diff --git a/VectoCore/Models/SimulationComponent/Data/Engine/FuelConsumptionMap.cs b/VectoCore/Models/SimulationComponent/Data/Engine/FuelConsumptionMap.cs
index f1ef8218c1b7f94cb5820c1446974730e96d65ab..2923e1e1a10a7fe17470ba1de7dff8673166562b 100644
--- a/VectoCore/Models/SimulationComponent/Data/Engine/FuelConsumptionMap.cs
+++ b/VectoCore/Models/SimulationComponent/Data/Engine/FuelConsumptionMap.cs
@@ -65,9 +65,7 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Data.Engine
         {
             // delauney map needs is initialised with rpm, therefore the engineSpeed has to be converted.
             return
-                _fuelMap.Interpolate((double) torque, (double) engineSpeed.ConvertTo().Rounds.Per.Minute)
-                    .SI()
-                    .Kilo.Gramm.Per.Second;
+                _fuelMap.Interpolate(torque.Double(), engineSpeed.ConvertTo().Rounds.Per.Minute.Double()).SI().Kilo.Gramm.Per.Second;
         }
 
         private static class Fields
diff --git a/VectoCore/Models/SimulationComponent/Data/Engine/FullLoadCurve.cs b/VectoCore/Models/SimulationComponent/Data/Engine/FullLoadCurve.cs
index 4babfb37cf3b8e18ee4cb4e669f08c5b0dd1aa97..0d8ceaeca3ab5fde889224a590fb1ce96e363170 100644
--- a/VectoCore/Models/SimulationComponent/Data/Engine/FullLoadCurve.cs
+++ b/VectoCore/Models/SimulationComponent/Data/Engine/FullLoadCurve.cs
@@ -152,7 +152,7 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Data.Engine
 		/// <returns>[1/s]</returns>
 		public PerSecond RatedSpeed()
 		{
-			var max = new Tuple<PerSecond, Watt>(new PerSecond(), new Watt());
+			var max = new Tuple<PerSecond, Watt>(0.SI<PerSecond>(), 0.SI<Watt>());
 			for (var idx = 1; idx < _entries.Count; idx++) {
 				var currentMax = FindMaxPower(_entries[idx - 1], _entries[idx]);
 				if (currentMax.Item2 > max.Item2) {
@@ -171,8 +171,6 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Data.Engine
 		/// <returns>index</returns>
 		protected int FindIndex(PerSecond angularVelocity)
 		{
-			Contract.Requires(angularVelocity.HasEqualUnit(new SI().Radian.Per.Second));
-
 			int idx;
 			if (angularVelocity < _entries[0].EngineSpeed) {
 				Log.ErrorFormat("requested rpm below minimum rpm in FLD curve - extrapolating. n: {0}, rpm_min: {1}",
@@ -200,7 +198,7 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Data.Engine
 			// y = kx + d
 			var k = (p2.TorqueFullLoad - p1.TorqueFullLoad) / (p2.EngineSpeed - p1.EngineSpeed);
 			var d = p2.TorqueFullLoad - k * p2.EngineSpeed;
-			if (k == 0.0.SI()) {
+			if (k == 0.SI()) {
 				return new Tuple<PerSecond, Watt>(p2.EngineSpeed, Formulas.TorqueToPower(p2.TorqueFullLoad, p2.EngineSpeed));
 			}
 			var engineSpeedMaxPower = (-1 * d / (2 * k)).Cast<PerSecond>();
@@ -280,7 +278,7 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Data.Engine
 				if (ReferenceEquals(this, obj)) {
 					return true;
 				}
-				return obj.GetType() == GetType() && Equals((FullLoadCurveEntry) obj);
+				return obj.GetType() == GetType() && Equals((FullLoadCurveEntry)obj);
 			}
 
 			public override int GetHashCode()
@@ -310,7 +308,7 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Data.Engine
 			if (ReferenceEquals(this, obj)) {
 				return true;
 			}
-			return obj.GetType() == GetType() && Equals((FullLoadCurve) obj);
+			return obj.GetType() == GetType() && Equals((FullLoadCurve)obj);
 		}
 
 		public override int GetHashCode()
diff --git a/VectoCore/Models/SimulationComponent/Data/GearboxData.cs b/VectoCore/Models/SimulationComponent/Data/GearboxData.cs
index b88942c9574bb2140a42b2662da2a24334f34af9..525e86da4ae2888b9ade2e688de50949fe073c36 100644
--- a/VectoCore/Models/SimulationComponent/Data/GearboxData.cs
+++ b/VectoCore/Models/SimulationComponent/Data/GearboxData.cs
@@ -96,7 +96,7 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Data
 			gearboxData._data = d;
 
 			for (uint i = 0; i < d.Body.Gears.Count; i++) {
-				var gearSettings = d.Body.Gears[(int) i];
+				var gearSettings = d.Body.Gears[(int)i];
 				var lossMapPath = Path.Combine(basePath, gearSettings.LossMap);
 				TransmissionLossMap lossMap = TransmissionLossMap.ReadFromFile(lossMapPath, gearSettings.Ratio);
 
@@ -203,10 +203,10 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Data
 		/// <summary>
 		///		kgm^2
 		/// </summary>
-		public SI Inertia
+		public KilogramSquareMeter Inertia
 		{
-			get { return _data.Body.Inertia.SI().Kilo.Gramm.Square.Meter; }
-			protected set { _data.Body.Inertia = (double) value.ConvertTo().Kilo.Gramm.Square.Meter; }
+			get { return _data.Body.Inertia.SI<KilogramSquareMeter>(); }
+			protected set { _data.Body.Inertia = (double)value.ConvertTo().Kilo.Gramm.Square.Meter; }
 		}
 
 		/// <summary>
@@ -263,6 +263,11 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Data
 			protected set { _data.Body.StartAcceleration = value; }
 		}
 
+		public bool HasTorqueConverter
+		{
+			get { return _data.Body.TorqueConverter != null; }
+		}
+
 
 		/// <summary>
 		///		A class which represents the json data format for serializing and deseralizing the GearboxData files
diff --git a/VectoCore/Models/SimulationComponent/Data/IAuxiliaryCycleData.cs b/VectoCore/Models/SimulationComponent/Data/IAuxiliaryCycleData.cs
new file mode 100644
index 0000000000000000000000000000000000000000..e1d731f84a10f235cf4fbe88af541498324b1e64
--- /dev/null
+++ b/VectoCore/Models/SimulationComponent/Data/IAuxiliaryCycleData.cs
@@ -0,0 +1,10 @@
+using System;
+using TUGraz.VectoCore.Utils;
+
+namespace TUGraz.VectoCore.Models.SimulationComponent.Data
+{
+	public interface IAuxiliaryCycleData
+	{
+		Watt GetPowerDemand(TimeSpan absTime, TimeSpan dt);
+	}
+}
\ No newline at end of file
diff --git a/VectoCore/Models/SimulationComponent/Data/JsonDataHeader.cs b/VectoCore/Models/SimulationComponent/Data/JsonDataHeader.cs
index 646416f189a87df99af14e3c01b87cb23db515af..db169b94b8cd884dd43ca3f9776361a988e9cfea 100644
--- a/VectoCore/Models/SimulationComponent/Data/JsonDataHeader.cs
+++ b/VectoCore/Models/SimulationComponent/Data/JsonDataHeader.cs
@@ -7,7 +7,7 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Data
 	{
 		[JsonProperty(Required = Required.Always)] public string AppVersion;
 		[JsonProperty(Required = Required.Always)] public string CreatedBy;
-		[JsonProperty(Required = Required.Always)] public DateTime Date;
+		[JsonProperty(Required = Required.Always)] public string Date;
 		[JsonProperty(Required = Required.Always)] public double FileVersion;
 
 		#region Equality members
diff --git a/VectoCore/Models/SimulationComponent/Data/SimulationComponentData.cs b/VectoCore/Models/SimulationComponent/Data/SimulationComponentData.cs
index eb9d92a9d997c501d3290861d0e04f950ef18597..ea6d458a1ff133e8055a43e6fee94ef5242bf3ff 100644
--- a/VectoCore/Models/SimulationComponent/Data/SimulationComponentData.cs
+++ b/VectoCore/Models/SimulationComponent/Data/SimulationComponentData.cs
@@ -13,11 +13,11 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Data
 			Log = LogManager.GetLogger(GetType());
 		}
 
-
-		protected static int GetFileVersion(string jsonStr)
+		protected static Tuple<int, bool> GetFileVersion(string jsonStr)
 		{
 			dynamic json = JsonConvert.DeserializeObject(jsonStr);
-			return json.Header.FileVersion;
+			return new Tuple<int, bool>(Int32.Parse(json.Header.FileVersion.ToString()),
+				Boolean.Parse(json.Body.SavedInDeclMode.ToString()));
 		}
 	}
 }
\ No newline at end of file
diff --git a/VectoCore/Models/SimulationComponent/Data/VehicleData.cs b/VectoCore/Models/SimulationComponent/Data/VehicleData.cs
index 5e4e8f19a4c9b4043e0d998d3c0c481e21beccfd..9c561e76d38a44f6ba109a5c24f5fb0f39625901 100644
--- a/VectoCore/Models/SimulationComponent/Data/VehicleData.cs
+++ b/VectoCore/Models/SimulationComponent/Data/VehicleData.cs
@@ -1,486 +1,197 @@
 using System;
+using System.CodeDom;
 using System.Collections;
 using System.Collections.Generic;
 using System.IO;
 using System.Runtime.Serialization;
 using Newtonsoft.Json;
 using TUGraz.VectoCore.Exceptions;
+using TUGraz.VectoCore.FileIO;
 using TUGraz.VectoCore.Utils;
 
 namespace TUGraz.VectoCore.Models.SimulationComponent.Data
 {
-	public class VehicleData : SimulationComponentData
+	public enum VehicleCategory
 	{
-		public enum VehicleCategory
-		{
-			RigidTruck,
-			Tractor,
-			CityBus,
-			InterurbanBus,
-			Coach
-		}
+		RigidTruck,
+		Tractor,
+		CityBus,
+		InterurbanBus,
+		Coach
+	}
 
-		public enum CrossWindCorrectionMode
-		{
-			NoCorrection,
-			SpeedDependent,
-			VAirBeta
-		}
+	public enum CrossWindCorrectionMode
+	{
+		NoCorrection,
+		SpeedDependent,
+		VAirBeta
+	}
 
-		public enum AxleConfiguration
-		{
-			AxleConfig4x2,
-			AxleConfig4x4,
-			AxleConfig6x2,
-			AxleConfig6x4,
-			AxleConfig6x6,
-			AxleConfig8x2,
-			AxleConfig8x4,
-			AxleConfig8x6,
-			AxleConfig8x8,
-		}
+	public enum AxleConfiguration
+	{
+		AxleConfig4x2,
+		AxleConfig4x4,
+		AxleConfig6x2,
+		AxleConfig6x4,
+		AxleConfig6x6,
+		AxleConfig8x2,
+		AxleConfig8x4,
+		AxleConfig8x6,
+		AxleConfig8x8,
+	}
 
-		[DataMember] private DataV5Engineering _data;
+	public class VehicleData : SimulationComponentData
+	{
+		//public static VehicleData ReadFromFile(string fileName)
+		//{
+		//	return ReadFromJson(File.ReadAllText(fileName), Path.GetDirectoryName(fileName));
+		//}
 
-		[DataMember]
-		protected DataV5Engineering Data
-		{
-			get { return _data; }
-			set
-			{
-				_data = value;
-				_data.SetProperties(this);
-			}
-		}
 
-		[DataMember] private CrossWindCorrectionMode _crossWindCorrectionMode;
+		//public static VehicleData ReadFromJson(string json, string basePath = "")
+		//{
+		//	//var vehicleData = new VehicleData(basePath);
 
-		[DataMember] private RetarderData _retarder;
+		//	var fileInfo = GetFileVersion(json);
+		//	switch (fileInfo.Item1) {
+		//		case 5:
+		//			if (fileInfo.Item2) {
+		//				var data = JsonConvert.DeserializeObject<VehicleFileV5Declaration>(json);
+		//				return new VehicleData(basePath, data);
+		//			} else {
+		//				var data = JsonConvert.DeserializeObject<VehicleFileV5Engineering>(json);
+		//				return new VehicleData(basePath, data);
+		//			}
+		//			//vehicleData.Data = data;
+		//		default:
+		//			throw new UnsupportedFileVersionException("Unsupported Version of .vveh file. Got Version " + fileInfo.Item1);
+		//	}
 
-		[DataMember] private List<Axle> _axleData;
+		//	//return null;
+		//}
 
-		[DataMember] private AxleConfiguration _axleConfiguration;
 
-		[DataMember]
-		public string BasePath { get; protected set; }
+		//protected VehicleData(string basePath, VehicleFileV5Declaration data)
+		//{
+		//	BasePath = basePath;
+		//	SetGenericData(data.Body);
+		//}
 
-		protected VehicleData(string basePath)
-		{
-			BasePath = basePath;
-		}
+		//protected VehicleData(string basePath, VehicleFileV5Engineering data)
+		//{
+		//	BasePath = basePath;
+		//	SetGenericData(data.Body);
+		//}
 
-		public bool SavedInDeclarationMode
+		protected void SetGenericData(VehicleFileV5Declaration.DataBodyDecl data)
 		{
-			get { return _data.Body.SavedInDeclarationMode; }
-			set { _data.Body.SavedInDeclarationMode = value; }
-		}
+			SavedInDeclarationMode = data.SavedInDeclarationMode;
+			VehicleCategory = data.VehicleCategory();
+			GrossVehicleMassRating = data.GrossVehicleMassRating.SI<Kilogram>();
 
-		[DataMember] private VehicleCategory _vehicleCategory;
+			DragCoefficient = data.DragCoefficient;
+			CrossSectionArea = data.CrossSectionArea.SI<SquareMeter>();
 
-		public VehicleCategory Category
-		{
-			get { return _vehicleCategory; }
-			set
-			{
-				_vehicleCategory = value;
-				_data.Body.VehicleCategoryStr = value.ToString();
-			}
+			DragCoefficientRigidTruck = data.DragCoefficientRigidTruck;
+			CrossSectionAreaRigidTruck = data.CrossSectionAreaRigidTruck.SI<SquareMeter>();
 		}
 
+		public string BasePath { get; internal set; }
 
-		public Kilogram CurbWeight
-		{
-			get { return _data.Body.CurbWeight.SI<Kilogram>(); }
-			set { _data.Body.CurbWeight = value.Double(); }
-		}
+		public bool SavedInDeclarationMode { get; internal set; }
 
+		public VehicleCategory VehicleCategory { get; internal set; }
 
-		public Kilogram CurbWeigthExtra
-		{
-			get { return _data.Body.CurbWeightExtra.SI<Kilogram>(); }
-			set { _data.Body.CurbWeightExtra = value.Double(); }
-		}
+		public CrossWindCorrectionMode CrossWindCorrectionMode { get; internal set; }
 
-		public Kilogram Loading
-		{
-			get { return _data.Body.Loading.SI<Kilogram>(); }
-			set { _data.Body.Loading = value.Double(); }
-		}
+		public RetarderData Retarder { get; internal set; }
 
-		public Kilogram TotalVehicleWeight()
-		{
-			return CurbWeight + CurbWeigthExtra + Loading;
-		}
-
-		public Kilogram GrossVehicleMassRating
-		{
-			get { return _data.Body.GrossVehicleMassRating.SI<Kilogram>(); }
-			set { _data.Body.GrossVehicleMassRating = (double) value.ConvertTo().Kilo.Kilo.Gramm; }
-		}
-
-		public double DragCoefficient
-		{
-			get { return _data.Body.DragCoefficient; }
-			set { _data.Body.DragCoefficient = value; }
-		}
-
-		public SquareMeter CrossSectionArea
-		{
-			get { return _data.Body.CrossSectionArea.SI<SquareMeter>(); }
-			set { _data.Body.CrossSectionArea = value.Double(); }
-		}
-
-		public double DragCoefficientRigidTruck
-		{
-			get { return _data.Body.DragCoefficient; }
-			set { _data.Body.DragCoefficient = value; }
-		}
-
-		public SquareMeter CrossSectionAreaRigidTruck
-		{
-			get { return _data.Body.CrossSectionArea.SI<SquareMeter>(); }
-			set { _data.Body.CrossSectionArea = value.Double(); }
-		}
+		private List<Axle> _axleData;
 
-		public Meter DynamicTyreRadius
+		/// <summary>
+		/// Set the properties for all axles of the vehicle
+		/// </summary>
+		public List<Axle> AxleData
 		{
-			get { return _data.Body.DynamicTyreRadius.SI().Milli.Meter.Cast<Meter>(); }
-			set { _data.Body.DynamicTyreRadius = (double) value.ConvertTo().Milli.Meter; }
-		}
-
-		public Kilogram ReducedMassWheels { get; set; }
-
-		public string Rim
-		{
-			get { throw new NotImplementedException(); }
-			set { throw new NotImplementedException(); }
-		}
-
-		public CrossWindCorrectionMode CrossWindCorrection
-		{
-			get { return _crossWindCorrectionMode; }
-			set { _crossWindCorrectionMode = value; }
+			get { return _axleData; }
+			internal set
+			{
+				_axleData = value;
+				ComputeRollResistanceAndReducedMassWheels();
+			}
 		}
 
-		public RetarderData Retarder
-		{
-			get { return _retarder; }
-			protected set { _retarder = value; }
-		}
+		public AxleConfiguration AxleConfiguration { get; internal set; }
 
-		public AxleConfiguration Axles
-		{
-			get { return _axleConfiguration; }
-		}
+		public Kilogram CurbWeight { get; internal set; }
 
-		public double TotalRollResistanceCoefficient { get; protected set; }
+		public Kilogram CurbWeigthExtra { get; internal set; }
 
-		public static VehicleData ReadFromFile(string fileName)
-		{
-			return ReadFromJson(File.ReadAllText(fileName), Path.GetDirectoryName(fileName));
-		}
+		public Kilogram Loading { get; internal set; }
 
-		public static VehicleData ReadFromJson(string json, string basePath = "")
+		public Kilogram TotalVehicleWeight()
 		{
-			var vehicleData = new VehicleData(basePath);
-
-			var fileVersion = GetFileVersion(json);
-			switch (fileVersion) {
-				case 5:
-					var data = JsonConvert.DeserializeObject<DataV5Engineering>(json);
-					vehicleData.Data = data;
-					break;
-				default:
-					throw new UnsupportedFileVersionException("Unsupported Version of .vveh file. Got Version " + fileVersion);
-			}
-
-			return vehicleData;
+			var retVal = 0.SI<Kilogram>();
+			retVal += CurbWeight ?? 0.SI<Kilogram>();
+			retVal += CurbWeigthExtra ?? 0.SI<Kilogram>();
+			retVal += Loading ?? 0.SI<Kilogram>();
+			return retVal;
 		}
 
-		public class DataV5Engineering
-		{
-			[JsonProperty(Required = Required.Always)] public JsonDataHeader Header;
-			[JsonProperty(Required = Required.Always)] public DataBody Body;
-
-			public void SetProperties(VehicleData vehicleData)
-			{
-				vehicleData._axleConfiguration = AxleConfiguration.AxleConfig4x2;
-
-				vehicleData._retarder = new RetarderData(Body.Retarder, vehicleData.BasePath);
-
-				vehicleData._axleData = new List<Axle>(Body.AxleConfig.Axles.Count);
-				var RRC = 0.0;
-				var mRed0 = 0.SI<Kilogram>();
-				foreach (var axleData in Body.AxleConfig.Axles) {
-					var axle = new Axle(axleData);
-					if (axle.RollResistanceCoefficient < 0) {
-						throw new VectoException("Axle roll resistance coefficient < 0");
-					}
-					if (axle.TyreTestLoad <= 0) {
-						throw new VectoException("Axle tyre test load (FzISO) must be greater than 0!");
-					}
-					var nrWheels = axle.TwinTyres ? 4 : 2;
-					RRC += axle.AxleWeightShare * axle.RollResistanceCoefficient *
-							Math.Pow(
-								(axle.AxleWeightShare * vehicleData.TotalVehicleWeight() * Physics.GravityAccelleration / axle.TyreTestLoad /
-								nrWheels).Double(), Physics.RollResistanceExponent - 1);
-					mRed0 += nrWheels * (axle.Inertia / vehicleData.DynamicTyreRadius / vehicleData.DynamicTyreRadius).Cast<Kilogram>();
-
-					vehicleData._axleData.Add(axle);
-				}
-				vehicleData.TotalRollResistanceCoefficient = RRC;
-				vehicleData.ReducedMassWheels = mRed0;
-
-				switch (Body.VehicleCategoryStr) {
-					case "RigidTruck":
-						vehicleData.Category = VehicleCategory.RigidTruck;
-						break;
-					case "Tractor":
-						vehicleData.Category = VehicleCategory.Tractor;
-						break;
-					case "CityBus":
-						vehicleData.Category = VehicleCategory.CityBus;
-						break;
-					case "InterurbanBus":
-						vehicleData.Category = VehicleCategory.InterurbanBus;
-						break;
-					case "Coach":
-						vehicleData.Category = VehicleCategory.Coach;
-						break;
-				}
-
-				switch (Body.CrossWindCorrectionModeStr) {
-					case "CdOfBeta":
-						vehicleData._crossWindCorrectionMode = CrossWindCorrectionMode.VAirBeta;
-						break;
-					case "CdOfV":
-						vehicleData._crossWindCorrectionMode = CrossWindCorrectionMode.SpeedDependent;
-						break;
-					default:
-						vehicleData._crossWindCorrectionMode = CrossWindCorrectionMode.NoCorrection;
-						break;
-				}
-			}
-
-			public class DataBody
-			{
-				[JsonProperty("SavedInDeclMode")] public bool SavedInDeclarationMode;
-
-				[JsonProperty("VehCat", Required = Required.Always)] public string VehicleCategoryStr;
-
-				[JsonProperty(Required = Required.Always)] public double CurbWeight;
-
-				[JsonProperty] public double CurbWeightExtra;
-
-				[JsonProperty] public double Loading;
-
-				[JsonProperty("MassMax", Required = Required.Always)] public double GrossVehicleMassRating;
-
-				[JsonProperty("Cd2")] public double DragCoefficientRigidTruck; // without trailer
-
-				[JsonProperty("CrossSecArea2")] public double CrossSectionAreaRigidTruck;
+		public Kilogram GrossVehicleMassRating { get; internal set; }
 
-				[JsonProperty("Cd", Required = Required.Always)] public double DragCoefficient;
+		public double DragCoefficient { get; internal set; }
 
-				[JsonProperty("CrossSecArea", Required = Required.Always)] public double CrossSectionArea;
+		public SquareMeter CrossSectionArea { get; internal set; }
 
-				[JsonProperty("rdyn")] public double DynamicTyreRadius;
+		public double DragCoefficientRigidTruck { get; internal set; }
 
-				[JsonProperty("Rim")] public string RimStr;
+		public SquareMeter CrossSectionAreaRigidTruck { get; internal set; }
 
-				[JsonProperty("CdCorrMode")] public string CrossWindCorrectionModeStr;
+		public CrossWindCorrectionMode CrossWindCorrection { get; internal set; }
 
-				[JsonProperty("CdCorrFile")] public string CrossWindCorrectionFile;
+		public Meter DynamicTyreRadius { get; internal set; }
 
-				[JsonProperty("Retarder", Required = Required.Always)] public RetarderData.Data Retarder;
+		public Kilogram ReducedMassWheels { get; private set; }
 
-				[JsonProperty(Required = Required.Always)] public AxleConfigData AxleConfig;
+		public string Rim { get; internal set; }
 
+		public double TotalRollResistanceCoefficient { get; private set; }
 
-				public class AxleConfigData
-				{
-					[JsonProperty("Type", Required = Required.Always)] public string TypeStr;
-					[JsonProperty(Required = Required.Always)] public IList<AxleData> Axles;
-				}
-
-				public class AxleData
-				{
-					[JsonProperty] public double Inertia;
-					[JsonProperty] public string WheelsStr;
-					[JsonProperty] public double AxleWeightShare;
-					[JsonProperty(Required = Required.Always)] public bool TwinTyres;
-					[JsonProperty("RRCISO", Required = Required.Always)] public double RollResistanceCoefficient;
-					[JsonProperty("FzISO", Required = Required.Always)] public double TyreTestLoad;
-				}
-			}
-		}
-
-
-		public class DataV5Declaration
+		protected void ComputeRollResistanceAndReducedMassWheels()
 		{
-			[JsonProperty(Required = Required.Always)] public JsonDataHeader Header;
-			[JsonProperty(Required = Required.Always)] public DataBody Body;
-
-			public void SetProperties(VehicleData vehicleData)
-			{
-				vehicleData._axleConfiguration = AxleConfiguration.AxleConfig4x2;
-
-				vehicleData._retarder = new RetarderData(Body.Retarder, vehicleData.BasePath);
-
-				vehicleData._axleData = new List<Axle>(Body.AxleConfig.Axles.Count);
-				var RRC = 0.0;
-				var mRed0 = 0.SI<Kilogram>();
-				foreach (var axleData in Body.AxleConfig.Axles) {
-					var axle = new Axle(axleData);
-					if (axle.RollResistanceCoefficient < 0) {
-						throw new VectoException("Axle roll resistance coefficient < 0");
-					}
-					if (axle.TyreTestLoad <= 0) {
-						throw new VectoException("Axle tyre test load (FzISO) must be greater than 0!");
-					}
-					var nrWheels = axle.TwinTyres ? 4 : 2;
-					RRC += axle.AxleWeightShare * axle.RollResistanceCoefficient *
-							Math.Pow(
-								(axle.AxleWeightShare * vehicleData.TotalVehicleWeight() * Physics.GravityAccelleration / axle.TyreTestLoad /
-								nrWheels).Double(), Physics.RollResistanceExponent - 1);
-					mRed0 += nrWheels * (axle.Inertia / vehicleData.DynamicTyreRadius / vehicleData.DynamicTyreRadius).Cast<Kilogram>();
-
-					vehicleData._axleData.Add(axle);
-				}
-				vehicleData.TotalRollResistanceCoefficient = RRC;
-				vehicleData.ReducedMassWheels = mRed0;
-
-				switch (Body.VehicleCategoryStr) {
-					case "RigidTruck":
-						vehicleData.Category = VehicleCategory.RigidTruck;
-						break;
-					case "Tractor":
-						vehicleData.Category = VehicleCategory.Tractor;
-						break;
-					case "CityBus":
-						vehicleData.Category = VehicleCategory.CityBus;
-						break;
-					case "InterurbanBus":
-						vehicleData.Category = VehicleCategory.InterurbanBus;
-						break;
-					case "Coach":
-						vehicleData.Category = VehicleCategory.Coach;
-						break;
-				}
-
-				//switch (Body.CrossWindCorrectionModeStr) {
-				//	case "CdOfBeta":
-				//		vehicleData._crossWindCorrectionMode = CrossWindCorrectionMode.VAirBeta;
-				//		break;
-				//	case "CdOfV":
-				//		vehicleData._crossWindCorrectionMode = CrossWindCorrectionMode.SpeedDependent;
-				//		break;
-				//	default:
-				//		vehicleData._crossWindCorrectionMode = CrossWindCorrectionMode.NoCorrection;
-				//		break;
-				//}
+			if (TotalVehicleWeight() == 0.SI<Kilogram>()) {
+				throw new VectoException("Total vehicle weight must be greater than 0! Set CurbWeight and Loading before!");
 			}
-
-			public class DataBody
-			{
-				[JsonProperty("SavedInDeclMode", Required = Required.Always)] public bool SavedInDeclarationMode;
-
-				[JsonProperty("VehCat", Required = Required.Always)] public string VehicleCategoryStr;
-
-				[JsonProperty(Required = Required.Always)] public double CurbWeight;
-
-				//[JsonProperty]
-				//public double CurbWeightExtra;
-
-				//[JsonProperty]
-				//public double Loading;
-
-				[JsonProperty("MassMax", Required = Required.Always)] public double GrossVehicleMassRating;
-
-				[JsonProperty("Cd2")] public double DragCoefficientRigidTruck; // without trailer
-
-				[JsonProperty("CrossSecArea2")] public double CrossSectionAreaRigidTruck;
-
-				[JsonProperty("Cd", Required = Required.Always)] public double DragCoefficient;
-
-				[JsonProperty("CrossSecArea", Required = Required.Always)] public double CrossSectionArea;
-
-				//[JsonProperty("rdyn")]
-				//public double DynamicTyreRadius;
-
-				[JsonProperty("Rim", Required = Required.Always)] public string RimStr;
-
-				//[JsonProperty("CdCorrMode")]
-				//public string CrossWindCorrectionModeStr;
-
-				//[JsonProperty("CdCorrFile")]
-				//public string CrossWindCorrectionFile;
-
-				[JsonProperty("Retarder", Required = Required.Always)] public RetarderData.Data Retarder;
-
-				[JsonProperty(Required = Required.Always)] public AxleConfigData AxleConfig;
-
-
-				public class AxleConfigData
-				{
-					[JsonProperty("Type", Required = Required.Always)] public string TypeStr;
-					[JsonProperty(Required = Required.Always)] public IList<AxleData> Axles;
-				}
-
-				public class AxleData
-				{
-					//[JsonProperty]
-					//public double Inertia;
-					[JsonProperty(Required = Required.Always)] public string WheelsStr;
-					//[JsonProperty(Required = Required.Always)]
-					//public double AxleWeightShare;
-					[JsonProperty(Required = Required.Always)] public bool TwinTyres;
-					[JsonProperty("RRCISO", Required = Required.Always)] public double RollResistanceCoefficient;
-					[JsonProperty("FzISO", Required = Required.Always)] public double TyreTestLoad;
-				}
+			if (DynamicTyreRadius == null) {
+				throw new VectoException("Dynamic tyre radius must be set before axles!");
 			}
-		}
-
-		public class Axle
-		{
-			private DataV5Engineering.DataBody.AxleData _data;
 
-			public Axle(DataV5Engineering.DataBody.AxleData data)
-			{
-				_data = data;
+			var RRC = 0.0;
+			var mRed0 = 0.SI<Kilogram>();
+			foreach (var axle in _axleData) {
+				var nrWheels = axle.TwinTyres ? 4 : 2;
+				RRC += axle.AxleWeightShare * axle.RollResistanceCoefficient *
+						Math.Pow(
+							(axle.AxleWeightShare * TotalVehicleWeight() * Physics.GravityAccelleration / axle.TyreTestLoad /
+							nrWheels).Double(), Physics.RollResistanceExponent - 1);
+				mRed0 += nrWheels * (axle.Inertia / DynamicTyreRadius / DynamicTyreRadius).Cast<Kilogram>();
 			}
+			TotalRollResistanceCoefficient = RRC;
+			ReducedMassWheels = mRed0;
+		}
+	}
 
-			public Axle(DataV5Declaration.DataBody.AxleData data) {}
+	public class Axle
+	{
+		public KilogramSquareMeter Inertia { get; internal set; }
 
-			public SI Inertia
-			{
-				get { return _data.Inertia.SI().Kilo.Gramm.Square.Meter; }
-				set { _data.Inertia = value.Double(); }
-			}
+		public double RollResistanceCoefficient { get; internal set; }
 
-			public double RollResistanceCoefficient
-			{
-				get { return _data.RollResistanceCoefficient; }
-				set { _data.RollResistanceCoefficient = value; }
-			}
+		public Newton TyreTestLoad { get; internal set; }
 
-			public Newton TyreTestLoad
-			{
-				get { return _data.TyreTestLoad.SI<Newton>(); }
-				set { _data.TyreTestLoad = value.Double(); }
-			}
-
-			public double AxleWeightShare
-			{
-				get { return _data.AxleWeightShare; }
-				set { _data.AxleWeightShare = value; }
-			}
+		public double AxleWeightShare { get; internal set; }
 
-			public bool TwinTyres
-			{
-				get { return _data.TwinTyres; }
-				set { _data.TwinTyres = value; }
-			}
-		}
+		public bool TwinTyres { get; internal set; }
 	}
 }
\ No newline at end of file
diff --git a/VectoCore/Models/SimulationComponent/Factories/DeclarationModeSimulationComponentFactory.cs b/VectoCore/Models/SimulationComponent/Factories/DeclarationModeSimulationComponentFactory.cs
new file mode 100644
index 0000000000000000000000000000000000000000..462a91d8a155d3a97cee064cea7565d1586e9e30
--- /dev/null
+++ b/VectoCore/Models/SimulationComponent/Factories/DeclarationModeSimulationComponentFactory.cs
@@ -0,0 +1,53 @@
+using System;
+using System.IO;
+using Newtonsoft.Json;
+using TUGraz.VectoCore.Exceptions;
+using TUGraz.VectoCore.FileIO;
+using TUGraz.VectoCore.Models.SimulationComponent.Data;
+using TUGraz.VectoCore.Models.SimulationComponent.Impl;
+using TUGraz.VectoCore.Utils;
+
+namespace TUGraz.VectoCore.Models.SimulationComponent.Factories
+{
+	public class DeclarationModeSimulationComponentFactory : InputFileReader
+	{
+		protected static DeclarationModeSimulationComponentFactory _instance;
+
+		public static DeclarationModeSimulationComponentFactory Instance()
+		{
+			return _instance ?? (_instance = new DeclarationModeSimulationComponentFactory());
+		}
+
+		public VehicleData CreateVehicleData(string fileName)
+		{
+			var json = File.ReadAllText(fileName);
+			var fileInfo = GetFileVersion(json);
+
+			if (!fileInfo.Item2) {
+				throw new VectoException("File not saved in Declaration Mode!");
+			}
+
+			switch (fileInfo.Item1) {
+				case 5:
+					var data = JsonConvert.DeserializeObject<VehicleFileV5Declaration>(json);
+					return CreateVehicleData(Path.GetDirectoryName(fileName), data.Body);
+				default:
+					throw new UnsupportedFileVersionException("Unsupported Version of .vveh file. Got Version " + fileInfo.Item1);
+			}
+		}
+
+		protected VehicleData CreateVehicleData(string basePath, VehicleFileV5Declaration.DataBodyDecl data)
+		{
+			//return new VehicleData {
+			//	SavedInDeclarationMode = data.SavedInDeclarationMode,
+			//	VehicleCategory = data.VehicleCategory(),
+			//	GrossVehicleMassRating = data.GrossVehicleMassRating.SI<Kilogram>(),
+			//	DragCoefficient = data.DragCoefficient,
+			//	CrossSectionArea = data.CrossSectionArea.SI<SquareMeter>(),
+			//	DragCoefficientRigidTruck = data.DragCoefficientRigidTruck,
+			//	CrossSectionAreaRigidTruck = data.CrossSectionAreaRigidTruck.SI<SquareMeter>()
+			//};
+			return null;
+		}
+	}
+}
\ No newline at end of file
diff --git a/VectoCore/Models/SimulationComponent/Factories/EngineeringModeSimulationComponentFactory.cs b/VectoCore/Models/SimulationComponent/Factories/EngineeringModeSimulationComponentFactory.cs
new file mode 100644
index 0000000000000000000000000000000000000000..180216a2229923842e2e04343d5325c54c9f5a1b
--- /dev/null
+++ b/VectoCore/Models/SimulationComponent/Factories/EngineeringModeSimulationComponentFactory.cs
@@ -0,0 +1,68 @@
+using System;
+using System.Collections.Generic;
+using System.IO;
+using System.Linq;
+using Newtonsoft.Json;
+using TUGraz.VectoCore.Exceptions;
+using TUGraz.VectoCore.FileIO;
+using TUGraz.VectoCore.Models.SimulationComponent.Data;
+using TUGraz.VectoCore.Utils;
+
+namespace TUGraz.VectoCore.Models.SimulationComponent.Factories
+{
+	public class EngineeringModeSimulationComponentFactory : InputFileReader
+	{
+		protected static EngineeringModeSimulationComponentFactory _instance;
+
+		public static EngineeringModeSimulationComponentFactory Instance()
+		{
+			return _instance ?? (_instance = new EngineeringModeSimulationComponentFactory());
+		}
+
+		public VehicleData CreateVehicleData(string fileName)
+		{
+			var json = File.ReadAllText(fileName);
+			var fileInfo = GetFileVersion(json);
+
+			if (fileInfo.Item2) {
+				Log.WarnFormat("File {0} was saved in Declaration Mode but is used for Engineering Mode!", fileName);
+			}
+
+			switch (fileInfo.Item1) {
+				case 5:
+					var data = JsonConvert.DeserializeObject<VehicleFileV5Engineering>(json);
+					return CreateVehicleData(Path.GetDirectoryName(fileName), data.Body);
+				default:
+					throw new UnsupportedFileVersionException("Unsupported Version of .vveh file. Got Version " + fileInfo.Item1);
+			}
+		}
+
+		protected VehicleData CreateVehicleData(string basePath, VehicleFileV5Engineering.DataBodyEng data)
+		{
+			return new VehicleData {
+				BasePath = basePath,
+				SavedInDeclarationMode = data.SavedInDeclarationMode,
+				VehicleCategory = data.VehicleCategory(),
+				CurbWeight = data.CurbWeight.SI<Kilogram>(),
+				CurbWeigthExtra = data.CurbWeightExtra.SI<Kilogram>(),
+				Loading = data.Loading.SI<Kilogram>(),
+				GrossVehicleMassRating = data.GrossVehicleMassRating.SI().Kilo.Kilo.Gramm.Cast<Kilogram>(),
+				DragCoefficient = data.DragCoefficient,
+				CrossSectionArea = data.CrossSectionArea.SI<SquareMeter>(),
+				DragCoefficientRigidTruck = data.DragCoefficientRigidTruck,
+				CrossSectionAreaRigidTruck = data.CrossSectionAreaRigidTruck.SI<SquareMeter>(),
+				DynamicTyreRadius = data.DynamicTyreRadius.SI().Milli.Meter.Cast<Meter>(),
+				//  .SI<Meter>(),
+				Rim = data.RimStr,
+				Retarder = new RetarderData(data.Retarder, basePath),
+				AxleData = data.AxleConfig.Axles.Select(axle => new Axle {
+					Inertia = axle.Inertia.SI<KilogramSquareMeter>(),
+					TwinTyres = axle.TwinTyres,
+					RollResistanceCoefficient = axle.RollResistanceCoefficient,
+					AxleWeightShare = axle.AxleWeightShare,
+					TyreTestLoad = axle.TyreTestLoad.SI<Newton>()
+				}).ToList()
+			};
+		}
+	}
+}
\ No newline at end of file
diff --git a/VectoCore/Models/SimulationComponent/IDriver.cs b/VectoCore/Models/SimulationComponent/IDriver.cs
new file mode 100644
index 0000000000000000000000000000000000000000..e6e019ffc7bbc670994f70711ec5fb4d7c409dde
--- /dev/null
+++ b/VectoCore/Models/SimulationComponent/IDriver.cs
@@ -0,0 +1,9 @@
+using TUGraz.VectoCore.Models.Connector.Ports;
+
+namespace TUGraz.VectoCore.Models.SimulationComponent
+{
+	/// <summary>
+	/// Defines interfaces for a driver.
+	/// </summary>
+	public interface IDriver : IDrivingCycleDemandOutProvider, IDriverDemandInProvider {}
+}
\ No newline at end of file
diff --git a/VectoCore/Models/SimulationComponent/IVehicle.cs b/VectoCore/Models/SimulationComponent/IVehicle.cs
index de6646fbf092bf8ec27045f09bcd262cc849a77b..5a1a336c122eeedf4f3cf4dbbcfa4fb8a05dd725 100644
--- a/VectoCore/Models/SimulationComponent/IVehicle.cs
+++ b/VectoCore/Models/SimulationComponent/IVehicle.cs
@@ -3,4 +3,8 @@
 namespace TUGraz.VectoCore.Models.SimulationComponent
 {
 	public interface IVehicle : IRoadPortInProvider, IDriverDemandOutProvider, IFvInPort, IDriverDemandOutPort {}
-}
\ No newline at end of file
+}
+
+/// </summary>
+//	public interface IVehicle : IDriverDemandOutProvider, IRoadPortInProvider {}
+//}
\ No newline at end of file
diff --git a/VectoCore/Models/SimulationComponent/Impl/Clutch.cs b/VectoCore/Models/SimulationComponent/Impl/Clutch.cs
index 0d28e8892a52ecc8bac7663765bce0e21e509180..5c378cf3cdbe49d82fe40f3765c9124c4422909c 100644
--- a/VectoCore/Models/SimulationComponent/Impl/Clutch.cs
+++ b/VectoCore/Models/SimulationComponent/Impl/Clutch.cs
@@ -37,7 +37,8 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 
 		public override void CommitSimulationStep(IModalDataWriter writer)
 		{
-			throw new NotImplementedException();
+			//todo: implement!
+			//throw new NotImplementedException();
 		}
 
 		public ITnInPort InShaft()
@@ -59,7 +60,7 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 			if (Cockpit.Gear() == 0) {
 				_clutchState = ClutchState.ClutchOpened;
 				engineSpeedIn = _idleSpeed;
-				torqueIn = 0.0.SI<NewtonMeter>();
+				torqueIn = 0.SI<NewtonMeter>();
 			} else {
 				var engineSpeedNorm = (angularVelocity - _idleSpeed) /
 									(_ratedSpeed - _idleSpeed);
diff --git a/VectoCore/Models/SimulationComponent/Impl/CombustionEngine.cs b/VectoCore/Models/SimulationComponent/Impl/CombustionEngine.cs
index 2981bab1ce1c9c7cb07c38b5593f98fc4ac4fb25..b7b1ce901b5ed5b55925d18d425cd0b63361532d 100644
--- a/VectoCore/Models/SimulationComponent/Impl/CombustionEngine.cs
+++ b/VectoCore/Models/SimulationComponent/Impl/CombustionEngine.cs
@@ -268,7 +268,7 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 		protected Watt InertiaPowerLoss(NewtonMeter torque, PerSecond angularVelocity)
 		{
 			var deltaEngineSpeed = angularVelocity - _previousState.EngineSpeed;
-			var avgEngineSpeed = (_previousState.EngineSpeed + angularVelocity) / 2.0.SI<Second>();
+			var avgEngineSpeed = (_previousState.EngineSpeed + angularVelocity) / 2.SI<Second>();
 			var result = _data.Inertia * deltaEngineSpeed * avgEngineSpeed;
 			return result.Cast<Watt>();
 		}
diff --git a/VectoCore/Models/SimulationComponent/Impl/DirectAuxiliary.cs b/VectoCore/Models/SimulationComponent/Impl/DirectAuxiliary.cs
new file mode 100644
index 0000000000000000000000000000000000000000..368ecfb6173dd82975299c998bf9fd1d47195832
--- /dev/null
+++ b/VectoCore/Models/SimulationComponent/Impl/DirectAuxiliary.cs
@@ -0,0 +1,78 @@
+using System;
+using TUGraz.VectoCore.Utils;
+using TUGraz.VectoCore.Exceptions;
+using TUGraz.VectoCore.Models.Simulation;
+using TUGraz.VectoCore.Models.Connector.Ports;
+using TUGraz.VectoCore.Models.Simulation.Data;
+using TUGraz.VectoCore.Models.SimulationComponent.Data;
+
+
+namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
+{
+	public class DirectAuxiliary : VectoSimulationComponent, IAuxiliary, ITnInPort, ITnOutPort
+	{
+		private readonly IAuxiliaryCycleData _demand;
+		private ITnOutPort _outPort;
+		private Watt _powerDemand;
+
+		public DirectAuxiliary(IVehicleContainer container, IAuxiliaryCycleData demand)
+			: base(container)
+		{
+			_demand = demand;
+		}
+
+		#region IInShaft
+
+		public ITnInPort InShaft()
+		{
+			return this;
+		}
+
+		#endregion
+
+		#region IOutShaft
+
+		public ITnOutPort OutShaft()
+		{
+			return this;
+		}
+
+		#endregion
+
+		#region ITnInPort
+
+		void ITnInPort.Connect(ITnOutPort other)
+		{
+			_outPort = other;
+		}
+
+		#endregion
+
+		#region ITnOutPort
+
+		IResponse ITnOutPort.Request(TimeSpan absTime, TimeSpan dt, NewtonMeter torque, PerSecond engineSpeed)
+		{
+			if (_outPort == null) {
+				Log.ErrorFormat("{0} cannot handle incoming request - no outport available", absTime);
+				throw new VectoSimulationException(
+					String.Format("{0} cannot handle incoming request - no outport available",
+						absTime.TotalSeconds));
+			}
+
+			_powerDemand = _demand.GetPowerDemand(absTime, dt);
+			var tq = Formulas.PowerToTorque(_powerDemand, engineSpeed);
+			return _outPort.Request(absTime, dt, torque + tq, engineSpeed);
+		}
+
+		#endregion
+
+		#region VectoSimulationComponent
+
+		public override void CommitSimulationStep(IModalDataWriter writer)
+		{
+			writer[ModalResultField.Paux] = (double)_powerDemand;
+		}
+
+		#endregion
+	}
+}
\ No newline at end of file
diff --git a/VectoCore/Models/SimulationComponent/Impl/DistanceBasedDrivingCycle.cs b/VectoCore/Models/SimulationComponent/Impl/DistanceBasedDrivingCycle.cs
index f2bac35791258426a73c20d5906d3ffeb6afc967..2943cfd797cc15fc8fbc0ea2a3e08e5caf6f4136 100644
--- a/VectoCore/Models/SimulationComponent/Impl/DistanceBasedDrivingCycle.cs
+++ b/VectoCore/Models/SimulationComponent/Impl/DistanceBasedDrivingCycle.cs
@@ -26,7 +26,7 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 
 		#region IDrivingCycleDemandInProvider
 
-		public IDrivingCycleDemandInPort InPort()
+		public IDrivingCycleDemandInPort InShaft()
 		{
 			return this;
 		}
@@ -35,7 +35,7 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 
 		#region IDrivingCycleOutProvider
 
-		public IDrivingCycleOutPort OutPort()
+		public IDrivingCycleOutPort OutShaft()
 		{
 			return this;
 		}
diff --git a/VectoCore/Models/SimulationComponent/Impl/Driver.cs b/VectoCore/Models/SimulationComponent/Impl/Driver.cs
new file mode 100644
index 0000000000000000000000000000000000000000..039200c73a9d06e8a64c6b5ec1498bef4610600a
--- /dev/null
+++ b/VectoCore/Models/SimulationComponent/Impl/Driver.cs
@@ -0,0 +1,41 @@
+using System;
+using TUGraz.VectoCore.Models.Connector.Ports;
+using TUGraz.VectoCore.Models.SimulationComponent.Data;
+using TUGraz.VectoCore.Utils;
+
+namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
+{
+	public class Driver : IDriver, IDrivingCycleDemandOutPort, IDriverDemandInPort
+	{
+		public Driver(DriverData driverData)
+		{
+			throw new NotImplementedException();
+		}
+
+		public IDriverDemandInPort InShaft()
+		{
+			throw new NotImplementedException();
+		}
+
+		public void Connect(IDriverDemandOutPort other)
+		{
+			throw new NotImplementedException();
+		}
+
+		public IResponse Request(TimeSpan absTime, TimeSpan dt, MeterPerSecond velocity, Radian gradient)
+		{
+			throw new NotImplementedException();
+		}
+
+
+		public IResponse Request(TimeSpan absTime, TimeSpan dt, MeterPerSquareSecond accelleration, Radian gradient)
+		{
+			throw new NotImplementedException();
+		}
+
+		public IDrivingCycleDemandOutPort OutShaft()
+		{
+			throw new NotImplementedException();
+		}
+	}
+}
\ No newline at end of file
diff --git a/VectoCore/Models/SimulationComponent/Impl/EngineOnlyAuxiliary.cs b/VectoCore/Models/SimulationComponent/Impl/EngineOnlyAuxiliary.cs
deleted file mode 100644
index 405bb80e321d12ae8e03ae0f284d075a275bd419..0000000000000000000000000000000000000000
--- a/VectoCore/Models/SimulationComponent/Impl/EngineOnlyAuxiliary.cs
+++ /dev/null
@@ -1,77 +0,0 @@
-using System;
-using TUGraz.VectoCore.Exceptions;
-using TUGraz.VectoCore.Models.Connector.Ports;
-using TUGraz.VectoCore.Models.Simulation;
-using TUGraz.VectoCore.Models.Simulation.Data;
-using TUGraz.VectoCore.Models.SimulationComponent.Data;
-using TUGraz.VectoCore.Utils;
-
-namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
-{
-    public class EngineOnlyAuxiliary : VectoSimulationComponent, IAuxiliary, ITnInPort, ITnOutPort
-    {
-        private readonly AuxiliariesDemandAdapter _demand;
-        private ITnOutPort _outPort;
-        private Watt _powerDemand;
-
-        public EngineOnlyAuxiliary(IVehicleContainer container, AuxiliariesDemandAdapter demand) : base(container)
-        {
-            _demand = demand;
-        }
-
-        #region IInShaft
-
-        public ITnInPort InShaft()
-        {
-            return this;
-        }
-
-        #endregion
-
-        #region IOutShaft
-
-        public ITnOutPort OutShaft()
-        {
-            return this;
-        }
-
-        #endregion
-
-        #region ITnInPort
-
-        void ITnInPort.Connect(ITnOutPort other)
-        {
-            _outPort = other;
-        }
-
-				#endregion
-
-
-
-        #region ITnOutPort
-
-        IResponse ITnOutPort.Request(TimeSpan absTime, TimeSpan dt, NewtonMeter torque, PerSecond engineSpeed)
-        {
-            if (_outPort == null) {
-                Log.ErrorFormat("{0} cannot handle incoming request - no outport available", absTime);
-                throw new VectoSimulationException(
-                    String.Format("{0} cannot handle incoming request - no outport available",
-                        absTime.TotalSeconds));
-            }
-            _powerDemand = _demand.GetPowerDemand(absTime, dt);
-            var tq = Formulas.PowerToTorque(_powerDemand, engineSpeed);
-            return _outPort.Request(absTime, dt, torque + tq, engineSpeed);
-        }
-
-        #endregion
-
-        #region VectoSimulationComponent
-
-        public override void CommitSimulationStep(IModalDataWriter writer)
-        {
-            writer[ModalResultField.Paux] = (double) _powerDemand;
-        }
-
-        #endregion
-    }
-}
\ No newline at end of file
diff --git a/VectoCore/Models/SimulationComponent/Impl/EngineOnlyDrivingCycle.cs b/VectoCore/Models/SimulationComponent/Impl/EngineOnlyDrivingCycle.cs
index 5a41e36ba4bf1015da0ff95df60e1346739c4997..da14aa901d862b3ff22371b6b39475ccbc9a34f5 100644
--- a/VectoCore/Models/SimulationComponent/Impl/EngineOnlyDrivingCycle.cs
+++ b/VectoCore/Models/SimulationComponent/Impl/EngineOnlyDrivingCycle.cs
@@ -7,66 +7,66 @@ using TUGraz.VectoCore.Models.SimulationComponent.Data;
 
 namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 {
-    /// <summary>
-    ///     Class representing one EngineOnly Driving Cycle
-    /// </summary>
-    public class EngineOnlyDrivingCycle : VectoSimulationComponent, IEngineOnlyDrivingCycle, ITnInPort,
-        IDrivingCycleOutPort
-    {
-        protected DrivingCycleData Data;
-        private ITnOutPort _outPort;
+	/// <summary>
+	///     Class representing one EngineOnly Driving Cycle
+	/// </summary>
+	public class EngineOnlyDrivingCycle : VectoSimulationComponent, IEngineOnlyDrivingCycle, ITnInPort,
+		IDrivingCycleOutPort
+	{
+		protected DrivingCycleData Data;
+		private ITnOutPort _outPort;
 
-        public EngineOnlyDrivingCycle(IVehicleContainer container, DrivingCycleData cycle) : base(container)
-        {
-            Data = cycle;
-        }
+		public EngineOnlyDrivingCycle(IVehicleContainer container, DrivingCycleData cycle) : base(container)
+		{
+			Data = cycle;
+		}
 
-        #region IInShaft
+		#region IInShaft
 
-        public ITnInPort InShaft()
-        {
-            return this;
-        }
+		public ITnInPort InShaft()
+		{
+			return this;
+		}
 
-        #endregion
+		#endregion
 
-        #region IDrivingCycleOutProvider
+		#region IDrivingCycleOutProvider
 
-        public IDrivingCycleOutPort OutPort()
-        {
-            return this;
-        }
+		public IDrivingCycleOutPort OutShaft()
+		{
+			return this;
+		}
 
-        #endregion
+		#endregion
 
-        #region IDrivingCycleOutPort
+		#region IDrivingCycleOutPort
 
-        IResponse IDrivingCycleOutPort.Request(TimeSpan absTime, TimeSpan dt)
-        {
-            //todo: change to variable time steps
-            var index = (int) Math.Floor(absTime.TotalSeconds);
-            if (index >= Data.Entries.Count) {
-                return new ResponseCycleFinished();
-            }
+		IResponse IDrivingCycleOutPort.Request(TimeSpan absTime, TimeSpan dt)
+		{
+			//todo: change to variable time steps
+			var index = (int)Math.Floor(absTime.TotalSeconds);
+			if (index >= Data.Entries.Count) {
+				return new ResponseCycleFinished();
+			}
 
-            return _outPort.Request(absTime, dt, Data.Entries[index].EngineTorque, Data.Entries[index].EngineSpeed);
-        }
+			return _outPort.Request(absTime, dt, Data.Entries[index].EngineTorque, Data.Entries[index].EngineSpeed);
+		}
 
-        #endregion
+		#endregion
 
-        #region ITnInPort
+		#region ITnInPort
 
-        void ITnInPort.Connect(ITnOutPort other)
-        {
-            _outPort = other;
-        }
+		void ITnInPort.Connect(ITnOutPort other)
+		{
+			_outPort = other;
+		}
 
-        #endregion
+		#endregion
 
-        #region VectoSimulationComponent
+		#region VectoSimulationComponent
 
-        public override void CommitSimulationStep(IModalDataWriter writer) {}
+		public override void CommitSimulationStep(IModalDataWriter writer) {}
 
-        #endregion
-    }
+		#endregion
+	}
 }
\ No newline at end of file
diff --git a/VectoCore/Models/SimulationComponent/Impl/Gearbox.cs b/VectoCore/Models/SimulationComponent/Impl/Gearbox.cs
index 46abd5a94fb77d1a4688255b222e0a521fadd28f..5f3aa67bee418e5107f91aa9c1882ac1a6384223 100644
--- a/VectoCore/Models/SimulationComponent/Impl/Gearbox.cs
+++ b/VectoCore/Models/SimulationComponent/Impl/Gearbox.cs
@@ -7,63 +7,62 @@ using TUGraz.VectoCore.Utils;
 
 namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 {
-    public class Gearbox : VectoSimulationComponent, IGearbox, ITnOutPort, ITnInPort
-    {
-        public Gearbox(IVehicleContainer container) : base(container) {}
+	public class Gearbox : VectoSimulationComponent, IGearbox, ITnOutPort, ITnInPort
+	{
+		public Gearbox(IVehicleContainer container) : base(container) {}
 
-        #region IInShaft
+		#region IInShaft
 
-        public ITnInPort InShaft()
-        {
-            throw new NotImplementedException();
-        }
+		public ITnInPort InShaft()
+		{
+			throw new NotImplementedException();
+		}
 
-        #endregion
+		#endregion
 
-        #region IOutShaft
+		#region IOutShaft
 
-        public ITnOutPort OutShaft()
-        {
-            throw new NotImplementedException();
-        }
+		public ITnOutPort OutShaft()
+		{
+			throw new NotImplementedException();
+		}
 
-        #endregion
+		#endregion
 
-        #region IGearboxCockpit
+		#region IGearboxCockpit
 
-        uint IGearboxCockpit.Gear()
-        {
-            throw new NotImplementedException();
-        }
+		uint IGearboxCockpit.Gear()
+		{
+			throw new NotImplementedException();
+		}
 
-				#endregion
+		#endregion
 
-	
-        #region ITnOutPort
+		#region ITnOutPort
 
-        IResponse ITnOutPort.Request(TimeSpan absTime, TimeSpan dt, NewtonMeter torque, PerSecond engineSpeed)
-        {
-            throw new NotImplementedException();
-        }
+		IResponse ITnOutPort.Request(TimeSpan absTime, TimeSpan dt, NewtonMeter torque, PerSecond engineSpeed)
+		{
+			throw new NotImplementedException();
+		}
 
-        #endregion
+		#endregion
 
-        #region ITnInPort
+		#region ITnInPort
 
-        void ITnInPort.Connect(ITnOutPort other)
-        {
-            throw new NotImplementedException();
-        }
+		void ITnInPort.Connect(ITnOutPort other)
+		{
+			throw new NotImplementedException();
+		}
 
-        #endregion
+		#endregion
 
-        #region VectoSimulationComponent
+		#region VectoSimulationComponent
 
-        public override void CommitSimulationStep(IModalDataWriter writer)
-        {
-            throw new NotImplementedException();
-        }
+		public override void CommitSimulationStep(IModalDataWriter writer)
+		{
+			throw new NotImplementedException();
+		}
 
-        #endregion
-    }
+		#endregion
+	}
 }
\ No newline at end of file
diff --git a/VectoCore/Models/SimulationComponent/Impl/MappingAuxiliary.cs b/VectoCore/Models/SimulationComponent/Impl/MappingAuxiliary.cs
new file mode 100644
index 0000000000000000000000000000000000000000..1182205cb286d676e8ae3e713a308cac467468ac
--- /dev/null
+++ b/VectoCore/Models/SimulationComponent/Impl/MappingAuxiliary.cs
@@ -0,0 +1,105 @@
+using System;
+using TUGraz.VectoCore.Exceptions;
+using TUGraz.VectoCore.Models.Connector.Ports;
+using TUGraz.VectoCore.Models.Simulation;
+using TUGraz.VectoCore.Models.Simulation.Data;
+using TUGraz.VectoCore.Models.SimulationComponent.Data;
+using TUGraz.VectoCore.Utils;
+
+namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
+{
+	public class AuxiliaryData
+	{
+		public double EfficiencyToSupply { get; set; }
+		public double TransitionRatio { get; set; }
+		public double EfficiencyToEngine { get; set; }
+
+		public Watt GetPowerDemand(PerSecond nAuxiliary, Watt powerAuxOut)
+		{
+			throw new NotImplementedException();
+		}
+
+		public static AuxiliaryData ReadFromFile(string filePath)
+		{
+			throw new NotImplementedException();
+		}
+	}
+
+	public class MappingAuxiliary : VectoSimulationComponent, IAuxiliary, ITnInPort, ITnOutPort
+	{
+		private readonly IAuxiliaryCycleData _demand;
+		private AuxiliaryData _data;
+		private ITnOutPort _outPort;
+		private Watt _powerDemand;
+
+		public MappingAuxiliary(IVehicleContainer container, IAuxiliaryCycleData demand, AuxiliaryData data)
+			: base(container)
+		{
+			_demand = demand;
+			_data = data;
+		}
+
+		#region IInShaft
+
+		public ITnInPort InShaft()
+		{
+			return this;
+		}
+
+		#endregion
+
+		#region IOutShaft
+
+		public ITnOutPort OutShaft()
+		{
+			return this;
+		}
+
+		#endregion
+
+		#region ITnInPort
+
+		void ITnInPort.Connect(ITnOutPort other)
+		{
+			_outPort = other;
+		}
+
+		#endregion
+
+		#region ITnOutPort
+
+		IResponse ITnOutPort.Request(TimeSpan absTime, TimeSpan dt, NewtonMeter torque, PerSecond angularVelocity)
+		{
+			if (_outPort == null) {
+				Log.ErrorFormat("{0} cannot handle incoming request - no outport available", absTime);
+				throw new VectoSimulationException(
+					String.Format("{0} cannot handle incoming request - no outport available",
+						absTime.TotalSeconds));
+			}
+
+			var power_supply = _demand.GetPowerDemand(absTime, dt);
+			var power_aux_out = power_supply / _data.EfficiencyToSupply;
+
+			var n_auxiliary = angularVelocity * _data.TransitionRatio;
+
+			var power_aux_in = _data.GetPowerDemand(n_auxiliary, power_aux_out);
+			var power_aux = power_aux_in / _data.EfficiencyToEngine;
+
+			_powerDemand = power_aux;
+
+			var torque_aux = Formulas.PowerToTorque(power_aux, angularVelocity);
+			return _outPort.Request(absTime, dt, torque + torque_aux, angularVelocity);
+		}
+
+		#endregion
+
+		#region VectoSimulationComponent
+
+		public override void CommitSimulationStep(IModalDataWriter writer)
+		{
+			writer[ModalResultField.Paux_xxx] = (double)_powerDemand;
+		}
+
+		#endregion
+	}
+}
\ No newline at end of file
diff --git a/VectoCore/Models/SimulationComponent/Impl/TimeBasedDrivingCycle.cs b/VectoCore/Models/SimulationComponent/Impl/TimeBasedDrivingCycle.cs
index 7e482d093a0af4c1dbe787aa38f046d21bfc101e..4237148953016f6c3af6a4d66bbcb8d1f60737a3 100644
--- a/VectoCore/Models/SimulationComponent/Impl/TimeBasedDrivingCycle.cs
+++ b/VectoCore/Models/SimulationComponent/Impl/TimeBasedDrivingCycle.cs
@@ -8,67 +8,68 @@ using TUGraz.VectoCore.Utils;
 
 namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 {
-    /// <summary>
-    ///     Class representing one Time Based Driving Cycle
-    /// </summary>
-    public class TimeBasedDrivingCycle : VectoSimulationComponent, IDrivingCycleDemandDrivingCycle, IDrivingCycleDemandInPort,
-        IDrivingCycleOutPort
-    {
-        protected DrivingCycleData Data;
-        private IDrivingCycleDemandOutPort _outPort;
+	/// <summary>
+	///     Class representing one Time Based Driving Cycle
+	/// </summary>
+	public class TimeBasedDrivingCycle : VectoSimulationComponent, IDrivingCycleDemandDrivingCycle,
+		IDrivingCycleDemandInPort,
+		IDrivingCycleOutPort
+	{
+		protected DrivingCycleData Data;
+		private IDrivingCycleDemandOutPort _outPort;
 
-        public TimeBasedDrivingCycle(IVehicleContainer container, DrivingCycleData cycle) : base(container)
-        {
-            Data = cycle;
-        }
+		public TimeBasedDrivingCycle(IVehicleContainer container, DrivingCycleData cycle) : base(container)
+		{
+			Data = cycle;
+		}
 
-        #region IDrivingCycleOutProvider
+		#region IDrivingCycleOutProvider
 
-        public IDrivingCycleOutPort OutPort()
-        {
-            return this;
-        }
+		public IDrivingCycleOutPort OutShaft()
+		{
+			return this;
+		}
 
-        #endregion
+		#endregion
 
-        #region IDrivingCycleDemandInProvider
+		#region IDrivingCycleDemandInProvider
 
-        public IDrivingCycleDemandInPort InPort()
-        {
-            return this;
-        }
+		public IDrivingCycleDemandInPort InShaft()
+		{
+			return this;
+		}
 
-        #endregion
+		#endregion
 
-        #region IDrivingCycleOutPort
+		#region IDrivingCycleOutPort
 
-        IResponse IDrivingCycleOutPort.Request(TimeSpan absTime, TimeSpan dt)
-        {
-            //todo: change to variable time steps
-            var index = (int) Math.Floor(absTime.TotalSeconds);
-            if (index >= Data.Entries.Count) {
-                return new ResponseCycleFinished();
-            }
+		IResponse IDrivingCycleOutPort.Request(TimeSpan absTime, TimeSpan dt)
+		{
+			//todo: change to variable time steps
+			var index = (int) Math.Floor(absTime.TotalSeconds);
+			if (index >= Data.Entries.Count) {
+				return new ResponseCycleFinished();
+			}
 
-            return _outPort.Request(absTime, dt, Data.Entries[index].VehicleSpeed,
-                Data.Entries[index].RoadGradient.SI().GradientPercent.Cast<Radian>());
-        }
+			return _outPort.Request(absTime, dt, Data.Entries[index].VehicleSpeed,
+				Data.Entries[index].RoadGradient.SI().GradientPercent.Cast<Radian>());
+		}
 
-        #endregion
+		#endregion
 
-        #region IDrivingCycleDemandInPort
+		#region IDrivingCycleDemandInPort
 
-        void IDrivingCycleDemandInPort.Connect(IDrivingCycleDemandOutPort other)
-        {
-            _outPort = other;
-        }
+		void IDrivingCycleDemandInPort.Connect(IDrivingCycleDemandOutPort other)
+		{
+			_outPort = other;
+		}
 
-        #endregion
+		#endregion
 
-        #region VectoSimulationComponent
+		#region VectoSimulationComponent
 
-        public override void CommitSimulationStep(IModalDataWriter writer) {}
+		public override void CommitSimulationStep(IModalDataWriter writer) {}
 
-        #endregion
-    }
+		#endregion
+	}
 }
\ No newline at end of file
diff --git a/VectoCore/Models/SimulationComponent/Impl/Vehicle.cs b/VectoCore/Models/SimulationComponent/Impl/Vehicle.cs
index ca562d9d1cfec080c43f7f5d48bb793f2ed81e9b..f2c0419099c74c666beb8f6d50dddb90cbe1f1b9 100644
--- a/VectoCore/Models/SimulationComponent/Impl/Vehicle.cs
+++ b/VectoCore/Models/SimulationComponent/Impl/Vehicle.cs
@@ -14,13 +14,12 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 		private VehicleState _previousState;
 		private VehicleState _currentState;
 
-		private VehicleData _data;
+		private readonly VehicleData _data;
 
 		public Vehicle(VehicleContainer container, VehicleData data) : base(container)
 		{
 			_data = data;
-			_previousState = new VehicleState();
-			_previousState.Velocity = 0.SI<MeterPerSecond>();
+			_previousState = new VehicleState { Velocity = 0.SI<MeterPerSecond>() };
 			_currentState = new VehicleState();
 		}
 
@@ -29,12 +28,12 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 			_previousState.Velocity = initialVelocity.SI<MeterPerSecond>();
 		}
 
-		public IFvInPort InPort()
+		public IFvInPort InShaft()
 		{
 			return this;
 		}
 
-		public IDriverDemandOutPort OutPort()
+		public IDriverDemandOutPort OutShaft()
 		{
 			return this;
 		}
@@ -71,8 +70,15 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 		protected Newton AirDragResistance()
 		{
 			// TODO different types of cross-wind correction...
-			var Cd = _data.DragCoefficient;
 			var vAir = _currentState.Velocity;
+			var Cd = _data.DragCoefficient;
+			switch (_data.CrossWindCorrection) {
+				case CrossWindCorrectionMode.SpeedDependent:
+					//Cd = 
+					break;
+				case CrossWindCorrectionMode.VAirBeta:
+					break;
+			}
 
 			return (Cd * _data.CrossSectionArea * Physics.AirDensity / 2 * vAir * vAir).Cast<Newton>();
 		}
diff --git a/VectoCore/Properties/Resources.Designer.cs b/VectoCore/Properties/Resources.Designer.cs
deleted file mode 100644
index fcec848b04e58f1f33c05893bacbd29cff539dd4..0000000000000000000000000000000000000000
--- a/VectoCore/Properties/Resources.Designer.cs
+++ /dev/null
@@ -1,107 +0,0 @@
-//------------------------------------------------------------------------------
-// <auto-generated>
-//     This code was generated by a tool.
-//     Runtime Version:4.0.30319.18444
-//
-//     Changes to this file may cause incorrect behavior and will be lost if
-//     the code is regenerated.
-// </auto-generated>
-//------------------------------------------------------------------------------
-
-namespace TUGraz.VectoCore.Properties {
-    using System;
-    
-    
-    /// <summary>
-    ///   A strongly-typed resource class, for looking up localized strings, etc.
-    /// </summary>
-    // This class was auto-generated by the StronglyTypedResourceBuilder
-    // class via a tool like ResGen or Visual Studio.
-    // To add or remove a member, edit your .ResX file then rerun ResGen
-    // with the /str option, or rebuild your VS project.
-    [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
-    internal class Resources {
-        
-        private static global::System.Resources.ResourceManager resourceMan;
-        
-        private static global::System.Globalization.CultureInfo resourceCulture;
-        
-        [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
-        internal Resources() {
-        }
-        
-        /// <summary>
-        ///   Returns the cached ResourceManager instance used by this class.
-        /// </summary>
-        [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
-        internal static global::System.Resources.ResourceManager ResourceManager {
-            get {
-                if (object.ReferenceEquals(resourceMan, null)) {
-                    global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("TUGraz.VectoCore.Properties.Resources", typeof(Resources).Assembly);
-                    resourceMan = temp;
-                }
-                return resourceMan;
-            }
-        }
-        
-        /// <summary>
-        ///   Overrides the current thread's CurrentUICulture property for all
-        ///   resource lookups using this strongly typed resource class.
-        /// </summary>
-        [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
-        internal static global::System.Globalization.CultureInfo Culture {
-            get {
-                return resourceCulture;
-            }
-            set {
-                resourceCulture = value;
-            }
-        }
-        
-        /// <summary>
-        ///   Looks up a localized string similar to rims,F(a),F(b)
-        ///5° DC Rims,3.03,3.03
-        ///15° DC Rims,3.03,3.05
-        ///Multipurpose – Radial,3,3
-        ///Multipurpose – Diagonal,2.94,2.94
-        ///.
-        /// </summary>
-        internal static string DeclarationRims {
-            get {
-                return ResourceManager.GetString("DeclarationRims", resourceCulture);
-            }
-        }
-        
-        /// <summary>
-        ///   Looks up a localized string similar to Wheel,Inertia,d,Size-Class(0/1)
-        ///9 R 22.5,8.9,970,0
-        ///9.00 R 20,10.5,1018,0
-        ///9.5 R 17.5,4.9,842,0
-        ///10 R 17.5,5,858,0
-        ///10 R 22.5,11,1020,0
-        ///10.00 R 20,13.1,1025,0
-        ///11 R 22.5,14.4,1050,0
-        ///11.00 R 20,14.6,1082,0
-        ///12 R 22.5,16.8,1084,0
-        ///12.00 R 20,19.5,1122,0
-        ///12.00 R 24,27.7,1226,0
-        ///12.5 R 20,12.7,1120,0
-        ///13 R 22.5,20,1124,0
-        ///14.00 R 20,30.8,1238,0
-        ///14.5 R 20,14.8,1092,0
-        ///16.00 R 20,47.5,1343,0
-        ///215/75 R 17.5,3.9,767,0
-        ///225/70 R 17.5,4,759.5,0
-        ///225/75 R 17.5,4,782,0
-        ///235/75 R 17.5,4.5,797,0
-        ///245/70 R 17.5,5.2,7 [rest of string was truncated]&quot;;.
-        /// </summary>
-        internal static string DeclarationWheels {
-            get {
-                return ResourceManager.GetString("DeclarationWheels", resourceCulture);
-            }
-        }
-    }
-}
diff --git a/VectoCore/Properties/Resources.resx b/VectoCore/Properties/Resources.resx
deleted file mode 100644
index 9a32631c6be5332e58652cef3d73285442cdb79c..0000000000000000000000000000000000000000
--- a/VectoCore/Properties/Resources.resx
+++ /dev/null
@@ -1,127 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<root>
-  <!-- 
-    Microsoft ResX Schema 
-    
-    Version 2.0
-    
-    The primary goals of this format is to allow a simple XML format 
-    that is mostly human readable. The generation and parsing of the 
-    various data types are done through the TypeConverter classes 
-    associated with the data types.
-    
-    Example:
-    
-    ... ado.net/XML headers & schema ...
-    <resheader name="resmimetype">text/microsoft-resx</resheader>
-    <resheader name="version">2.0</resheader>
-    <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
-    <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
-    <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
-    <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
-    <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
-        <value>[base64 mime encoded serialized .NET Framework object]</value>
-    </data>
-    <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
-        <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
-        <comment>This is a comment</comment>
-    </data>
-                
-    There are any number of "resheader" rows that contain simple 
-    name/value pairs.
-    
-    Each data row contains a name, and value. The row also contains a 
-    type or mimetype. Type corresponds to a .NET class that support 
-    text/value conversion through the TypeConverter architecture. 
-    Classes that don't support this are serialized and stored with the 
-    mimetype set.
-    
-    The mimetype is used for serialized objects, and tells the 
-    ResXResourceReader how to depersist the object. This is currently not 
-    extensible. For a given mimetype the value must be set accordingly:
-    
-    Note - application/x-microsoft.net.object.binary.base64 is the format 
-    that the ResXResourceWriter will generate, however the reader can 
-    read any of the formats listed below.
-    
-    mimetype: application/x-microsoft.net.object.binary.base64
-    value   : The object must be serialized with 
-            : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
-            : and then encoded with base64 encoding.
-    
-    mimetype: application/x-microsoft.net.object.soap.base64
-    value   : The object must be serialized with 
-            : System.Runtime.Serialization.Formatters.Soap.SoapFormatter
-            : and then encoded with base64 encoding.
-
-    mimetype: application/x-microsoft.net.object.bytearray.base64
-    value   : The object must be serialized into a byte array 
-            : using a System.ComponentModel.TypeConverter
-            : and then encoded with base64 encoding.
-    -->
-  <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
-    <xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
-    <xsd:element name="root" msdata:IsDataSet="true">
-      <xsd:complexType>
-        <xsd:choice maxOccurs="unbounded">
-          <xsd:element name="metadata">
-            <xsd:complexType>
-              <xsd:sequence>
-                <xsd:element name="value" type="xsd:string" minOccurs="0" />
-              </xsd:sequence>
-              <xsd:attribute name="name" use="required" type="xsd:string" />
-              <xsd:attribute name="type" type="xsd:string" />
-              <xsd:attribute name="mimetype" type="xsd:string" />
-              <xsd:attribute ref="xml:space" />
-            </xsd:complexType>
-          </xsd:element>
-          <xsd:element name="assembly">
-            <xsd:complexType>
-              <xsd:attribute name="alias" type="xsd:string" />
-              <xsd:attribute name="name" type="xsd:string" />
-            </xsd:complexType>
-          </xsd:element>
-          <xsd:element name="data">
-            <xsd:complexType>
-              <xsd:sequence>
-                <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
-                <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
-              </xsd:sequence>
-              <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
-              <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
-              <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
-              <xsd:attribute ref="xml:space" />
-            </xsd:complexType>
-          </xsd:element>
-          <xsd:element name="resheader">
-            <xsd:complexType>
-              <xsd:sequence>
-                <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
-              </xsd:sequence>
-              <xsd:attribute name="name" type="xsd:string" use="required" />
-            </xsd:complexType>
-          </xsd:element>
-        </xsd:choice>
-      </xsd:complexType>
-    </xsd:element>
-  </xsd:schema>
-  <resheader name="resmimetype">
-    <value>text/microsoft-resx</value>
-  </resheader>
-  <resheader name="version">
-    <value>2.0</value>
-  </resheader>
-  <resheader name="reader">
-    <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
-  </resheader>
-  <resheader name="writer">
-    <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
-  </resheader>
-  <assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
-  <data name="DeclarationRims" type="System.Resources.ResXFileRef, System.Windows.Forms">
-    <value>..\Resources\Rims.csv;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8</value>
-  </data>
-  <data name="DeclarationWheels" type="System.Resources.ResXFileRef, System.Windows.Forms">
-    <value>..\Resources\Wheels.csv;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8</value>
-  </data>
-</root>
\ No newline at end of file
diff --git a/VectoCore/Resources/Rims.csv b/VectoCore/Resources/Declaration/Rims.csv
similarity index 85%
rename from VectoCore/Resources/Rims.csv
rename to VectoCore/Resources/Declaration/Rims.csv
index 520fecd325ec63331e4146481fde7255162b995e..5e73ce61cd575c9145f6db93ebeb93a8d6ec9418 100644
--- a/VectoCore/Resources/Rims.csv
+++ b/VectoCore/Resources/Declaration/Rims.csv
@@ -1,4 +1,4 @@
-rims,F(a),F(b)
+rims,F_a,F_b
 5° DC Rims,3.03,3.03
 15° DC Rims,3.03,3.05
 Multipurpose – Radial,3,3
diff --git a/VectoCore/Resources/Wheels.csv b/VectoCore/Resources/Declaration/Wheels.csv
similarity index 100%
rename from VectoCore/Resources/Wheels.csv
rename to VectoCore/Resources/Declaration/Wheels.csv
diff --git a/VectoCore/Utils/DelauneyMap.cs b/VectoCore/Utils/DelauneyMap.cs
index 53b38e28420231e494fe92a5a35d47bdd8a5b3ef..d759555529a17fc5f4620469bafbaabd93a11d4e 100644
--- a/VectoCore/Utils/DelauneyMap.cs
+++ b/VectoCore/Utils/DelauneyMap.cs
@@ -90,9 +90,9 @@ namespace TUGraz.VectoCore.Utils
 				Z = z;
 			}
 
-			public double X { get; set; }
-			public double Y { get; set; }
-			public double Z { get; set; }
+			public double X;
+			public double Y;
+			public double Z;
 
 			public static Point operator -(Point p1, Point p2)
 			{
@@ -123,7 +123,7 @@ namespace TUGraz.VectoCore.Utils
 				if (ReferenceEquals(this, obj)) {
 					return true;
 				}
-				return obj.GetType() == GetType() && Equals((Point) obj);
+				return obj.GetType() == GetType() && Equals((Point)obj);
 			}
 
 			public override int GetHashCode()
@@ -164,10 +164,10 @@ namespace TUGraz.VectoCore.Utils
 				W = tr.P1.X * cross.X + tr.P1.Y * cross.Y + tr.P1.Z * cross.Z;
 			}
 
-			public double X { get; set; }
-			public double Y { get; set; }
-			public double Z { get; set; }
-			public double W { get; set; }
+			public double X;
+			public double Y;
+			public double Z;
+			public double W;
 
 			public override string ToString()
 			{
@@ -184,9 +184,9 @@ namespace TUGraz.VectoCore.Utils
 				P3 = p3;
 			}
 
-			public Point P1 { get; set; }
-			public Point P2 { get; set; }
-			public Point P3 { get; set; }
+			public Point P1;
+			public Point P2;
+			public Point P3;
 
 			public bool IsInside(double x, double y, bool exact = true)
 			{
@@ -284,7 +284,7 @@ namespace TUGraz.VectoCore.Utils
 				if (obj.GetType() != GetType()) {
 					return false;
 				}
-				return Equals((Triangle) obj);
+				return Equals((Triangle)obj);
 			}
 
 			public override int GetHashCode()
@@ -308,8 +308,8 @@ namespace TUGraz.VectoCore.Utils
 				P2 = p2;
 			}
 
-			public Point P1 { get; set; }
-			public Point P2 { get; set; }
+			public Point P1;
+			public Point P2;
 
 			public override string ToString()
 			{
@@ -333,7 +333,7 @@ namespace TUGraz.VectoCore.Utils
 				if (ReferenceEquals(this, obj)) {
 					return true;
 				}
-				return obj.GetType() == GetType() && Equals((Edge) obj);
+				return obj.GetType() == GetType() && Equals((Edge)obj);
 			}
 
 			public override int GetHashCode()
@@ -362,7 +362,7 @@ namespace TUGraz.VectoCore.Utils
 			if (obj.GetType() != GetType()) {
 				return false;
 			}
-			return Equals((DelauneyMap) obj);
+			return Equals((DelauneyMap)obj);
 		}
 
 		public override int GetHashCode()
diff --git a/VectoCore/Utils/DoubleExtensionMethods.cs b/VectoCore/Utils/DoubleExtensionMethods.cs
index 1daa25650ce682602be33a5de5f4a6afaad90726..c616f65a303c1542e5b112226bd499d52b59bde3 100644
--- a/VectoCore/Utils/DoubleExtensionMethods.cs
+++ b/VectoCore/Utils/DoubleExtensionMethods.cs
@@ -2,66 +2,116 @@ using System;
 
 namespace TUGraz.VectoCore.Utils
 {
+	/// <summary>
+	/// Extension methods for double.
+	/// </summary>
 	public static class DoubleExtensionMethods
 	{
+		/// <summary>
+		/// The tolerance.
+		/// </summary>
 		public const double Tolerance = 0.001;
 
-
-		public static bool IsEqual(this double d, double other, double tolerance = Tolerance)
+		/// <summary>
+		/// Determines whether the specified other is equal within tolerance.
+		/// </summary>
+		/// <param name="self">The self.</param>
+		/// <param name="other">The other.</param>
+		/// <param name="tolerance">The tolerance.</param>
+		/// <returns></returns>
+		public static bool IsEqual(this double self, double other, double tolerance = Tolerance)
 		{
-			return Math.Abs(d - other) > -tolerance;
+			return Math.Abs(self - other) < tolerance;
 		}
 
-		public static bool IsSmaller(this double d, double other, double tolerance = Tolerance)
+		/// <summary>
+		/// Determines whether the specified other is smaller within tolerance.
+		/// </summary>
+		/// <param name="self">The self.</param>
+		/// <param name="other">The other.</param>
+		/// <param name="tolerance">The tolerance.</param>
+		/// <returns></returns>
+		public static bool IsSmaller(this double self, double other, double tolerance = Tolerance)
 		{
-			return d - other < tolerance;
+			return self - other < tolerance;
 		}
 
-		public static bool IsSmallerOrEqual(this double d, double other, double tolerance = Tolerance)
+		/// <summary>
+		/// Determines whether the specified other is smaller or equal within tolerance.
+		/// </summary>
+		/// <param name="self">The self.</param>
+		/// <param name="other">The other.</param>
+		/// <param name="tolerance">The tolerance.</param>
+		/// <returns></returns>
+		public static bool IsSmallerOrEqual(this double self, double other, double tolerance = Tolerance)
 		{
-			return d - other <= tolerance;
+			return self - other <= tolerance;
 		}
 
-		public static bool IsGreater(this double d, double other, double tolerance = Tolerance)
+		/// <summary>
+		/// Determines whether the specified other is greater within tolerance.
+		/// </summary>
+		/// <param name="self">The self.</param>
+		/// <param name="other">The other.</param>
+		/// <param name="tolerance">The tolerance.</param>
+		/// <returns></returns>
+		public static bool IsGreater(this double self, double other, double tolerance = Tolerance)
 		{
-			return other.IsSmallerOrEqual(d, tolerance);
+			return other.IsSmallerOrEqual(self, tolerance);
 		}
 
-		public static bool IsGreaterOrEqual(this double d, double other, double tolerance = Tolerance)
+		/// <summary>
+		/// Determines whether the specified other is greater or equal within tolerance.
+		/// </summary>
+		/// <param name="self">The self.</param>
+		/// <param name="other">The other.</param>
+		/// <param name="tolerance">The tolerance.</param>
+		/// <returns></returns>
+		public static bool IsGreaterOrEqual(this double self, double other, double tolerance = Tolerance)
 		{
-			return other.IsSmaller(d, tolerance);
+			return other.IsSmaller(self, tolerance);
 		}
 
-		public static bool IsPositive(this double d, double tolerance = Tolerance)
+		/// <summary>
+		/// Determines whether the specified tolerance is positive within tolerance.
+		/// </summary>
+		/// <param name="self">The self.</param>
+		/// <param name="tolerance">The tolerance.</param>
+		/// <returns></returns>
+		public static bool IsPositive(this double self, double tolerance = Tolerance)
 		{
-			return d.IsGreaterOrEqual(0.0, tolerance);
+			return self.IsGreaterOrEqual(0.0, tolerance);
 		}
 
 		/// <summary>
-		/// Converts the double-value from rounds per minute to the SI Unit PerSecond
+		/// Converts the double-value from RPM (rounds per minute) to the SI Unit PerSecond.
 		/// </summary>
-		/// <param name="d"></param>
+		/// <param name="self"></param>
 		/// <returns></returns>
-		public static PerSecond RPMtoRad(this double d)
+		public static PerSecond RPMtoRad(this double self)
 		{
-			return d.SI().Rounds.Per.Minute.ConvertTo().Radian.Per.Second.Cast<PerSecond>();
+			return self.SI().Rounds.Per.Minute.ConvertTo().Radian.Per.Second.Cast<PerSecond>();
 		}
 
 		/// <summary>
-		///     Gets the SI representation of the number (unit-less).
+		/// Creates an SI object for the number (unit-less: [-]).
 		/// </summary>
-		public static SI SI(this double d)
+		/// <param name="self">The self.</param>
+		/// <returns></returns>
+		public static SI SI(this double self)
 		{
-			return (SI) d;
+			return (SI)self;
 		}
 
-
 		/// <summary>
-		/// Gets the special SI class of the number.
+		/// Creates an templated SI object for the number.
 		/// </summary>
-		public static T SI<T>(this double d) where T : SIBase<T>, new()
+		/// <typeparam name="T"></typeparam>
+		/// <param name="self">The self.</param>
+		/// <returns></returns>
+		public static T SI<T>(this double self) where T : SIBase<T>
 		{
-			return SIBase<T>.Create(d);
+			return SIBase<T>.Create(self);
 		}
 	}
 }
\ No newline at end of file
diff --git a/VectoCore/Utils/IntExtensionMethods.cs b/VectoCore/Utils/IntExtensionMethods.cs
index 0075574fbf4b245c924c328da76a9b59cec7f012..2381c3bdd317947adfe8422aa8ad22974398eeef 100644
--- a/VectoCore/Utils/IntExtensionMethods.cs
+++ b/VectoCore/Utils/IntExtensionMethods.cs
@@ -22,7 +22,7 @@ namespace TUGraz.VectoCore.Utils
 		/// <returns></returns>
 		public static SI SI(this int d)
 		{
-			return (SI) d;
+			return (SI)d;
 		}
 
 		/// <summary>
@@ -30,7 +30,7 @@ namespace TUGraz.VectoCore.Utils
 		/// </summary>
 		/// <param name="d"></param>
 		/// <returns></returns>
-		public static T SI<T>(this int d) where T : SIBase<T>, new()
+		public static T SI<T>(this int d) where T : SIBase<T>
 		{
 			return SIBase<T>.Create(d);
 		}
diff --git a/VectoCore/Utils/SI.cs b/VectoCore/Utils/SI.cs
index d4ead360913ed8843ce47765fb5fd84bfcb5a9e8..957dbb31b0c33cf95684509a275d871d946a2c1c 100644
--- a/VectoCore/Utils/SI.cs
+++ b/VectoCore/Utils/SI.cs
@@ -6,50 +6,107 @@ using System.Diagnostics.Contracts;
 using System.Linq;
 using System.Runtime.CompilerServices;
 using System.Runtime.Serialization;
+using Newtonsoft.Json;
 using TUGraz.VectoCore.Exceptions;
 
 namespace TUGraz.VectoCore.Utils
 {
-	public class MeterPerSecond : SIBase<MeterPerSecond>
+	public class Newton : SIBase<Newton>
 	{
-		public MeterPerSecond() : this(0) {}
-		protected MeterPerSecond(double val) : base(val, new SI().Meter.Per.Second) {}
+		static Newton()
+		{
+			Constructors.Add(typeof (Newton), val => new Newton(val));
+		}
+
+		[JsonConstructor]
+		private Newton(double val) : base(new SI(val).Newton) {}
 	}
 
+	public class Radian : SIBase<Radian>
+	{
+		static Radian()
+		{
+			Constructors.Add(typeof (Radian), val => new Radian(val));
+		}
+
+		[JsonConstructor]
+		private Radian(double val) : base(new SI(val).Radian) {}
+	}
+
+
 	public class MeterPerSquareSecond : SIBase<MeterPerSquareSecond>
 	{
-		public MeterPerSquareSecond() : this(0) {}
-		protected MeterPerSquareSecond(double val) : base(val, new SI().Meter.Per.Square.Second) {}
+		static MeterPerSquareSecond()
+		{
+			Constructors.Add(typeof (MeterPerSquareSecond), val => new MeterPerSquareSecond(val));
+		}
+
+		protected MeterPerSquareSecond(double val) : base(new SI(val).Meter.Per.Square.Second) {}
 	}
 
 	public class Second : SIBase<Second>
 	{
-		public Second() : this(0) {}
-		protected Second(double val) : base(val, new SI().Second) {}
+		static Second()
+		{
+			Constructors.Add(typeof (Second), val => new Second(val));
+		}
+
+		[JsonConstructor]
+		private Second(double val) : base(new SI(val).Second) {}
 	}
 
 	public class Meter : SIBase<Meter>
 	{
-		public Meter() : this(0) {}
-		protected Meter(double val) : base(val, new SI().Meter) {}
+		static Meter()
+		{
+			Constructors.Add(typeof (Meter), val => new Meter(val));
+		}
+
+		protected Meter(double val) : base(new SI(val).Meter) {}
 	}
 
 	public class Kilogram : SIBase<Kilogram>
 	{
-		public Kilogram() : this(0) {}
-		protected Kilogram(double val) : base(val, new SI().Kilo.Gramm) {}
+		static Kilogram()
+		{
+			Constructors.Add(typeof (Kilogram), val => new Kilogram(val));
+		}
+
+		[JsonConstructor]
+		protected Kilogram(double val) : base(new SI(val).Kilo.Gramm) {}
 	}
 
 	public class SquareMeter : SIBase<SquareMeter>
 	{
-		public SquareMeter() : this(0) {}
-		protected SquareMeter(double val) : base(val, new SI().Square.Meter) {}
+		static SquareMeter()
+		{
+			Constructors.Add(typeof (SquareMeter), val => new SquareMeter(val));
+		}
+
+		[JsonConstructor]
+		private SquareMeter(double val) : base(new SI(val).Square.Meter) {}
+	}
+
+	public class KilogramSquareMeter : SIBase<KilogramSquareMeter>
+	{
+		static KilogramSquareMeter()
+		{
+			Constructors.Add(typeof (KilogramSquareMeter), val => new KilogramSquareMeter(val));
+		}
+
+		[JsonConstructor]
+		protected KilogramSquareMeter(double val) : base(new SI(val).Kilo.Gramm.Square.Meter) {}
 	}
 
 	public class Watt : SIBase<Watt>
 	{
-		public Watt() : this(0) {}
-		protected Watt(double val) : base(val, new SI().Watt) {}
+		static Watt()
+		{
+			Constructors.Add(typeof (Watt), val => new Watt(val));
+		}
+
+		[JsonConstructor]
+		private Watt(double val) : base(new SI(val).Watt) {}
 
 		public static PerSecond operator /(Watt watt, NewtonMeter newtonMeter)
 		{
@@ -64,33 +121,48 @@ namespace TUGraz.VectoCore.Utils
 
 	public class PerSecond : SIBase<PerSecond>
 	{
-		public PerSecond() : this(0) {}
-		protected PerSecond(double val) : base(val, new SI().Radian.Per.Second) {}
+		static PerSecond()
+		{
+			Constructors.Add(typeof (PerSecond), val => new PerSecond(val));
+		}
+
+		[JsonConstructor]
+		private PerSecond(double val) : base(new SI(val).Per.Second) {}
 	}
 
-	public class RoundsPerMinute : SIBase<RoundsPerMinute>
+	public class MeterPerSecond : SIBase<MeterPerSecond>
 	{
-		public RoundsPerMinute() : this(0) {}
-		protected RoundsPerMinute(double val) : base(val, new SI().Rounds.Per.Minute) {}
+		static MeterPerSecond()
+		{
+			Constructors.Add(typeof (MeterPerSecond), val => new MeterPerSecond(val));
+		}
+
+		[JsonConstructor]
+		private MeterPerSecond(double val) : base(new SI(val).Meter.Per.Second) {}
 	}
 
 
-	public class Newton : SIBase<Newton>
+	public class RoundsPerMinute : SIBase<RoundsPerMinute>
 	{
-		public Newton() : this(0) {}
-		protected Newton(double val) : base(val, new SI().Newton) {}
-	}
+		static RoundsPerMinute()
+		{
+			Constructors.Add(typeof (RoundsPerMinute), val => new RoundsPerMinute(val));
+		}
 
-	public class Radian : SIBase<Radian>
-	{
-		public Radian() : this(0) {}
-		protected Radian(double val) : base(val, new SI().Radian) {}
+		[JsonConstructor]
+		private RoundsPerMinute(double val) : base(new SI(val).Rounds.Per.Minute) {}
 	}
 
+
 	public class NewtonMeter : SIBase<NewtonMeter>
 	{
-		public NewtonMeter() : this(0) {}
-		protected NewtonMeter(double val) : base(val, new SI().Newton.Meter) {}
+		static NewtonMeter()
+		{
+			Constructors.Add(typeof (NewtonMeter), val => new NewtonMeter(val));
+		}
+
+		[JsonConstructor]
+		private NewtonMeter(double val) : base(new SI(val).Newton.Meter) {}
 
 		public static Watt operator *(NewtonMeter newtonMeter, PerSecond perSecond)
 		{
@@ -108,17 +180,23 @@ namespace TUGraz.VectoCore.Utils
 		}
 	}
 
-
-	public abstract class SIBase<T> : SI where T : SIBase<T>, new()
+	public abstract class SIBase<T> : SI where T : SIBase<T>
 	{
+		protected static Dictionary<Type, Func<double, T>> Constructors =
+			new Dictionary<Type, Func<double, T>>();
+
 		public static T Create(double val)
 		{
-			return new T { Val = val };
+			RuntimeHelpers.RunClassConstructor(typeof (T).TypeHandle);
+			return Constructors[typeof (T)](val);
+		}
+
+		protected SIBase(Type type, Func<double, T> constructor)
+		{
+			Constructors[type] = constructor;
 		}
 
-		protected SIBase() {}
-		protected SIBase(double val) : base(val) {}
-		protected SIBase(double val, SI unit) : base(val, unit) {}
+		protected SIBase(SI si) : base(si) {}
 
 		#region Operators
 
@@ -212,59 +290,20 @@ namespace TUGraz.VectoCore.Utils
 		[DataMember] protected readonly Unit[] Numerator;
 		[DataMember] protected readonly bool Reciproc;
 		[DataMember] protected readonly bool Reverse;
-		[DataMember] protected double Val;
+		[DataMember] protected readonly double Val;
 
 		[SuppressMessage("ReSharper", "InconsistentNaming")]
 		protected enum Unit
 		{
-			/// <summary>
-			/// kilo
-			/// </summary>
 			k,
-
-			/// <summary>
-			/// seconds
-			/// </summary>
 			s,
-
-			/// <summary>
-			/// meter
-			/// </summary>
 			m,
-
-			/// <summary>
-			/// gramm
-			/// </summary>
 			g,
-
-			/// <summary>
-			/// Watt
-			/// </summary>
 			W,
-
-			/// <summary>
-			/// Newton
-			/// </summary>
 			N,
-
-			/// <summary>
-			/// %
-			/// </summary>
 			Percent,
-
-			/// <summary>
-			/// minutes
-			/// </summary>
 			min,
-
-			/// <summary>
-			/// centi
-			/// </summary>
 			c,
-
-			/// <summary>
-			/// Hour
-			/// </summary>
 			h,
 
 			/// <summary>
@@ -392,7 +431,7 @@ namespace TUGraz.VectoCore.Utils
 		/// </summary>
 		/// <typeparam name="T"></typeparam>
 		/// <returns></returns>
-		public T Cast<T>() where T : SIBase<T>, new()
+		public T Cast<T>() where T : SIBase<T>
 		{
 			var t = SIBase<T>.Create(Val);
 			if (!HasEqualUnit(t)) {
@@ -454,6 +493,9 @@ namespace TUGraz.VectoCore.Utils
 			return new SI(Val, Numerator, Denominator);
 		}
 
+		/// <summary>
+		/// Returns the absolute value.
+		/// </summary>
 		public SI Abs()
 		{
 			return new SI(Math.Abs(Val), this);
@@ -613,6 +655,8 @@ namespace TUGraz.VectoCore.Utils
 
 		public static SI operator +(SI si1, SI si2)
 		{
+			Contract.Requires(si1 != null);
+			Contract.Requires(si2 != null);
 			if (!si1.HasEqualUnit(si2)) {
 				throw new VectoException(
 					string.Format("Operator '+' can only operate on SI Objects with the same unit. Got: {0} + {1}", si1, si2));
@@ -623,6 +667,8 @@ namespace TUGraz.VectoCore.Utils
 
 		public static SI operator -(SI si1, SI si2)
 		{
+			Contract.Requires(si1 != null);
+			Contract.Requires(si2 != null);
 			if (!si1.HasEqualUnit(si2)) {
 				throw new VectoException(
 					string.Format("Operator '-' can only operate on SI Objects with the same unit. Got: {0} + {1}", si1, si2));
@@ -632,6 +678,8 @@ namespace TUGraz.VectoCore.Utils
 
 		public static SI operator *(SI si1, SI si2)
 		{
+			Contract.Requires(si1 != null);
+			Contract.Requires(si2 != null);
 			var numerator = si1.Numerator.Concat(si2.Numerator);
 			var denominator = si1.Denominator.Concat(si2.Denominator);
 			return new SI(si1.Val * si2.Val, numerator, denominator);
@@ -639,6 +687,8 @@ namespace TUGraz.VectoCore.Utils
 
 		public static SI operator /(SI si1, SI si2)
 		{
+			Contract.Requires(si1 != null);
+			Contract.Requires(si2 != null);
 			var numerator = si1.Numerator.Concat(si2.Denominator);
 			var denominator = si1.Denominator.Concat(si2.Numerator);
 			return new SI(si1.Val / si2.Val, numerator, denominator);
@@ -646,46 +696,62 @@ namespace TUGraz.VectoCore.Utils
 
 		public static SI operator +(SI si1, double d)
 		{
+			Contract.Requires(si1 != null);
 			return new SI(si1.Val + d, si1);
 		}
 
 		public static SI operator +(double d, SI si1)
 		{
+			Contract.Requires(si1 != null);
 			return si1 + d;
 		}
 
 		public static SI operator -(SI si1, double d)
 		{
+			Contract.Requires(si1 != null);
 			return new SI(si1.Val - d, si1);
 		}
 
 		public static SI operator -(double d, SI si1)
 		{
+			Contract.Requires(si1 != null);
 			return new SI(d - si1.Val, si1);
 		}
 
+		public static SI operator -(SI si1)
+		{
+			Contract.Requires(si1 != null);
+			return 0 - si1;
+		}
+
 		public static SI operator *(SI si1, double d)
 		{
+			Contract.Requires(si1 != null);
 			return new SI(si1.Val * d, si1);
 		}
 
 		public static SI operator *(double d, SI si1)
 		{
+			Contract.Requires(si1 != null);
 			return new SI(d * si1.Val, si1);
 		}
 
 		public static SI operator /(SI si1, double d)
 		{
+			Contract.Requires(si1 != null);
 			return new SI(si1.Val / d, si1);
 		}
 
 		public static SI operator /(double d, SI si1)
 		{
+			Contract.Requires(si1 != null);
 			return new SI(d / si1.Val, si1);
 		}
 
 		public static bool operator <(SI si1, SI si2)
 		{
+			Contract.Requires(si1 != null);
+			Contract.Requires(si2 != null);
 			if (!si1.HasEqualUnit(si2)) {
 				throw new VectoException(
 					string.Format("Operator '<' can only operate on SI Objects with the same unit. Got: {0} + {1}", si1, si2));
@@ -695,6 +761,8 @@ namespace TUGraz.VectoCore.Utils
 
 		public static bool operator >(SI si1, SI si2)
 		{
+			Contract.Requires(si1 != null);
+			Contract.Requires(si2 != null);
 			if (!si1.HasEqualUnit(si2)) {
 				throw new VectoException(
 					string.Format("Operator '>' can only operate on SI Objects with the same unit. Got: {0} + {1}", si1, si2));
@@ -704,6 +772,8 @@ namespace TUGraz.VectoCore.Utils
 
 		public static bool operator <=(SI si1, SI si2)
 		{
+			Contract.Requires(si1 != null);
+			Contract.Requires(si2 != null);
 			if (!si1.HasEqualUnit(si2)) {
 				throw new VectoException(
 					string.Format("Operator '<=' can only operate on SI Objects with the same unit. Got: {0} + {1}", si1, si2));
@@ -713,6 +783,8 @@ namespace TUGraz.VectoCore.Utils
 
 		public static bool operator >=(SI si1, SI si2)
 		{
+			Contract.Requires(si1 != null);
+			Contract.Requires(si2 != null);
 			if (!si1.HasEqualUnit(si2)) {
 				throw new VectoException(
 					string.Format("Operator '>=' can only operate on SI Objects with the same unit. Got: {0} + {1}", si1, si2));
@@ -722,21 +794,25 @@ namespace TUGraz.VectoCore.Utils
 
 		public static bool operator <(SI si1, double d)
 		{
+			Contract.Requires(si1 != null);
 			return si1.Val < d;
 		}
 
 		public static bool operator >(SI si1, double d)
 		{
+			Contract.Requires(si1 != null);
 			return si1.Val > d;
 		}
 
 		public static bool operator <=(SI si1, double d)
 		{
+			Contract.Requires(si1 != null);
 			return si1.Val <= d;
 		}
 
 		public static bool operator >=(SI si1, double d)
 		{
+			Contract.Requires(si1 != null);
 			return si1.Val >= d;
 		}
 
@@ -793,7 +869,7 @@ namespace TUGraz.VectoCore.Utils
 		/// </summary>
 		public override string ToString()
 		{
-			return string.Format("{0} [{1}]", Val, GetUnitString());
+			return ToString(null);
 		}
 
 		public virtual string ToString(string format)
@@ -801,6 +877,7 @@ namespace TUGraz.VectoCore.Utils
 			if (string.IsNullOrEmpty(format)) {
 				format = "";
 			}
+
 			return string.Format("{0:" + format + "} [{2}]", Val, format, GetUnitString());
 		}
 
@@ -809,11 +886,11 @@ namespace TUGraz.VectoCore.Utils
 		#region Equality members
 
 		/// <summary>
-		///     Compares the Unit-Parts of two SI Units.
+		/// Compares the Unit-Parts of two SI Units.
 		/// </summary>
-		[Pure]
 		public bool HasEqualUnit(SI si)
 		{
+			Contract.Requires(si != null);
 			return ToBasicUnits()
 				.Denominator.OrderBy(x => x)
 				.SequenceEqual(si.ToBasicUnits().Denominator.OrderBy(x => x))
@@ -852,7 +929,7 @@ namespace TUGraz.VectoCore.Utils
 			}
 
 			if (!HasEqualUnit(si)) {
-				if (si.Numerator.Length + si.Denominator.Length <= Numerator.Length + Denominator.Length) {
+				if (si.Numerator.Length + si.Denominator.Length >= Numerator.Length + Denominator.Length) {
 					return -1;
 				}
 				return 1;
diff --git a/VectoCore/Utils/VectoCSVFile.cs b/VectoCore/Utils/VectoCSVFile.cs
index 8a9dfa53f4e570dfcda2dd63f8d1ae0838c2fabb..25de5f745341f4de6eef6ad4cc74ab71df893b91 100644
--- a/VectoCore/Utils/VectoCSVFile.cs
+++ b/VectoCore/Utils/VectoCSVFile.cs
@@ -17,7 +17,7 @@ namespace TUGraz.VectoCore.Utils
 	/// </summary>
 	/// <remarks>
 	///     The following format applies to all CSV (Comma-separated values) Input Files used in VECTO:
-	///     List Separator: Comma ","
+	///     List DELIMITER: Comma ","
 	///     Decimal-Mark: Dot "."
 	///     Comments: "#" at the beginning of the comment line. Number and position of comment lines is not limited.
 	///     Header: One header line (not a comment line) at the beginning of the file.
@@ -27,11 +27,11 @@ namespace TUGraz.VectoCore.Utils
 	/// </remarks>
 	public static class VectoCSVFile
 	{
-		private const char Separator = ',';
+		private const char Delimiter = ',';
 		private const char Comment = '#';
 
 		/// <summary>
-		///     Reads a CSV file which is stored in Vecto-CSV-Format.
+		/// Reads a CSV file which is stored in Vecto-CSV-Format.
 		/// </summary>
 		/// <param name="fileName"></param>
 		/// <param name="ignoreEmptyColumns"></param>
@@ -92,13 +92,13 @@ namespace TUGraz.VectoCore.Utils
 			for (var i = 0; i < lines.Length; i++) {
 				var line = lines[i];
 
-				var cells = line.Split(Separator);
+					var cells = line.Split(Delimiter);
 				if (!ignoreEmptyColumns && cells.Length != table.Columns.Count) {
 					throw new CSVReadException(string.Format("Line {0}: The number of values is not correct.", i));
 				}
 
 				try {
-					table.Rows.Add(line.Split(Separator));
+						table.Rows.Add(line.Split(Delimiter));
 				} catch (InvalidCastException e) {
 					throw new CSVReadException(
 						string.Format("Line {0}: The data format of a value is not correct. {1}", i, e.Message), e);
@@ -125,7 +125,7 @@ namespace TUGraz.VectoCore.Utils
 			line = Regex.Replace(line, @"\(.*?\)", "");
 			line = line.Replace("<", "");
 			line = line.Replace(">", "");
-			return line.Split(Separator).Select(col => col.Trim());
+			return line.Split(Delimiter).Select(col => col.Trim());
 		}
 
 		private static string[] RemoveComments(string[] lines)
@@ -139,12 +139,18 @@ namespace TUGraz.VectoCore.Utils
 			return lines;
 		}
 
+		/// <summary>
+		/// Writes the datatable to the csv file.
+		/// Uses the column caption as header (with fallback to column name) for the csv header.
+		/// </summary>
+		/// <param name="fileName">Path to the file.</param>
+		/// <param name="table">The Datatable.</param>
 		public static void Write(string fileName, DataTable table)
 		{
 			var sb = new StringBuilder();
 
 			var header = table.Columns.Cast<DataColumn>().Select(col => col.Caption ?? col.ColumnName);
-			sb.AppendLine(string.Join(", ", header));
+			sb.AppendLine(string.Join(Delimiter.ToString(), header));
 
 			foreach (DataRow row in table.Rows) {
 				var formattedList = new List<string>();
@@ -155,7 +161,7 @@ namespace TUGraz.VectoCore.Utils
 						: item.ToString();
 					formattedList.Add(formattedValue);
 				}
-				sb.AppendLine(string.Join(Separator.ToString(), formattedList));
+				sb.AppendLine(string.Join(Delimiter.ToString(), formattedList));
 			}
 
 			File.WriteAllText(fileName, sb.ToString());
diff --git a/VectoCore/Utils/VectoMath.cs b/VectoCore/Utils/VectoMath.cs
index 712bd8151e12ff71f0a4dd1de9b713747e42869b..09a9a33de195a3761a0f2202047a9430d692726b 100644
--- a/VectoCore/Utils/VectoMath.cs
+++ b/VectoCore/Utils/VectoMath.cs
@@ -1,32 +1,56 @@
 using System;
-using Common.Logging.Factory;
-using NLog.LayoutRenderers.Wrappers;
 
 namespace TUGraz.VectoCore.Utils
 {
+	/// <summary>
+	/// Provides helper methods for mathematical functions.
+	/// </summary>
 	public class VectoMath
 	{
-		public static T2 Interpolate<T1, T2>(T1 x1, T1 x2, T2 y1, T2 y2, T1 xint) where T1 : SI where T2 : SIBase<T2>, new()
+		/// <summary>
+		/// Linearly interpolates a value between two points.
+		/// </summary>
+		/// <typeparam name="T"></typeparam>
+		/// <typeparam name="TResult">The type of the result.</typeparam>
+		/// <param name="x1">First Value on the X-Axis.</param>
+		/// <param name="x2">Second Value on the X-Axis.</param>
+		/// <param name="y1">First Value on the Y-Axis.</param>
+		/// <param name="y2">Second Value on the Y-Axis.</param>
+		/// <param name="xint">Value on the X-Axis, for which the Y-Value should be interpolated.</param>
+		/// <returns></returns>
+		public static TResult Interpolate<T, TResult>(T x1, T x2, TResult y1, TResult y2, T xint) where T : SI
+			where TResult : SIBase<TResult>
 		{
-			return ((xint - x1) * (y2 - y1) / (x2 - x1) + y1).Cast<T2>();
+			return ((xint - x1) * (y2 - y1) / (x2 - x1) + y1).Cast<TResult>();
 		}
 
+		/// <summary>
+		/// Returns the absolute value.
+		/// </summary>
 		public static SI Abs(SI si)
 		{
 			return si.Abs();
 		}
 
-
-		public static T Abs<T>(T si) where T : SIBase<T>, new()
+		/// <summary>
+		/// Returns the absolute value.
+		/// </summary>
+		public static T Abs<T>(T si) where T : SIBase<T>
 		{
 			return si.Abs().Cast<T>();
 		}
 
+		/// <summary>
+		/// Returns the minimum of two values.
+		/// </summary>
 		public static T Min<T>(T c1, T c2) where T : IComparable
 		{
 			return c1.CompareTo(c2) <= 0 ? c1 : c2;
 		}
 
+		/// <summary>
+		/// Returns the maximum of two values.
+		/// </summary>
 		public static T Max<T>(T c1, T c2) where T : IComparable
 		{
 			return c1.CompareTo(c2) >= 0 ? c1 : c2;
diff --git a/VectoCore/VectoCore.csproj b/VectoCore/VectoCore.csproj
index 84464aa3f6892a8bedbf8e7053ff52f7dd74290e..c52471e4eb3b1f416d369995a5ac8c37fec1246b 100644
--- a/VectoCore/VectoCore.csproj
+++ b/VectoCore/VectoCore.csproj
@@ -108,6 +108,9 @@
   <ItemGroup>
     <Compile Include="Exceptions\VectoExceptions.cs" />
     <Compile Include="Exceptions\VectoSimulationException.cs" />
+    <Compile Include="FileIO\InputFileReader.cs" />
+    <Compile Include="FileIO\VehicleFileDeclaration.cs" />
+    <Compile Include="FileIO\VehicleFileEngineering.cs" />
     <Compile Include="Models\Connector\Ports\IDriverDemandPort.cs" />
     <Compile Include="Models\Connector\Ports\IDriverDemandProvider.cs" />
     <Compile Include="Models\Connector\Ports\IDrivingCycleDemandPort.cs" />
@@ -119,12 +122,16 @@
     <Compile Include="Models\Connector\Ports\Impl\Response.cs" />
     <Compile Include="Models\Connector\Ports\IFvPort.cs" />
     <Compile Include="Models\Connector\Ports\ITnPort.cs" />
-    <Compile Include="Models\DeclarationData\Wheels.cs" />
-    <Compile Include="Models\SimulationComponent\Data\AuxiliariesDemandAdapter.cs" />
+    <Compile Include="Models\DeclarationData.cs" />
+    <Compile Include="Models\Declaration\LookupData.cs" />
+    <Compile Include="Models\Declaration\Rims.cs" />
+    <Compile Include="Models\Declaration\Wheels.cs" />
+    <Compile Include="Models\SimulationComponent\Data\AuxiliaryCycleDataAdapter.cs" />
     <Compile Include="Models\SimulationComponent\Data\CombustionEngineData.cs" />
     <Compile Include="Models\SimulationComponent\Data\DrivingCycleData.cs" />
     <Compile Include="Models\SimulationComponent\Data\Engine\FuelConsumptionMap.cs" />
     <Compile Include="Models\SimulationComponent\Data\Engine\FullLoadCurve.cs" />
+    <Compile Include="Models\SimulationComponent\Data\IAuxiliaryCycleData.cs" />
     <Compile Include="Models\SimulationComponent\Data\GearboxData.cs" />
     <Compile Include="Models\SimulationComponent\Data\Gearbox\GearData.cs" />
     <Compile Include="Models\SimulationComponent\Data\Gearbox\TransmissionLossMap.cs" />
@@ -134,20 +141,24 @@
     <Compile Include="Models\SimulationComponent\Data\RetarderData.cs" />
     <Compile Include="Models\SimulationComponent\Data\RetarderLossMap.cs" />
     <Compile Include="Models\SimulationComponent\Data\VehicleData.cs" />
+    <Compile Include="Models\SimulationComponent\Factories\DeclarationModeSimulationComponentFactory.cs" />
+    <Compile Include="Models\SimulationComponent\Factories\EngineeringModeSimulationComponentFactory.cs" />
     <Compile Include="Models\SimulationComponent\IClutch.cs" />
     <Compile Include="Models\SimulationComponent\IEngineOnlyDrivingCycle.cs" />
     <Compile Include="Models\SimulationComponent\IDriverDemandDrivingCycle.cs" />
-    <Compile Include="Models\SimulationComponent\Impl\AxleGear.cs" />
+    <Compile Include="Models\SimulationComponent\IDriver.cs" />
+    <Compile Include="Models\SimulationComponent\Impl\MappingAuxiliary.cs" />
+    <Compile Include="Models\SimulationComponent\Impl\Vehicle.cs" />
+    <Compile Include="Models\SimulationComponent\IVehicle.cs" />
     <Compile Include="Models\SimulationComponent\Impl\Clutch.cs" />
+    <Compile Include="Models\SimulationComponent\Impl\AxleGear.cs" />
     <Compile Include="Models\SimulationComponent\Impl\Retarder.cs" />
-    <Compile Include="Models\SimulationComponent\Impl\Vehicle.cs" />
     <Compile Include="Models\SimulationComponent\IPowerTrainComponent.cs" />
-    <Compile Include="Models\SimulationComponent\IVehicle.cs" />
-    <Compile Include="Properties\Resources.Designer.cs">
-      <AutoGen>True</AutoGen>
-      <DesignTime>True</DesignTime>
-      <DependentUpon>Resources.resx</DependentUpon>
-    </Compile>
+    <Compile Include="Models\Simulation\Data\ISummaryDataWriter.cs" />
+    <Compile Include="Models\Simulation\Data\SummaryFileWriter.cs" />
+    <Compile Include="Models\Simulation\Data\VectoJobData.cs" />
+    <Compile Include="Models\SimulationComponent\Impl\Driver.cs" />
+    <Compile Include="Models\SimulationComponent\Data\DriverData.cs" />
     <Compile Include="Utils\Formulas.cs" />
     <Compile Include="Utils\IntExtensionMethods.cs" />
     <Compile Include="Utils\Physics.cs" />
@@ -158,7 +169,7 @@
     <Compile Include="Models\SimulationComponent\IGearbox.cs" />
     <Compile Include="Models\Connector\Ports\IDrivingCyclePort.cs" />
     <Compile Include="Models\SimulationComponent\Impl\DistanceBasedDrivingCycle.cs" />
-    <Compile Include="Models\SimulationComponent\Impl\EngineOnlyAuxiliary.cs" />
+    <Compile Include="Models\SimulationComponent\Impl\DirectAuxiliary.cs" />
     <Compile Include="Models\SimulationComponent\Impl\TimeBasedDrivingCycle.cs" />
     <Compile Include="Utils\IMemento.cs" />
     <Compile Include="Models\SimulationComponent\Impl\CombustionEngine.cs" />
@@ -194,14 +205,8 @@
   <ItemGroup>
     <None Include="app.config" />
     <None Include="packages.config" />
-    <None Include="Resources\Rims.csv" />
-    <None Include="Resources\Wheels.csv" />
-  </ItemGroup>
-  <ItemGroup>
-    <EmbeddedResource Include="Properties\Resources.resx">
-      <Generator>ResXFileCodeGenerator</Generator>
-      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
-    </EmbeddedResource>
+    <EmbeddedResource Include="Resources\Declaration\Rims.csv" />
+    <EmbeddedResource Include="Resources\Declaration\Wheels.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/VectoCoreTest/Integration/EngineOnlyCycle/EngineOnlyCycleTest.cs b/VectoCoreTest/Integration/EngineOnlyCycle/EngineOnlyCycleTest.cs
index 8d777ab52a8e6f638550febd7c63ea3d55ac9fa3..2adc0b1700f8c383241fd570c131897c91bf45f3 100644
--- a/VectoCoreTest/Integration/EngineOnlyCycle/EngineOnlyCycleTest.cs
+++ b/VectoCoreTest/Integration/EngineOnlyCycle/EngineOnlyCycleTest.cs
@@ -3,7 +3,6 @@ using Microsoft.VisualStudio.TestTools.UnitTesting;
 using Microsoft.VisualStudio.TestTools.UnitTesting.Web;
 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.Models.SimulationComponent.Impl;
 using TUGraz.VectoCore.Tests.Utils;
@@ -28,7 +27,7 @@ namespace TUGraz.VectoCore.Tests.Integration.EngineOnlyCycle
 			var vehicle = new VehicleContainer();
 			var engineData = CombustionEngineData.ReadFromFile(TestContext.DataRow["EngineFile"].ToString());
 
-			var aux = new EngineOnlyAuxiliary(vehicle, new AuxiliariesDemandAdapter(data));
+			var aux = new DirectAuxiliary(vehicle, new AuxiliaryCycleDataAdapter(data));
 			var gearbox = new EngineOnlyGearbox(vehicle);
 
 
diff --git a/VectoCoreTest/Models/DeclarationData/DeclarationDataTest.cs b/VectoCoreTest/Models/DeclarationData/DeclarationDataTest.cs
index b6eb110b09fc81abd41b9f85287a524d12331067..6ca8b17508eb54d5cb60465b42ebd94f860bccab 100644
--- a/VectoCoreTest/Models/DeclarationData/DeclarationDataTest.cs
+++ b/VectoCoreTest/Models/DeclarationData/DeclarationDataTest.cs
@@ -1,17 +1,35 @@
 using System;
 using Microsoft.VisualStudio.TestTools.UnitTesting;
-using TUGraz.VectoCore.Models.DeclarationData;
+using TUGraz.VectoCore.Models.Declaration;
 
 namespace TUGraz.VectoCore.Tests.Models.DeclarationData
 {
 	[TestClass]
 	public class DeclarationDataTest
 	{
+		public const double Tolerance = 0.0001;
+
 		[TestMethod]
 		public void WheelDataTest()
 		{
-			var wheels = Wheels.Instance();
+			var wheels = VectoCore.Models.DeclarationData.Instance().Wheels;
+
+			var tmp = wheels.Lookup("285/70 R 19.5");
+
+			Assert.AreEqual(7.9, tmp.Inertia.Double(), Tolerance);
+			Assert.AreEqual(0.8943, tmp.DynamicTyreRadius.Double(), Tolerance);
+			Assert.AreEqual(0, tmp.SizeClass);
+		}
+
+		[TestMethod]
+		public void RimsDataTest()
+		{
+			var rims = VectoCore.Models.DeclarationData.Instance().Rims;
+
+			var tmp = rims.Lookup("15° DC Rims");
 
+			Assert.AreEqual(3.03, tmp.F_a, Tolerance);
+			Assert.AreEqual(3.05, tmp.F_b, Tolerance);
 		}
 	}
-}
+}
\ No newline at end of file
diff --git a/VectoCoreTest/Models/Simulation/DrivingCycleTests.cs b/VectoCoreTest/Models/Simulation/DrivingCycleTests.cs
index c82d8eb9361e93a555a729dbf0659aa617493d93..98d4aa6e371ef47e03d75fee638427d5bbf30502 100644
--- a/VectoCoreTest/Models/Simulation/DrivingCycleTests.cs
+++ b/VectoCoreTest/Models/Simulation/DrivingCycleTests.cs
@@ -16,14 +16,16 @@ namespace TUGraz.VectoCore.Tests.Models.Simulation
 		[TestMethod]
 		public void TestEngineOnly()
 		{
-			var container = new VehicleContainer();
+			var dataWriter = new TestModalDataWriter();
+			var sumWriter = new TestSumWriter();
+			var container = new VehicleContainer(dataWriter, sumWriter);
 
 			var cycleData = DrivingCycleData.ReadFromFileEngineOnly(@"TestData\Cycles\Coach Engine Only.vdri");
 			var cycle = new EngineOnlyDrivingCycle(container, cycleData);
 
 			var outPort = new MockTnOutPort();
 			var inPort = cycle.InShaft();
-			var cycleOut = cycle.OutPort();
+			var cycleOut = cycle.OutShaft();
 
 			inPort.Connect(outPort);
 
@@ -31,14 +33,15 @@ namespace TUGraz.VectoCore.Tests.Models.Simulation
 			var dt = TimeSpan.FromSeconds(1);
 
 			var response = cycleOut.Request(absTime, dt);
-			Assert.IsInstanceOfType(response, typeof (ResponseSuccess));
+			Assert.IsInstanceOfType(response, typeof(ResponseSuccess));
 
-			var dataWriter = new TestModalDataWriter();
-			container.CommitSimulationStep(dataWriter);
+			var time = (absTime + TimeSpan.FromTicks(dt.Ticks / 2)).TotalSeconds;
+			var simulationInterval = dt.TotalSeconds;
+			container.CommitSimulationStep(time, simulationInterval);
 
 			Assert.AreEqual(absTime, outPort.AbsTime);
 			Assert.AreEqual(dt, outPort.Dt);
-			Assert.AreEqual(600.0.RPMtoRad(), outPort.AngularVelocity);
+			Assert.AreEqual(600.RPMtoRad(), outPort.AngularVelocity);
 			Assert.AreEqual(0.SI<NewtonMeter>(), outPort.Torque);
 		}
 
@@ -58,15 +61,15 @@ namespace TUGraz.VectoCore.Tests.Models.Simulation
 			var absTime = TimeSpan.FromSeconds(10);
 			var dt = TimeSpan.FromSeconds(1);
 
-			var response = cycle.OutPort().Request(absTime, dt);
-			Assert.IsInstanceOfType(response, typeof (ResponseFailTimeInterval));
+			var response = cycle.OutShaft().Request(absTime, dt);
+			Assert.IsInstanceOfType(response, typeof(ResponseFailTimeInterval));
 
 			dt = TimeSpan.FromSeconds(0.25);
-			response = cycle.OutPort().Request(absTime, dt);
-			Assert.IsInstanceOfType(response, typeof (ResponseSuccess));
+			response = cycle.OutShaft().Request(absTime, dt);
+			Assert.IsInstanceOfType(response, typeof(ResponseSuccess));
 
 			var dataWriter = new TestModalDataWriter();
-			container.CommitSimulationStep(dataWriter);
+			container.CommitSimulationStep(absTime.TotalSeconds, dt.TotalSeconds);
 
 			Assert.AreEqual(absTime, outPort.AbsTime);
 			Assert.AreEqual(dt, outPort.Dt);
@@ -77,17 +80,17 @@ namespace TUGraz.VectoCore.Tests.Models.Simulation
 
 			dt = TimeSpan.FromSeconds(1);
 			absTime = TimeSpan.FromSeconds(500);
-			response = cycle.OutPort().Request(absTime, dt);
-			Assert.IsInstanceOfType(response, typeof (ResponseFailTimeInterval));
+			response = cycle.OutShaft().Request(absTime, dt);
+			Assert.IsInstanceOfType(response, typeof(ResponseFailTimeInterval));
 
 			dt = TimeSpan.FromSeconds(0.25);
 
 			for (int i = 0; i < 2; i++) {
-				response = cycle.OutPort().Request(absTime, dt);
-				Assert.IsInstanceOfType(response, typeof (ResponseSuccess));
+				response = cycle.OutShaft().Request(absTime, dt);
+				Assert.IsInstanceOfType(response, typeof(ResponseSuccess));
 
 				dataWriter = new TestModalDataWriter();
-				container.CommitSimulationStep(dataWriter);
+				container.CommitSimulationStep(absTime.TotalSeconds, dt.TotalSeconds);
 
 				Assert.AreEqual(absTime, outPort.AbsTime);
 				Assert.AreEqual(dt, outPort.Dt);
@@ -106,13 +109,13 @@ namespace TUGraz.VectoCore.Tests.Models.Simulation
 		{
 			var container = new VehicleContainer();
 
-			var cycleData = DrivingCycleData.ReadFromFileTimeBased(@"TestData\Cycles\Coach time based.vdri");
+			var cycleData = DrivingCycleData.ReadFromFileTimeBased(@"TestData\Cycles\Coach First Cycle only.vdri");
 			var cycle = new TimeBasedDrivingCycle(container, cycleData);
 
 			var outPort = new MockDrivingCycleDemandOutPort();
 
-			var inPort = cycle.InPort();
-			var cycleOut = cycle.OutPort();
+			var inPort = cycle.InShaft();
+			var cycleOut = cycle.OutShaft();
 
 			inPort.Connect(outPort);
 
@@ -120,26 +123,26 @@ namespace TUGraz.VectoCore.Tests.Models.Simulation
 			var dt = TimeSpan.FromSeconds(1);
 
 			var response = cycleOut.Request(absTime, dt);
-			Assert.IsInstanceOfType(response, typeof (ResponseSuccess));
+			Assert.IsInstanceOfType(response, typeof(ResponseSuccess));
 
 			Assert.AreEqual(absTime, outPort.AbsTime);
 			Assert.AreEqual(dt, outPort.Dt);
-			Assert.AreEqual(0.0.SI<MeterPerSecond>(), outPort.Velocity);
+			Assert.AreEqual(0.SI<MeterPerSecond>(), outPort.Velocity);
 			Assert.AreEqual((-0.020237973).SI().GradientPercent.Cast<Radian>(), outPort.Gradient);
 		}
 
 		[TestMethod]
 		public void Test_TimeBased_TimeFieldMissing()
 		{
-			var container = new VehicleContainer();
+			var container = new VehicleContainer(new TestModalDataWriter(), new TestSumWriter());
 
 			var cycleData = DrivingCycleData.ReadFromFileTimeBased(@"TestData\Cycles\Cycle time field missing.vdri");
 			var cycle = new TimeBasedDrivingCycle(container, cycleData);
 
 			var outPort = new MockDrivingCycleDemandOutPort();
 
-			var inPort = cycle.InPort();
-			var cycleOut = cycle.OutPort();
+			var inPort = cycle.InShaft();
+			var cycleOut = cycle.OutShaft();
 
 			inPort.Connect(outPort);
 
@@ -150,7 +153,10 @@ namespace TUGraz.VectoCore.Tests.Models.Simulation
 			while (cycleOut.Request(absTime, dt) is ResponseSuccess) {
 				Assert.AreEqual(absTime, outPort.AbsTime);
 				Assert.AreEqual(dt, outPort.Dt);
-				container.CommitSimulationStep(dataWriter);
+
+				var time = (absTime + TimeSpan.FromTicks(dt.Ticks / 2)).TotalSeconds;
+				var simulationInterval = dt.TotalSeconds;
+				container.CommitSimulationStep(time, simulationInterval);
 
 				absTime += dt;
 			}
diff --git a/VectoCoreTest/Models/Simulation/SimulationTests.cs b/VectoCoreTest/Models/Simulation/SimulationTests.cs
index a4fe1e3ac6cf03c53b4bdc6e5d9945a169be85aa..16ac702ffd7f72cbc6a5ee7694200c65f9abae61 100644
--- a/VectoCoreTest/Models/Simulation/SimulationTests.cs
+++ b/VectoCoreTest/Models/Simulation/SimulationTests.cs
@@ -1,95 +1,106 @@
-using System.Data;
+using System.IO;
+using System.Linq;
+using System.Security.Cryptography.X509Certificates;
 using Microsoft.VisualStudio.TestTools.UnitTesting;
 using TUGraz.VectoCore.Exceptions;
+using TUGraz.VectoCore.Models.Simulation;
 using TUGraz.VectoCore.Models.Simulation.Data;
 using TUGraz.VectoCore.Models.Simulation.Impl;
 using TUGraz.VectoCore.Utils;
+using TUGraz.VectoCore.Tests.Utils;
 
 namespace TUGraz.VectoCore.Tests.Models.Simulation
 {
-    [TestClass]
-    public class SimulationTests
-    {
-        private const string EngineFile = @"TestData\Components\24t Coach.veng";
-        private const string CycleFile = @"TestData\Cycles\Coach Engine Only.vdri";
-
-        [TestMethod]
-        public void TestSimulationEngineOnly()
-        {
-            var job = SimulatorFactory.CreateTimeBasedEngineOnlyJob(EngineFile, CycleFile, "TestEngineOnly-result.vmod");
-
-            var container = job.GetContainer();
-
-            Assert.AreEqual(560.0.RPMtoRad(), container.EngineSpeed());
-            Assert.AreEqual(0U, container.Gear());
-
-            try {
-                container.VehicleSpeed();
-                Assert.Fail(
-                    "Access to Vehicle speed should fail, because there should be no vehicle in EngineOnly Mode.");
-            } catch (VectoException ex) {
-                Assert.AreEqual(ex.Message, "no vehicle available!", "Vehicle speed wrong exception message.");
-            }
-        }
-
-        [TestMethod]
-        public void TestEngineOnly_JobRun()
-        {
-            var resultFileName = "TestEngineOnly_JobRun-result.vmod";
-            var expectedResultsName = @"TestData\Results\EngineOnlyCycles\24tCoach_EngineOnly.vmod";
-
-            var job = SimulatorFactory.CreateTimeBasedEngineOnlyJob(EngineFile, CycleFile, resultFileName);
-            job.Run();
-
-            var results = ModalResults.ReadFromFile(resultFileName);
-            var expectedResults = ModalResults.ReadFromFile(expectedResultsName);
-
-            Assert.AreEqual(expectedResults.Rows.Count, results.Rows.Count, "Moddata: Row count differs.");
-
-            for (var i = 0; i < expectedResults.Rows.Count; i++) {
-                var row = results.Rows[i];
-                var expectedRow = expectedResults.Rows[i];
-
-                foreach (DataColumn col in expectedResults.Columns) {
-                    Assert.AreEqual(expectedRow[col], row[col], "Moddata: Value differs (Row {0}, Col {1}): {2} != {3}");
-                }
-            }
-        }
-
-        [TestMethod]
-        public void TestEngineOnly_SimulatorRun()
-        {
-            var sim = new JobContainer();
-            var job = SimulatorFactory.CreateTimeBasedEngineOnlyJob(EngineFile, CycleFile,
-                "TestEngineOnly-SimulatorRun-result.vmod");
-            sim.AddJob(job);
-            sim.RunSimulation();
-
-            // todo: Add additional assertions.
-            Assert.Fail("Todo: Add additional assertions.");
-        }
-
-        [TestMethod]
-        public void TestEngineOnly_MultipleJobs()
-        {
-            var simulation = new JobContainer();
-
-            var sim1 = SimulatorFactory.CreateTimeBasedEngineOnlyJob(EngineFile, CycleFile,
-                "TestEngineOnly-MultipleJobs-result1.vmod");
-            simulation.AddJob(sim1);
-
-            var sim2 = SimulatorFactory.CreateTimeBasedEngineOnlyJob(EngineFile, CycleFile,
-                "TestEngineOnly-MultipleJobs-result2.vmod");
-            simulation.AddJob(sim2);
-
-            var sim3 = SimulatorFactory.CreateTimeBasedEngineOnlyJob(EngineFile, CycleFile,
-                "TestEngineOnly-MultipleJobs-result3.vmod");
-            simulation.AddJob(sim3);
-
-            simulation.RunSimulation();
-
-            // todo: Add additional assertions.
-            Assert.Fail("Todo: Add additional assertions.");
-        }
-    }
+	[TestClass]
+	public class SimulationTests
+	{
+		private const string EngineFile = @"TestData\Components\24t Coach.veng";
+		private const string CycleFile = @"TestData\Cycles\Coach Engine Only short.vdri";
+
+		[TestMethod]
+		public void TestSimulationEngineOnly()
+		{
+			var resultFileName = "TestEngineOnly-result.vmod";
+			var job = CreateJob(resultFileName);
+
+			var container = job.GetContainer();
+
+			Assert.AreEqual(560.RPMtoRad(), container.EngineSpeed());
+			Assert.AreEqual(0U, container.Gear());
+		}
+
+		[TestMethod]
+		public void TestEngineOnly_JobRun()
+		{
+			var actual = "TestEngineOnly_JobRun-result.vmod";
+			var expected = @"TestData\Results\EngineOnlyCycles\24tCoach_EngineOnly short.vmod";
+
+			var job = CreateJob(actual);
+			job.Run();
+
+			ResultFileHelper.TestModFile(expected, actual);
+		}
+
+		[TestMethod]
+		public void TestEngineOnly_SimulatorRun()
+		{
+			var actual = @"TestEngineOnly_SimulatorRun-result.vmod";
+			var expected = @"TestData\Results\EngineOnlyCycles\24tCoach_EngineOnly short.vmod";
+
+			var job = CreateJob(actual);
+
+			var sim = new JobContainer(new TestSumWriter());
+			sim.AddJob(job);
+			sim.RunJobs();
+
+			ResultFileHelper.TestModFile(expected, actual);
+		}
+
+		public IVectoSimulator CreateJob(string resultFileName)
+		{
+			var sumFileName = resultFileName.Substring(0, resultFileName.Length - 4) + "vsum";
+
+			var dataWriter = new ModalDataWriter(resultFileName, engineOnly: true);
+			var sumWriter = new SummaryFileWriter(sumFileName);
+			var job = SimulatorFactory.CreateTimeBasedEngineOnlyJob(EngineFile, CycleFile, jobFileName: "", jobName: "",
+				dataWriter: dataWriter, sumWriter: sumWriter);
+
+			return job;
+		}
+
+
+		[TestMethod]
+		public void TestEngineOnly_MultipleJobs()
+		{
+			var resultFiles = new[] {
+				@"TestEngineOnly-MultipleJobs-result1",
+				@"TestEngineOnly-MultipleJobs-result2",
+				@"TestEngineOnly-MultipleJobs-result3"
+			};
+
+			var simulation = new JobContainer(new TestSumWriter());
+			foreach (var resultFile in resultFiles) {
+				simulation.AddJob(CreateJob(resultFile));
+			}
+			simulation.RunJobs();
+
+			ResultFileHelper.TestModFiles(resultFiles.Select(x => x + "_Coach Engine Only short.vmod"),
+				Enumerable.Repeat(@"TestData\Results\EngineOnlyCycles\24tCoach_EngineOnly short.vmod", resultFiles.Length));
+		}
+
+		[TestMethod]
+		public void Test_VectoJob()
+		{
+			var jobData = VectoJobData.ReadFromFile(@"TestData\Jobs\24t Coach.vecto");
+			var jobContainer = new JobContainer(jobData);
+			jobContainer.RunJobs();
+
+			ResultFileHelper.TestSumFile(@"TestData\Results\EngineOnlyCycles\24t Coach.vsum", @"TestData\Jobs\24t Coach.vsum");
+			ResultFileHelper.TestModFiles(new[] {
+				@"TestData\Results\EngineOnlyCycles\24t Coach_Engine Only1.vmod",
+				@"TestData\Results\EngineOnlyCycles\24t Coach_Engine Only2.vmod",
+				@"TestData\Results\EngineOnlyCycles\24t Coach_Engine Only3.vmod"
+			}, new[] { "24t Coach_Engine Only1.vmod", "24t Coach_Engine Only2.vmod", "24t Coach_Engine Only3.vmod" });
+		}
+	}
 }
\ No newline at end of file
diff --git a/VectoCoreTest/Models/SimulationComponent/CombustionEngineTest.cs b/VectoCoreTest/Models/SimulationComponent/CombustionEngineTest.cs
index 1efd710996d8a979168de76bb70c77845ae8c6c3..d463a857787ea1f1b59e97eb24ffa1336f4fe93e 100644
--- a/VectoCoreTest/Models/SimulationComponent/CombustionEngineTest.cs
+++ b/VectoCoreTest/Models/SimulationComponent/CombustionEngineTest.cs
@@ -1,8 +1,9 @@
 using System;
-using System.Globalization;
+using System.Collections.Generic;
 using System.IO;
 using System.Reflection;
 using Microsoft.VisualStudio.TestTools.UnitTesting;
+using TUGraz.VectoCore.Exceptions;
 using TUGraz.VectoCore.Models.Simulation.Data;
 using TUGraz.VectoCore.Models.Simulation.Impl;
 using TUGraz.VectoCore.Models.SimulationComponent.Data;
@@ -24,6 +25,24 @@ namespace TUGraz.VectoCore.Tests.Models.SimulationComponent
 			AppDomain.CurrentDomain.SetData("DataDirectory", Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location));
 		}
 
+		/// <summary>
+		/// Assert an expected Exception.
+		/// </summary>
+		/// <typeparam name="T"></typeparam>
+		/// <param name="func"></param>
+		/// <param name="message"></param>
+		public static void AssertException<T>(Action func, string message = null) where T : Exception
+		{
+			try {
+				func();
+				Assert.Fail("Expected Exception {0}, but no exception occured.", typeof(T));
+			} catch (T ex) {
+				if (message != null) {
+					Assert.AreEqual(message, ex.Message);
+				}
+			}
+		}
+
 		[TestMethod]
 		public void TestEngineHasOutPort()
 		{
@@ -49,7 +68,7 @@ namespace TUGraz.VectoCore.Tests.Models.SimulationComponent
 			var absTime = new TimeSpan(seconds: 0, minutes: 0, hours: 0);
 			var dt = new TimeSpan(seconds: 1, minutes: 0, hours: 0);
 			var torque = 400.SI<NewtonMeter>();
-			var engineSpeed = 1500.0.RPMtoRad();
+			var engineSpeed = 1500.RPMtoRad();
 
 			port.Request(absTime, dt, torque, engineSpeed);
 		}
@@ -67,7 +86,7 @@ namespace TUGraz.VectoCore.Tests.Models.SimulationComponent
 			var dt = new TimeSpan(seconds: 1, minutes: 0, hours: 0);
 
 			var torque = 0.SI<NewtonMeter>();
-			var engineSpeed = 600.0.RPMtoRad();
+			var engineSpeed = 600.RPMtoRad();
 			var dataWriter = new TestModalDataWriter();
 
 			for (var i = 0; i < 21; i++) {
@@ -209,5 +228,38 @@ namespace TUGraz.VectoCore.Tests.Models.SimulationComponent
 
 			engineData.WriteToFile("engineData test output.veng");
 		}
+
+		[TestMethod]
+		public void Test_EngineData()
+		{
+			var engineData = CombustionEngineData.ReadFromFile(CoachEngine);
+			var motorway = engineData.WHTCMotorway;
+			Assert.AreEqual(motorway.Double(), 0);
+			Assert.IsTrue(motorway.HasEqualUnit(new SI().Kilo.Gramm.Per.Watt.Second.ConvertTo()));
+
+			var rural = engineData.WHTCRural;
+			Assert.AreEqual(rural.Double(), 0);
+			Assert.IsTrue(rural.HasEqualUnit(new SI().Kilo.Gramm.Per.Watt.Second.ConvertTo()));
+
+			var urban = engineData.WHTCUrban;
+			Assert.AreEqual(urban.Double(), 0);
+			Assert.IsTrue(urban.HasEqualUnit(new SI().Kilo.Gramm.Per.Watt.Second.ConvertTo()));
+
+			var displace = engineData.Displacement;
+			Assert.AreEqual(0.01273, displace.Double());
+			Assert.IsTrue(displace.HasEqualUnit(new SI().Cubic.Meter));
+
+			var inert = engineData.Inertia;
+			Assert.AreEqual(3.8, inert.Double(), 0.00001);
+			Assert.IsTrue(inert.HasEqualUnit(new SI().Kilo.Gramm.Square.Meter));
+
+			var idle = engineData.IdleSpeed;
+			Assert.AreEqual(58.6430628670095, idle.Double(), 0.000001);
+			Assert.IsTrue(idle.HasEqualUnit(0.SI<PerSecond>()));
+
+			var flc0 = engineData.GetFullLoadCurve(0);
+
+			AssertException<KeyNotFoundException>(() => { var flc10000 = engineData.GetFullLoadCurve(1000); });
+		}
 	}
 }
\ No newline at end of file
diff --git a/VectoCoreTest/Models/SimulationComponent/GearboxTest.cs b/VectoCoreTest/Models/SimulationComponent/GearboxTest.cs
index 6590530b9bb871ae26f741861e59df8d9f1ed242..3596d58395d749c7f9507433595022d3bf379f70 100644
--- a/VectoCoreTest/Models/SimulationComponent/GearboxTest.cs
+++ b/VectoCoreTest/Models/SimulationComponent/GearboxTest.cs
@@ -1,10 +1,9 @@
 using System;
-using System.Globalization;
 using Microsoft.VisualStudio.TestTools.UnitTesting;
 using TUGraz.VectoCore.Models.Simulation.Impl;
 using TUGraz.VectoCore.Models.SimulationComponent.Data;
-using TUGraz.VectoCore.Models.SimulationComponent.Data.Gearbox;
 using TUGraz.VectoCore.Models.SimulationComponent.Impl;
+using TUGraz.VectoCore.Tests.Utils;
 using TUGraz.VectoCore.Utils;
 
 namespace TUGraz.VectoCore.Tests.Models.SimulationComponent
@@ -19,7 +18,7 @@ namespace TUGraz.VectoCore.Tests.Models.SimulationComponent
 		[TestMethod]
 		public void AxleGearTest()
 		{
-			VehicleContainer vehicle = new VehicleContainer();
+			var vehicle = new VehicleContainer();
 			var gbxData = GearboxData.ReadFromFile(GearboxDataFile);
 			//GearData gearData = new GearData();
 			var axleGear = new AxleGear(gbxData.AxleGearData);
diff --git a/VectoCoreTest/Models/SimulationComponent/RetarderTest.cs b/VectoCoreTest/Models/SimulationComponent/RetarderTest.cs
index 42fbd333a3e948df36cd48b8a9836245c3b2e4a6..281c443f8edce7e245b7813092a6cd5bbce0bfe0 100644
--- a/VectoCoreTest/Models/SimulationComponent/RetarderTest.cs
+++ b/VectoCoreTest/Models/SimulationComponent/RetarderTest.cs
@@ -3,6 +3,7 @@ using Microsoft.VisualStudio.TestTools.UnitTesting;
 using TUGraz.VectoCore.Models.Simulation.Impl;
 using TUGraz.VectoCore.Models.SimulationComponent.Data;
 using TUGraz.VectoCore.Models.SimulationComponent.Impl;
+using TUGraz.VectoCore.Tests.Utils;
 using TUGraz.VectoCore.Utils;
 
 namespace TUGraz.VectoCore.Tests.Models.SimulationComponent
@@ -31,21 +32,21 @@ namespace TUGraz.VectoCore.Tests.Models.SimulationComponent
 			// --------
 			outPort.Request(absTime, dt, 0.SI<NewtonMeter>(), 10.RPMtoRad());
 
-			Assert.AreEqual(10.RPMtoRad().Double(), (double) nextRequest.AngularVelocity, Delta);
-			Assert.AreEqual(10.002, (double) nextRequest.Torque, Delta);
+			Assert.AreEqual(10.RPMtoRad().Double(), (double)nextRequest.AngularVelocity, Delta);
+			Assert.AreEqual(10.002, (double)nextRequest.Torque, Delta);
 
 			// --------
 			outPort.Request(absTime, dt, 100.SI<NewtonMeter>(), 1000.RPMtoRad());
 
-			Assert.AreEqual(1000.RPMtoRad().Double(), (double) nextRequest.AngularVelocity, Delta);
-			Assert.AreEqual(112, (double) nextRequest.Torque, Delta);
+			Assert.AreEqual(1000.RPMtoRad().Double(), (double)nextRequest.AngularVelocity, Delta);
+			Assert.AreEqual(112, (double)nextRequest.Torque, Delta);
 
 			// --------
 
 			outPort.Request(absTime, dt, 50.SI<NewtonMeter>(), 1550.RPMtoRad());
 
-			Assert.AreEqual(1550.RPMtoRad().Double(), (double) nextRequest.AngularVelocity, Delta);
-			Assert.AreEqual(50 + 14.81, (double) nextRequest.Torque, Delta);
+			Assert.AreEqual(1550.RPMtoRad().Double(), (double)nextRequest.AngularVelocity, Delta);
+			Assert.AreEqual(50 + 14.81, (double)nextRequest.Torque, Delta);
 		}
 	}
 }
\ No newline at end of file
diff --git a/VectoCoreTest/Models/SimulationComponent/VehicleTest.cs b/VectoCoreTest/Models/SimulationComponent/VehicleTest.cs
index 32387d254c731b941938122ad88003820c3ea62f..89d14cd359c2102897fe5e92060c032b3a272e6f 100644
--- a/VectoCoreTest/Models/SimulationComponent/VehicleTest.cs
+++ b/VectoCoreTest/Models/SimulationComponent/VehicleTest.cs
@@ -2,7 +2,9 @@
 using Microsoft.VisualStudio.TestTools.UnitTesting;
 using TUGraz.VectoCore.Models.Simulation.Impl;
 using TUGraz.VectoCore.Models.SimulationComponent.Data;
+using TUGraz.VectoCore.Models.SimulationComponent.Factories;
 using TUGraz.VectoCore.Models.SimulationComponent.Impl;
+using TUGraz.VectoCore.Tests.Utils;
 using TUGraz.VectoCore.Utils;
 
 namespace TUGraz.VectoCore.Tests.Models.SimulationComponent
@@ -17,15 +19,16 @@ namespace TUGraz.VectoCore.Tests.Models.SimulationComponent
 		{
 			var container = new VehicleContainer();
 
-			var vehicleData = VehicleData.ReadFromFile(VehicleDataFile);
-			vehicleData.CrossWindCorrection = VehicleData.CrossWindCorrectionMode.NoCorrection;
+			var vehicleData = EngineeringModeSimulationComponentFactory.Instance().CreateVehicleData(VehicleDataFile);
+				//VehicleData.ReadFromFile(VehicleDataFile);
+			//vehicleData.CrossWindCorrection = VehicleData.CrossWindCorrectionMode.NoCorrection;
 			var vehicle = new Vehicle(container, vehicleData, 17.210535);
 
 			var mockPort = new MockFvOutPort();
 
-			vehicle.InPort().Connect(mockPort);
+			vehicle.InShaft().Connect(mockPort);
 
-			var requestPort = vehicle.OutPort();
+			var requestPort = vehicle.OutShaft();
 
 			var absTime = TimeSpan.FromSeconds(0);
 			var dt = TimeSpan.FromSeconds(1);
diff --git a/VectoCoreTest/Models/SimulationComponentData/FullLoadCurveTest.cs b/VectoCoreTest/Models/SimulationComponentData/FullLoadCurveTest.cs
index 18f1157c37fe25641934f29dc57672b8cc9e7b25..adb08905e87863379a57af9d11202a0c11e82e4f 100644
--- a/VectoCoreTest/Models/SimulationComponentData/FullLoadCurveTest.cs
+++ b/VectoCoreTest/Models/SimulationComponentData/FullLoadCurveTest.cs
@@ -17,9 +17,9 @@ namespace TUGraz.VectoCore.Tests.Models.SimulationComponentData
 		{
 			var fldCurve = FullLoadCurve.ReadFromFile(CoachEngineFLD);
 
-			Assert.AreEqual(1180, (double) fldCurve.FullLoadStationaryTorque(560.0.RPMtoRad()), Tolerance);
-			Assert.AreEqual(1352, (double) fldCurve.FullLoadStationaryTorque(2000.0.RPMtoRad()), Tolerance);
-			Assert.AreEqual(1231, (double) fldCurve.FullLoadStationaryTorque(580.0.RPMtoRad()), Tolerance);
+			Assert.AreEqual(1180, (double) fldCurve.FullLoadStationaryTorque(560.RPMtoRad()), Tolerance);
+			Assert.AreEqual(1352, (double) fldCurve.FullLoadStationaryTorque(2000.RPMtoRad()), Tolerance);
+			Assert.AreEqual(1231, (double) fldCurve.FullLoadStationaryTorque(580.RPMtoRad()), Tolerance);
 		}
 
     [TestMethod]
@@ -34,9 +34,9 @@ namespace TUGraz.VectoCore.Tests.Models.SimulationComponentData
 		{
 			var fldCurve = FullLoadCurve.ReadFromFile(CoachEngineFLD);
 
-			Assert.AreEqual(69198.814183, (double) fldCurve.FullLoadStationaryPower(560.0.RPMtoRad()), Tolerance);
-			Assert.AreEqual(283162.218372, (double) fldCurve.FullLoadStationaryPower(2000.0.RPMtoRad()), Tolerance);
-			Assert.AreEqual(74767.810760, (double) fldCurve.FullLoadStationaryPower(580.0.RPMtoRad()), Tolerance);
+			Assert.AreEqual(69198.814183, (double) fldCurve.FullLoadStationaryPower(560.RPMtoRad()), Tolerance);
+			Assert.AreEqual(283162.218372, (double) fldCurve.FullLoadStationaryPower(2000.RPMtoRad()), Tolerance);
+			Assert.AreEqual(74767.810760, (double) fldCurve.FullLoadStationaryPower(580.RPMtoRad()), Tolerance);
 		}
 
 		[TestMethod]
@@ -44,11 +44,11 @@ namespace TUGraz.VectoCore.Tests.Models.SimulationComponentData
 		{
 			var fldCurve = FullLoadCurve.ReadFromFile(CoachEngineFLD);
 
-			Assert.AreEqual(-149, (double) fldCurve.DragLoadStationaryTorque(560.0.RPMtoRad()), Tolerance);
-			Assert.AreEqual(-301, (double) fldCurve.DragLoadStationaryTorque(2000.0.RPMtoRad()), Tolerance);
-			Assert.AreEqual(-148.5, (double) fldCurve.DragLoadStationaryTorque(580.0.RPMtoRad()), Tolerance);
-			Assert.AreEqual(-150, (double) fldCurve.DragLoadStationaryTorque(520.0.RPMtoRad()), Tolerance);
-			Assert.AreEqual(-339, (double) fldCurve.DragLoadStationaryTorque(2200.0.RPMtoRad()), Tolerance);
+			Assert.AreEqual(-149, (double) fldCurve.DragLoadStationaryTorque(560.RPMtoRad()), Tolerance);
+			Assert.AreEqual(-301, (double) fldCurve.DragLoadStationaryTorque(2000.RPMtoRad()), Tolerance);
+			Assert.AreEqual(-148.5, (double) fldCurve.DragLoadStationaryTorque(580.RPMtoRad()), Tolerance);
+			Assert.AreEqual(-150, (double) fldCurve.DragLoadStationaryTorque(520.RPMtoRad()), Tolerance);
+			Assert.AreEqual(-339, (double) fldCurve.DragLoadStationaryTorque(2200.RPMtoRad()), Tolerance);
 		}
 
 		[TestMethod]
@@ -56,9 +56,9 @@ namespace TUGraz.VectoCore.Tests.Models.SimulationComponentData
 		{
 			var fldCurve = FullLoadCurve.ReadFromFile(CoachEngineFLD);
 
-			Assert.AreEqual(-8737.81636, (double) fldCurve.DragLoadStationaryPower(560.0.RPMtoRad()), Tolerance);
-			Assert.AreEqual(-63041.29254, (double) fldCurve.DragLoadStationaryPower(2000.0.RPMtoRad()), Tolerance);
-			Assert.AreEqual(-9019.51251, (double) fldCurve.DragLoadStationaryPower(580.0.RPMtoRad()), Tolerance);
+			Assert.AreEqual(-8737.81636, (double) fldCurve.DragLoadStationaryPower(560.RPMtoRad()), Tolerance);
+			Assert.AreEqual(-63041.29254, (double) fldCurve.DragLoadStationaryPower(2000.RPMtoRad()), Tolerance);
+			Assert.AreEqual(-9019.51251, (double) fldCurve.DragLoadStationaryPower(580.RPMtoRad()), Tolerance);
 		}
 
 		[TestMethod]
@@ -66,9 +66,9 @@ namespace TUGraz.VectoCore.Tests.Models.SimulationComponentData
 		{
 			var fldCurve = FullLoadCurve.ReadFromFile(CoachEngineFLD);
 
-			Assert.AreEqual(0.6, (double) fldCurve.PT1(560.0.RPMtoRad()), Tolerance);
-			Assert.AreEqual(0.25, (double) fldCurve.PT1(2000.0.RPMtoRad()), Tolerance);
-			Assert.AreEqual(0.37, (double) fldCurve.PT1(1700.0.RPMtoRad()), Tolerance);
+			Assert.AreEqual(0.6, (double) fldCurve.PT1(560.RPMtoRad()), Tolerance);
+			Assert.AreEqual(0.25, (double) fldCurve.PT1(2000.RPMtoRad()), Tolerance);
+			Assert.AreEqual(0.37, (double) fldCurve.PT1(1700.RPMtoRad()), Tolerance);
 		}
 
 		/// <summary>
diff --git a/VectoCoreTest/Models/SimulationComponentData/VehicleDataTest.cs b/VectoCoreTest/Models/SimulationComponentData/VehicleDataTest.cs
index b37e6d1551401f51e5d3a8e3d5c5b4d82e153bbe..ba8e708d358a118eaa1dc0d1cc58386fbbb00936 100644
--- a/VectoCoreTest/Models/SimulationComponentData/VehicleDataTest.cs
+++ b/VectoCoreTest/Models/SimulationComponentData/VehicleDataTest.cs
@@ -1,5 +1,6 @@
 using Microsoft.VisualStudio.TestTools.UnitTesting;
 using TUGraz.VectoCore.Models.SimulationComponent.Data;
+using TUGraz.VectoCore.Models.SimulationComponent.Factories;
 
 namespace TUGraz.VectoCore.Tests.Models.SimulationComponentData
 {
@@ -11,9 +12,10 @@ namespace TUGraz.VectoCore.Tests.Models.SimulationComponentData
 		[TestMethod]
 		public void ReadVehicleFileTest()
 		{
-			var vehicleData = VehicleData.ReadFromFile(VehicleDataFile);
+			var vehicleData = EngineeringModeSimulationComponentFactory.Instance().CreateVehicleData(VehicleDataFile);
+				//VehicleData.ReadFromFile(VehicleDataFile);
 
-			Assert.AreEqual(VehicleData.VehicleCategory.Coach, vehicleData.Category);
+			Assert.AreEqual(VehicleCategory.Coach, vehicleData.VehicleCategory);
 		}
 	}
 }
\ No newline at end of file
diff --git a/VectoCoreTest/TestData/Components/24t Coach.vveh b/VectoCoreTest/TestData/Components/24t Coach.vveh
index 1df9ab91c6103f046009d0d495f77caa8c6ed51c..cf5749149de0e54e9c5f8bb2f20ac5320dd7a993 100644
--- a/VectoCoreTest/TestData/Components/24t Coach.vveh	
+++ b/VectoCoreTest/TestData/Components/24t Coach.vveh	
@@ -1,7 +1,7 @@
 {
   "Header": {
     "CreatedBy": "Raphael Luz IVT TU-Graz (85407225-fc3f-48a8-acda-c84a05df6837)",
-    "Date": "3/4/2015 12:26:24 PM",
+    "Date": "29.07.2014 16:59:13",
     "AppVersion": "2.0.4-beta",
     "FileVersion": 5
   },
diff --git a/VectoCoreTest/TestData/Components/24t_Coach_ALT.vaux b/VectoCoreTest/TestData/Components/24t_Coach_ALT.vaux
new file mode 100644
index 0000000000000000000000000000000000000000..52243f51e26af329ad8edf8b74a799fc7172e601
--- /dev/null
+++ b/VectoCoreTest/TestData/Components/24t_Coach_ALT.vaux
@@ -0,0 +1,138 @@
+Transmission ration to engine rpm [-]
+4.078
+Efficiency to engine [-]
+0.96
+Efficiency auxiliary to supply [-]
+1
+Auxiliary speed [rpm], Mechanical power [kW],Supply power [kW]
+1415,0.07,0
+1415,0.87,0.53
+1415,1.03,0.64
+1415,1.17,0.75
+1416,1.36,0.84
+1416,2.4,1.4
+1887,0.07,0
+1887,0.68,0.41
+1887,0.87,0.54
+1887,0.99,0.64
+1887,1.1,0.74
+1887,2.11,1.47
+1887,2.55,1.74
+2358,0.07,0
+2358,0.65,0.38
+2358,0.79,0.49
+2358,0.99,0.64
+2358,1.12,0.75
+2358,1.59,1.12
+2358,1.99,1.42
+2358,2.41,1.68
+2358,2.86,1.95
+2358,3.19,2.12
+2358,3.51,2.3
+2830,0.08,0
+2830,0.7,0.41
+2830,0.83,0.51
+2830,1.02,0.66
+2830,1.12,0.75
+2830,1.6,1.13
+2830,2.45,1.71
+2830,2.96,2.02
+2830,3.38,2.24
+2830,3.8,2.46
+2830,4.14,2.63
+3302,0.08,0
+3302,0.74,0.44
+3302,0.88,0.54
+3302,1.07,0.69
+3302,1.19,0.79
+3302,2.45,1.71
+3302,2.98,2.03
+3302,3.44,2.28
+3302,3.88,2.51
+3302,4.46,2.8
+3773,0.09,0
+3773,0.8,0.47
+3773,0.93,0.57
+3773,1.15,0.74
+3773,1.27,0.85
+3773,2.44,1.69
+3773,2.98,2.02
+3773,3.46,2.29
+3773,3.96,2.55
+3773,4.47,2.8
+3773,4.69,2.91
+4245,0.11,0
+4245,0.88,0.51
+4245,1.02,0.62
+4245,1.22,0.78
+4245,1.47,0.98
+4245,2.36,1.62
+4245,2.98,2.01
+4245,3.46,2.28
+4245,4,2.57
+4245,4.47,2.79
+4245,4.94,3
+4716,0.12,0
+4716,0.97,0.56
+4716,1.11,0.67
+4716,1.32,0.84
+4716,1.91,1.29
+4716,2.96,1.99
+4716,3.46,2.27
+4716,4,2.56
+4716,4.52,2.81
+4716,4.97,3
+4716,5.12,3.08
+5188,0.14,0
+5188,1.08,0.62
+5188,1.21,0.73
+5188,1.47,0.93
+5188,2.89,1.92
+5188,3.45,2.25
+5188,3.99,2.54
+5188,4.54,2.82
+5188,4.98,3
+5188,5.19,3.11
+5660,0.17,0
+5660,1.19,0.67
+5660,1.32,0.79
+5660,1.69,1.07
+5660,2.54,1.66
+5660,3.37,2.18
+5660,3.98,2.52
+5660,4.55,2.8
+5660,5.02,3.01
+5660,5.27,3.14
+6131,0.19,0
+6131,1.28,0.72
+6131,1.49,0.88
+6131,2.15,1.37
+6131,3.19,2.04
+6131,3.92,2.46
+6131,4.48,2.75
+6131,5.44,3.16
+6603,0.22,0
+6603,1.42,0.79
+6603,1.81,1.08
+6603,2.92,1.84
+6603,3.75,2.33
+6603,4.38,2.66
+6603,4.94,2.92
+6603,5.51,3.19
+7075,0.25,0
+7075,1.63,0.91
+7075,2.35,1.43
+7075,3.43,2.1
+7075,4.24,2.55
+7075,4.82,2.83
+7075,5.54,3.19
+7546,0.28,0
+7546,1.93,1.09
+7546,3.04,1.82
+7546,4.09,2.43
+7546,4.69,2.73
+7546,5.7,3.19
+9150,0.42,0
+9150,5.74,3.19
+12000,0.42,0
+12000,5.74,3.19
diff --git a/VectoCoreTest/TestData/Components/Coach.vacc b/VectoCoreTest/TestData/Components/Coach.vacc
new file mode 100644
index 0000000000000000000000000000000000000000..fda8bdc3f04e3c8b6170a07f7dfb32ff8ea287b5
--- /dev/null
+++ b/VectoCoreTest/TestData/Components/Coach.vacc
@@ -0,0 +1,26 @@
+v [km/h],acc [m/s²],dec [m/s²]
+0,1.01570922360353,-0.231742702878269
+5,1.38546581120225,-0.45346198022574
+10,1.34993329755465,-0.565404125020508
+15,1.29026714002479,-0.703434814668512
+20,1.16369598822194,-0.677703399378421
+25,1.04024417156355,-0.63631961226452
+30,0.910278494884728,-0.548894523516266
+35,0.785875078338323,-0.453995336940216
+40,0.69560012996407,-0.385460695652016
+45,0.648984223443223,-0.349181329186105
+50,0.594249623931624,-0.309125096967231
+55,0.559156929181929,-0.296716093796643
+60,0.541508805860806,-0.270229542673924
+65,0.539582904761905,-0.256408113084341
+70,0.539103523809524,-0.217808535739946
+75,0.529581598997494,-0.18609307386602
+80,0.496418462064251,-0.142683384645006
+85,0.453932619248656,-0.117950211164234
+90,0.397824554210839,-0.102997621205622
+95,0.33969661577071,-0.102997621205622
+100,0.289428370365158,-0.102997621205622
+105,0.256471472751248,-0.102997621205622
+110,0.24,-0.102997621205622
+115,0.22,-0.102997621205622
+120,0.2,-0.102997621205622
diff --git a/VectoCoreTest/TestData/Cycles/Coach Engine Only short.vdri b/VectoCoreTest/TestData/Cycles/Coach Engine Only short.vdri
new file mode 100644
index 0000000000000000000000000000000000000000..a7043ef47fc4e737933321e195a19aada6954a46
--- /dev/null
+++ b/VectoCoreTest/TestData/Cycles/Coach Engine Only short.vdri	
@@ -0,0 +1,308 @@
+<n>,<Pe>
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,-2.38E-07
+600,-2.38E-07
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,-2.38E-07
+600,2.38E-07
+600,0
+644.4445,2.329973
+644.4445,0.5693641
+644.4445,4.264177
+869.7512,7.98456
+644.4445,1.351656
+1015.31,-0.2716608
+948.6478,-0.4653716
+872.4501,-0.5719776
+644.4445,1.012361
+816.044,0.1606398
+644.4445,3.967641
+644.4445,4.3916
+645.3466,1.254886
+602.9238,0.36098
+644.4445,1.097353
+644.4445,1.476951
+645.6951,2.961375
+656.8193,3.33839
+688.8293,2.509675
+715.7259,3.104633
+743.2361,2.779576
+759.3434,2.025352
+763.0762,1.467997
+761.0308,1.383811
+757.7582,1.320618
+755.406,1.475238
+756.3265,1.681716
+753.872,1.098228
+749.1166,1.411724
+747.787,1.465289
+743.7986,1.110595
+691.6417,-3.012229
+627.2637,-0.1685431
+1049.495,-0.09707546
+644.4445,1.615664
+1026.825,0.4667768
+977.9754,-0.4151859
+906.5457,-0.4785028
+764.8557,-2.495939
+615.8789,-0.5095253
+600,-0.2679868
+644.4445,0.5701756
+644.4445,1.185031
+600,0.2967396
+646.6069,3.811063
+895.4804,7.923037
+653.8535,6.359474
+791.9158,11.55912
+900.8318,4.931076
+1007.856,14.46236
+1156.708,13.49057
+1345.086,27.20026
+1602.138,35.01208
+1888.49,46.58702
+2103.714,24.29906
+2146.359,-1.109985
+1286.033,8.800848
+1351.937,37.56419
+1494.108,56.84015
+1650.18,55.71647
+1797.949,62.99876
+1974.041,90.22348
+2191.804,115.1789
+2403.877,105.9852
+2503.301,18.33513
+1611.144,-1.709167
+1619.774,43.61679
+1655.685,42.16265
+1690.462,44.19933
+1723.907,42.2117
+1766.618,62.7349
+1823.327,70.33007
+1898.131,102.0343
+1980.033,91.64824
+2027.516,42.57878
+2040.799,27.31307
+1396.846,69.06043
+1435.803,91.8233
+1479.637,89.72998
+1511.026,58.87632
+1535.129,70.88527
+1563.544,76.08076
+1591.288,72.46291
+1615.981,69.52535
+1637.034,63.16708
+1654.957,61.31534
+1674.975,72.86595
+1695.262,64.75288
+1709.799,54.75394
+1712.769,24.54955
+1702.061,5.766651
+1685.925,4.414207
+1669.991,5.575367
+1656.502,12.07608
+1644.88,11.30247
+1634.482,15.56817
+1624.607,12.47053
+1610.151,-0.5362444
+1594.136,6.376687
+1580.163,5.485111
+1564.78,1.025784
+1550.539,8.4501
+1539.777,11.6633
+1532.066,17.71403
+1521.599,2.418658
+1504.309,-4.049212
+1481.361,-14.07779
+1453.792,-17.15281
+1423.724,-18.15207
+1385.246,-16.81612
+1337.242,-15.72801
+1293.188,-15.42869
+1281.755,38.3059
+1286.484,11.6914
+1283.596,17.9171
+1285.597,24.78118
+1291.778,29.405
+1303.359,40.06316
+1321.147,47.6144
+1343.046,53.40984
+1367.31,56.75732
+1398.372,76.35516
+1441.017,95.91759
+1491.115,106.3325
+1533.099,77.92695
+1561.824,69.6596
+1584.033,60.08042
+1597.119,41.62484
+1603.93,40.29163
+1607.558,31.45644
+1604.965,19.52167
+1600.142,23.70411
+1596.299,22.48869
+1589.192,12.48158
+1578.793,11.02395
+1566.889,6.910674
+1551.426,-1.123854
+1528.707,-15.20682
+1502.589,-11.37927
+1476.041,-16.47795
+1439.148,-17.79036
+1386.845,-16.22873
+1331.801,-15.54598
+1276.609,-14.19835
+1222.116,-13.53877
+1183.826,-13.63705
+1165.594,4.323093
+1154.524,-0.2198782
+1145.307,8.251244
+1136.212,-0.1459947
+1127.318,8.395197
+1127.425,20.90548
+1132.316,19.78157
+1134.976,15.85121
+1140.847,27.66578
+1153.503,32.64259
+1173.508,46.8272
+1195.77,39.98267
+1214.31,39.54551
+1235.31,48.15401
+1262.019,56.77373
+1290.77,56.59818
+1317.063,53.30949
+1343.879,61.21212
+1364.448,38.20493
+1372.416,26.90753
+1376.097,26.42333
+1374.269,11.18833
+1368.546,15.03598
+1362.863,11.02519
+1356.038,11.46854
+1346.136,1.988382
+1325.11,-16.2194
+1284.63,-14.65078
+1238.373,-14.2102
+1193.929,-12.98282
+1155.988,-13.10039
+1137.273,2.958799
+1132.786,15.8914
+1141.075,33.33242
+1156.7,34.19608
+1179.433,52.38899
+1213.827,66.11726
+1258.176,83.05579
+1305.898,81.63163
+1353.754,91.2124
+1396.935,75.19558
+1438.893,94.76639
+1487.004,100.8023
+1529.298,83.95088
+1563.974,82.77102
+1596.393,81.57443
+1624.446,72.54066
+1640.138,42.54347
+1643,29.84203
+1638.257,16.47232
+1629.605,16.00256
+1630.478,48.60144
+1642.785,55.60721
+1656.623,55.29026
+1669.48,53.73763
+1680.188,49.11893
+1689.163,48.75134
+1695.907,42.08216
+1700.851,42.99605
+1706.79,46.16529
+1713.763,47.34768
+1720.427,45.77478
+1727.319,48.89489
+1725.733,15.54477
+1714.932,15.2667
+1703.74,13.40421
+1690.842,8.433504
+1676.749,8.346373
+1663.421,10.28855
+1648.951,3.619027
+1633.192,5.002003
+1617.433,2.826547
+1602.775,7.905733
+1589.501,6.74611
+1576.428,7.864722
+1567.118,18.46364
+1564.686,30.00007
+1567.427,35.38074
+1572.196,36.95614
+1576.469,34.14531
+1576.307,22.5677
+1570.826,16.47429
+1563.423,15.84486
+1553.562,7.964062
+1536.916,-5.952643
+1517.233,-2.275624
+1497.389,-6.935693
+1471.863,-18.41763
+1442.372,-18.13165
+1414.871,-13.40553
+1387.812,-17.13374
+1362.057,-10.3961
+1346.257,8.515593
+1345.787,31.16553
+1358.712,46.74545
+1379.066,53.84549
+1401.382,54.66264
+1424.557,58.96523
+1447.437,56.39186
+1469.605,59.47992
+1493.117,63.22589
+1515.124,57.4621
+1535.841,61.76757
+1557.969,64.56117
+1578.323,58.54613
+1596.594,60.07353
+1611.991,50.88236
+1621.194,40.61778
+1619.421,14.21795
+1605.113,-1.868717
+1588.762,6.50421
+1576.67,11.31663
+1569.348,21.61535
+1567.91,30.3064
+1571.135,36.95245
+1576.267,36.91877
+1582.797,42.09142
+1590.294,40.76203
+1597.817,42.91198
+1605.462,41.89369
+1612.273,40.82465
+1619.582,44.26139
+1628.167,45.92483
+1637.464,47.59579
+1648.723,53.73099
+1661.419,53.84293
+1676.91,65.1045
+1695.235,65.79607
+1711.21,58.91008
+1724.968,59.73791
+1739.437,63.20061
+1753.772,61.00745
+1768,64.61153
+1781.368,59.52817
+1794.521,65.5128
+1809.072,66.50668
+1818.449,47.4547
+1817.24,26.92148
+1805.995,8.979017
+1786.662,-4.010155
+1765.233,-0.05493259
\ No newline at end of file
diff --git a/VectoCoreTest/TestData/Cycles/Coach First Cycle only.vdri b/VectoCoreTest/TestData/Cycles/Coach First Cycle only.vdri
new file mode 100644
index 0000000000000000000000000000000000000000..7f75ad2a5f1d3ecc7de6242839be7a9cb4bb5e63
--- /dev/null
+++ b/VectoCoreTest/TestData/Cycles/Coach First Cycle only.vdri	
@@ -0,0 +1,2 @@
+<t>,<v>,<grad>,<n>,<Padd>,<Aux_ALT1>,<Aux_ALT2>,<Aux_ALT3>
+0,0,-0.020237973,2,6.1,0.25,0.25,0.25
\ No newline at end of file
diff --git a/VectoCoreTest/TestData/Cycles/Engine Only1.vdri b/VectoCoreTest/TestData/Cycles/Engine Only1.vdri
new file mode 100644
index 0000000000000000000000000000000000000000..d2e1e2c10e48e25943df3a6ced2e1e8911d6718f
--- /dev/null
+++ b/VectoCoreTest/TestData/Cycles/Engine Only1.vdri	
@@ -0,0 +1,697 @@
+<n>,<Pe>
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,-2.38E-07
+600,-2.38E-07
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,-2.38E-07
+600,2.38E-07
+600,0
+644.4445,2.329973
+644.4445,0.5693641
+644.4445,4.264177
+869.7512,7.98456
+644.4445,1.351656
+1015.31,-0.2716608
+948.6478,-0.4653716
+872.4501,-0.5719776
+644.4445,1.012361
+816.044,0.1606398
+644.4445,3.967641
+644.4445,4.3916
+645.3466,1.254886
+602.9238,0.36098
+644.4445,1.097353
+644.4445,1.476951
+645.6951,2.961375
+656.8193,3.33839
+688.8293,2.509675
+715.7259,3.104633
+743.2361,2.779576
+759.3434,2.025352
+763.0762,1.467997
+761.0308,1.383811
+757.7582,1.320618
+755.406,1.475238
+756.3265,1.681716
+753.872,1.098228
+749.1166,1.411724
+747.787,1.465289
+743.7986,1.110595
+691.6417,-3.012229
+627.2637,-0.1685431
+1049.495,-0.09707546
+644.4445,1.615664
+1026.825,0.4667768
+977.9754,-0.4151859
+906.5457,-0.4785028
+764.8557,-2.495939
+615.8789,-0.5095253
+600,-0.2679868
+644.4445,0.5701756
+644.4445,1.185031
+600,0.2967396
+646.6069,3.811063
+895.4804,7.923037
+653.8535,6.359474
+791.9158,11.55912
+900.8318,4.931076
+1007.856,14.46236
+1156.708,13.49057
+1345.086,27.20026
+1602.138,35.01208
+1888.49,46.58702
+2103.714,24.29906
+2146.359,-1.109985
+1286.033,8.800848
+1351.937,37.56419
+1494.108,56.84015
+1650.18,55.71647
+1797.949,62.99876
+1974.041,90.22348
+2191.804,115.1789
+2403.877,105.9852
+2503.301,18.33513
+1611.144,-1.709167
+1619.774,43.61679
+1655.685,42.16265
+1690.462,44.19933
+1723.907,42.2117
+1766.618,62.7349
+1823.327,70.33007
+1898.131,102.0343
+1980.033,91.64824
+2027.516,42.57878
+2040.799,27.31307
+1396.846,69.06043
+1435.803,91.8233
+1479.637,89.72998
+1511.026,58.87632
+1535.129,70.88527
+1563.544,76.08076
+1591.288,72.46291
+1615.981,69.52535
+1637.034,63.16708
+1654.957,61.31534
+1674.975,72.86595
+1695.262,64.75288
+1709.799,54.75394
+1712.769,24.54955
+1702.061,5.766651
+1685.925,4.414207
+1669.991,5.575367
+1656.502,12.07608
+1644.88,11.30247
+1634.482,15.56817
+1624.607,12.47053
+1610.151,-0.5362444
+1594.136,6.376687
+1580.163,5.485111
+1564.78,1.025784
+1550.539,8.4501
+1539.777,11.6633
+1532.066,17.71403
+1521.599,2.418658
+1504.309,-4.049212
+1481.361,-14.07779
+1453.792,-17.15281
+1423.724,-18.15207
+1385.246,-16.81612
+1337.242,-15.72801
+1293.188,-15.42869
+1281.755,38.3059
+1286.484,11.6914
+1283.596,17.9171
+1285.597,24.78118
+1291.778,29.405
+1303.359,40.06316
+1321.147,47.6144
+1343.046,53.40984
+1367.31,56.75732
+1398.372,76.35516
+1441.017,95.91759
+1491.115,106.3325
+1533.099,77.92695
+1561.824,69.6596
+1584.033,60.08042
+1597.119,41.62484
+1603.93,40.29163
+1607.558,31.45644
+1604.965,19.52167
+1600.142,23.70411
+1596.299,22.48869
+1589.192,12.48158
+1578.793,11.02395
+1566.889,6.910674
+1551.426,-1.123854
+1528.707,-15.20682
+1502.589,-11.37927
+1476.041,-16.47795
+1439.148,-17.79036
+1386.845,-16.22873
+1331.801,-15.54598
+1276.609,-14.19835
+1222.116,-13.53877
+1183.826,-13.63705
+1165.594,4.323093
+1154.524,-0.2198782
+1145.307,8.251244
+1136.212,-0.1459947
+1127.318,8.395197
+1127.425,20.90548
+1132.316,19.78157
+1134.976,15.85121
+1140.847,27.66578
+1153.503,32.64259
+1173.508,46.8272
+1195.77,39.98267
+1214.31,39.54551
+1235.31,48.15401
+1262.019,56.77373
+1290.77,56.59818
+1317.063,53.30949
+1343.879,61.21212
+1364.448,38.20493
+1372.416,26.90753
+1376.097,26.42333
+1374.269,11.18833
+1368.546,15.03598
+1362.863,11.02519
+1356.038,11.46854
+1346.136,1.988382
+1325.11,-16.2194
+1284.63,-14.65078
+1238.373,-14.2102
+1193.929,-12.98282
+1155.988,-13.10039
+1137.273,2.958799
+1132.786,15.8914
+1141.075,33.33242
+1156.7,34.19608
+1179.433,52.38899
+1213.827,66.11726
+1258.176,83.05579
+1305.898,81.63163
+1353.754,91.2124
+1396.935,75.19558
+1438.893,94.76639
+1487.004,100.8023
+1529.298,83.95088
+1563.974,82.77102
+1596.393,81.57443
+1624.446,72.54066
+1640.138,42.54347
+1643,29.84203
+1638.257,16.47232
+1629.605,16.00256
+1630.478,48.60144
+1642.785,55.60721
+1656.623,55.29026
+1669.48,53.73763
+1680.188,49.11893
+1689.163,48.75134
+1695.907,42.08216
+1700.851,42.99605
+1706.79,46.16529
+1713.763,47.34768
+1720.427,45.77478
+1727.319,48.89489
+1725.733,15.54477
+1714.932,15.2667
+1703.74,13.40421
+1690.842,8.433504
+1676.749,8.346373
+1663.421,10.28855
+1648.951,3.619027
+1633.192,5.002003
+1617.433,2.826547
+1602.775,7.905733
+1589.501,6.74611
+1576.428,7.864722
+1567.118,18.46364
+1564.686,30.00007
+1567.427,35.38074
+1572.196,36.95614
+1576.469,34.14531
+1576.307,22.5677
+1570.826,16.47429
+1563.423,15.84486
+1553.562,7.964062
+1536.916,-5.952643
+1517.233,-2.275624
+1497.389,-6.935693
+1471.863,-18.41763
+1442.372,-18.13165
+1414.871,-13.40553
+1387.812,-17.13374
+1362.057,-10.3961
+1346.257,8.515593
+1345.787,31.16553
+1358.712,46.74545
+1379.066,53.84549
+1401.382,54.66264
+1424.557,58.96523
+1447.437,56.39186
+1469.605,59.47992
+1493.117,63.22589
+1515.124,57.4621
+1535.841,61.76757
+1557.969,64.56117
+1578.323,58.54613
+1596.594,60.07353
+1611.991,50.88236
+1621.194,40.61778
+1619.421,14.21795
+1605.113,-1.868717
+1588.762,6.50421
+1576.67,11.31663
+1569.348,21.61535
+1567.91,30.3064
+1571.135,36.95245
+1576.267,36.91877
+1582.797,42.09142
+1590.294,40.76203
+1597.817,42.91198
+1605.462,41.89369
+1612.273,40.82465
+1619.582,44.26139
+1628.167,45.92483
+1637.464,47.59579
+1648.723,53.73099
+1661.419,53.84293
+1676.91,65.1045
+1695.235,65.79607
+1711.21,58.91008
+1724.968,59.73791
+1739.437,63.20061
+1753.772,61.00745
+1768,64.61153
+1781.368,59.52817
+1794.521,65.5128
+1809.072,66.50668
+1818.449,47.4547
+1817.24,26.92148
+1805.995,8.979017
+1786.662,-4.010155
+1765.233,-0.05493259
+1742.89,-7.886769
+1721.609,2.619378
+1703.539,1.704347
+1687.591,9.187813
+1675.688,15.12251
+1669.373,28.10153
+1666.148,25.54206
+1659.176,14.7161
+1647.474,8.565833
+1631.875,0.5784202
+1615.068,3.583271
+1599,2.292942
+1587.324,17.45128
+1584.315,30.57986
+1586.8,35.61685
+1593.088,43.5732
+1602.506,46.77898
+1611.978,44.69442
+1618.292,36.94254
+1621.436,34.45127
+1619.475,19.75505
+1612.367,16.75193
+1602.009,8.288825
+1592.927,20.35848
+1589.178,25.61557
+1589.299,33.05613
+1592.766,36.86369
+1600.84,48.93576
+1611.79,47.39437
+1614.947,23.44294
+1610.836,22.92943
+1603.433,12.01165
+1586.975,-7.003079
+1563.772,-9.861372
+1540.355,-8.272071
+1519.907,-2.04369
+1503.677,3.384114
+1487.904,-1.296515
+1471.513,0.8036427
+1454.625,-3.150111
+1435.789,-5.048037
+1415.583,-7.256803
+1396.787,-1.866434
+1379.012,-5.011639
+1361.345,-2.060575
+1341.192,-11.55893
+1317.613,-10.92163
+1291.294,-15.20063
+1254.361,-14.80647
+1210.226,-14.88861
+1174.65,-14.81055
+1147.215,-14.28176
+1119.552,-13.7853
+1087.993,-13.05181
+1052.511,-12.44097
+1031.579,5.715624
+1037.853,32.76339
+1064.428,51.27643
+1098.567,52.62703
+1138.801,70.14542
+1186.926,77.43063
+1233.348,72.79241
+1273.076,66.44997
+1304.85,56.3991
+1335.952,68.81242
+1369.93,68.46135
+1401.744,66.97513
+1432.914,70.78075
+1462.162,65.10287
+1490.927,73.24111
+1519.369,67.75407
+1544.292,65.61349
+1569.657,72.50694
+1591.342,56.41633
+1604.709,47.0724
+1608.203,24.27454
+1601.539,12.98722
+1592.376,15.38727
+1589.407,33.14979
+1593.76,39.76634
+1602.748,49.21623
+1614.531,50.16054
+1628.221,57.05817
+1646.023,65.98457
+1665.665,65.65594
+1683.789,63.0876
+1698.339,55.09802
+1707.865,46.70007
+1711.465,34.71091
+1712.298,37.05171
+1713.763,37.07273
+1717.041,43.76989
+1723.678,49.61529
+1733.472,56.02866
+1744.677,55.90408
+1750.736,38.25808
+1755.6,52.16808
+1767.544,65.1767
+1784.929,74.09778
+1810.361,98.34163
+1843.734,108.7761
+1876.234,100.4823
+1900.229,80.1554
+1920.624,89.84477
+1923.486,11.55359
+1384.726,-6.716908
+1365.214,-9.758064
+1335.167,-15.65223
+1305.561,-9.438278
+1293.54,25.59272
+1293.716,51.81037
+1298.87,51.8591
+1307.468,70.9785
+1321.719,83.69244
+1340.242,97.09694
+1361.364,102.0721
+1381.797,98.08289
+1396.943,76.64746
+1408.093,78.5398
+1421.649,92.87965
+1436.79,90.6324
+1452.067,97.12432
+1465.261,81.55907
+1474.817,78.22183
+1481.586,66.6988
+1486.936,71.00793
+1494.076,78.64029
+1504.805,94.48131
+1519.545,105.7961
+1533.59,93.55258
+1544.594,90.03146
+1553.279,81.37687
+1560.448,82.33672
+1566.855,78.04972
+1572.087,76.19854
+1574.895,63.56385
+1574.396,55.5367
+1573.515,61.01888
+1573.036,57.94503
+1570.845,49.96451
+1566.747,45.35576
+1559.803,31.16218
+1548.662,17.72969
+1536.094,20.5824
+1523.252,14.39674
+1509.539,13.54565
+1497.577,23.35009
+1487.474,23.31975
+1479.131,32.58831
+1472.793,34.21489
+1471.189,59.98996
+1474.25,61.94712
+1479.943,76.42569
+1487.386,73.62328
+1493.87,72.10479
+1498.252,62.06528
+1504.355,83.55563
+1514.009,85.13411
+1522.518,78.52847
+1528.054,68.42541
+1531.879,68.98322
+1535.693,69.12019
+1539.86,71.95422
+1543.156,64.46819
+1544.232,58.62698
+1542.999,50.14769
+1540.877,52.80785
+1538.393,47.5109
+1535.83,51.87814
+1534.607,55.44809
+1535.527,65.06208
+1540.046,78.20454
+1545.102,69.33004
+1542.54,31.26162
+1534.764,36.16859
+1527.125,30.95866
+1517.892,25.15287
+1508.043,25.83571
+1498.927,28.26935
+1490.525,28.91031
+1483.571,35.82453
+1480.344,50.35513
+1480.471,55.54207
+1481.576,56.2795
+1481.869,50.83329
+1480.745,47.77131
+1478.28,42.57355
+1476.333,50.48153
+1475.023,46.08316
+1474.094,52.55144
+1473.565,48.33829
+1472.754,50.75901
+1472.802,53.36675
+1472.646,49.53503
+1472.675,54.45502
+1472.744,49.77462
+1473.644,59.45992
+1476.216,59.98241
+1477.918,54.67937
+1478.984,56.45734
+1479.639,52.3883
+1481.234,62.24279
+1484.403,62.18639
+1488.227,66.80893
+1491.239,57.95909
+1493.107,60.41497
+1495.973,64.38061
+1498.477,58.73077
+1499.935,58.45076
+1498.233,39.69763
+1490.447,21.17598
+1479.659,20.41969
+1469.35,22.65018
+1458.865,18.07665
+1449.143,25.79696
+1440.174,21.3046
+1431.009,23.49089
+1422.334,22.9997
+1411.819,11.86371
+1402.048,25.93449
+1394.321,22.3779
+1386.849,26.39423
+1381.039,30.80274
+1374.056,19.11548
+1365.478,21.04128
+1357.8,23.10369
+1351.413,27.2389
+1348.342,40.50266
+1348.86,46.52771
+1354.67,69.74982
+1364.49,69.70929
+1375.415,77.81886
+1386.575,73.11307
+1395.456,67.07029
+1403.241,68.56764
+1410.313,64.41555
+1416.035,62.10302
+1420.035,55.49044
+1423.057,57.14668
+1424.515,46.92026
+1424.466,48.65111
+1424.349,46.51535
+1420.514,27.12698
+1412.171,19.98239
+1399.202,-0.2213111
+1381.088,-8.825974
+1360.959,-10.97501
+1339.52,-15.13851
+1315.038,-15.79168
+1271.67,-13.71585
+1205.943,-12.13631
+1122.19,-10.03683
+1048.169,-10.36391
+990.1788,-9.246284
+928.2859,-9.212884
+867.8992,-9.020022
+804.412,-8.525709
+729.0021,-8.260065
+887.2314,-7.793596
+782.4908,-7.821894
+665.2287,-6.784316
+772.3559,-4.63562
+600,-6.277975
+614.9388,-5.288214
+696.7551,-3.49948
+600,-1.283326
+664.3683,-1.597912
+600,-1.778763
+600,-0.7596555
+600,-0.1736608
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,-2.38E-07
+600,-2.38E-07
+600,0
+600,0
+600,0
+600,2.38E-07
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,2.38E-07
+600,0
+600,0
+600,-2.38E-07
+600,0
+644.4445,1.612164
+644.4445,6.538949
+785.0072,0.8882241
+841.1434,3.194654
+644.4445,4.281434
+1009.552,-0.1017489
+970.5985,0.5266633
+942.8003,0.3860083
+644.4445,2.60547
+644.4445,3.600683
+614.3267,0.6870103
+645.5776,1.867147
+654.6205,4.423994
+692.8177,1.993502
+708.7716,2.477404
+728.2538,2.476002
+755.4572,3.501919
+778.621,2.18979
+785.3195,1.743106
+784.5526,1.346341
+785.7797,1.974449
+787.5695,1.416916
+784.4503,1.4051
+782.5583,1.548533
+779.4391,1.255069
+775.604,1.452504
+776.0643,1.739155
+781.2288,2.003658
+791.558,2.376166
+794.8305,1.215703
+790.2285,1.457595
+788.5922,1.549223
+777.0869,0.305099
+717.4133,-3.12269
+620.5139,-2.686603
+644.4445,1.54447
+1016.479,0.8481472
+962.2321,-0.9291403
+847.3507,-1.475364
+747.673,-0.2668786
+676.963,-0.3898878
+602.3846,-0.3104959
+600,-0.1901872
+600,0.1421087
+644.4445,0.9691319
+658.5208,5.586625
+644.4445,10.10435
+770.7463,12.22105
+927.217,10.38821
+1058.376,12.88986
+1195.672,14.52883
+1370.653,24.36733
+1588.996,29.57337
+1850.804,44.95491
+2070.22,25.92677
+2149.734,8.226243
+1319.83,16.38028
+1416.364,49.23381
+1559.182,49.06653
+1710.518,65.96037
+1919.854,106.5468
+2084.814,43.9015
+2166.125,47.40614
+1477.623,84.04178
+1568.573,75.32056
+1632.52,51.08742
+1672.844,42.69801
+1694.081,22.06184
+1716.868,46.75986
+1754.409,48.50185
+1799.228,62.44069
+1858.482,78.40761
+1900.06,34.26859
+1927.36,55.25987
+1337.101,81.45631
\ No newline at end of file
diff --git a/VectoCoreTest/TestData/Cycles/Engine Only2.vdri b/VectoCoreTest/TestData/Cycles/Engine Only2.vdri
new file mode 100644
index 0000000000000000000000000000000000000000..90a1b55629d3589bc236cbc28f5b0552b2f13b4c
--- /dev/null
+++ b/VectoCoreTest/TestData/Cycles/Engine Only2.vdri	
@@ -0,0 +1,1008 @@
+<n>,<Pe>
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,-2.38E-07
+600,-2.38E-07
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,-2.38E-07
+600,2.38E-07
+600,0
+644.4445,2.329973
+644.4445,0.5693641
+644.4445,4.264177
+869.7512,7.98456
+644.4445,1.351656
+1015.31,-0.2716608
+948.6478,-0.4653716
+872.4501,-0.5719776
+644.4445,1.012361
+816.044,0.1606398
+644.4445,3.967641
+644.4445,4.3916
+645.3466,1.254886
+602.9238,0.36098
+644.4445,1.097353
+644.4445,1.476951
+645.6951,2.961375
+656.8193,3.33839
+688.8293,2.509675
+715.7259,3.104633
+743.2361,2.779576
+759.3434,2.025352
+763.0762,1.467997
+761.0308,1.383811
+757.7582,1.320618
+755.406,1.475238
+756.3265,1.681716
+753.872,1.098228
+749.1166,1.411724
+747.787,1.465289
+743.7986,1.110595
+691.6417,-3.012229
+627.2637,-0.1685431
+1049.495,-0.09707546
+644.4445,1.615664
+1026.825,0.4667768
+977.9754,-0.4151859
+906.5457,-0.4785028
+764.8557,-2.495939
+615.8789,-0.5095253
+600,-0.2679868
+644.4445,0.5701756
+644.4445,1.185031
+600,0.2967396
+646.6069,3.811063
+895.4804,7.923037
+653.8535,6.359474
+791.9158,11.55912
+900.8318,4.931076
+1007.856,14.46236
+1156.708,13.49057
+1345.086,27.20026
+1602.138,35.01208
+1888.49,46.58702
+2103.714,24.29906
+2146.359,-1.109985
+1286.033,8.800848
+1351.937,37.56419
+1494.108,56.84015
+1650.18,55.71647
+1797.949,62.99876
+1974.041,90.22348
+2191.804,115.1789
+2403.877,105.9852
+2503.301,18.33513
+1611.144,-1.709167
+1619.774,43.61679
+1655.685,42.16265
+1690.462,44.19933
+1723.907,42.2117
+1766.618,62.7349
+1823.327,70.33007
+1898.131,102.0343
+1980.033,91.64824
+2027.516,42.57878
+2040.799,27.31307
+1396.846,69.06043
+1435.803,91.8233
+1479.637,89.72998
+1511.026,58.87632
+1535.129,70.88527
+1563.544,76.08076
+1591.288,72.46291
+1615.981,69.52535
+1637.034,63.16708
+1654.957,61.31534
+1674.975,72.86595
+1695.262,64.75288
+1709.799,54.75394
+1712.769,24.54955
+1702.061,5.766651
+1685.925,4.414207
+1669.991,5.575367
+1656.502,12.07608
+1644.88,11.30247
+1634.482,15.56817
+1624.607,12.47053
+1610.151,-0.5362444
+1594.136,6.376687
+1580.163,5.485111
+1564.78,1.025784
+1550.539,8.4501
+1539.777,11.6633
+1532.066,17.71403
+1521.599,2.418658
+1504.309,-4.049212
+1481.361,-14.07779
+1453.792,-17.15281
+1423.724,-18.15207
+1385.246,-16.81612
+1337.242,-15.72801
+1293.188,-15.42869
+1281.755,38.3059
+1286.484,11.6914
+1283.596,17.9171
+1285.597,24.78118
+1291.778,29.405
+1303.359,40.06316
+1321.147,47.6144
+1343.046,53.40984
+1367.31,56.75732
+1398.372,76.35516
+1441.017,95.91759
+1491.115,106.3325
+1533.099,77.92695
+1561.824,69.6596
+1584.033,60.08042
+1597.119,41.62484
+1603.93,40.29163
+1607.558,31.45644
+1604.965,19.52167
+1600.142,23.70411
+1596.299,22.48869
+1589.192,12.48158
+1578.793,11.02395
+1566.889,6.910674
+1551.426,-1.123854
+1528.707,-15.20682
+1502.589,-11.37927
+1476.041,-16.47795
+1439.148,-17.79036
+1386.845,-16.22873
+1331.801,-15.54598
+1276.609,-14.19835
+1222.116,-13.53877
+1183.826,-13.63705
+1165.594,4.323093
+1154.524,-0.2198782
+1145.307,8.251244
+1136.212,-0.1459947
+1127.318,8.395197
+1127.425,20.90548
+1132.316,19.78157
+1134.976,15.85121
+1140.847,27.66578
+1153.503,32.64259
+1173.508,46.8272
+1195.77,39.98267
+1214.31,39.54551
+1235.31,48.15401
+1262.019,56.77373
+1290.77,56.59818
+1317.063,53.30949
+1343.879,61.21212
+1364.448,38.20493
+1372.416,26.90753
+1376.097,26.42333
+1374.269,11.18833
+1368.546,15.03598
+1362.863,11.02519
+1356.038,11.46854
+1346.136,1.988382
+1325.11,-16.2194
+1284.63,-14.65078
+1238.373,-14.2102
+1193.929,-12.98282
+1155.988,-13.10039
+1137.273,2.958799
+1132.786,15.8914
+1141.075,33.33242
+1156.7,34.19608
+1179.433,52.38899
+1213.827,66.11726
+1258.176,83.05579
+1305.898,81.63163
+1353.754,91.2124
+1396.935,75.19558
+1438.893,94.76639
+1487.004,100.8023
+1529.298,83.95088
+1563.974,82.77102
+1596.393,81.57443
+1624.446,72.54066
+1640.138,42.54347
+1643,29.84203
+1638.257,16.47232
+1629.605,16.00256
+1630.478,48.60144
+1642.785,55.60721
+1656.623,55.29026
+1669.48,53.73763
+1680.188,49.11893
+1689.163,48.75134
+1695.907,42.08216
+1700.851,42.99605
+1706.79,46.16529
+1713.763,47.34768
+1720.427,45.77478
+1727.319,48.89489
+1725.733,15.54477
+1714.932,15.2667
+1703.74,13.40421
+1690.842,8.433504
+1676.749,8.346373
+1663.421,10.28855
+1648.951,3.619027
+1633.192,5.002003
+1617.433,2.826547
+1602.775,7.905733
+1589.501,6.74611
+1576.428,7.864722
+1567.118,18.46364
+1564.686,30.00007
+1567.427,35.38074
+1572.196,36.95614
+1576.469,34.14531
+1576.307,22.5677
+1570.826,16.47429
+1563.423,15.84486
+1553.562,7.964062
+1536.916,-5.952643
+1517.233,-2.275624
+1497.389,-6.935693
+1471.863,-18.41763
+1442.372,-18.13165
+1414.871,-13.40553
+1387.812,-17.13374
+1362.057,-10.3961
+1346.257,8.515593
+1345.787,31.16553
+1358.712,46.74545
+1379.066,53.84549
+1401.382,54.66264
+1424.557,58.96523
+1447.437,56.39186
+1469.605,59.47992
+1493.117,63.22589
+1515.124,57.4621
+1535.841,61.76757
+1557.969,64.56117
+1578.323,58.54613
+1596.594,60.07353
+1611.991,50.88236
+1621.194,40.61778
+1619.421,14.21795
+1605.113,-1.868717
+1588.762,6.50421
+1576.67,11.31663
+1569.348,21.61535
+1567.91,30.3064
+1571.135,36.95245
+1576.267,36.91877
+1582.797,42.09142
+1590.294,40.76203
+1597.817,42.91198
+1605.462,41.89369
+1612.273,40.82465
+1619.582,44.26139
+1628.167,45.92483
+1637.464,47.59579
+1648.723,53.73099
+1661.419,53.84293
+1676.91,65.1045
+1695.235,65.79607
+1711.21,58.91008
+1724.968,59.73791
+1739.437,63.20061
+1753.772,61.00745
+1768,64.61153
+1781.368,59.52817
+1794.521,65.5128
+1809.072,66.50668
+1818.449,47.4547
+1817.24,26.92148
+1805.995,8.979017
+1786.662,-4.010155
+1765.233,-0.05493259
+1742.89,-7.886769
+1721.609,2.619378
+1703.539,1.704347
+1687.591,9.187813
+1675.688,15.12251
+1669.373,28.10153
+1666.148,25.54206
+1659.176,14.7161
+1647.474,8.565833
+1631.875,0.5784202
+1615.068,3.583271
+1599,2.292942
+1587.324,17.45128
+1584.315,30.57986
+1586.8,35.61685
+1593.088,43.5732
+1602.506,46.77898
+1611.978,44.69442
+1618.292,36.94254
+1621.436,34.45127
+1619.475,19.75505
+1612.367,16.75193
+1602.009,8.288825
+1592.927,20.35848
+1589.178,25.61557
+1589.299,33.05613
+1592.766,36.86369
+1600.84,48.93576
+1611.79,47.39437
+1614.947,23.44294
+1610.836,22.92943
+1603.433,12.01165
+1586.975,-7.003079
+1563.772,-9.861372
+1540.355,-8.272071
+1519.907,-2.04369
+1503.677,3.384114
+1487.904,-1.296515
+1471.513,0.8036427
+1454.625,-3.150111
+1435.789,-5.048037
+1415.583,-7.256803
+1396.787,-1.866434
+1379.012,-5.011639
+1361.345,-2.060575
+1341.192,-11.55893
+1317.613,-10.92163
+1291.294,-15.20063
+1254.361,-14.80647
+1210.226,-14.88861
+1174.65,-14.81055
+1147.215,-14.28176
+1119.552,-13.7853
+1087.993,-13.05181
+1052.511,-12.44097
+1031.579,5.715624
+1037.853,32.76339
+1064.428,51.27643
+1098.567,52.62703
+1138.801,70.14542
+1186.926,77.43063
+1233.348,72.79241
+1273.076,66.44997
+1304.85,56.3991
+1335.952,68.81242
+1369.93,68.46135
+1401.744,66.97513
+1432.914,70.78075
+1462.162,65.10287
+1490.927,73.24111
+1519.369,67.75407
+1544.292,65.61349
+1569.657,72.50694
+1591.342,56.41633
+1604.709,47.0724
+1608.203,24.27454
+1601.539,12.98722
+1592.376,15.38727
+1589.407,33.14979
+1593.76,39.76634
+1602.748,49.21623
+1614.531,50.16054
+1628.221,57.05817
+1646.023,65.98457
+1665.665,65.65594
+1683.789,63.0876
+1698.339,55.09802
+1707.865,46.70007
+1711.465,34.71091
+1712.298,37.05171
+1713.763,37.07273
+1717.041,43.76989
+1723.678,49.61529
+1733.472,56.02866
+1744.677,55.90408
+1750.736,38.25808
+1755.6,52.16808
+1767.544,65.1767
+1784.929,74.09778
+1810.361,98.34163
+1843.734,108.7761
+1876.234,100.4823
+1900.229,80.1554
+1920.624,89.84477
+1923.486,11.55359
+1384.726,-6.716908
+1365.214,-9.758064
+1335.167,-15.65223
+1305.561,-9.438278
+1293.54,25.59272
+1293.716,51.81037
+1298.87,51.8591
+1307.468,70.9785
+1321.719,83.69244
+1340.242,97.09694
+1361.364,102.0721
+1381.797,98.08289
+1396.943,76.64746
+1408.093,78.5398
+1421.649,92.87965
+1436.79,90.6324
+1452.067,97.12432
+1465.261,81.55907
+1474.817,78.22183
+1481.586,66.6988
+1486.936,71.00793
+1494.076,78.64029
+1504.805,94.48131
+1519.545,105.7961
+1533.59,93.55258
+1544.594,90.03146
+1553.279,81.37687
+1560.448,82.33672
+1566.855,78.04972
+1572.087,76.19854
+1574.895,63.56385
+1574.396,55.5367
+1573.515,61.01888
+1573.036,57.94503
+1570.845,49.96451
+1566.747,45.35576
+1559.803,31.16218
+1548.662,17.72969
+1536.094,20.5824
+1523.252,14.39674
+1509.539,13.54565
+1497.577,23.35009
+1487.474,23.31975
+1479.131,32.58831
+1472.793,34.21489
+1471.189,59.98996
+1474.25,61.94712
+1479.943,76.42569
+1487.386,73.62328
+1493.87,72.10479
+1498.252,62.06528
+1504.355,83.55563
+1514.009,85.13411
+1522.518,78.52847
+1528.054,68.42541
+1531.879,68.98322
+1535.693,69.12019
+1539.86,71.95422
+1543.156,64.46819
+1544.232,58.62698
+1542.999,50.14769
+1540.877,52.80785
+1538.393,47.5109
+1535.83,51.87814
+1534.607,55.44809
+1535.527,65.06208
+1540.046,78.20454
+1545.102,69.33004
+1542.54,31.26162
+1534.764,36.16859
+1527.125,30.95866
+1517.892,25.15287
+1508.043,25.83571
+1498.927,28.26935
+1490.525,28.91031
+1483.571,35.82453
+1480.344,50.35513
+1480.471,55.54207
+1481.576,56.2795
+1481.869,50.83329
+1480.745,47.77131
+1478.28,42.57355
+1476.333,50.48153
+1475.023,46.08316
+1474.094,52.55144
+1473.565,48.33829
+1472.754,50.75901
+1472.802,53.36675
+1472.646,49.53503
+1472.675,54.45502
+1472.744,49.77462
+1473.644,59.45992
+1476.216,59.98241
+1477.918,54.67937
+1478.984,56.45734
+1479.639,52.3883
+1481.234,62.24279
+1484.403,62.18639
+1488.227,66.80893
+1491.239,57.95909
+1493.107,60.41497
+1495.973,64.38061
+1498.477,58.73077
+1499.935,58.45076
+1498.233,39.69763
+1490.447,21.17598
+1479.659,20.41969
+1469.35,22.65018
+1458.865,18.07665
+1449.143,25.79696
+1440.174,21.3046
+1431.009,23.49089
+1422.334,22.9997
+1411.819,11.86371
+1402.048,25.93449
+1394.321,22.3779
+1386.849,26.39423
+1381.039,30.80274
+1374.056,19.11548
+1365.478,21.04128
+1357.8,23.10369
+1351.413,27.2389
+1348.342,40.50266
+1348.86,46.52771
+1354.67,69.74982
+1364.49,69.70929
+1375.415,77.81886
+1386.575,73.11307
+1395.456,67.07029
+1403.241,68.56764
+1410.313,64.41555
+1416.035,62.10302
+1420.035,55.49044
+1423.057,57.14668
+1424.515,46.92026
+1424.466,48.65111
+1424.349,46.51535
+1420.514,27.12698
+1412.171,19.98239
+1399.202,-0.2213111
+1381.088,-8.825974
+1360.959,-10.97501
+1339.52,-15.13851
+1315.038,-15.79168
+1271.67,-13.71585
+1205.943,-12.13631
+1122.19,-10.03683
+1048.169,-10.36391
+990.1788,-9.246284
+928.2859,-9.212884
+867.8992,-9.020022
+804.412,-8.525709
+729.0021,-8.260065
+887.2314,-7.793596
+782.4908,-7.821894
+665.2287,-6.784316
+772.3559,-4.63562
+600,-6.277975
+614.9388,-5.288214
+696.7551,-3.49948
+600,-1.283326
+664.3683,-1.597912
+600,-1.778763
+600,-0.7596555
+600,-0.1736608
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,-2.38E-07
+600,-2.38E-07
+600,0
+600,0
+600,0
+600,2.38E-07
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,2.38E-07
+600,0
+600,0
+600,-2.38E-07
+600,0
+644.4445,1.612164
+644.4445,6.538949
+785.0072,0.8882241
+841.1434,3.194654
+644.4445,4.281434
+1009.552,-0.1017489
+970.5985,0.5266633
+942.8003,0.3860083
+644.4445,2.60547
+644.4445,3.600683
+614.3267,0.6870103
+645.5776,1.867147
+654.6205,4.423994
+692.8177,1.993502
+708.7716,2.477404
+728.2538,2.476002
+755.4572,3.501919
+778.621,2.18979
+785.3195,1.743106
+784.5526,1.346341
+785.7797,1.974449
+787.5695,1.416916
+784.4503,1.4051
+782.5583,1.548533
+779.4391,1.255069
+775.604,1.452504
+776.0643,1.739155
+781.2288,2.003658
+791.558,2.376166
+794.8305,1.215703
+790.2285,1.457595
+788.5922,1.549223
+777.0869,0.305099
+717.4133,-3.12269
+620.5139,-2.686603
+644.4445,1.54447
+1016.479,0.8481472
+962.2321,-0.9291403
+847.3507,-1.475364
+747.673,-0.2668786
+676.963,-0.3898878
+602.3846,-0.3104959
+600,-0.1901872
+600,0.1421087
+644.4445,0.9691319
+658.5208,5.586625
+644.4445,10.10435
+770.7463,12.22105
+927.217,10.38821
+1058.376,12.88986
+1195.672,14.52883
+1370.653,24.36733
+1588.996,29.57337
+1850.804,44.95491
+2070.22,25.92677
+2149.734,8.226243
+1319.83,16.38028
+1416.364,49.23381
+1559.182,49.06653
+1710.518,65.96037
+1919.854,106.5468
+2084.814,43.9015
+2166.125,47.40614
+1477.623,84.04178
+1568.573,75.32056
+1632.52,51.08742
+1672.844,42.69801
+1694.081,22.06184
+1716.868,46.75986
+1754.409,48.50185
+1799.228,62.44069
+1858.482,78.40761
+1900.06,34.26859
+1927.36,55.25987
+1337.101,81.45631
+1385.247,97.38922
+1429.335,76.56412
+1463.264,73.28956
+1495.965,77.56803
+1528.196,76.33263
+1558.654,76.35077
+1587.647,75.73126
+1612.448,66.08598
+1634.75,70.53711
+1654.379,59.56525
+1669.87,58.48478
+1687.604,69.47137
+1707.072,66.88885
+1722.079,55.75189
+1724.041,21.08878
+1712.486,6.930377
+1696.472,4.276927
+1677.568,-3.706191
+1660.694,10.34586
+1651.074,20.23409
+1643.645,17.34347
+1632.816,8.011366
+1618.776,5.67132
+1603.688,3.707242
+1588.144,3.373533
+1571.404,-0.8783412
+1555.752,6.147068
+1543.593,9.695271
+1532.576,9.228716
+1522.379,11.73368
+1509.777,1.065055
+1489.946,-10.28071
+1465.427,-12.51891
+1440.021,-12.71381
+1402.846,-16.25399
+1355.514,-15.46913
+1313.435,-14.94506
+1291.697,11.92974
+1290.622,22.9257
+1291.334,16.68974
+1292.651,24.62087
+1298.683,29.66311
+1308.639,35.86757
+1329.033,59.74829
+1361.923,73.65525
+1400.414,80.50338
+1437.67,75.37047
+1474.187,83.83059
+1510.207,79.0104
+1541.698,74.4771
+1566.836,62.39557
+1586.464,59.38128
+1599.685,43.04843
+1606.496,39.10833
+1607.544,24.1147
+1602.614,18.94668
+1599.308,29.22934
+1598.395,26.77416
+1592.524,12.49185
+1582.703,13.13161
+1570.221,3.125345
+1548.953,-14.38402
+1520.766,-17.64579
+1492.177,-15.95768
+1453.188,-19.0262
+1405.211,-17.32
+1359.907,-15.5539
+1311.877,-14.40117
+1259.963,-13.38175
+1212.524,-12.87038
+1177.001,-12.74935
+1155.424,-1.723226
+1141.801,-0.260747
+1134.492,12.46988
+1133.995,15.73124
+1130.65,5.669389
+1126.767,14.28826
+1128.648,19.20252
+1133.216,20.79155
+1142.795,31.54515
+1160.919,42.30621
+1179.715,34.65625
+1197.906,42.59779
+1221.082,49.09034
+1245.937,49.3044
+1271.692,54.20898
+1300.591,60.77997
+1329.168,56.62835
+1354.789,55.80923
+1375.788,46.10873
+1385.73,25.64256
+1386.025,18.74092
+1383.688,17.9726
+1379.388,12.89893
+1372.698,10.80366
+1364.207,7.388607
+1349.334,-6.829912
+1327.031,-12.3538
+1289.95,-14.04064
+1243.626,-13.43234
+1200.889,-12.65873
+1162.021,-12.30316
+1138.523,0.8973355
+1130.394,9.3073
+1135.07,31.08614
+1156.795,50.95563
+1189.187,59.67162
+1226.563,67.66388
+1268.951,78.01559
+1312.414,76.58404
+1356.025,85.13309
+1401.126,87.58305
+1444.898,88.26737
+1487.286,90.28471
+1527.847,89.14961
+1565.344,86.64429
+1597.481,76.86526
+1626.864,82.09353
+1642.073,31.50566
+1639.99,23.92768
+1637.76,30.81757
+1638.123,32.71453
+1642.126,43.46971
+1650.376,47.85925
+1656.905,38.26996
+1663.717,49.5445
+1672.006,44.13668
+1679.073,46.09537
+1685.71,43.32407
+1691.084,42.26889
+1696.646,44.54321
+1703.364,46.98836
+1710.511,46.79175
+1716.906,45.01366
+1717.444,26.1797
+1711.129,20.26562
+1704.439,24.31491
+1696.458,15.16069
+1684.38,9.138308
+1669.212,3.496205
+1653.412,6.050759
+1636.148,-2.083723
+1620.402,10.29929
+1606.523,3.2822
+1590.468,2.226402
+1576.711,10.1251
+1568.824,20.93763
+1567.413,31.03271
+1569.711,33.10635
+1572.452,32.69432
+1574.655,31.5523
+1572.747,19.22354
+1565.035,12.21235
+1556.195,15.0088
+1543.351,-1.151437
+1523.306,-7.844097
+1498.451,-15.2105
+1471.473,-14.222
+1443.514,-17.75576
+1418.028,-8.075694
+1395.819,-9.842525
+1378.085,3.328753
+1367.149,8.02681
+1360.404,14.89146
+1361.842,31.14586
+1371.771,39.49014
+1387.436,48.75327
+1406.608,51.37
+1428.548,59.16101
+1453.08,61.76308
+1479.238,67.222
+1503.811,59.92773
+1525.214,60.14183
+1544.184,54.53143
+1562.268,59.49051
+1582.313,63.16959
+1599.873,53.45661
+1613.429,51.63828
+1621.181,35.03048
+1616.371,9.457516
+1600.061,-3.788047
+1581.856,2.248221
+1572.667,24.77247
+1572.022,30.03358
+1574.01,33.46582
+1578.242,37.671
+1584.06,39.13469
+1589.837,38.06779
+1595.385,38.90419
+1601.216,39.5349
+1606.859,38.81017
+1614.638,47.36164
+1624.701,47.38615
+1636,52.69853
+1647.057,47.73088
+1657.59,52.09483
+1669.158,52.50356
+1683.198,62.20206
+1702.491,73.03305
+1723.463,70.75262
+1743.683,73.13956
+1762.667,68.86513
+1777.58,60.39309
+1789.188,58.30213
+1797.921,50.87263
+1806.855,60.13579
+1817.388,58.0382
+1823.299,43.58347
+1816.582,10.14859
+1802.529,14.92394
+1786.299,1.025387
+1768.927,9.511108
+1751.623,0.3174438
+1732.894,3.221305
+1714.636,1.037209
+1696.606,3.044764
+1683.345,16.9832
+1676.05,23.35215
+1669.494,19.07921
+1660.667,14.90462
+1649.65,10.84701
+1637.733,11.08645
+1623.559,2.431441
+1610.325,13.43634
+1600.115,11.95773
+1593.007,23.21765
+1593.733,37.80044
+1600.921,45.08272
+1610.755,47.47602
+1621.087,47.78857
+1627.616,35.45415
+1628.436,28.78426
+1624.513,19.24914
+1617.298,17.2322
+1609.13,15.51832
+1601.445,18.32353
+1596.178,23.1551
+1595.479,33.32108
+1600.276,41.6428
+1609.909,50.18336
+1618.373,38.57851
+1622.498,36.17999
+1621.987,23.06949
+1614.45,12.16186
+1598.261,-5.880579
+1576.576,-6.21808
+1557.216,0.2066689
+1540.557,1.06763
+1523.776,-0.7704601
+1505.168,-4.783222
+1484.424,-7.280366
+1461.786,-10.48103
+1437.992,-10.87021
+1412.439,-15.4868
+1386.16,-13.11512
+1361.533,-11.51401
+1337.054,-12.97312
+1311.675,-13.94429
+1284.644,-14.70514
+1260.877,-6.438118
+1239.233,-12.14887
+1213.585,-13.36887
+1189.711,-8.318381
+1167.449,-12.13369
+1133.834,-11.54234
+1098.11,-11.47418
+1073.161,-9.736206
+1051.866,-8.969399
+1043.845,17.9187
+1059.793,42.8426
+1091.15,54.27356
+1132.423,69.97617
+1179.849,74.85709
+1224.723,70.31767
+1266.425,73.1416
+1304.474,66.09874
+1339.956,71.33346
+1376.07,72.68569
+1408.422,65.08088
+1436.595,64.42775
+1462.377,61.2652
+1487.568,65.8431
+1513.982,68.2971
+1540.825,70.66122
+1565.277,63.87906
+1586.142,61.8507
+1603.258,53.73509
+1610.003,28.49205
+1602.412,5.785827
+1591.718,17.46236
+1587.728,27.60659
+1590.347,39.33879
+1599.711,50.57925
+1614.356,58.24709
+1631.714,61.5585
+1649.959,63.41554
+1667.223,60.33664
+1682.902,59.92071
+1697.641,58.86283
+1708.402,47.30275
+1712.889,37.3675
+1714.622,37.78582
+1716.933,39.62757
+1720.386,42.15772
+1725.639,46.5316
+1733.472,52.14337
+1742.568,52.02161
+1752.026,54.51895
+1760.92,50.98923
+1773.2,68.27187
+1792.224,77.96797
\ No newline at end of file
diff --git a/VectoCoreTest/TestData/Cycles/Engine Only3.vdri b/VectoCoreTest/TestData/Cycles/Engine Only3.vdri
new file mode 100644
index 0000000000000000000000000000000000000000..8c5800784391b70312cc98b7bfe40df8281c5d38
--- /dev/null
+++ b/VectoCoreTest/TestData/Cycles/Engine Only3.vdri	
@@ -0,0 +1,168 @@
+<n>,<Pe>
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,-2.38E-07
+600,-2.38E-07
+600,0
+600,0
+600,0
+600,0
+600,0
+600,0
+600,-2.38E-07
+600,2.38E-07
+600,0
+644.4445,2.329973
+644.4445,0.5693641
+644.4445,4.264177
+869.7512,7.98456
+644.4445,1.351656
+1015.31,-0.2716608
+948.6478,-0.4653716
+872.4501,-0.5719776
+644.4445,1.012361
+816.044,0.1606398
+644.4445,3.967641
+644.4445,4.3916
+645.3466,1.254886
+602.9238,0.36098
+644.4445,1.097353
+644.4445,1.476951
+645.6951,2.961375
+656.8193,3.33839
+688.8293,2.509675
+715.7259,3.104633
+743.2361,2.779576
+759.3434,2.025352
+763.0762,1.467997
+761.0308,1.383811
+757.7582,1.320618
+755.406,1.475238
+756.3265,1.681716
+753.872,1.098228
+749.1166,1.411724
+747.787,1.465289
+743.7986,1.110595
+691.6417,-3.012229
+627.2637,-0.1685431
+1049.495,-0.09707546
+644.4445,1.615664
+1026.825,0.4667768
+977.9754,-0.4151859
+906.5457,-0.4785028
+764.8557,-2.495939
+615.8789,-0.5095253
+600,-0.2679868
+644.4445,0.5701756
+644.4445,1.185031
+600,0.2967396
+646.6069,3.811063
+895.4804,7.923037
+653.8535,6.359474
+791.9158,11.55912
+900.8318,4.931076
+1007.856,14.46236
+1156.708,13.49057
+1345.086,27.20026
+1602.138,35.01208
+1888.49,46.58702
+2103.714,24.29906
+2146.359,-1.109985
+1286.033,8.800848
+1351.937,37.56419
+1494.108,56.84015
+1650.18,55.71647
+1797.949,62.99876
+1974.041,90.22348
+2191.804,115.1789
+2403.877,105.9852
+2503.301,18.33513
+1611.144,-1.709167
+1619.774,43.61679
+1655.685,42.16265
+1690.462,44.19933
+1723.907,42.2117
+1766.618,62.7349
+1823.327,70.33007
+1898.131,102.0343
+1980.033,91.64824
+2027.516,42.57878
+2040.799,27.31307
+1396.846,69.06043
+1435.803,91.8233
+1479.637,89.72998
+1511.026,58.87632
+1535.129,70.88527
+1563.544,76.08076
+1591.288,72.46291
+1615.981,69.52535
+1637.034,63.16708
+1654.957,61.31534
+1674.975,72.86595
+1695.262,64.75288
+1709.799,54.75394
+1712.769,24.54955
+1702.061,5.766651
+1685.925,4.414207
+1669.991,5.575367
+1656.502,12.07608
+1644.88,11.30247
+1634.482,15.56817
+1624.607,12.47053
+1610.151,-0.5362444
+1594.136,6.376687
+1580.163,5.485111
+1564.78,1.025784
+1550.539,8.4501
+1539.777,11.6633
+1532.066,17.71403
+1521.599,2.418658
+1504.309,-4.049212
+1481.361,-14.07779
+1453.792,-17.15281
+1423.724,-18.15207
+1385.246,-16.81612
+1337.242,-15.72801
+1293.188,-15.42869
+1281.755,38.3059
+1286.484,11.6914
+1283.596,17.9171
+1285.597,24.78118
+1291.778,29.405
+1303.359,40.06316
+1321.147,47.6144
+1343.046,53.40984
+1367.31,56.75732
+1398.372,76.35516
+1441.017,95.91759
+1491.115,106.3325
+1533.099,77.92695
+1561.824,69.6596
+1584.033,60.08042
+1597.119,41.62484
+1603.93,40.29163
+1607.558,31.45644
+1604.965,19.52167
+1600.142,23.70411
+1596.299,22.48869
+1589.192,12.48158
+1578.793,11.02395
+1566.889,6.910674
+1551.426,-1.123854
+1528.707,-15.20682
+1502.589,-11.37927
+1476.041,-16.47795
+1439.148,-17.79036
+1386.845,-16.22873
+1331.801,-15.54598
+1276.609,-14.19835
+1222.116,-13.53877
+1183.826,-13.63705
+1165.594,4.323093
\ No newline at end of file
diff --git a/VectoCoreTest/TestData/Cycles/LOT2_rural Engine Only.vmod b/VectoCoreTest/TestData/Cycles/LOT2_rural Engine Only.vmod
new file mode 100644
index 0000000000000000000000000000000000000000..f54768522d1333238bc4ca61f688ecb958d3e1c2
--- /dev/null
+++ b/VectoCoreTest/TestData/Cycles/LOT2_rural Engine Only.vmod	
@@ -0,0 +1,3952 @@
+time [s],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],Paux [kW],FC [g/h],FC-AUXc [g/h],FC-WHTCc [g/h]
+1,600,0,0,1282,-148,0,80.55044,-9.299114,0,0,0,1459,-,-
+2,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+3,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+4,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+5,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+6,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+7,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+8,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+9,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+10,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+11,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+12,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+13,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+14,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+15,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+16,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+17,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+18,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+19,600,3.787888E-06,3.787888E-06,801.2501,-148,2.38E-07,50.34402,-9.299114,2.38E-07,0,0,1459,-,-
+20,600,9.170536,0,801.2501,-148,0.5762018,50.34402,-9.299114,0,0.5762018,0,1546.074,-,-
+21,644.4445,43.06333,34.52525,875.1463,-148.2222,2.906175,59.06019,-10.00294,2.329973,0.5762018,0,1961.22,-,-
+22,644.4445,8.436764,8.436764,888.0933,-148.2222,0.5693641,59.93393,-10.00294,0.5693641,0,0,1632.441,-,-
+23,644.4445,115.8511,63.18603,875.1083,-148.2222,7.818337,59.05762,-10.00294,4.264177,3.55416,0,2652.34,-,-
+24,869.7512,87.66522,87.66522,1262.513,-152.8363,7.98456,114.9899,-13.92035,7.98456,0,0,3277.925,-,-
+25,644.4445,62.38619,20.02867,916.3124,-148.2222,4.210199,61.83832,-10.00294,1.351656,2.858543,0,2144.69,-,-
+26,1015.31,44.93016,-2.555052,1452.349,-161.4545,4.777111,154.4182,-17.16632,-0.2716608,5.048771,0,3594.803,-,-
+27,948.6478,-32.96616,-4.684533,1373.851,-157.1756,-3.27493,136.4813,-15.61417,-0.4653716,-2.809558,0,2196.106,-,-
+28,872.4501,-61.52123,-6.260512,1221.174,-152.9848,-5.620749,111.5698,-13.97711,-0.5719776,-5.048771,0,1460.351,-,-
+29,644.4445,0.2985062,15.00104,840.7117,-148.2222,0.02014501,56.73633,-10.00294,1.012361,-0.992216,0,1555.168,-,-
+30,816.044,1.879797,1.879797,1144.983,-149.8824,0.1606398,97.84562,-12.80834,0.1606398,0,0,1980.72,-,-
+31,644.4445,20.10359,58.792,872.8372,-148.2222,1.356712,58.90435,-10.00294,3.967641,-2.610929,0,1743.217,-,-
+32,644.4445,65.25378,65.07417,879.4834,-148.2222,4.403721,59.35288,-10.00294,4.3916,0.01212145,0,2171.918,-,-
+33,645.3466,10.58478,18.56875,897.8154,-148.2267,0.7153255,60.67485,-10.01724,1.254886,-0.5395605,0,1654.73,-,-
+34,602.9238,5.525331,5.717314,810.1493,-148.0146,0.3488585,51.15123,-9.345352,0.36098,-0.01212145,0,1517.603,-,-
+35,644.4445,24.25558,16.26044,873.8831,-148.2222,1.636914,58.97493,-10.00294,1.097353,0.5395605,0,1782.64,-,-
+36,644.4445,22.13434,21.88527,881.0404,-148.2222,1.49376,59.45795,-10.00294,1.476951,0.01680891,0,1762.499,-,-
+37,645.6951,46.27728,43.79628,882.2181,-148.2285,3.129133,59.65297,-10.02277,2.961375,0.1677578,0,1994.363,-,-
+38,656.8193,57.25459,48.53584,908.6883,-148.2841,3.938083,62.50135,-10.19927,3.33839,0.5996926,0,2121.953,-,-
+39,688.8293,46.46883,34.79183,963.0168,-148.4442,3.351984,69.46629,-10.70788,2.509675,0.8423092,0,2086.763,-,-
+40,715.7259,52.2522,41.42237,1002.097,-148.5786,3.916336,75.10785,-11.13606,3.104633,0.8117025,0,2198.159,-,-
+41,743.2361,44.32463,35.71274,1047.954,-148.7162,3.449852,81.56386,-11.5748,2.779576,0.6702765,0,2180.658,-,-
+42,759.3434,29.38564,25.47028,1070.975,-148.7967,2.336695,85.16204,-11.83206,2.025352,0.3113432,0,2072.638,-,-
+43,763.0762,18.7053,18.37082,1071.609,-148.8154,1.494725,85.63134,-11.89171,1.467997,0.02672757,0,1979.067,-,-
+44,761.0308,16.30659,17.36385,1064.423,-148.8052,1.299553,84.82915,-11.85902,1.383811,-0.08425788,0,1951.996,-,-
+45,757.7582,15.52264,16.64248,1058.326,-148.7888,1.231757,83.98051,-11.80673,1.320618,-0.08886148,0,1937.68,-,-
+46,755.406,18.36341,18.64889,1054.282,-148.777,1.452655,83.39995,-11.76915,1.475238,-0.0225831,0,1959.713,-,-
+47,756.3265,20.92863,21.23316,1056.785,-148.7816,1.657596,83.69981,-11.78385,1.681716,-0.02411984,0,1986.003,-,-
+48,753.872,12.47891,13.91125,1053.876,-148.7694,0.9851509,83.19858,-11.74464,1.098228,-0.113077,0,1900.618,-,-
+49,749.1166,16.78234,17.99582,1043.148,-148.7456,1.316529,81.83214,-11.66869,1.411724,-0.09519503,0,1931.493,-,-
+50,747.787,17.65562,18.71185,1042.628,-148.7389,1.382578,81.6462,-11.64746,1.465289,-0.08271109,0,1936.993,-,-
+51,743.7986,3.449067,14.25843,1036.636,-148.719,0.2686492,80.744,-11.58378,1.110595,-0.8419458,0,1793.726,-,-
+52,691.6417,-64.57079,-41.58897,948.4085,-148.4582,-4.676768,68.69186,-10.75261,-3.012229,-1.664539,0,1014.902,-,-
+53,627.2637,96.25304,-2.565852,817.9171,-148.1363,6.322563,53.72643,-9.730616,-0.1685429,6.491106,0,2430.176,-,-
+54,1049.495,1.187829,-0.8832842,1459.073,-164.702,0.1305458,160.3563,-18.10122,-0.09707546,0.2276213,0,2992.783,-,-
+55,644.4445,16.6744,23.9407,872.67,-148.2222,1.12529,58.89307,-10.00294,1.615664,-0.490374,0,1710.657,-,-
+56,1026.825,56.76796,4.340945,1441.424,-162.5484,6.104194,154.9947,-17.47864,0.4667768,5.637417,0,3803.619,-,-
+57,977.9754,-27.70941,-4.054022,1424.818,-158.7887,-2.837813,145.9204,-16.26208,-0.4151859,-2.422627,0,2347.138,-,-
+58,906.5457,-45.80109,-5.040415,1277.64,-154.86,-4.348046,121.2905,-14.70136,-0.478503,-3.869543,0,1826.685,-,-
+59,764.8557,-88.7198,-31.16203,1043.116,-148.8243,-7.106057,83.54893,-11.92016,-2.495939,-4.610118,0,757.9618,-,-
+60,615.8789,-44.24551,-7.900268,785.1898,-148.0794,-2.853601,50.64057,-9.550334,-0.5095253,-2.344075,0,1056.169,-,-
+61,600,1.704201,-4.265142,784.2189,-148,0.1070781,49.27393,-9.299114,-0.2679868,0.3750649,0,1475.181,-,-
+62,644.4445,16.98687,8.44879,872.5396,-148.2222,1.146377,58.88427,-10.00294,0.5701756,0.5762018,0,1713.624,-,-
+63,644.4445,9.021553,17.55964,878.3146,-148.2222,0.6088292,59.27401,-10.00294,1.185031,-0.5762018,0,1637.993,-,-
+64,600,5.18564,4.722757,804.8837,-148,0.3258234,50.57233,-9.299114,0.2967396,0.02908379,0,1508.238,-,-
+65,646.6069,124.2693,56.28299,877.1885,-148.233,8.414585,59.39664,-10.03723,3.811063,4.603522,0,2736.811,-,-
+66,895.4804,85.53728,84.49033,1304.898,-154.2514,8.021215,122.3661,-14.46485,7.923037,0.09817816,0,3379.16,-,-
+67,653.8535,66.28895,92.87785,930.8409,-148.2693,4.538896,63.73596,-10.1522,6.359474,-1.820578,0,2201.506,-,-
+68,791.9158,187.6217,139.3854,1127.041,-148.9596,15.55932,93.4646,-12.3531,11.55912,4.000204,0,4099.517,-,-
+69,900.8318,95.19201,52.27203,1341.612,-154.5457,8.979927,126.5608,-14.57905,4.931076,4.048851,0,3521.737,-,-
+70,1007.856,188.9964,137.0289,1469.406,-160.7463,19.94714,155.0847,-16.96556,14.46236,5.484777,0,5809.916,-,-
+71,1156.708,179.6167,111.3725,1499.253,-174.8873,21.75701,181.6048,-21.18413,13.49057,8.266437,0,6328.946,-,-
+72,1345.086,283.9939,193.1054,1495.423,-196.4103,40.00255,210.6409,-27.66578,27.20026,12.80229,0,9497.552,-,-
+73,1602.138,317.7925,208.6841,1474.247,-235.31,53.31779,247.3425,-39.47925,35.01208,18.30572,0,12735.88,-,-
+74,1888.49,333.4889,235.5709,1360.771,-280.3706,65.9515,269.1091,-55.44672,46.58702,19.36448,0,16855.77,-,-
+75,2103.714,159.5027,110.2997,932.3865,-320.7057,35.13851,205.4051,-70.6516,24.29906,10.83945,0,ERROR,-,-
+76,2146.359,-133.4082,-4.9384,817.8073,-328.8082,-29.98566,183.8154,-73.90496,-1.109985,-28.87567,0,ERROR,-,-
+77,1286.033,-149.6351,65.34973,1354.004,-189.324,-20.15182,182.3479,-25.49684,8.800848,-28.95267,0,841.8726,-,-
+78,1351.937,307.8995,265.3316,1384.122,-197.2324,43.59072,195.9564,-27.92309,37.56419,6.026536,0,10115.97,-,-
+79,1494.108,422.8993,363.2826,1517.045,-218.0573,66.16794,237.3609,-34.11782,56.84015,9.327791,0,14267.78,-,-
+80,1650.18,382.7237,322.4213,1530.207,-242.2761,66.13712,264.4296,-41.86687,55.71647,10.42064,0,14981.92,-,-
+81,1797.949,399.5454,334.6001,1555.304,-263.7026,75.22672,292.8339,-49.65013,62.99876,12.22796,0,17281.95,-,-
+82,1974.041,515.6417,436.4503,1206.818,-296.1976,106.594,249.4747,-61.23029,90.22348,16.37055,0,23889.77,-,-
+83,2191.804,587.2262,501.8138,787.8055,-337.4427,134.7832,180.8212,-77.45161,115.1789,19.60429,0,ERROR,-,-
+84,2403.877,334.2301,273.7045,334.2301,-377.7366,84.13688,84.13688,-95.08893,68.90056,15.23632,0,ERROR,-,-
+85,2503.301,-56.54663,69.94268,83.6814,-396.6272,-14.82342,21.93667,-103.9739,18.33513,-33.15855,0,ERROR,-,-
+86,1611.144,-235.0663,-10.13028,1371.202,-236.6159,-39.66005,231.3473,-39.9215,-1.709167,-37.95089,0,37.61931,-,-
+87,1619.774,266.0775,257.1406,1328.561,-237.8672,45.13268,225.3536,-40.3476,43.61679,1.515889,0,11585.19,-,-
+88,1655.685,257.2363,243.1765,1494.785,-243.0743,44.60038,259.1703,-42.14494,42.16265,2.437729,0,11735.19,-,-
+89,1690.462,263.2474,249.6788,1501.826,-248.117,46.60131,265.8603,-43.92285,44.19933,2.401978,0,12257.1,-,-
+90,1723.907,249.018,233.8247,1513.123,-252.9665,44.9545,273.1597,-45.66731,42.2117,2.742802,0,12241.85,-,-
+91,1766.618,358.9676,339.1079,1522.828,-259.1596,66.40894,281.723,-47.94448,62.7349,3.674046,0,15768.52,-,-
+92,1823.327,394.6358,368.3391,1508.04,-268.3155,75.3511,287.9427,-51.23172,70.33006,5.021039,0,17552.53,-,-
+93,1898.131,544.5615,513.3238,1363.192,-282.1542,108.2435,270.9642,-56.08431,102.0343,6.209172,0,23420.74,-,-
+94,1980.033,467.5205,442.0008,1226.341,-297.3061,96.9397,254.28,-61.64599,91.64824,5.291466,0,22455.15,-,-
+95,2027.516,212.5282,200.5397,1117.442,-306.228,45.12419,237.2564,-65.01863,42.57878,2.545408,0,15602.88,-,-
+96,2040.799,22.5261,127.8032,1041.578,-308.7518,4.814098,222.5977,-65.98396,27.31307,-22.49897,0,10316.36,-,-
+97,1396.846,322.3199,472.1198,1449.842,-202.6215,47.14811,212.079,-29.63894,69.06043,-21.91232,0,10911.45,-,-
+98,1435.803,627.2028,610.7021,1545.526,-208.7285,94.3043,232.3806,-31.38377,91.8233,2.480995,0,18637.26,-,-
+99,1479.637,594.0043,579.1003,1638.939,-215.7419,92.03931,253.9491,-33.42861,89.72998,2.309333,0,18401.32,-,-
+100,1511.026,383.0977,372.0832,1618.519,-220.7642,60.61919,256.1051,-34.93246,58.87632,1.742871,0,13460.26,-,-
+101,1535.129,451.4071,440.943,1539.581,-224.6206,72.56745,247.5005,-36.10964,70.88527,1.682182,0,15385.76,-,-
+102,1563.544,475.8323,464.6609,1553.153,-229.167,77.9099,254.3039,-37.52242,76.08076,1.829139,0,16368.73,-,-
+103,1591.288,445.2722,434.8489,1552.029,-233.6061,74.19984,258.629,-38.92795,72.46291,1.736925,0,15921.79,-,-
+104,1615.981,419.9371,410.8453,1541.791,-237.3172,71.0639,260.9099,-40.16004,69.52535,1.53855,0,15563.56,-,-
+105,1637.034,376.2195,368.472,1537.531,-240.3699,64.49524,263.5787,-41.20657,63.16708,1.328163,0,14638.52,-,-
+106,1654.957,361.3505,353.7967,1527.899,-242.9688,62.62446,264.7951,-42.10811,61.31534,1.309122,0,14448.85,-,-
+107,1674.975,423.4403,415.4202,1527.54,-245.8714,74.27268,267.935,-43.12657,72.86594,1.406735,0,16388.32,-,-
+108,1695.262,371.6657,364.7486,1548.636,-248.813,65.98085,274.9253,-44.17113,64.75288,1.227973,0,15234.92,-,-
+109,1709.799,309.2745,305.803,1538.119,-250.9209,55.37552,275.3998,-44.92731,54.75394,0.6215815,0,13686.15,-,-
+110,1712.769,135.339,136.8725,1523.115,-251.3515,24.27451,273.187,-45.0826,24.54955,-0.2750401,0,9122.085,-,-
+111,1702.061,27.02083,32.3534,1474.023,-249.7988,4.816177,262.729,-44.524,5.766651,-0.9504735,0,6423.931,-,-
+112,1685.925,18.62135,25.00264,1437.877,-247.4592,3.287593,253.8567,-43.68883,4.414207,-1.126614,0,6139.807,-,-
+113,1669.991,26.02238,31.88091,1428.824,-245.1487,4.550822,249.8743,-42.87186,5.575367,-1.024545,0,6209.245,-,-
+114,1656.502,64.61633,69.61541,1425.511,-243.1928,11.2089,247.2813,-42.18628,12.07608,-0.8671831,0,6988.956,-,-
+115,1644.88,61.23325,65.61612,1432.701,-241.5076,10.54751,246.7847,-41.60003,11.30247,-0.7549564,0,6843.781,-,-
+116,1634.482,86.92116,90.95547,1427.82,-239.9999,14.87765,244.3893,-41.07899,15.56817,-0.6905218,0,7354.234,-,-
+117,1624.607,68.46641,73.30067,1432.383,-238.568,11.64808,243.6891,-40.58721,12.47053,-0.8224459,0,6883.443,-,-
+118,1610.151,-9.240115,-3.180296,1421.514,-236.4719,-1.558018,239.6881,-39.87262,-0.5362444,-1.021774,0,5065.09,-,-
+119,1594.136,32.22758,38.19804,1393.545,-234.0618,5.379992,232.6349,-39.07369,6.376687,-0.996695,0,5882.933,-,-
+120,1580.163,27.30954,33.14782,1410.614,-231.8261,4.519026,233.4204,-38.36125,5.485111,-0.9660846,0,5666.646,-,-
+121,1564.78,0.3636259,6.259995,1412.486,-229.3648,0.05958496,231.4547,-37.58449,1.025784,-0.966199,0,5056.958,-,-
+122,1550.539,47.06121,52.04159,1406.432,-227.0862,7.641426,228.3653,-36.87246,8.4501,-0.808674,0,5888.553,-,-
+123,1539.777,68.6536,72.33276,1424.926,-225.3643,11.07006,229.7623,-36.33889,11.6633,-0.5932446,0,6280.474,-,-
+124,1532.066,106.7972,110.4107,1434.141,-224.1306,17.13428,230.0901,-35.95897,17.71403,-0.5797531,0,7072.241,-,-
+125,1521.599,9.668711,15.17909,1449.958,-222.4558,1.540627,231.0385,-35.44644,2.418658,-0.8780314,0,5040.514,-,-
+126,1504.309,-33.69525,-25.70424,1419.683,-219.6894,-5.308042,223.6439,-34.60787,-4.049212,-1.25883,0,4062.217,-,-
+127,1481.361,-100.7852,-90.74965,1408.838,-216.0177,-15.63458,218.5499,-33.51035,-14.07779,-1.556794,0,2535.507,-,-
+128,1453.792,-124.127,-112.669,1389.43,-211.6067,-18.89719,211.5278,-32.21516,-17.15281,-1.744379,0,1915.911,-,-
+129,1423.724,-135.3489,-121.7508,1385.921,-206.7958,-20.17945,206.6297,-30.83161,-18.15207,-2.027376,0,1542.116,-,-
+130,1385.246,-133.0711,-115.9232,1385.334,-201.2295,-19.30365,200.9602,-29.19088,-16.81612,-2.487527,0,1445.763,-,-
+131,1337.242,-130.6579,-112.3143,1385.807,-195.469,-18.29677,194.0624,-27.37263,-15.72801,-2.568758,0,1374.762,-,-
+132,1293.188,-125.1095,-113.9302,1386.834,-190.1826,-16.94262,187.8083,-25.75496,-15.42869,-1.513933,0,1380.318,-,-
+133,1281.755,284.0433,285.3856,1390.165,-188.8106,38.12573,186.595,-25.34312,38.3059,-0.1801681,0,8983.826,-,-
+134,1286.484,87.14797,86.78278,1543.625,-189.3781,11.7406,207.9576,-25.51307,11.6914,0.04920031,0,5303.294,-,-
+135,1283.596,133.1172,133.2941,1470.254,-189.0315,17.89333,197.6284,-25.40921,17.9171,-0.02376681,0,6134.657,-,-
+136,1285.597,185.7029,184.0723,1487.341,-189.2717,25.0007,200.2369,-25.48115,24.78118,0.2195235,0,7155.98,-,-
+137,1291.778,220.914,217.3726,1506.805,-190.0134,29.88407,203.8326,-25.70399,29.405,0.4790672,0,7861.332,-,-
+138,1303.359,299.3874,293.53,1519.607,-191.4031,40.86262,207.4072,-26.12411,40.06316,0.7994608,0,9417.771,-,-
+139,1321.147,352.0673,344.1585,1548.259,-193.5376,48.70857,214.2019,-26.77597,47.6144,1.094172,0,10808.42,-,-
+140,1343.046,388.9465,379.7535,1567.373,-196.1655,54.70278,220.4407,-27.5894,53.40984,1.292941,0,11879.83,-,-
+141,1367.31,407.4287,396.3932,1580.767,-199.0772,58.33742,226.3411,-28.50475,56.75732,1.580101,0,12532.68,-,-
+142,1398.372,536.1453,521.4193,1586.892,-202.8046,78.5116,232.3799,-29.69814,76.35516,2.156437,0,15967.06,-,-
+143,1441.017,654.1249,635.6244,1619.78,-209.5627,98.70938,244.4295,-31.62363,95.91759,2.791791,0,19346.57,-,-
+144,1491.115,699.2388,680.9673,1643.299,-217.5784,109.1856,256.5999,-33.97469,106.3325,2.853078,0,21073.68,-,-
+145,1533.099,499.3958,485.3878,1644.748,-224.2958,80.17587,264.0573,-36.00974,77.92695,2.248918,0,16595.47,-,-
+146,1561.824,436.0255,425.9124,1569.613,-228.8918,71.31363,256.7162,-37.43613,69.6596,1.65403,0,15298.9,-,-
+147,1584.033,369.1954,362.1931,1541.97,-232.4453,61.24197,255.7812,-38.55792,60.08042,1.161546,0,13873,-,-
+148,1597.119,252.8292,248.8781,1516.634,-234.539,42.28566,253.6568,-39.22663,41.62484,0.6608209,0,11003.9,-,-
+149,1603.93,241.9587,239.8837,1479.051,-235.5699,40.64014,248.4261,-39.56706,40.29163,0.3485158,0,10794.84,-,-
+150,1607.558,187.0646,186.8591,1476.581,-236.0959,31.49104,248.5721,-39.74511,31.45644,0.03459711,0,9425.89,-,-
+151,1604.965,114.6764,116.151,1458.302,-235.7199,19.27385,245.0991,-39.61781,19.52167,-0.2478251,0,7796.074,-,-
+152,1600.142,139.7361,141.4609,1433.173,-235.0206,23.41509,240.1518,-39.38157,23.70411,-0.2890159,0,8325.968,-,-
+153,1596.299,132.3542,134.5307,1442.332,-234.4078,22.12486,241.106,-39.18456,22.48869,-0.3638254,0,8132.26,-,-
+154,1589.192,71.52106,75.00057,1441.816,-233.2707,11.90252,239.9468,-38.82087,12.48158,-0.57906,0,6721.455,-,-
+155,1578.793,62.24268,66.67814,1424.12,-231.6069,10.29063,235.4509,-38.29175,11.02395,-0.7333171,0,6435.202,-,-
+156,1566.889,36.67767,42.11662,1423.846,-229.7022,6.018228,233.6307,-37.69052,6.910674,-0.8924458,0,5774.275,-,-
+157,1551.426,-14.49673,-6.917517,1418.733,-227.2282,-2.355211,230.4944,-36.91661,-1.123854,-1.231357,0,4682.187,-,-
+158,1528.707,-104.6979,-94.99168,1405.949,-223.5931,-16.76064,225.0725,-35.79409,-15.20682,-1.553822,0,2635.427,-,-
+159,1502.589,-82.79519,-72.31786,1379.095,-219.4143,-13.02789,217.0017,-34.525,-11.37927,-1.648615,0,3012.952,-,-
+160,1476.041,-119.1831,-106.6046,1391.965,-215.1666,-18.42221,215.157,-33.25844,-16.47795,-1.944263,0,2121.234,-,-
+161,1439.148,-135.6979,-118.0458,1384.906,-209.2637,-20.45066,208.7153,-31.53755,-17.79036,-2.660299,0,1604.352,-,-
+162,1386.845,-133.0824,-111.745,1384.694,-201.4214,-19.32757,201.0992,-29.25244,-16.22873,-3.098839,0,1449.594,-,-
+163,1331.801,-133.4001,-111.468,1385.532,-194.8161,-18.60477,193.2344,-27.1702,-15.54598,-3.058788,0,1302.745,-,-
+164,1276.609,-128.0363,-106.2066,1385.312,-188.1931,-17.11668,185.1971,-25.15882,-14.19835,-2.918335,0,1276.035,-,-
+165,1222.116,-124.3716,-105.7884,1387.345,-181.6539,-15.91704,177.552,-23.24801,-13.53877,-2.378269,0,1119.721,-,-
+166,1183.826,-121.3442,-110.0028,1389.352,-177.4635,-15.04303,172.2379,-22.00014,-13.63705,-1.405982,0,1036.797,-,-
+167,1165.594,29.5695,35.41756,1391.284,-175.7314,3.609275,169.8212,-21.44991,4.323093,-0.7138183,0,3688.994,-,-
+168,1154.524,-5.858347,-1.818656,1448.695,-174.6798,-0.7082828,175.1494,-21.11904,-0.2198782,-0.4884046,0,3101.597,-,-
+169,1145.307,65.15321,68.7969,1435.286,-173.8042,7.814233,172.1428,-20.84542,8.251244,-0.4370106,0,4221.084,-,-
+170,1136.212,-4.806559,-1.227013,1462.128,-172.9401,-0.5719029,173.9696,-20.57708,-0.1459947,-0.4259082,0,3079.961,-,-
+171,1127.318,69.35881,71.11412,1435.683,-172.0952,8.187979,169.4859,-20.31627,8.395197,-0.2072181,0,4220.741,-,-
+172,1127.425,178.0661,177.0695,1463.507,-172.1054,21.02314,172.787,-20.31939,20.90548,0.1176574,0,6164.361,-,-
+173,1132.316,168.3272,166.8263,1503.986,-172.57,19.95954,178.3365,-20.46264,19.78157,0.177971,0,6012.389,-,-
+174,1134.976,135.0664,133.3666,1500.475,-172.8227,16.05324,178.338,-20.54074,15.85121,0.2020281,0,5427.78,-,-
+175,1140.847,235.2697,231.5724,1487.889,-173.3805,28.10749,177.757,-20.71363,27.66578,0.4417079,0,7191.243,-,-
+176,1153.503,276.7515,270.2323,1524.758,-174.5828,33.43007,184.1825,-21.08865,32.64259,0.7874816,0,7999.825,-,-
+177,1173.508,389.4692,381.0513,1539.513,-176.4833,47.86166,189.1899,-21.68793,46.8272,1.034464,0,10260.87,-,-
+178,1195.77,327.4031,319.2975,1580.832,-178.5981,40.99767,197.953,-22.36419,39.98267,1.014994,0,9257.626,-,-
+179,1214.31,318.8598,310.9846,1558.402,-180.7172,40.54693,198.1699,-22.98041,39.54551,1.001422,0,9217.15,-,-
+180,1235.31,381.7586,372.2441,1555.04,-183.2372,49.38482,201.1621,-23.70382,48.15401,1.230805,0,10599.08,-,-
+181,1262.019,440.6324,429.5888,1577.63,-186.4423,58.23324,208.4969,-24.6399,56.77373,1.459511,0,12104.95,-,-
+182,1290.77,429.6628,418.7212,1599.057,-189.8924,58.07714,216.1431,-25.66759,56.59818,1.478957,0,12183.74,-,-
+183,1317.063,397.0867,386.5176,1595.407,-193.0476,54.7672,220.0425,-26.6256,53.30949,1.457712,0,11797.06,-,-
+184,1343.879,444.3654,434.9593,1583.436,-196.2655,62.53585,222.8381,-27.62058,61.21212,1.323736,0,13027.56,-,-
+185,1364.448,273.0347,267.383,1601.625,-198.7338,39.01247,228.8476,-28.39601,38.20493,0.8075434,0,9447.177,-,-
+186,1372.416,189.5373,187.2231,1539.294,-199.6899,27.24012,221.2259,-28.69925,26.90753,0.3325892,0,7770.424,-,-
+187,1376.097,183.7302,183.3622,1508.386,-200.1317,26.47635,217.3653,-28.83988,26.42333,0.05302388,0,7681.948,-,-
+188,1374.269,76.24336,77.74364,1506.49,-199.9123,10.97242,216.8037,-28.77,11.18833,-0.2159099,0,5608.425,-,-
+189,1368.546,102.647,104.9165,1466.211,-199.2255,14.71074,210.1283,-28.55177,15.03598,-0.3252447,0,6079.325,-,-
+190,1362.863,74.76355,77.25121,1476.153,-198.5436,10.67016,210.6746,-28.33588,11.02519,-0.3550348,0,5508.976,-,-
+191,1356.038,77.43774,80.76211,1465.677,-197.7245,10.99647,208.132,-28.07767,11.46854,-0.4720729,0,5517.76,-,-
+192,1346.136,7.97706,14.1053,1466.753,-196.5363,1.124503,206.7638,-27.70514,1.988382,-0.8638794,0,4180.138,-,-
+193,1325.11,-129.0316,-116.8838,1440.539,-194.0132,-17.9051,199.8967,-26.92228,-16.2194,-1.685701,0,1378.377,-,-
+194,1284.63,-126.1256,-108.9066,1387.588,-189.1556,-16.96719,186.6669,-25.44637,-14.65078,-2.31641,0,1336.981,-,-
+195,1238.373,-127.6369,-109.5772,1388.436,-183.6048,-16.55223,180.0554,-23.81026,-14.2102,-2.34203,0,1140.599,-,-
+196,1193.929,-120.2759,-103.8393,1387.854,-178.4232,-15.03785,173.5206,-22.30789,-12.98282,-2.055032,0,1074.264,-,-
+197,1155.988,-119.5851,-108.2187,1390.916,-174.8189,-14.47635,168.3771,-21.16266,-13.10039,-1.375963,0,1020.435,-,-
+198,1137.273,20.19871,24.84404,1391.917,-173.0409,2.405564,165.7703,-20.6083,2.958799,-0.553235,0,3481.251,-,-
+199,1132.786,134.724,133.9632,1445.104,-172.6147,15.98164,171.4256,-20.47643,15.8914,0.09024294,0,5411.406,-,-
+200,1141.075,283.7219,278.9485,1487.655,-173.4021,33.90281,177.7644,-20.72035,33.33242,0.5703874,0,8040.37,-,-
+201,1156.7,289.9659,282.3105,1542.458,-174.8865,35.12338,186.837,-21.18388,34.19608,0.9272999,0,8271.085,-,-
+202,1179.433,435.5909,424.1682,1544.141,-177.0461,53.7998,190.7168,-21.86695,52.38899,1.410807,0,11126.15,-,-
+203,1213.827,535.8825,520.1509,1596.218,-180.6592,68.11692,202.8979,-22.9639,66.11726,1.999664,0,13507.82,-,-
+204,1258.176,648.72,630.3763,1631.373,-185.9811,85.47268,214.9429,-24.50411,83.05579,2.416888,0,16571.04,-,-
+205,1305.898,615.9441,596.9261,1671.88,-191.7077,84.23239,228.6351,-26.21667,81.63163,2.60076,0,16525.22,-,-
+206,1353.754,661.4887,643.4066,1660.314,-197.4505,93.77581,235.374,-27.99153,91.21239,2.563413,0,18254.28,-,-
+207,1396.935,530.9613,514.0288,1677.891,-202.6322,77.67258,245.4531,-29.6424,75.19558,2.476994,0,15821.97,-,-
+208,1438.893,646.8818,628.9226,1618.693,-209.2229,97.47248,243.9055,-31.52581,94.76639,2.706089,0,19146.34,-,-
+209,1487.004,665.2884,647.3359,1642.549,-216.9206,103.5978,255.7756,-33.7786,100.8023,2.795537,0,20211.29,-,-
+210,1529.298,539.4854,524.209,1634.691,-223.6877,86.39735,261.7921,-35.82307,83.95087,2.446478,0,17606.15,-,-
+211,1563.974,518.7225,505.3825,1581.485,-229.2358,84.95585,259.0139,-37.54401,82.77103,2.184826,0,17508.56,-,-
+212,1596.393,499.9771,487.9616,1563.694,-234.4229,83.58311,261.4088,-39.18938,81.57443,2.008681,0,17434.93,-,-
+213,1624.446,435.1006,426.4298,1559.707,-238.5447,74.01565,265.3242,-40.57922,72.54066,1.47499,0,16069.61,-,-
+214,1640.138,251.376,247.6988,1543.069,-240.82,43.17505,265.0296,-41.362,42.54347,0.6315762,0,11419.87,-,-
+215,1643,173.0718,173.4452,1488.655,-241.235,29.77779,256.1299,-41.50558,29.84203,-0.06424312,0,9399.466,-,-
+216,1638.257,93.35413,96.01612,1463.631,-240.5472,16.01563,251.0974,-41.26777,16.47232,-0.4566861,0,7520.339,-,-
+217,1629.605,92.22087,93.77315,1436.114,-239.2927,15.73766,245.0755,-40.83574,16.00256,-0.2648991,0,7443.155,-,-
+218,1630.478,287.2779,284.6463,1435.891,-239.4193,49.05077,245.1688,-40.87923,48.60144,0.4493276,0,12245.94,-,-
+219,1642.785,328.442,323.2375,1499.023,-241.2038,56.50254,257.88,-41.49479,55.60721,0.8953294,0,13439.54,-,-
+220,1656.623,324.0203,318.7104,1514.438,-243.2103,56.21142,262.7265,-42.19241,55.29026,0.9211598,0,13471.11,-,-
+221,1669.48,312.0607,307.3751,1516.124,-245.0746,54.55681,265.0603,-42.84579,53.73763,0.819179,0,13297.53,-,-
+222,1680.188,283.0802,279.1659,1515.374,-246.6273,49.80764,266.6284,-43.39379,49.11893,0.6887088,0,12661.39,-,-
+223,1689.163,278.7301,275.6046,1509.665,-247.9286,49.30421,267.0428,-43.85578,48.75134,0.5528665,0,12643.56,-,-
+224,1695.907,239.2801,236.9558,1510.371,-248.9065,42.49494,268.2343,-44.20454,42.08216,0.4127833,0,11695.05,-,-
+225,1700.851,243.564,241.398,1501.183,-249.6234,43.38184,267.3798,-44.46109,42.99605,0.3857936,0,11857.88,-,-
+226,1706.79,260.8594,258.2896,1504.048,-250.4846,46.62461,268.8255,-44.77027,46.16529,0.4593202,0,12367.48,-,-
+227,1713.763,266.5401,263.8271,1510.588,-251.4956,47.83458,271.0974,-45.13462,47.34768,0.4869004,0,12587.79,-,-
+228,1720.427,256.7721,254.0747,1513.991,-252.4619,46.26075,272.7646,-45.48422,45.77478,0.4859688,0,12405.58,-,-
+229,1727.319,271.3633,270.3101,1513.53,-253.4612,49.08538,273.774,-45.84719,48.89489,0.1904961,0,12855.33,-,-
+230,1725.733,83.55854,86.01656,1517.075,-253.2313,15.10056,274.1632,-45.76354,15.54477,-0.4442099,0,7868.938,-,-
+231,1714.932,80.63452,85.00993,1465.171,-251.6651,14.48093,263.126,-45.19585,15.2667,-0.7857665,0,7696.742,-,-
+232,1703.74,70.33857,75.12929,1459.903,-250.0423,12.54947,260.469,-44.61135,13.40421,-0.8547376,0,7399.99,-,-
+233,1690.842,42.26111,47.62954,1451.979,-248.1721,7.482945,257.094,-43.94248,8.433504,-0.9505584,0,6696.475,-,-
+234,1676.749,42.07651,47.53365,1438.418,-246.1286,7.388161,252.5699,-43.21741,8.346374,-0.958212,0,6607.8,-,-
+235,1663.421,53.53508,59.06407,1433.033,-244.196,9.325438,249.6243,-42.53725,10.28855,-0.9631126,0,6783.358,-,-
+236,1648.951,14.94603,20.95827,1430.876,-242.0979,2.580847,247.0805,-41.80492,3.619027,-1.03818,0,5836.003,-,-
+237,1633.192,22.97571,29.24678,1412.904,-239.8129,3.929477,241.6454,-41.01458,5.002003,-1.072526,0,5920.51,-,-
+238,1617.433,10.63383,16.68789,1409.407,-237.5278,1.801128,238.7213,-40.23179,2.826547,-1.025419,0,5550.732,-,-
+239,1602.775,41.54221,47.10218,1399.868,-235.4024,6.972537,234.957,-39.51046,7.905733,-0.9331963,0,6152.042,-,-
+240,1589.501,35.28629,40.52882,1411.556,-233.3202,5.873478,234.9565,-38.83664,6.74611,-0.8726318,0,5915.777,-,-
+241,1576.428,43.18218,47.64097,1412.503,-231.2285,7.12865,233.1805,-38.17193,7.864722,-0.7360716,0,5992.108,-,-
+242,1567.118,110.1675,112.5089,1417.297,-229.7389,18.0794,232.5901,-37.70204,18.46364,-0.3842417,0,7414.847,-,-
+243,1564.686,183.1523,183.0908,1440.439,-229.3498,30.01016,236.021,-37.57977,30.00007,0.01008922,0,9023.852,-,-
+244,1567.427,217.0467,215.5515,1464.178,-229.7883,35.62617,240.331,-37.71759,35.38074,0.2454254,0,9810.837,-,-
+245,1572.196,226.2652,224.4664,1474.174,-230.5514,37.25229,242.708,-37.95797,36.95614,0.296151,0,10058.33,-,-
+246,1576.469,207.6484,206.8316,1476.099,-231.235,34.28015,243.6855,-38.174,34.14531,0.134843,0,9664.607,-,-
+247,1576.307,135.5947,136.7155,1470.126,-231.2091,22.38268,242.6744,-38.1658,22.5677,-0.1850223,0,8051.983,-,-
+248,1570.826,97.58784,100.1498,1447.562,-230.3322,16.05286,238.1189,-37.88884,16.47429,-0.4214295,0,7162.612,-,-
+249,1563.423,93.3472,96.77948,1436.6,-229.1477,15.28292,235.202,-37.51635,15.84486,-0.5619377,0,7011.56,-,-
+250,1553.562,43.69028,48.95279,1437.602,-227.5699,7.107912,233.8814,-37.02304,7.964062,-0.85615,0,5837.531,-,-
+251,1536.916,-44.20661,-36.98547,1424.467,-224.9065,-7.114853,229.2616,-36.19769,-5.952643,-1.162211,0,3986.473,-,-
+252,1517.233,-22.18669,-14.32253,1397.881,-221.7573,-3.525117,222.1013,-35.23375,-2.275624,-1.249493,0,4364.687,-,-
+253,1497.389,-53.24101,-44.23098,1409.758,-218.5822,-8.348521,221.0588,-34.27505,-6.935693,-1.412829,0,3616.373,-,-
+254,1471.863,-130.4236,-119.4917,1403.568,-214.4981,-20.10259,216.3364,-33.06126,-18.41763,-1.684963,0,1863.593,-,-
+255,1442.372,-131.3889,-120.0415,1380.372,-209.7795,-19.84562,208.4981,-31.68611,-18.13165,-1.713965,0,1710.311,-,-
+256,1414.871,-101.3344,-90.47707,1384.765,-205.3793,-15.01421,205.1736,-30.43002,-13.40553,-1.608679,0,2223.655,-,-
+257,1387.812,-128.4075,-117.8943,1398.759,-201.5374,-18.66164,203.2835,-29.28971,-17.13374,-1.527897,0,1551.219,-,-
+258,1362.057,-81.18473,-72.88641,1388.437,-198.4468,-11.57973,198.0387,-28.30532,-10.3961,-1.183625,0,2487.343,-,-
+259,1346.257,57.14734,60.40297,1406.698,-196.5508,8.056614,198.3159,-27.70968,8.515593,-0.4589787,0,5067.552,-,-
+260,1345.787,223.6316,221.1411,1458.938,-196.4944,31.51652,205.6088,-27.69206,31.16553,0.3509858,0,8248.818,-,-
+261,1358.712,335.1758,328.5363,1520.564,-198.0454,47.69015,216.3519,-28.1787,46.74545,0.9447021,0,10810.78,-,-
+262,1379.066,381.3473,372.8513,1561.336,-200.4879,55.07244,225.481,-28.95356,53.84549,1.226949,0,12078.98,-,-
+263,1401.382,381.5362,372.4821,1577.845,-203.2211,55.99134,231.5525,-29.82318,54.66264,1.328696,0,12310.72,-,-
+264,1424.557,404.4268,395.2643,1571.385,-206.9291,60.33209,234.4181,-30.86953,58.96523,1.366857,0,13088.93,-,-
+265,1447.437,380.9996,372.0387,1573.164,-210.5899,57.75011,238.4527,-31.92022,56.39186,1.358248,0,12733.58,-,-
+266,1469.605,395.5855,386.4926,1558.459,-214.1368,60.8793,239.8417,-32.95494,59.47992,1.399379,0,13344.98,-,-
+267,1493.117,413.4163,404.364,1556.561,-217.8987,64.64129,243.382,-34.07039,63.22589,1.415399,0,14029.7,-,-
+268,1515.124,370.6606,362.1635,1556.235,-221.4198,58.81027,246.9176,-35.13123,57.4621,1.348174,0,13182.16,-,-
+269,1535.841,392.5768,384.0481,1535.43,-224.7346,63.13926,246.9477,-36.14471,61.76757,1.371691,0,13967.67,-,-
+270,1557.969,404.1641,395.7163,1535.916,-228.275,65.93942,250.5849,-37.2431,64.56117,1.37825,0,14493.46,-,-
+271,1578.323,361.9005,354.2205,1533.499,-231.5317,59.8155,253.4591,-38.26793,58.54613,1.269371,0,13624.08,-,-
+272,1596.594,365.9951,359.3023,1514.027,-234.455,61.19253,253.1376,-39.1997,60.07353,1.119003,0,13923.13,-,-
+273,1611.991,306.308,301.4227,1516.727,-236.7387,51.70702,256.0345,-39.96322,50.88236,0.8246562,0,12542.91,-,-
+274,1621.194,240.7237,239.2504,1500.08,-238.0731,40.86791,254.6701,-40.41792,40.61778,0.2501296,0,10944.89,-,-
+275,1619.421,80.65228,83.83949,1479.456,-237.8161,13.67745,250.8941,-40.33012,14.21795,-0.5405026,0,7124.072,-,-
+276,1605.113,-17.21383,-11.11756,1423.781,-235.7414,-2.893422,239.3191,-39.62507,-1.868717,-1.024705,0,4858.117,-,-
+277,1588.762,33.42691,39.09373,1392.07,-233.2019,5.561395,231.6054,-38.79892,6.50421,-0.9428155,0,5868.674,-,-
+278,1576.67,64.67198,68.54057,1411.813,-231.2672,10.67789,233.1023,-38.18418,11.31663,-0.6387365,0,6473.178,-,-
+279,1569.348,129.7806,131.5268,1424.024,-230.0957,21.32837,234.0266,-37.81433,21.61535,-0.2869776,0,7869.233,-,-
+280,1567.91,184.9361,184.58,1446.227,-229.8656,30.36487,237.4576,-37.7419,30.3064,0.05846538,0,9088.228,-,-
+281,1571.135,226.2593,224.5955,1463.772,-230.3816,37.22619,240.8327,-37.90443,36.95245,0.2737378,0,10050.1,-,-
+282,1576.267,225.9816,223.6603,1476.112,-231.2027,37.30195,243.6564,-38.16377,36.91877,0.3831826,0,10089.52,-,-
+283,1582.797,256.7368,253.9451,1474.137,-232.2475,42.55416,244.3385,-38.49505,42.09142,0.4627355,0,10953.44,-,-
+284,1590.294,247.7538,244.7653,1482.138,-233.447,41.25972,246.8281,-38.87715,40.76203,0.4976939,0,10800.55,-,-
+285,1597.817,259.48,256.4619,1477.022,-234.6507,43.41697,247.1397,-39.26247,42.91198,0.504993,0,11183.18,-,-
+286,1605.462,252.0594,249.1839,1481.54,-235.792,42.37713,249.0819,-39.6422,41.89369,0.4834417,0,11072.04,-,-
+287,1612.273,244.6093,241.7994,1480.857,-236.7796,41.29906,250.0232,-39.97711,40.82465,0.4744069,0,10951.28,-,-
+288,1619.582,264.1354,260.9717,1480.298,-237.8394,44.79795,251.0619,-40.33809,44.26139,0.5365611,0,11532.97,-,-
+289,1628.167,272.9106,269.3519,1488.53,-239.0842,46.53159,253.7963,-40.76416,45.92483,0.606764,0,11850.25,-,-
+290,1637.464,281.6596,277.5672,1493.507,-240.4323,48.29754,256.0989,-41.22808,47.59579,0.7017493,0,12174.36,-,-
+291,1648.723,315.9747,311.2064,1498.836,-242.0648,54.55426,258.7799,-41.79343,53.73099,0.8232715,0,13179.91,-,-
+292,1661.419,315.0847,309.4717,1511.942,-243.9057,54.8195,263.0528,-42.43555,53.84293,0.9765719,0,13290.72,-,-
+293,1676.91,377.4767,370.7427,1515.183,-246.152,66.28703,266.0747,-43.22567,65.1045,1.182524,0,15168.22,-,-
+294,1695.235,377.4506,370.6307,1536.348,-248.8091,67.00676,272.7395,-44.16973,65.79607,1.21069,0,15394.91,-,-
+295,1711.21,334.656,328.7439,1539.849,-251.1254,59.96951,275.9372,-45.00105,58.91008,1.059429,0,14407.11,-,-
+296,1724.968,336.3221,330.7047,1532.175,-253.1204,60.75263,276.7694,-45.72321,59.73791,1.014722,0,14624.02,-,-
+297,1739.437,352.6945,346.9636,1536.163,-255.2184,64.2445,279.8173,-46.4889,63.20061,1.04389,0,15257.34,-,-
+298,1753.772,337.8688,332.1859,1543.632,-257.2969,62.05115,283.4951,-47.25376,61.00745,1.043697,0,15024.34,-,-
+299,1768,354.4683,348.9789,1543.913,-259.36,65.62786,285.847,-48.01908,64.61153,1.01633,0,15660.97,-,-
+300,1781.368,324.3864,319.1099,1551.056,-261.2984,60.51247,289.3409,-48.74376,59.52817,0.9843014,0,14993.15,-,-
+301,1794.521,354.1317,348.6174,1548.416,-263.2055,66.54906,290.9812,-49.46206,65.5128,1.036265,0,15980.77,-,-
+302,1809.072,355.8136,351.0595,1537.531,-265.6783,67.40732,291.2785,-50.33158,66.50668,0.90064,0,16233.5,-,-
+303,1818.449,250.8213,249.2008,1519.129,-267.4131,47.76328,289.284,-50.92281,47.4547,0.3085745,0,13466.4,-,-
+304,1817.24,138.9968,141.4679,1500.973,-267.1894,26.45123,285.6365,-50.84639,26.92148,-0.4702517,0,10373.97,-,-
+305,1805.995,41.40663,47.47704,1501.463,-265.1091,7.830961,283.9616,-50.13832,8.979017,-1.148056,0,7601.826,-,-
+306,1786.662,-29.5389,-21.43336,1487.307,-262.066,-5.526694,278.2733,-49.03223,-4.010155,-1.516539,0,5644.947,-,-
+307,1765.233,-9.004112,-0.2971662,1460.741,-258.9588,-1.664453,270.025,-47.86977,-0.05493259,-1.609521,0,6000.813,-,-
+308,1742.89,-51.89403,-43.21162,1454.259,-255.719,-9.471439,265.4241,-46.67257,-7.886769,-1.58467,0,4916.059,-,-
+309,1721.609,6.692089,14.52898,1432.916,-252.6333,1.206493,258.3354,-45.54637,2.619378,-1.412885,0,6087.888,-,-
+310,1703.539,2.78112,9.553826,1439.898,-250.0132,0.4961356,256.8694,-44.60089,1.704347,-1.208211,0,5892.252,-,-
+311,1687.591,46.44151,51.98959,1431.777,-247.7007,8.207335,253.0295,-43.77468,9.187814,-0.9804789,0,6770.191,-,-
+312,1675.688,82.54832,86.17913,1439.174,-245.9748,14.48538,252.5429,-43.16307,15.12251,-0.6371266,0,7503.956,-,-
+313,1669.373,158.849,160.7489,1447.092,-245.0591,27.76939,252.9753,-42.84033,28.10153,-0.3321361,0,9295.698,-,-
+314,1666.148,144.3642,146.3908,1468.096,-244.5915,25.18846,256.1513,-42.67598,25.54206,-0.3535975,0,8872.935,-,-
+315,1659.176,80.9875,84.69771,1461.643,-243.5805,14.07146,253.9584,-42.32175,14.7161,-0.6446441,0,7370.077,-,-
+316,1647.474,44.22477,49.65036,1438.645,-241.8837,7.629793,248.1994,-41.73053,8.565833,-0.93604,0,6480.056,-,-
+317,1631.875,-3.060596,3.384761,1421.587,-239.6219,-0.5230239,242.9343,-40.94888,0.5784202,-1.101444,0,5332.409,-,-
+318,1615.068,14.64399,21.18655,1400.088,-237.1849,2.476732,236.7962,-40.11496,3.583271,-1.106539,0,5625.969,-,-
+319,1599,8.165808,13.69355,1400.396,-234.84,1.367339,234.492,-39.32323,2.292942,-0.9256029,0,5383.467,-,-
+320,1587.324,102.0566,104.9864,1400.892,-232.9718,16.96427,232.862,-38.72555,17.45128,-0.487008,0,7388.144,-,-
+321,1584.315,184.2126,184.317,1432.856,-232.4904,30.56253,237.7238,-38.57227,30.57986,-0.01732505,0,9197.263,-,-
+322,1586.8,216.0884,214.3407,1459.362,-232.888,35.90726,242.5012,-38.69884,35.61685,0.2904055,0,9945.215,-,-
+323,1593.088,264.3147,261.1867,1468.014,-233.8941,44.09504,244.9055,-39.02003,43.5732,0.5218441,0,11258.12,-,-
+324,1602.506,282.5135,278.7549,1482.308,-235.3634,47.40972,248.752,-39.49728,46.77898,0.6307396,0,11827.97,-,-
+325,1611.978,267.9059,264.768,1490.408,-236.7368,45.2241,251.5898,-39.96258,44.69442,0.5296838,0,11550.28,-,-
+326,1618.292,219.8723,217.9924,1487.416,-237.6523,37.26114,252.0681,-40.27426,36.94254,0.3185971,0,10375.4,-,-
+327,1621.436,203.1326,202.8976,1473.143,-238.1082,34.49117,250.1344,-40.42992,34.45127,0.03990296,0,9975.896,-,-
+328,1619.475,114.6848,116.4864,1467.504,-237.8239,19.44952,248.8755,-40.33279,19.75505,-0.3055331,0,7883.321,-,-
+329,1612.367,95.7422,99.21386,1437.137,-236.7932,16.16575,242.6558,-39.98175,16.75193,-0.5861771,0,7418.253,-,-
+330,1602.009,45.53878,49.40824,1427.649,-235.2913,7.639677,239.5052,-39.47294,8.288825,-0.6491479,0,6236.569,-,-
+331,1592.927,119.488,122.0452,1412.042,-233.8683,19.93191,235.544,-39.01179,20.35848,-0.426575,0,7819.616,-,-
+332,1589.178,153.2,153.9228,1437.451,-233.2685,25.49529,239.2182,-38.82015,25.61557,-0.1202778,0,8542.789,-,-
+333,1589.299,199.3323,198.6176,1448.499,-233.2878,33.17507,241.0751,-38.82632,33.05613,0.1189398,0,9572.461,-,-
+334,1592.766,223.3128,221.0132,1462.702,-233.8426,37.24725,243.97,-39.00355,36.86369,0.383561,0,10195.02,-,-
+335,1600.84,295.6991,291.9106,1468.587,-235.1218,49.57087,246.1934,-39.41572,48.93576,0.635114,0,12151.2,-,-
+336,1611.79,283.5952,280.7952,1494.504,-236.7095,47.86698,252.2517,-39.95332,47.39437,0.4726117,0,11953.79,-,-
+337,1614.947,138.4304,138.6198,1491.798,-237.1673,23.41091,252.2883,-40.10899,23.44294,-0.032028,0,8385.68,-,-
+338,1610.836,133.6408,135.9294,1444.263,-236.5712,22.54338,243.6274,-39.90634,22.92943,-0.386052,0,8254.206,-,-
+339,1603.433,66.80159,71.53577,1440.508,-235.4978,11.21673,241.8773,-39.54269,12.01165,-0.7949207,0,6719.273,-,-
+340,1586.975,-50.01408,-42.13959,1420.652,-232.916,-8.311721,236.0947,-38.70776,-7.003079,-1.308642,0,4054.196,-,-
+341,1563.772,-69.49448,-60.21924,1386.26,-229.2035,-11.38026,227.011,-37.53387,-9.861372,-1.518892,0,3540.104,-,-
+342,1540.355,-60.0181,-51.28198,1384.303,-225.4568,-9.681256,223.2959,-36.36744,-8.272071,-1.409185,0,3666.609,-,-
+343,1519.907,-20.14798,-12.84013,1391.752,-222.1851,-3.206839,221.5172,-35.36394,-2.04369,-1.163149,0,4420.004,-,-
+344,1503.677,15.12274,21.49126,1409.21,-219.5883,2.381298,221.9008,-34.5774,3.384114,-1.002816,0,5064.231,-,-
+345,1487.904,-14.71925,-8.320971,1425.124,-217.0647,-2.293449,222.0527,-33.82148,-1.296515,-0.9969341,0,4390.665,-,-
+346,1471.513,-1.405141,5.215192,1417.748,-214.4421,-0.2165273,218.47,-33.04477,0.8036427,-1.02017,0,4599.075,-,-
+347,1454.625,-27.78295,-20.67979,1426.046,-211.74,-4.232121,217.2266,-32.25393,-3.150111,-1.082009,0,3963.305,-,-
+348,1435.789,-41.3384,-33.57402,1420.044,-208.7262,-6.215455,213.5114,-31.38313,-5.048037,-1.167417,0,3590.724,-,-
+349,1415.583,-56.71722,-48.95324,1418.84,-205.4933,-8.407733,210.3281,-30.46222,-7.256804,-1.15093,0,3173.282,-,-
+350,1396.787,-20.0392,-12.76009,1415.945,-202.6144,-2.931158,207.1119,-29.63666,-1.866434,-1.064724,0,3872.753,-,-
+351,1379.012,-41.75637,-34.70428,1429.888,-200.4814,-6.030029,206.4899,-28.95148,-5.011639,-1.01839,0,3366.848,-,-
+352,1361.345,-21.97219,-14.45412,1421.638,-198.3614,-3.132349,202.6683,-28.27834,-2.060575,-1.071774,0,3706.985,-,-
+353,1341.192,-90.98978,-82.29966,1429.137,-195.943,-12.77945,200.7213,-27.52006,-11.55893,-1.220521,0,2226.25,-,-
+354,1317.613,-89.07143,-79.15366,1402.768,-193.1136,-12.29009,193.5541,-26.64583,-10.92163,-1.368455,0,2206.923,-,-
+355,1291.294,-124.9441,-112.4108,1403.417,-189.9553,-16.89544,189.7757,-25.68651,-15.20063,-1.694815,0,1379.005,-,-
+356,1254.361,-128.8035,-112.7198,1389.266,-185.5233,-16.91915,182.489,-24.36967,-14.80647,-2.112683,0,1198.907,-,-
+357,1210.226,-133.3947,-117.4787,1387.437,-180.2271,-16.90571,175.8363,-22.84101,-14.88861,-2.017104,0,893.631,-,-
+358,1174.65,-132.9827,-120.4021,1385.962,-176.5918,-16.35808,170.4859,-21.72239,-14.81055,-1.547526,0,805.6712,-,-
+359,1147.215,-129.8415,-118.8799,1386.439,-173.9854,-15.59865,166.5613,-20.90193,-14.28176,-1.316887,0,815.5529,-,-
+360,1119.552,-129.3454,-117.5827,1387.606,-171.3574,-15.16435,162.6819,-20.08981,-13.7853,-1.379054,0,776.1663,-,-
+361,1087.993,-127.8705,-114.5555,1387.589,-168.3593,-14.56884,158.094,-19.18192,-13.05181,-1.517029,0,748.0265,-,-
+362,1052.511,-124.1775,-112.8753,1387.932,-164.9885,-13.68668,152.9761,-18.18482,-12.44097,-1.245708,0,753.9789,-,-
+363,1031.579,49.95445,52.90937,1389.989,-163,5.396414,150.1559,-17.60835,5.715624,-0.3192098,0,3708.584,-,-
+364,1037.853,308.0561,301.4563,1456.12,-163.596,33.48068,158.2565,-17.78023,32.76339,0.7172915,0,7887.582,-,-
+365,1064.428,472.139,460.0159,1550.137,-166.1207,52.62774,172.7885,-18.51691,51.27643,1.351314,0,10804.42,-,-
+366,1098.567,472.2995,457.4606,1609.05,-169.3639,54.33412,185.1078,-19.4839,52.62703,1.707089,0,11054.97,-,-
+367,1138.801,605.8385,588.197,1608.355,-173.1861,72.24925,191.8043,-20.6533,70.14542,2.103835,0,14049.38,-,-
+368,1186.926,641.7589,622.9606,1655.478,-177.758,79.76716,205.767,-22.09436,77.43063,2.336525,0,15372.4,-,-
+369,1233.348,580.6956,563.6011,1669.101,-183.0018,75.00027,215.5743,-23.63576,72.7924,2.207861,0,14661.57,-,-
+370,1273.076,512.6209,498.4388,1648.465,-187.7691,68.34068,219.7672,-25.03267,66.44997,1.890707,0,13657.11,-,-
+371,1304.85,425.2531,412.7461,1625.052,-191.582,58.10811,222.0529,-26.17845,56.3991,1.709009,0,12241.55,-,-
+372,1335.952,504.8294,491.8666,1593.257,-195.3142,70.62592,222.8976,-27.32457,68.81242,1.813498,0,14317.25,-,-
+373,1369.93,490.2999,477.2198,1622.116,-199.3916,70.33781,232.7067,-28.60447,68.46135,1.876459,0,14457.49,-,-
+374,1401.744,468.7929,456.264,1616.667,-203.279,68.81425,237.311,-29.83939,66.97513,1.839116,0,14392.47,-,-
+375,1432.914,483.7137,471.7006,1599.652,-208.2662,72.58337,240.0349,-31.25126,70.78075,1.802626,0,15080.19,-,-
+376,1462.162,436.7239,425.1831,1596.314,-212.9459,66.86996,244.4233,-32.60569,65.10287,1.767097,0,14261.74,-,-
+377,1490.927,480.486,469.1049,1571.033,-217.5483,75.01804,245.2846,-33.96571,73.24111,1.776927,0,15616.22,-,-
+378,1519.369,436.4427,425.8371,1577.242,-222.099,69.44151,250.9518,-35.33772,67.75407,1.687436,0,14859.95,-,-
+379,1544.292,415.7352,405.7281,1554.688,-226.0867,67.23182,251.4208,-36.56226,65.61349,1.618328,0,14626.53,-,-
+380,1569.657,450.4597,441.1093,1539.65,-230.1451,74.04391,253.0786,-37.8299,72.50694,1.536973,0,15777.34,-,-
+381,1591.342,345.4981,338.5421,1544.326,-233.6147,57.57551,257.3542,-38.93071,56.41633,1.159179,0,13337.84,-,-
+382,1604.709,283.4627,280.1183,1508.891,-235.6828,47.63442,253.5612,-39.60525,47.0724,0.5620195,0,11875.73,-,-
+383,1608.203,143.5103,144.139,1490.184,-236.1894,24.16865,250.9628,-39.77681,24.27454,-0.1058871,0,8458.497,-,-
+384,1601.539,74.29067,77.43728,1443.157,-235.2231,12.45949,242.0358,-39.44992,12.98722,-0.5277263,0,6874.916,-,-
+385,1592.376,89.85713,92.2757,1421.737,-233.7802,14.98397,237.0793,-38.98359,15.38727,-0.4033027,0,7154.643,-,-
+386,1589.407,199.4428,199.1668,1427.533,-233.3051,33.19573,237.602,-38.83184,33.14979,0.04594007,0,9575.751,-,-
+387,1593.76,240.9254,238.2671,1462.429,-234.0016,40.21001,244.0766,-39.05444,39.76634,0.4436651,0,10660.73,-,-
+388,1602.748,297.3705,293.2341,1474.775,-235.3985,49.91047,247.5253,-39.50913,49.21623,0.6942437,0,12214.5,-,-
+389,1614.531,301.7505,296.6793,1495.604,-237.107,51.01796,252.8668,-40.08846,50.16054,0.8574169,0,12451.9,-,-
+390,1628.221,340.9123,334.6385,1499.969,-239.092,58.1279,255.755,-40.76684,57.05817,1.069724,0,13608.33,-,-
+391,1646.023,390.2596,382.8052,1515.593,-241.6733,67.26948,261.2444,-41.6575,65.98457,1.28491,0,15139.19,-,-
+392,1665.665,383.9178,376.4071,1533.937,-244.5214,66.96603,267.5616,-42.65139,65.65594,1.310091,0,15207.19,-,-
+393,1683.789,364.2838,357.7896,1535.786,-247.1494,64.23269,270.799,-43.57886,63.0876,1.145088,0,14887.95,-,-
+394,1698.339,314.5844,309.8011,1533.677,-249.2591,55.94872,272.7638,-44.33065,55.09802,0.8507023,0,13691.09,-,-
+395,1707.865,263.7242,261.1171,1522.947,-250.6404,47.16634,272.3749,-44.82634,46.70007,0.4662747,0,12452.85,-,-
+396,1711.465,194.5544,193.6731,1510.811,-251.1624,34.86886,270.774,-45.01438,34.71091,0.1579515,0,10697.68,-,-
+397,1712.298,207.0906,206.6333,1493.039,-251.2832,37.13371,267.7189,-45.05795,37.05171,0.08200029,0,11035.88,-,-
+398,1713.763,207.518,206.5738,1496.776,-251.4956,37.24218,268.6187,-45.13462,37.07273,0.1694526,0,11062.36,-,-
+399,1717.041,245.4003,243.4256,1497.894,-251.9709,44.12496,269.3335,-45.30642,43.76989,0.3550672,0,12075.98,-,-
+400,1723.678,278.1444,274.8722,1509.571,-252.9333,50.20594,272.4823,-45.65525,49.61529,0.5906488,0,12995.62,-,-
+401,1733.472,312.8288,308.6489,1520.543,-254.3535,56.78742,276.0223,-46.17247,56.02866,0.7587583,0,14078.44,-,-
+402,1744.677,309.4147,305.9848,1532.032,-255.9782,56.53073,279.9055,-46.76776,55.90408,0.6266488,0,14122.87,-,-
+403,1750.736,210.8492,208.6767,1533.093,-256.8567,38.65639,281.0721,-47.09125,38.25808,0.3983127,0,11538.16,-,-
+404,1755.6,287.1107,283.7597,1511.612,-257.562,52.78415,277.9037,-47.35175,52.16808,0.6160654,0,13640.27,-,-
+405,1767.544,357.9668,352.1223,1532.588,-259.2939,66.2585,283.6771,-47.99446,65.1767,1.081797,0,15752.27,-,-
+406,1784.929,404.9585,396.4201,1552.545,-261.8147,75.69376,290.1976,-48.9377,74.09778,1.595975,0,17264.1,-,-
+407,1810.361,530.4586,518.7327,1544.525,-265.9168,100.5646,292.8119,-50.41265,98.34163,2.223014,0,21454.8,-,-
+408,1843.734,576.4902,563.3867,1501.429,-272.0908,111.3061,289.8889,-52.53403,108.7761,2.529962,0,23444.36,-,-
+409,1876.234,522.6307,511.4156,1444.908,-278.1033,102.6858,283.8938,-54.64139,100.4823,2.203547,0,22315.5,-,-
+410,1900.229,411.6319,402.8081,1386.344,-282.5424,81.91126,275.8706,-56.22353,80.1554,1.755862,0,19344.58,-,-
+411,1920.624,451.3123,446.7061,1323.391,-286.3154,90.77122,266.1701,-57.58584,89.84477,0.9264442,0,20889.76,-,-
+412,1923.486,-34.25552,57.3587,1326.287,-286.8449,-6.899985,267.1499,-57.77831,11.55359,-18.45358,0,7255.57,-,-
+413,1384.726,-178.225,-46.32089,1419.656,-201.1671,-25.84409,205.8617,-29.17087,-6.716908,-19.12718,0,486.6433,-,-
+414,1365.214,-78.07755,-68.25497,1369.71,-198.8257,-11.16235,195.8205,-28.42509,-9.758064,-1.404284,0,2561.288,-,-
+415,1335.167,-123.8178,-111.9469,1407.562,-195.22,-17.31201,196.803,-27.29535,-15.65223,-1.659778,0,1514.571,-,-
+416,1305.561,-77.37282,-69.03462,1390.015,-191.6673,-10.57826,190.0402,-26.20438,-9.438278,-1.139981,0,2404.825,-,-
+417,1293.54,186.5652,188.9331,1408.216,-190.2248,25.27197,190.7558,-25.7677,25.59272,-0.3207538,0,7222.007,-,-
+418,1293.716,383.4901,382.4276,1507.452,-190.2459,51.95432,204.2261,-25.77406,51.81037,0.1439488,0,11243.82,-,-
+419,1298.87,384.0081,381.2683,1580.738,-190.8644,52.23177,215.0078,-25.96087,51.8591,0.3726663,0,11309.08,-,-
+420,1307.468,522.9586,518.4025,1580.556,-191.8962,71.6023,216.4061,-26.27399,70.9785,0.6238022,0,14342.47,-,-
+421,1321.719,611.2016,604.6701,1631.495,-193.6063,84.59647,225.8154,-26.79706,83.69244,0.9040235,0,16646.89,-,-
+422,1340.242,699.7167,691.821,1663.533,-195.829,98.2051,233.4765,-27.48457,97.09694,1.108163,0,18950.69,-,-
+423,1361.364,724.2514,715.9854,1695.823,-198.3637,103.2505,241.7594,-28.27906,102.0721,1.178417,0,19870.33,-,-
+424,1381.797,684.8949,677.8293,1705.078,-200.8156,99.10528,246.7273,-29.05831,98.08289,1.022391,0,19256.83,-,-
+425,1396.943,529.1754,523.9507,1691.551,-202.6332,77.41175,247.4528,-29.6427,76.64746,0.7642896,0,15779.22,-,-
+426,1408.093,537.5551,532.6352,1631.859,-204.2949,79.26527,240.6261,-30.12433,78.5398,0.725465,0,16109.91,-,-
+427,1421.649,629.5908,623.8778,1630.38,-206.4639,93.73016,242.7225,-30.73725,92.87965,0.8505152,0,18509.87,-,-
+428,1436.79,608.42,602.3676,1658.8,-208.8864,91.54306,249.5836,-31.42911,90.6324,0.9106572,0,18202.61,-,-
+429,1452.067,644.384,638.7233,1645.983,-211.3307,97.98509,250.2884,-32.13497,97.12432,0.8607714,0,19258.36,-,-
+430,1465.261,536.0519,531.5311,1654.692,-213.4418,82.25276,253.8989,-32.75088,81.55907,0.6936937,0,16681.59,-,-
+431,1474.817,509.7238,506.4787,1613.342,-214.9707,78.72301,249.1685,-33.20061,78.22182,0.5011798,0,16147.56,-,-
+432,1481.586,432.3053,429.8951,1602.13,-216.0538,67.07274,248.5726,-33.52103,66.6988,0.3739358,0,14361.1,-,-
+433,1486.936,458.5087,456.0222,1573.13,-216.9098,71.39512,244.9546,-33.77536,71.00793,0.3871922,0,15046.56,-,-
+434,1494.076,506.1843,502.6246,1579.986,-218.0522,79.19723,247.2034,-34.11628,78.64029,0.5569363,0,16266.91,-,-
+435,1504.805,604.6403,599.566,1592.864,-219.7688,95.28092,251.008,-34.63179,94.48131,0.7996156,0,18998.12,-,-
+436,1519.545,670.5818,664.8558,1621.508,-222.1272,106.7073,258.0247,-35.3463,105.7961,0.9111502,0,20761.09,-,-
+437,1533.59,587.5084,582.5294,1639.166,-224.3744,94.35219,263.2453,-36.03389,93.55257,0.7996112,0,18932,-,-
+438,1544.594,560.525,556.6104,1607.281,-226.1351,90.66463,259.9769,-36.57723,90.03146,0.6331763,0,18361.7,-,-
+439,1553.279,503.4441,500.2912,1595.353,-227.5246,81.88972,259.4985,-37.00893,81.37687,0.5128464,0,16965.27,-,-
+440,1560.448,506.5672,503.8667,1573.776,-228.6717,82.77801,257.1702,-37.36718,82.33672,0.4412895,0,17141.2,-,-
+441,1566.855,477.9939,475.679,1572.721,-229.6968,78.42956,258.0532,-37.6888,78.04972,0.379834,0,16469,-,-
+442,1572.087,464.4497,462.8513,1561.492,-230.5339,76.46169,257.0662,-37.95247,76.19854,0.2631544,0,16178.95,-,-
+443,1574.895,385.8751,385.4162,1556.261,-230.9832,63.63954,256.6626,-38.09436,63.56385,0.07568723,0,14207.46,-,-
+444,1574.396,336.5762,336.8507,1530.413,-230.9034,55.49144,252.3197,-38.06912,55.5367,-0.04526398,0,12928.05,-,-
+445,1573.515,370.0388,370.3094,1514.181,-230.7624,60.97429,249.5039,-38.02459,61.01888,-0.04459349,0,13783.57,-,-
+446,1573.036,351.231,351.762,1525.527,-230.6858,57.85757,251.2969,-38.00039,57.94503,-0.08746444,0,13292.42,-,-
+447,1570.845,302.4879,303.7384,1520.017,-230.3352,49.7588,250.0405,-37.88979,49.96451,-0.2057152,0,12009.48,-,-
+448,1566.747,274.2476,276.4426,1504.949,-229.6795,44.99563,246.916,-37.68337,45.35576,-0.3601327,0,11236.28,-,-
+449,1559.803,187.185,190.7785,1497.569,-228.5685,30.57521,244.6163,-37.33488,31.16218,-0.5869667,0,9076.522,-,-
+450,1548.662,104.609,109.3241,1471.071,-226.7859,16.96501,238.5716,-36.77912,17.72969,-0.764681,0,7150.071,-,-
+451,1536.094,122.8974,127.9528,1445.762,-224.7751,19.76921,232.5643,-36.15718,20.5824,-0.8131958,0,7462.01,-,-
+452,1523.252,84.97137,90.25345,1455.26,-222.7203,13.55417,232.1351,-35.52713,14.39674,-0.8425692,0,6518.274,-,-
+453,1509.539,80.57793,85.68937,1445.192,-220.5262,12.73764,228.4539,-34.86047,13.54565,-0.808009,0,6346.456,-,-
+454,1497.577,144.4989,148.8918,1446.358,-218.6123,22.66117,226.8265,-34.28407,23.35009,-0.6889254,0,7649.837,-,-
+455,1487.474,146.036,149.7083,1471.516,-216.9958,22.74772,229.215,-33.80099,23.31975,-0.572032,0,7607.029,-,-
+456,1479.131,207.4677,210.3907,1474.023,-215.6609,32.13555,228.3177,-33.40464,32.58831,-0.4527602,0,8917.78,-,-
+457,1472.793,220.2598,221.8425,1497.623,-214.6469,33.97078,230.9792,-33.1051,34.21489,-0.2441073,0,9162.359,-,-
+458,1471.189,389.6774,389.3871,1502.392,-214.3902,60.03469,231.4623,-33.02951,59.98996,0.04473384,0,13209.04,-,-
+459,1474.25,402.9991,401.2558,1561.989,-214.88,62.21626,241.1447,-33.17384,61.94712,0.2691395,0,13580.17,-,-
+460,1479.943,495.7501,493.1349,1564.802,-215.7909,76.83099,242.5119,-33.44311,76.42569,0.4052987,0,15866.4,-,-
+461,1487.386,475.4453,472.6752,1595.227,-216.9818,74.05475,248.4704,-33.79679,73.62328,0.4314715,0,15457.79,-,-
+462,1493.87,463.0774,460.917,1586.094,-218.0192,72.44276,248.1249,-34.10642,72.10479,0.3379764,0,15229.53,-,-
+463,1498.252,397.6682,395.5808,1580.579,-218.7203,62.39278,247.9875,-34.31647,62.06528,0.3275012,0,13701.75,-,-
+464,1504.355,533.5306,530.3917,1555.544,-219.6968,84.05011,245.0536,-34.61008,83.55563,0.4944805,0,17123.92,-,-
+465,1514.009,540.5781,536.9656,1599.469,-221.2414,85.70686,253.5904,-35.07709,85.13411,0.5727456,0,17435.99,-,-
+466,1522.518,495.3256,492.5338,1599.181,-222.6029,78.97358,254.9697,-35.49129,78.52847,0.445111,0,16350.07,-,-
+467,1528.054,429.4737,427.6122,1582.052,-223.4886,68.72328,253.1559,-35.76208,68.42541,0.2978739,0,14784.54,-,-
+468,1531.879,431.5416,430.0217,1558.293,-224.1006,69.22704,249.9783,-35.94978,68.98322,0.2438217,0,14874.62,-,-
+469,1535.693,431.3936,429.8054,1557.797,-224.7109,69.37559,250.5208,-36.13742,69.12019,0.2553996,0,14911.4,-,-
+470,1539.86,447.7018,446.2173,1556.386,-225.3776,72.1936,250.9731,-36.34298,71.95422,0.2393776,0,15346.86,-,-
+471,1543.156,399.8088,398.9395,1560.995,-225.905,64.60867,252.255,-36.506,64.46819,0.1404738,0,14231.93,-,-
+472,1544.232,362.5091,362.5403,1544.48,-226.0771,58.62193,249.7603,-36.5593,58.62698,-0.00504719,0,13279.3,-,-
+473,1542.999,309.6862,310.3535,1532.278,-225.8799,50.03986,247.5892,-36.49823,50.14769,-0.1078344,0,11901.05,-,-
+474,1540.877,326.3504,327.2668,1514.84,-225.5403,52.65999,244.4349,-36.39324,52.80785,-0.1478629,0,12309.3,-,-
+475,1538.393,293.9112,294.9153,1521.324,-225.1429,47.34913,245.0855,-36.27055,47.5109,-0.1617708,0,11444.64,-,-
+476,1535.83,321.808,322.5616,1510.893,-224.7328,51.75694,242.9995,-36.14417,51.87814,-0.1212024,0,12138.53,-,-
+477,1534.607,344.9728,345.0331,1520.777,-224.5371,55.4384,244.3945,-36.08394,55.44809,-0.009694445,0,12724.29,-,-
+478,1535.527,405.6983,404.6149,1528.328,-224.6843,65.2363,245.7552,-36.12924,65.06208,0.1742181,0,14292.96,-,-
+479,1540.046,486.825,484.9195,1547.495,-225.4074,78.51184,249.5696,-36.35218,78.20454,0.3072998,0,16353.49,-,-
+480,1545.102,428.98,428.485,1573.534,-226.2163,69.41013,254.6021,-36.60241,69.33004,0.08009321,0,14952.98,-,-
+481,1542.54,191.4757,193.5292,1555.348,-225.8064,30.92992,251.2422,-36.47551,31.26162,-0.3317033,0,9040.489,-,-
+482,1534.764,221.9736,225.0408,1476.059,-224.5622,35.67562,237.2324,-36.09167,36.16859,-0.4929654,0,9674.445,-,-
+483,1527.125,190.233,193.5882,1488.666,-223.34,30.42209,238.0676,-35.71657,30.95866,-0.5365708,0,8895.159,-,-
+484,1517.892,154.4447,158.2406,1480.077,-221.8627,24.54949,235.263,-35.2658,25.15287,-0.6033762,0,8026.633,-,-
+485,1508.043,159.8237,163.598,1470,-220.2869,25.23966,232.1451,-34.78812,25.83571,-0.5960492,0,8071.437,-,-
+486,1498.927,176.6108,180.0971,1474.139,-218.8283,27.72211,231.3915,-34.34888,28.26935,-0.54724,0,8376.233,-,-
+487,1490.525,182.1619,185.2187,1482.179,-217.484,28.43318,231.3495,-33.94652,28.91031,-0.4771313,0,8435.916,-,-
+488,1483.571,228.5634,230.5916,1485.842,-216.3714,35.50943,230.8392,-33.61528,35.82453,-0.3151056,0,9434.749,-,-
+489,1480.344,324.2097,324.8273,1503.097,-215.855,50.2594,233.012,-33.46212,50.35513,-0.09572835,0,11613.84,-,-
+490,1480.471,358.5013,358.256,1537.043,-215.8754,55.58009,238.2948,-33.46814,55.54207,0.03801758,0,12501.45,-,-
+491,1481.576,363.02,362.7419,1548.887,-216.0522,56.32265,240.3103,-33.52055,56.2795,0.04314645,0,12629.92,-,-
+492,1481.869,327.409,327.5743,1550.485,-216.099,50.80764,240.6057,-33.53446,50.83329,-0.02564735,0,11712.65,-,-
+493,1480.745,307.3625,308.0763,1538.207,-215.9192,47.66063,238.5194,-33.48113,47.77131,-0.1106793,0,11217.69,-,-
+494,1478.28,274.1358,275.0138,1531.826,-215.5248,42.43763,237.1345,-33.36435,42.57355,-0.1359183,0,10437.99,-,-
+495,1476.333,325.8792,326.5273,1520.411,-215.2133,50.38132,235.0574,-33.27224,50.48153,-0.1002114,0,11614.57,-,-
+496,1475.023,297.8968,298.3423,1539.286,-215.0037,46.01434,237.7643,-33.21034,46.08316,-0.06882124,0,10957.26,-,-
+497,1474.094,340.1422,340.4324,1529.474,-214.855,52.50665,236.0999,-33.16648,52.55144,-0.04478729,0,11959.52,-,-
+498,1473.565,312.9851,313.2517,1544.752,-214.7704,48.29715,238.3728,-33.14151,48.33829,-0.04113697,0,11291.66,-,-
+499,1472.754,328.9682,329.12,1535.252,-214.6407,50.73559,236.7764,-33.10326,50.75901,-0.02341843,0,11656.56,-,-
+500,1472.802,345.9958,346.0173,1540.91,-214.6483,53.36343,237.6568,-33.10553,53.36675,-0.003314961,0,12097.14,-,-
+501,1472.646,321.1821,321.2073,1547.083,-214.6234,49.53114,238.5837,-33.09817,49.53503,-0.003895649,0,11472.36,-,-
+502,1472.675,353.1233,353.1038,1538.152,-214.628,54.45803,237.211,-33.09954,54.45502,0.003007802,0,12280.01,-,-
+503,1472.744,322.9323,322.7395,1549.595,-214.639,49.80436,238.9869,-33.10279,49.77462,0.02974279,0,11513.19,-,-
+504,1473.644,385.9948,385.3036,1538.441,-214.7831,59.56659,237.4117,-33.14524,59.45992,0.1066645,0,13139.82,-,-
+505,1476.216,388.8623,388.0122,1560.139,-215.1945,60.11383,241.1802,-33.2667,59.98241,0.1314195,0,13241.13,-,-
+506,1477.918,353.8514,353.3008,1560.743,-215.4669,54.76459,241.5519,-33.34721,54.67937,0.08522052,0,12354.27,-,-
+507,1478.984,364.8682,364.5258,1547.979,-215.6375,56.51037,239.7491,-33.39768,56.45734,0.05302887,0,12650.28,-,-
+508,1479.639,338.5515,338.1037,1551.761,-215.7422,52.45769,240.4413,-33.42871,52.3883,0.06938843,0,11977.05,-,-
+509,1481.234,402.2184,401.2701,1541.828,-215.9974,62.3899,239.1599,-33.50433,62.24279,0.1471056,0,13635.29,-,-
+510,1484.403,401.4423,400.0506,1563.435,-216.5045,62.40273,243.0302,-33.65482,62.18639,0.2163339,0,13650.18,-,-
+511,1488.227,430.0432,428.6835,1561.949,-217.1163,67.02085,243.4248,-33.83688,66.80894,0.2119178,0,14377.04,-,-
+512,1491.239,372.1174,371.1468,1571.248,-217.5983,58.11066,245.3695,-33.98062,57.95909,0.1515695,0,12967.23,-,-
+513,1493.107,387.3315,386.3892,1550.29,-217.8971,60.56229,242.4,-34.06992,60.41497,0.1473248,0,13380.19,-,-
+514,1495.973,412.0313,410.963,1554.727,-218.3557,64.54797,243.5604,-34.20715,64.38062,0.1673616,0,14026.67,-,-
+515,1498.477,375.0598,374.2717,1562.719,-218.7563,58.85443,245.222,-34.32728,58.73077,0.1236596,0,13119.81,-,-
+516,1499.935,372.0767,372.1252,1549.345,-218.9896,58.44314,243.3601,-34.39732,58.45076,-0.00761813,0,13058.14,-,-
+517,1498.233,251.137,253.021,1549.075,-218.7173,39.40204,243.0415,-34.31556,39.69763,-0.295586,0,10063.56,-,-
+518,1490.447,131.9827,135.6745,1508.764,-217.4715,20.59975,235.4867,-33.94279,21.17598,-0.5762284,0,7316.324,-,-
+519,1479.659,127.5845,131.7829,1468.923,-215.7455,19.76917,227.6089,-33.42966,20.41969,-0.6505256,0,7135.934,-,-
+520,1469.35,143.0663,147.2034,1469.76,-214.096,22.01361,226.1519,-32.94294,22.65018,-0.6365749,0,7402.519,-,-
+521,1458.865,114.3028,118.3244,1477.87,-212.4184,17.46226,225.7772,-32.45158,18.07665,-0.614387,0,6764.674,-,-
+522,1449.143,166.2722,169.9921,1469.594,-210.8629,25.23245,223.0166,-31.99926,25.79696,-0.5645058,0,7765.831,-,-
+523,1440.174,137.6556,141.2635,1490.772,-209.4278,20.76049,224.8303,-31.58479,21.3046,-0.5441113,0,7128.309,-,-
+524,1431.009,153.2074,156.7576,1482.36,-207.9614,22.95888,222.139,-31.16404,23.49089,-0.5320121,0,7385.289,-,-
+525,1422.334,150.6001,154.4159,1490.136,-206.5734,22.43136,221.9504,-30.76838,22.9997,-0.5683395,0,7296.102,-,-
+526,1411.819,76.20674,80.24406,1491.677,-204.891,11.26681,220.5375,-30.29218,11.86371,-0.5968991,0,5821.389,-,-
+527,1402.048,173.1548,176.6389,1465.84,-203.3277,25.42295,215.2178,-29.853,25.93449,-0.5115367,0,7637.221,-,-
+528,1394.321,150.2353,153.2597,1502.793,-202.3185,21.9363,219.4272,-29.54113,22.3779,-0.4415985,0,7152.884,-,-
+529,1386.849,179.096,181.7403,1494.142,-201.4219,26.0102,216.9949,-29.2526,26.39423,-0.3840317,0,7660.026,-,-
+530,1381.039,210.4435,212.9878,1504.943,-200.7247,30.43478,217.648,-29.02921,30.80274,-0.3679626,0,8220.897,-,-
+531,1374.056,129.7528,132.8471,1516.817,-199.8867,18.67024,218.2561,-28.76186,19.11548,-0.4452441,0,6633.677,-,-
+532,1365.478,143.914,147.1495,1486.463,-198.8574,20.57863,212.5531,-28.43512,21.04128,-0.4626492,0,6851.919,-,-
+533,1357.8,159.6865,162.4864,1491.773,-197.936,22.70559,212.1129,-28.14422,23.10369,-0.3981024,0,7106.681,-,-
+534,1351.413,190.5902,192.4743,1497.665,-197.1696,26.97226,211.9491,-27.90336,27.2389,-0.2666436,0,7659.776,-,-
+535,1348.342,286.3414,286.85,1509.134,-196.801,40.43084,213.0868,-27.78792,40.50266,-0.07181839,0,9585.041,-,-
+536,1348.86,330.6559,329.3944,1544.837,-196.8632,46.70591,218.2117,-27.80737,46.52771,0.178195,0,10605.21,-,-
+537,1354.67,494.7927,491.6782,1560.964,-197.5604,70.19164,221.4395,-28.02606,69.74982,0.4418204,0,14345.73,-,-
+538,1364.49,491.9853,487.856,1621.712,-198.7388,70.29932,231.7249,-28.3976,69.70929,0.5900249,0,14419.66,-,-
+539,1375.415,544.679,540.2844,1620.529,-200.0498,78.45182,233.4099,-28.8138,77.81886,0.632963,0,15841.52,-,-
+540,1386.575,507.5116,503.5273,1640.111,-201.389,73.69159,238.147,-29.24204,73.11307,0.578518,0,15110.09,-,-
+541,1395.456,462.2859,458.9712,1626.606,-202.4547,67.55467,237.6988,-29.58508,67.07029,0.4843822,0,14152.47,-,-
+542,1403.241,469.5699,466.6146,1608.938,-203.5186,69.00191,236.4286,-29.90645,68.56764,0.4342721,0,14426.95,-,-
+543,1410.313,438.7051,436.1608,1609.633,-204.6501,64.79132,237.7229,-30.22429,64.41555,0.3757743,0,13760.98,-,-
+544,1416.035,420.7365,418.8033,1596.668,-205.5656,62.38969,236.7648,-30.48268,62.10302,0.2866674,0,13390.25,-,-
+545,1420.035,374.5527,373.1561,1589.05,-206.2056,55.69813,236.3008,-30.66395,55.49044,0.2076918,0,12293.12,-,-
+546,1423.057,384.3686,383.4777,1571.226,-206.6891,57.27944,234.1475,-30.80126,57.14668,0.132761,0,12562.83,-,-
+547,1424.515,314.8121,314.5319,1574.593,-206.9224,46.96206,234.8897,-30.86762,46.92026,0.04179643,0,10959.25,-,-
+548,1424.466,326.113,326.146,1549.042,-206.9146,48.64618,231.0701,-30.86539,48.65111,-0.004927215,0,11217.66,-,-
+549,1424.349,311.0687,311.854,1553.257,-206.8958,46.39822,231.6799,-30.86006,46.51535,-0.1171295,0,10872.26,-,-
+550,1420.514,179.9399,182.359,1549.022,-206.2822,26.76711,230.4261,-30.6857,27.12698,-0.3598669,0,7852.181,-,-
+551,1412.171,130.8902,135.1237,1502.499,-204.9474,19.35634,222.1929,-30.30807,19.98239,-0.6260524,0,6872.082,-,-
+552,1399.202,-7.683547,-1.510408,1487.039,-202.9042,-1.125825,217.887,-29.73036,-0.2213112,-0.9045135,0,4140.987,-,-
+553,1381.088,-68.62926,-61.02568,1434.581,-200.7306,-9.925657,207.4794,-29.0311,-8.825974,-1.099684,0,2802.109,-,-
+554,1360.959,-85.27389,-77.00719,1411.383,-198.3151,-12.15317,201.1494,-28.26373,-10.97501,-1.178164,0,2397.81,-,-
+555,1339.52,-117.0472,-107.9208,1405.01,-195.7424,-16.41871,197.0867,-27.45761,-15.13851,-1.2802,0,1669.268,-,-
+556,1315.038,-128.0761,-114.6731,1392.79,-192.8046,-17.63741,191.8018,-26.5512,-15.79168,-1.845734,0,1373.009,-,-
+557,1271.67,-124.5114,-102.9958,1387.833,-187.6004,-16.58105,184.8164,-24.98255,-13.71585,-2.865201,0,1338.234,-,-
+558,1205.943,-125.6211,-96.10174,1388.263,-179.7132,-15.8642,175.3183,-22.69527,-12.13631,-3.727889,0,1015.852,-,-
+559,1122.19,-116.9366,-85.40859,1386.876,-171.608,-13.74186,162.9794,-20.1666,-10.03683,-3.705031,0,1010.047,-,-
+560,1048.169,-120.8867,-94.41994,1390.552,-164.5761,-13.26901,152.6325,-18.06453,-10.36391,-2.905101,0,806.8251,-,-
+561,990.1788,-112.9771,-89.17129,1373.891,-159.4599,-11.71474,142.4605,-16.5346,-9.246284,-2.468457,0,832.3314,-,-
+562,928.2859,-119.1225,-94.77313,1278.239,-156.0557,-11.57989,124.2574,-15.17016,-9.212884,-2.367003,0,661.3349,-,-
+563,867.8992,-123.8481,-99.24525,1179.598,-152.7345,-11.25608,107.2092,-13.88145,-9.020022,-2.23606,0,517.2462,-,-
+564,804.412,-128.6412,-101.21,1076.284,-149.2427,-10.83645,90.66385,-12.57188,-8.525709,-2.310745,0,278.4907,-,-
+565,729.0021,-89.08075,-108.1997,953.2133,-148.645,-6.800506,72.76918,-11.3477,-8.260065,1.459559,0,751.1493,-,-
+566,887.2314,-74.81737,-83.88269,1230.68,-153.7977,-6.95133,114.3433,-14.28945,-7.793596,0.8422656,0,1365.548,-,-
+567,782.4908,-139.2741,-95.45618,1059.712,-148.9125,-11.41243,86.83521,-12.20222,-7.821894,-3.590538,0,121.5468,-,-
+568,665.2287,-99.74484,-97.38823,843.5703,-148.3261,-6.948483,58.76529,-10.33278,-6.784316,-0.1641676,0,612.6461,-,-
+569,772.3559,-67.94436,-57.31413,1043.187,-148.8618,-5.495402,84.37395,-12.04008,-4.63562,-0.8597825,0,1020.428,-,-
+570,600,-136.1265,-99.91708,768.4518,-148,-8.553081,48.28325,-9.299114,-6.277975,-2.275105,0,117.0501,-,-
+571,614.9388,-61.82196,-82.11992,775.2047,-148.0747,-3.981102,49.92027,-9.535453,-5.288214,1.307112,0,880.9238,-,-
+572,696.7551,-50.55316,-47.96172,934.6902,-148.4838,-3.688562,68.19876,-10.83397,-3.49948,-0.1890821,0,1163.827,-,-
+573,600,-27.73392,-20.42477,779.2356,-148,-1.742574,48.96082,-9.299114,-1.283326,-0.4592476,0,1185.596,-,-
+574,664.3683,-22.96758,-22.96758,894.2432,-148.3218,-1.597912,62.21472,-10.31912,-1.597912,0,0,1367.756,-,-
+575,600,-41.80407,-28.30989,791.7131,-148,-2.626627,49.7448,-9.299114,-1.778763,-0.8478643,0,1046.891,-,-
+576,600,-12.09029,-12.09029,785.5735,-148,-0.7596555,49.35904,-9.299114,-0.7596555,0,0,1339.813,-,-
+577,600,-2.763897,-2.763897,796.7161,-148,-0.1736608,50.05915,-9.299114,-0.1736608,0,0,1431.753,-,-
+578,600,0,0,800.2136,-148,0,50.2789,-9.299114,0,0,0,1459,-,-
+579,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+580,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+581,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+582,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+583,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+584,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+585,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+586,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+587,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+588,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+589,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+590,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+591,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+592,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+593,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+594,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+595,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+596,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+597,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+598,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+599,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+600,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+601,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+602,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+603,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+604,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+605,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+606,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+607,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+608,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+609,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+610,600,3.787888E-06,3.787888E-06,801.2501,-148,2.38E-07,50.34402,-9.299114,2.38E-07,0,0,1459,-,-
+611,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+612,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+613,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+614,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+615,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+616,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+617,600,3.787888E-06,3.787888E-06,801.2501,-148,2.38E-07,50.34402,-9.299114,2.38E-07,0,0,1459,-,-
+618,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+619,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+620,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+621,600,9.170536,0,801.2501,-148,0.5762018,50.34402,-9.299114,0,0.5762018,0,1546.074,-,-
+622,644.4445,32.42692,23.88884,875.1463,-148.2222,2.188366,59.06019,-10.00294,1.612164,0.5762018,0,1860.227,-,-
+623,644.4445,127.9108,96.89331,884.1046,-148.2222,8.632195,59.66475,-10.00294,6.538949,2.093246,0,2766.846,-,-
+624,785.0072,47.83702,10.80489,1134.905,-148.925,3.932479,93.29571,-12.2425,0.8882241,3.044255,0,2385.152,-,-
+625,841.1434,12.50401,36.26813,1201.56,-151.2629,1.101408,105.8386,-13.32389,3.194654,-2.093246,0,2232.323,-,-
+626,644.4445,111.5551,63.44174,878.0648,-148.2222,7.528418,59.25714,-10.00294,4.281434,3.246984,0,2611.55,-,-
+627,1009.552,50.94508,-0.9624376,1464.204,-160.9074,5.385916,154.7957,-17.01114,-0.1017489,5.487665,0,3675.249,-,-
+628,970.5985,-8.176135,5.181611,1410.605,-158.3829,-0.8310292,143.375,-16.09817,0.5266633,-1.357692,0,2616.944,-,-
+629,942.8003,-51.67291,3.909744,1343.36,-156.854,-5.101657,132.6297,-15.48617,0.3860083,-5.487665,0,1883.399,-,-
+630,644.4445,-34.49714,38.60752,843.5962,-148.2222,-2.328077,56.93099,-10.00294,2.60547,-4.933547,0,1212.257,-,-
+631,644.4445,47.50202,53.35446,859.0081,-148.2222,3.205725,57.97108,-10.00294,3.600683,-0.394958,0,2003.365,-,-
+632,614.3267,10.91582,10.67911,842.725,-148.0716,0.7022378,54.21431,-9.525766,0.6870103,0.01522753,0,1592.732,-,-
+633,645.5776,35.49784,27.61859,877.6421,-148.2279,2.399822,59.33275,-10.02091,1.867147,0.5326749,0,1891.765,-,-
+634,654.6205,74.1437,64.53515,901.2585,-148.2731,5.082676,61.7828,-10.16437,4.423994,0.6586825,0,2277.698,-,-
+635,692.8177,38.07835,27.47699,975.159,-148.4641,2.762649,70.74944,-10.77132,1.993502,0.7691465,0,2015.471,-,-
+636,708.7716,40.4463,33.37812,988.2228,-148.5439,3.002021,73.34826,-11.02528,2.477404,0.5246174,0,2071.458,-,-
+637,728.2538,41.80497,32.46681,1020.015,-148.6413,3.188154,77.78898,-11.33576,2.476002,0.7121521,0,2125.271,-,-
+638,755.4572,54.26036,44.26572,1063.636,-148.7773,4.292608,84.14565,-11.76996,3.501919,0.790689,0,2325.345,-,-
+639,778.621,32.73521,26.8564,1105.111,-148.8931,2.66913,90.10745,-12.1403,2.18979,0.4793402,0,2173.77,-,-
+640,785.3195,22.37034,21.19575,1108.195,-148.9266,1.839703,91.13625,-12.2475,1.743106,0.09659683,0,2080.11,-,-
+641,784.5526,16.47887,16.38719,1103.201,-148.9228,1.353873,90.63697,-12.23522,1.346341,0.007532443,0,2005.647,-,-
+642,785.7797,24.59525,23.99476,1102.926,-148.9289,2.023861,90.75608,-12.25486,1.974449,0.04941161,0,2109.022,-,-
+643,787.5695,16.91645,17.18014,1108.805,-148.9379,1.395169,91.44768,-12.28351,1.416916,-0.02174713,0,2024.912,-,-
+644,784.4503,16.10676,17.10461,1101.01,-148.9223,1.323129,90.44517,-12.23358,1.4051,-0.081971,0,2000.694,-,-
+645,782.5583,17.89994,18.89623,1097.687,-148.9128,1.466888,89.95465,-12.2033,1.548533,-0.08164531,0,2013.496,-,-
+646,779.4391,13.99343,15.37648,1093.41,-148.8972,1.142182,89.24701,-12.15339,1.255069,-0.1128875,0,1968.69,-,-
+647,775.604,17.21,17.88334,1085.844,-148.878,1.397815,88.19337,-12.09203,1.452504,-0.05468926,0,1991.177,-,-
+648,776.0643,22.52246,21.39991,1087.752,-148.8803,1.830384,88.4008,-12.09939,1.739155,0.09122863,0,2042.586,-,-
+649,781.2288,27.58451,24.49158,1097.907,-148.9061,2.256691,89.81989,-12.18202,2.003658,0.2530334,0,2123.881,-,-
+650,791.558,31.36012,28.66589,1116.156,-148.9578,2.599495,92.52015,-12.34737,2.376166,0.2233295,0,2217.248,-,-
+651,794.8305,14.34256,14.60577,1122.864,-148.9742,1.193795,93.46096,-12.39978,1.215703,-0.02190819,0,2027.626,-,-
+652,790.2285,16.37036,17.6139,1109.242,-148.9511,1.354689,91.79259,-12.32609,1.457595,-0.1029065,0,2030.677,-,-
+653,788.5922,16.16161,18.76,1107.381,-148.943,1.334645,91.44885,-12.29989,1.549223,-0.2145782,0,2020.573,-,-
+654,777.0869,-9.974125,3.749234,1089.079,-148.8854,-0.8116579,88.6253,-12.11575,0.305099,-1.116757,0,1732.557,-,-
+655,717.4133,-71.90999,-41.56529,983.9592,-148.5871,-5.402407,73.92224,-11.16295,-3.12269,-2.279716,0,966.9546,-,-
+656,620.5139,-57.27702,-41.34504,802.7026,-148.1026,-3.721864,52.15967,-9.623714,-2.686603,-1.035261,0,937.4362,-,-
+657,644.4445,122.948,22.88576,851.2633,-148.2222,8.29728,57.44842,-10.00294,1.54447,6.75281,0,2719.725,-,-
+658,1016.479,57.93904,7.967908,1466.731,-161.5655,6.167346,156.1268,-17.19791,0.8481474,5.319199,0,3798.894,-,-
+659,962.2321,-41.81168,-9.220888,1400.378,-157.9228,-4.213141,141.1086,-15.91304,-0.9291401,-3.284001,0,2079.114,-,-
+660,847.3507,-59.70004,-16.62675,1176.887,-151.6043,-5.297445,104.4303,-13.45251,-1.475364,-3.822081,0,1359.577,-,-
+661,747.673,-37.96694,-3.40858,1010.77,-148.7384,-2.972664,79.1394,-11.64564,-0.2668786,-2.705786,0,1394.831,-,-
+662,676.963,-34.32487,-5.49979,907.9445,-148.3848,-2.433338,64.36546,-10.51921,-0.3898878,-2.04345,0,1282.244,-,-
+663,602.3846,-21.15289,-4.922133,790.5776,-148.0119,-1.334357,49.87087,-9.336823,-0.3104959,-1.023862,0,1255.48,-,-
+664,600,-3.502321,-3.026923,793.2861,-148,-0.2200573,49.84364,-9.299114,-0.1901872,-0.02987009,0,1424.474,-,-
+665,600,11.43227,2.26173,799.9366,-148,0.7183105,50.2615,-9.299114,0.1421087,0.5762018,0,1567.549,-,-
+666,644.4445,25.72987,14.36047,875.936,-148.2222,1.736408,59.11348,-10.00294,0.9691319,0.7672759,0,1796.639,-,-
+667,658.5208,81.01238,81.01238,903.7772,-148.2926,5.586625,62.3246,-10.22628,5.586625,0,0,2351.106,-,-
+668,644.4445,174.4862,149.725,902.9878,-148.2222,11.77539,60.9391,-10.00294,10.10435,1.671035,0,3257.164,-,-
+669,770.7463,208.7785,151.4149,1127.553,-148.8537,16.85101,91.00749,-12.01434,12.22105,4.629957,0,4244.193,-,-
+670,927.217,163.4348,106.9869,1386.81,-155.9969,15.86918,134.6563,-15.14698,10.38821,5.480968,0,4786.319,-,-
+671,1058.376,169.8687,116.3,1491.193,-165.5457,18.82703,165.2732,-18.34791,12.88986,5.937172,0,5694.758,-,-
+672,1195.672,179.1474,116.0353,1493.886,-178.5888,22.43113,187.0502,-22.36119,14.52883,7.902299,0,6502.484,-,-
+673,1370.653,249.263,169.7664,1496.104,-199.4784,35.77783,214.7424,-28.63202,24.36733,11.4105,0,8967.088,-,-
+674,1588.996,274.5664,177.7254,1469.078,-233.2393,45.68766,244.4534,-38.81086,29.57337,16.11428,0,11479.8,-,-
+675,1850.804,326.5981,231.9466,1430.121,-273.3987,63.29984,277.18,-52.98898,44.95491,18.34493,0,16059.16,-,-
+676,2070.22,177.06,119.5923,998.4332,-314.3418,38.38535,216.4532,-68.14708,25.92677,12.45858,0,15209.95,-,-
+677,2149.734,-81.18117,36.54165,813.8387,-329.4494,-18.27547,183.2111,-74.16553,8.226242,-26.50171,0,ERROR,-,-
+678,1319.83,-78.61364,118.5154,1387.915,-193.3796,-10.86537,191.8268,-26.72743,16.38028,-27.24565,0,2434.395,-,-
+679,1416.364,380.3417,331.9403,1407.055,-205.6182,56.41277,208.6962,-30.49756,49.23381,7.178959,0,12397.68,-,-
+680,1559.182,359.1976,300.5107,1521.476,-228.4691,58.64877,248.4223,-37.30379,49.06653,9.582238,0,13351.81,-,-
+681,1710.518,441.2152,368.2365,1527.457,-251.0251,79.03268,273.6057,-44.96488,65.96037,13.07231,0,17299.46,-,-
+682,1919.854,603.5727,529.9606,1322.116,-286.173,121.3463,265.807,-57.53412,106.5468,14.79946,0,25727.47,-,-
+683,2084.814,249.1037,201.0867,1021.778,-317.1147,54.38461,223.0758,-69.23286,43.9015,10.48311,0,17556.43,-,-
+684,2166.125,109.6446,208.9885,794.6426,-332.5638,24.87136,180.2536,-75.43745,47.40614,-22.53478,0,ERROR,-,-
+685,1477.623,392.8771,543.129,1479.351,-215.4197,60.79237,228.9094,-33.33325,84.04178,-23.24941,0,13359.77,-,-
+686,1568.573,489.0973,458.5431,1526.899,-229.9717,80.33941,250.8093,-37.77528,75.32056,5.018849,0,16785,-,-
+687,1632.52,319.4283,298.8318,1554.012,-239.7154,54.60853,265.6694,-40.98105,51.08742,3.521107,0,13098.38,-,-
+688,1672.844,255.917,243.7382,1514.089,-245.5624,44.83149,265.2377,-43.01757,42.69801,2.133475,0,11881.95,-,-
+689,1694.081,133.1228,124.3595,1503.059,-248.6418,23.61649,266.6484,-44.10998,22.06184,1.554653,0,8865.632,-,-
+690,1716.868,272.1353,260.0804,1478.205,-251.9459,48.92721,265.7664,-45.29735,46.75986,2.167349,0,12765.13,-,-
+691,1754.409,280.4178,263.9969,1524.289,-257.3893,51.51873,280.0443,-47.2879,48.50185,3.016879,0,13440,-,-
+692,1799.228,352.1905,331.4003,1540.033,-263.8881,66.35787,290.1649,-49.72039,62.44069,3.917182,0,15985.38,-,-
+693,1858.482,422.8427,402.8758,1435.659,-274.8192,82.29356,279.4076,-53.48525,78.40761,3.885953,0,18988.92,-,-
+694,1900.06,185.8796,172.2266,1366.197,-282.5111,36.98518,271.8374,-56.21231,34.26859,2.716586,0,12898.34,-,-
+695,1927.36,179.725,273.7905,1264.982,-287.5616,36.27437,255.3147,-58.03932,55.25987,-18.9855,0,13138.72,-,-
+696,1337.101,448.1313,581.744,1534.649,-195.4521,62.74774,214.8829,-27.36738,81.45631,-18.70857,0,13032.55,-,-
+697,1385.247,689.6841,671.3594,1599.708,-201.2296,100.0474,232.0581,-29.19092,97.38921,2.65823,0,19425.67,-,-
+698,1429.335,526.9877,511.52,1678.076,-207.6936,78.87932,251.1737,-31.08749,76.56412,2.3152,0,16080.92,-,-
+699,1463.264,491.5411,478.2894,1610.679,-213.1223,75.32014,246.8087,-32.65729,73.28956,2.030585,0,15589,-,-
+700,1495.965,508.0627,495.1454,1588.049,-218.3544,79.59162,248.7791,-34.20676,77.56803,2.023592,0,16341.18,-,-
+701,1528.196,489.4485,476.9826,1583.326,-223.5114,78.32757,253.3833,-35.76904,76.33263,1.99494,0,16268.58,-,-
+702,1558.654,479.5961,467.7729,1567.185,-228.3847,78.28058,255.7988,-37.27737,76.35077,1.929812,0,16404.6,-,-
+703,1587.647,466.1936,455.5045,1554.362,-233.0235,77.50842,258.4251,-38.74202,75.73126,1.777151,0,16427.65,-,-
+704,1612.448,400.7414,391.3767,1547.899,-236.805,67.66726,261.3707,-39.98574,66.08598,1.58128,0,15012.09,-,-
+705,1634.75,420.3745,412.0384,1531.194,-240.0388,71.96417,262.1261,-41.09238,70.53711,1.427061,0,15808.05,-,-
+706,1654.379,350.7976,343.8186,1540.677,-242.885,60.77433,266.9165,-42.07889,59.56525,1.209085,0,14149.2,-,-
+707,1669.87,341.0654,334.4503,1523.729,-245.1311,59.64156,266.4521,-42.86568,58.48478,1.156777,0,14071.71,-,-
+708,1687.604,400.5091,393.1033,1524.793,-247.7026,70.78017,269.4697,-43.77536,69.47137,1.308793,0,15938.63,-,-
+709,1707.072,381.0241,374.1737,1544.816,-250.5254,68.11346,276.1578,-44.78497,66.88885,1.224613,0,15640.85,-,-
+710,1722.079,312.5197,309.1562,1543.154,-252.7014,56.35845,278.2857,-45.57109,55.75189,0.6065575,0,13928.48,-,-
+711,1724.041,114.9075,116.8087,1526.905,-252.9859,20.74553,275.6691,-45.67437,21.08878,-0.3432478,0,8692.51,-,-
+712,1712.486,33.16751,38.6457,1472.461,-251.3105,5.947967,264.0581,-45.06778,6.930377,-0.9824097,0,6623.551,-,-
+713,1696.472,17.13283,24.07446,1444.038,-248.9885,3.043719,256.5393,-44.23383,4.276927,-1.233208,0,6169.895,-,-
+714,1677.568,-28.2199,-21.09692,1431.563,-246.2474,-4.957518,251.4891,-43.25938,-3.706191,-1.251326,0,5048.887,-,-
+715,1660.694,54.20764,59.4906,1411.081,-243.8006,9.427114,245.3975,-42.39875,10.34586,-0.9187467,0,6781.994,-,-
+716,1651.074,113.6332,117.0277,1431.838,-242.4057,19.64719,247.5648,-41.91196,20.23409,-0.5868986,0,8049.465,-,-
+717,1643.645,97.13361,100.7626,1447.183,-241.3285,16.71884,249.0921,-41.53797,17.34347,-0.6246275,0,7636.95,-,-
+718,1632.816,41.9101,46.85336,1438.443,-239.7583,7.166127,245.9566,-40.99582,8.011366,-0.8452389,0,6340.491,-,-
+719,1618.776,27.66194,33.4556,1415.99,-237.7225,4.689191,240.0355,-40.29821,5.67132,-0.9821287,0,5938.517,-,-
+720,1603.688,15.98119,22.07509,1405.83,-235.5347,2.683846,236.092,-39.55519,3.707242,-1.023396,0,5587.508,-,-
+721,1588.144,13.86356,20.2846,1403.331,-233.103,2.30565,233.388,-38.76738,3.373533,-1.067883,0,5427.696,-,-
+722,1571.404,-11.78481,-5.337609,1406.419,-230.4247,-1.939274,231.4362,-37.918,-0.8783412,-1.060933,0,4829.912,-,-
+723,1555.752,32.19136,37.73106,1401.123,-227.9203,5.244551,228.2681,-37.13231,6.147068,-0.9025175,0,5626.812,-,-
+724,1543.593,55.36594,59.9789,1418.935,-225.9749,8.949611,229.3633,-36.52764,9.695271,-0.7456602,0,6016.518,-,-
+725,1532.576,53.28099,57.50302,1429.454,-224.2122,8.551119,229.4146,-35.98403,9.228716,-0.6775969,0,5926.777,-,-
+726,1522.379,69.06815,73.60085,1431.041,-222.5806,11.01106,228.141,-35.48451,11.73368,-0.7226161,0,6183.614,-,-
+727,1509.777,0.2987804,6.736443,1439.495,-220.5643,0.04723822,227.5891,-34.87199,1.065055,-1.017817,0,4807.375,-,-
+728,1489.946,-74.701,-65.89068,1419.37,-217.3914,-11.65536,221.4598,-33.91888,-10.28071,-1.374646,0,3127.562,-,-
+729,1465.427,-91.50858,-81.57812,1396.959,-213.4683,-14.04283,214.3762,-32.75867,-12.51891,-1.52392,0,2660.339,-,-
+730,1440.021,-96.71056,-84.30984,1395.418,-209.4034,-14.58382,210.4271,-31.57774,-12.71381,-1.870011,0,2435.288,-,-
+731,1402.846,-127.3956,-110.6423,1399.773,-203.4554,-18.71514,205.6347,-29.88875,-16.25399,-2.461151,0,1616.556,-,-
+732,1355.514,-126.8009,-108.9766,1388.059,-197.6617,-17.99928,197.0337,-28.0579,-15.46913,-2.530148,0,1503.086,-,-
+733,1313.435,-121.4535,-108.6577,1388.426,-192.6122,-16.70503,190.9677,-26.49238,-14.94506,-1.759972,0,1509.406,-,-
+734,1291.697,83.61916,88.19454,1391.188,-190.0036,11.31085,188.1808,-25.70107,11.92974,-0.6188934,0,5265.991,-,-
+735,1290.622,169.5547,169.627,1468.883,-189.8746,22.91593,198.5249,-25.66224,22.9257,-0.009769255,0,6877.481,-,-
+736,1291.334,123.8229,123.4191,1501.048,-189.9601,16.74435,202.984,-25.68796,16.68974,0.05460652,0,6004.553,-,-
+737,1292.651,183.3484,181.8836,1483.886,-190.1181,24.81916,200.8679,-25.73555,24.62087,0.198295,0,7154.756,-,-
+738,1298.683,221.3006,218.1147,1505.936,-190.842,30.09639,204.804,-25.95408,29.66311,0.4332761,0,7911.607,-,-
+739,1308.639,267.7927,261.73,1519.856,-192.0367,36.69841,208.2817,-26.31678,35.86757,0.8308403,0,8846.291,-,-
+740,1329.033,439.9518,429.3002,1536.381,-194.4839,61.23074,213.8274,-27.0675,59.74829,1.482449,0,12785.62,-,-
+741,1361.923,530.6749,516.4432,1598.498,-198.4308,75.68498,227.9781,-28.30024,73.65525,2.029729,0,15311.27,-,-
+742,1400.414,564.0099,548.9453,1630.906,-203.0662,82.71262,239.174,-29.77987,80.50338,2.209233,0,16663.62,-,-
+743,1437.67,515.3007,500.626,1631.519,-209.0272,77.57978,245.6292,-31.46956,75.37048,2.209308,0,15888.58,-,-
+744,1474.187,557.4569,543.0269,1602.774,-214.8699,86.05825,247.4306,-33.17087,83.83059,2.227664,0,17363.86,-,-
+745,1510.207,513.0086,499.5962,1605.662,-220.6331,81.13155,253.9331,-34.8928,79.0104,2.121144,0,16657.41,-,-
+746,1541.698,472.5562,461.3121,1580.6,-225.6717,76.29242,255.1819,-36.43384,74.4771,1.815321,0,15997.66,-,-
+747,1566.836,389.1696,380.2783,1559.41,-229.6938,63.85445,255.866,-37.68785,62.39557,1.458876,0,14207.38,-,-
+748,1586.464,363.9525,357.4297,1526.035,-232.8342,60.46492,253.5264,-38.68171,59.38128,1.083641,0,13763.21,-,-
+749,1599.685,260.9547,256.977,1514.101,-234.9496,43.71478,253.6402,-39.35844,43.04843,0.6663436,0,11241.04,-,-
+750,1606.496,234.0277,232.4668,1482.312,-235.9419,39.37091,249.372,-39.69295,39.10833,0.2625862,0,10616.91,-,-
+751,1607.544,142.4776,143.2486,1474.129,-236.0939,23.98492,248.1573,-39.74442,24.1147,-0.1297825,0,8431.516,-,-
+752,1602.614,111.2557,112.8952,1443.091,-235.379,18.67153,242.1873,-39.50257,18.94668,-0.2751529,0,7705.687,-,-
+753,1599.308,173.6852,174.5253,1432.141,-234.8893,29.08865,239.8537,-39.33905,29.22934,-0.1406944,0,9076.899,-,-
+754,1598.395,158.6093,159.9569,1452.885,-234.7432,26.54858,243.189,-39.29214,26.77416,-0.225581,0,8733.74,-,-
+755,1592.524,71.7869,74.90523,1449.638,-233.8038,11.97181,241.7542,-38.99117,12.49185,-0.5200399,0,6752.807,-,-
+756,1582.703,74.79619,79.23005,1423.258,-232.2325,12.39674,235.8911,-38.49028,13.13161,-0.7348696,0,6744.979,-,-
+757,1570.221,12.31041,19.00678,1427.319,-230.2354,2.02424,234.6985,-37.85833,3.125345,-1.101105,0,5310.723,-,-
+758,1548.953,-98.49545,-88.6775,1410.913,-226.8325,-15.97655,228.8585,-36.79359,-14.38402,-1.592531,0,2844.713,-,-
+759,1520.766,-122.0977,-110.8026,1377.839,-222.3226,-19.44458,219.4267,-35.40581,-17.64579,-1.798791,0,2221.579,-,-
+760,1492.177,-115.5213,-102.1223,1374.677,-217.7483,-18.05141,214.8076,-34.02544,-15.95768,-2.093729,0,2265.959,-,-
+761,1453.188,-142.2763,-125.0264,1383.753,-211.5101,-21.65125,210.576,-32.18707,-19.0262,-2.625045,0,1528.205,-,-
+762,1405.211,-136.2779,-117.7003,1381.464,-203.8338,-20.05375,203.2871,-29.99482,-17.32,-2.733748,0,1438.826,-,-
+763,1359.907,-127.7717,-109.2198,1384.693,-198.1888,-18.19585,197.193,-28.2239,-15.5539,-2.641952,0,1493.676,-,-
+764,1311.877,-124.6839,-104.8277,1387.831,-192.4252,-17.129,190.6595,-26.43527,-14.40117,-2.727829,0,1436.918,-,-
+765,1259.963,-121.2238,-101.4207,1388.817,-186.1956,-15.99463,183.2447,-24.5672,-13.38175,-2.612882,0,1366.923,-,-
+766,1212.524,-117.9492,-101.3614,1390.263,-180.5029,-14.97663,176.5289,-22.91939,-12.87038,-2.106247,0,1190.462,-,-
+767,1177.001,-114.867,-103.4386,1391.934,-176.8151,-14.15796,171.5632,-21.79339,-12.74935,-1.408607,0,1144.483,-,-
+768,1155.424,-21.26979,-14.24204,1393.62,-174.7653,-2.573554,168.6221,-21.14585,-1.723226,-0.8503281,0,2827.625,-,-
+769,1141.801,-6.357027,-2.180722,1429.429,-173.4711,-0.7601041,170.9155,-20.74179,-0.260747,-0.4993571,0,3064.55,-,-
+770,1134.492,103.4042,104.962,1435.101,-172.7767,12.28481,170.4953,-20.52652,12.46988,-0.1850736,0,4857.183,-,-
+771,1133.995,131.7083,132.4717,1476.293,-172.7295,15.64058,175.3123,-20.51192,15.73124,-0.09066183,0,5362.92,-,-
+772,1130.65,46.44499,47.88279,1487.037,-172.4118,5.499151,176.0672,-20.41379,5.669389,-0.1702376,0,3873.169,-,-
+773,1126.767,120.693,121.0923,1454.977,-172.0429,14.24114,171.6797,-20.30016,14.28826,-0.04712319,0,5131.44,-,-
+774,1128.648,163.7539,162.4692,1482.685,-172.2216,19.35436,175.2411,-20.35517,19.20252,0.1518367,0,5913.168,-,-
+775,1133.216,178.0257,175.2046,1498.66,-172.6555,21.12632,177.8461,-20.48905,20.79155,0.3347726,0,6190.679,-,-
+776,1142.795,269.1267,263.5941,1503.7,-173.5655,32.20726,179.9526,-20.77115,31.54515,0.6621046,0,7778.914,-,-
+777,1160.919,355.3435,347.9955,1536.847,-175.2873,43.19951,186.8362,-21.30988,42.30621,0.8933039,0,9528.873,-,-
+778,1179.715,287.8851,280.5278,1568.631,-177.0729,35.56517,193.7878,-21.87549,34.65625,0.9089215,0,8399.232,-,-
+779,1197.906,347.8228,339.575,1543.818,-178.8011,43.63243,193.6633,-22.4296,42.59779,1.034644,0,9656.422,-,-
+780,1221.082,393.4671,383.904,1565.458,-181.5298,50.3132,200.1773,-23.21248,49.09034,1.222857,0,10719.81,-,-
+781,1245.937,387.9595,377.8862,1582.107,-184.5124,50.61872,206.4241,-24.07412,49.3044,1.314316,0,10851.18,-,-
+782,1271.692,417.9499,407.0621,1580.038,-187.603,55.65892,210.4157,-24.98334,54.20898,1.449942,0,11752.19,-,-
+783,1300.591,457.6977,446.2632,1590.749,-191.0709,62.33731,216.6561,-26.02339,60.77997,1.557342,0,12845.34,-,-
+784,1329.168,417.6133,406.8417,1605.447,-194.5002,58.12766,223.4623,-27.0725,56.62835,1.499308,0,12340.92,-,-
+785,1354.789,402.6342,393.3741,1591.143,-197.5747,57.12298,225.7405,-28.03054,55.80923,1.313752,0,12307.22,-,-
+786,1375.788,326.1706,320.0391,1586.183,-200.0946,46.99211,228.5249,-28.82806,46.10873,0.883382,0,10781.47,-,-
+787,1385.73,178.7369,176.7072,1558.936,-201.2876,25.9371,226.2224,-29.20951,25.64256,0.2945441,0,7646.166,-,-
+788,1386.025,128.7134,129.1193,1504.512,-201.323,18.682,218.3712,-29.22087,18.74092,-0.05891467,0,6688.303,-,-
+789,1383.688,122.7153,124.035,1485.849,-201.0426,17.78139,215.2987,-29.13096,17.9726,-0.1912134,0,6558.67,-,-
+790,1379.388,87.11261,89.29736,1483.662,-200.5266,12.58334,214.3137,-28.96589,12.89893,-0.3155863,0,5848.842,-,-
+791,1372.698,72.1381,75.15662,1470.326,-199.7238,10.36975,211.3574,-28.71001,10.80366,-0.4339089,0,5519.878,-,-
+792,1364.207,47.08162,51.71942,1464.72,-198.7048,6.726053,209.2491,-28.38686,7.388607,-0.6625543,0,4986.271,-,-
+793,1349.334,-55.71205,-48.33559,1455.35,-196.9201,-7.87222,205.6438,-27.82519,-6.829912,-1.042308,0,2995.28,-,-
+794,1327.031,-100.6475,-88.89777,1416.257,-194.2437,-13.98661,196.8121,-26.99334,-12.3538,-1.632814,0,1985.347,-,-
+795,1289.95,-120.4761,-103.9407,1398.672,-189.794,-16.2743,188.9372,-25.63799,-14.04064,-2.233661,0,1470.359,-,-
+796,1243.626,-120.8872,-103.1415,1390.639,-184.2351,-15.74341,181.1059,-23.99335,-13.43234,-2.311073,0,1291.537,-,-
+797,1200.889,-116.9233,-100.6604,1390.554,-179.1067,-14.7039,174.8716,-22.52389,-12.65873,-2.04517,0,1151.299,-,-
+798,1162.021,-113.5962,-101.1053,1392.187,-175.392,-13.82313,169.4105,-21.34285,-12.30316,-1.519974,0,1141.668,-,-
+799,1138.523,1.19114,7.526351,1394.022,-173.1597,0.1420147,166.2035,-20.64511,0.8973355,-0.7553208,0,3189.586,-,-
+800,1130.394,77.9349,78.62582,1437.95,-172.3874,9.225512,170.2167,-20.40629,9.3073,-0.08178817,0,4380.872,-,-
+801,1135.07,266.8188,261.5264,1466.605,-172.8316,31.71522,174.3269,-20.5435,31.08614,0.6290762,0,7679.472,-,-
+802,1156.795,431.4539,420.6367,1535.678,-174.8955,52.26601,186.0309,-21.18672,50.95563,1.310386,0,10833.46,-,-
+803,1189.187,493.08,479.1694,1594.888,-177.9728,61.40393,198.6136,-22.16319,59.67162,1.732312,0,12385.95,-,-
+804,1226.563,542.694,526.7911,1616.771,-182.1876,69.70653,207.6667,-23.40115,67.66388,2.042651,0,13775.79,-,-
+805,1268.951,604.1832,587.0944,1634.212,-187.2741,80.28642,217.161,-24.88578,78.01559,2.270831,0,15730.7,-,-
+806,1312.414,574.5614,557.2355,1656.565,-192.4897,78.96523,227.6712,-26.45495,76.58404,2.381193,0,15652.11,-,-
+807,1356.025,617.1783,599.5178,1646.031,-197.723,87.64093,233.7407,-28.07718,85.13309,2.507839,0,17274.13,-,-
+808,1401.126,614.5919,596.9175,1661.126,-203.1802,90.17635,243.7297,-29.81173,87.58305,2.593292,0,17885.31,-,-
+809,1444.898,600.4918,583.357,1646.191,-210.1837,90.86003,249.0841,-31.80276,88.26737,2.592662,0,18119.29,-,-
+810,1487.286,596.1778,579.6837,1627.307,-216.9658,92.85363,253.4503,-33.79203,90.28471,2.568918,0,18558.38,-,-
+811,1527.847,572.7152,557.1998,1612.183,-223.4556,91.63201,257.9425,-35.75194,89.1496,2.482403,0,18466.02,-,-
+812,1565.344,542.4,528.5688,1591.624,-229.455,88.91153,260.903,-37.61283,86.64429,2.267239,0,18152.54,-,-
+813,1597.481,471.7091,459.4791,1570.988,-234.597,78.91118,262.8072,-39.24521,76.86526,2.045919,0,16701.55,-,-
+814,1626.864,490.7028,481.8691,1551.152,-238.8953,83.59849,264.2617,-40.69935,82.09354,1.504955,0,17570.02,-,-
+815,1642.073,185.8156,183.2177,1560.231,-241.1006,31.95239,268.2934,-41.45905,31.50566,0.446727,0,9731.741,-,-
+816,1639.99,138.4675,139.3256,1467.982,-240.7986,23.78031,252.1103,-41.35459,23.92768,-0.1473706,0,8536.764,-,-
+817,1637.76,179.3164,179.6882,1452.732,-240.4752,30.75381,249.1521,-41.2429,30.81757,-0.06375818,0,9511.843,-,-
+818,1638.123,191.5762,190.7065,1465.345,-240.5278,32.86371,251.3709,-41.26107,32.71453,0.1491832,0,9844.722,-,-
+819,1642.126,255.2263,252.7852,1470.162,-241.1083,43.88949,252.8135,-41.46171,43.46971,0.4197769,0,11540.33,-,-
+820,1650.376,279.859,276.92,1491.496,-242.3045,48.36719,257.7708,-41.87675,47.85925,0.5079417,0,12263.92,-,-
+821,1656.905,223.2172,220.5625,1500.577,-243.2512,38.73057,260.3661,-42.20669,38.26996,0.4606128,0,10868.83,-,-
+822,1663.717,287.3783,284.3724,1485.777,-244.239,50.06821,258.8582,-42.5523,49.5445,0.5237058,0,12598.87,-,-
+823,1672.006,255.1312,252.077,1506.479,-245.4409,44.67145,263.7724,-42.97475,44.13668,0.5347697,0,11852.81,-,-
+824,1679.073,264.8819,262.1556,1499.241,-246.4656,46.57474,263.6148,-43.33657,46.09537,0.4793707,0,12179.3,-,-
+825,1685.71,247.8133,245.4244,1503.81,-247.4279,43.74578,265.4632,-43.67775,43.32407,0.4217059,0,11808.12,-,-
+826,1691.084,240.8621,238.6861,1500.645,-248.2072,42.65424,265.7491,-43.95499,42.26889,0.3853542,0,11685.11,-,-
+827,1696.646,253.1484,250.7042,1500.348,-249.0137,44.97747,266.5704,-44.24284,44.54321,0.4342596,0,12061.27,-,-
+828,1703.364,266.1823,263.4233,1505.563,-249.9878,47.4805,268.5561,-44.59179,46.98836,0.4921444,0,12468.94,-,-
+829,1710.511,263.9189,261.225,1511.04,-251.0241,47.27428,270.6639,-44.96451,46.79175,0.4825294,0,12485.77,-,-
+830,1716.906,251.7395,250.3625,1512.312,-251.9514,45.26125,271.9045,-45.29934,45.01366,0.2475917,0,12238.4,-,-
+831,1717.444,144.4167,145.5638,1509.55,-252.0294,25.97339,271.493,-45.32756,26.1797,-0.2063131,0,9415.003,-,-
+832,1711.129,110.509,113.0963,1479.637,-251.1137,19.80201,265.1347,-44.99682,20.26562,-0.4636139,0,8438.362,-,-
+833,1704.439,133.3089,136.2268,1468.139,-250.1436,23.79409,262.0459,-44.64775,24.31491,-0.5208206,0,8979.797,-,-
+834,1696.458,81.35268,85.33894,1471.389,-248.9864,14.45252,261.3962,-44.2331,15.16069,-0.7081701,0,7601.913,-,-
+835,1684.38,46.39194,51.80803,1452.529,-247.2351,8.182975,256.2084,-43.60927,9.138308,-0.9553328,0,6749.82,-,-
+836,1669.212,13.84077,20.00123,1436.605,-245.0357,2.419359,251.1178,-42.83212,3.496205,-1.076846,0,5932.921,-,-
+837,1653.412,28.37045,34.94622,1420.616,-242.7448,4.912199,245.9724,-42.03001,6.050759,-1.138561,0,6162.133,-,-
+838,1636.148,-18.73251,-12.16155,1418.255,-240.2415,-3.209573,242.9997,-41.16225,-2.083723,-1.12585,0,5010.664,-,-
+839,1620.402,54.79761,60.69542,1397.151,-237.9583,9.298502,237.0798,-40.37869,10.29929,-1.000788,0,6553.398,-,-
+840,1606.523,13.5578,19.50965,1415.766,-235.9458,2.280892,238.181,-39.69427,3.2822,-1.001308,0,5550.477,-,-
+841,1590.468,7.431612,13.3675,1401.99,-233.4749,1.23776,233.5062,-38.88604,2.226402,-0.9886416,0,5308.539,-,-
+842,1576.711,57.00784,61.32232,1403.042,-231.2738,9.412724,231.6601,-38.18626,10.1251,-0.7123755,0,6302.58,-,-
+843,1568.824,125.5917,127.4455,1421.564,-230.0118,20.63307,233.5443,-37.78792,20.93763,-0.3045612,0,7771.822,-,-
+844,1567.413,189.2402,189.0635,1444.939,-229.7861,31.06171,237.1711,-37.71688,31.03271,0.02900501,0,9180.417,-,-
+845,1569.711,202.4044,201.4016,1465.633,-230.1538,33.27118,240.9204,-37.83262,33.10635,0.164832,0,9492.955,-,-
+846,1572.452,199.5319,198.5484,1469.292,-230.5923,32.85627,241.9436,-37.9709,32.69432,0.1619533,0,9448.37,-,-
+847,1574.655,191.4035,191.3449,1467.757,-230.9448,31.56196,242.0294,-38.08222,31.5523,0.009663533,0,9283.917,-,-
+848,1572.747,114.8096,116.7202,1465.717,-230.6395,18.90888,241.4002,-37.98579,19.22354,-0.3146607,0,7561.314,-,-
+849,1565.035,71.22337,74.5155,1442.052,-229.4056,11.6728,236.338,-37.59731,12.21235,-0.5395465,0,6530.499,-,-
+850,1556.195,87.78979,92.09866,1429.389,-227.9912,14.30661,232.9395,-37.15444,15.0088,-0.7021935,0,6832.479,-,-
+851,1543.351,-13.65294,-7.124376,1438.201,-225.9362,-2.206578,232.4412,-36.51565,-1.151437,-1.055142,0,4663.626,-,-
+852,1523.306,-58.09257,-49.17305,1407.395,-222.729,-9.26694,224.508,-35.52978,-7.844097,-1.422844,0,3630.478,-,-
+853,1498.451,-107.2389,-96.93314,1396.625,-218.7522,-16.82766,219.1548,-34.32603,-15.2105,-1.617156,0,2471.798,-,-
+854,1471.473,-103.2224,-92.29533,1383.87,-214.4357,-15.90577,213.2437,-33.04288,-14.222,-1.683772,0,2439.166,-,-
+855,1443.514,-128.1028,-117.4599,1390.361,-209.9622,-19.36459,210.1731,-31.73882,-17.75576,-1.608834,0,1785.171,-,-
+856,1418.028,-63.88415,-54.38341,1385.542,-205.8845,-9.486511,205.7468,-30.57293,-8.075694,-1.410817,0,3032.297,-,-
+857,1395.819,-75.29633,-67.33624,1413.162,-202.4983,-11.00605,206.5617,-29.59914,-9.842525,-1.163526,0,2698.185,-,-
+858,1378.085,17.34779,23.06625,1408.901,-200.3702,2.503507,203.3223,-28.91597,3.328753,-0.8252456,0,4507.927,-,-
+859,1367.149,52.54254,56.06586,1444.057,-199.0579,7.522385,206.7421,-28.49862,8.02681,-0.5044248,0,5109.367,-,-
+860,1360.404,103.4709,104.5299,1457.301,-198.2485,14.74058,207.6088,-28.24271,14.89146,-0.1508803,0,6044.406,-,-
+861,1361.842,220.6649,218.3961,1476.261,-198.4211,31.4694,210.5321,-28.29718,31.14586,0.3235438,0,8293.155,-,-
+862,1371.771,280.0054,274.9024,1519.65,-199.6125,40.2232,218.3001,-28.67464,39.49014,0.7330567,0,9682.671,-,-
+863,1387.436,342.494,335.5538,1541.316,-201.4923,49.76162,223.9409,-29.27522,48.75327,1.008355,0,11275.95,-,-
+864,1406.608,356.9329,348.7449,1562.403,-204.0573,52.57609,230.1414,-30.05757,51.37,1.206088,0,11787.18,-,-
+865,1428.548,404.7235,395.4687,1561.452,-207.5677,60.5455,233.5889,-31.05154,59.16101,1.384491,0,13138.26,-,-
+866,1453.08,415.9836,405.8923,1571.464,-211.4928,63.29864,239.1236,-32.18205,61.76308,1.535558,0,13667.93,-,-
+867,1479.238,444.0435,433.955,1567.579,-215.6781,68.78475,242.8266,-33.40971,67.222,1.562753,0,14617.99,-,-
+868,1503.811,389.683,380.5449,1570.041,-219.6098,61.36678,247.2481,-34.58387,59.92773,1.439053,0,13554.16,-,-
+869,1525.214,384.5718,376.5453,1545.071,-223.0342,61.42382,246.7787,-35.62304,60.14183,1.281992,0,13648.4,-,-
+870,1544.184,344.595,337.2246,1537.755,-226.0694,55.72327,248.6652,-36.55691,54.53143,1.191845,0,12815.8,-,-
+871,1562.268,371.2244,363.6332,1518.885,-228.9629,60.73243,248.4901,-37.4584,59.49051,1.241923,0,13695.28,-,-
+872,1582.313,388.7063,381.2299,1521.413,-232.1701,64.40841,252.0972,-38.47045,63.16959,1.238822,0,14359.07,-,-
+873,1599.873,325.2543,319.071,1521.769,-234.9797,54.49255,254.9547,-39.3681,53.45661,1.035943,0,12904.85,-,-
+874,1613.429,309.8601,305.6281,1504.141,-236.9472,52.35331,254.1365,-40.0341,51.63828,0.715025,0,12649.88,-,-
+875,1621.181,206.9243,206.3412,1501.285,-238.0712,35.12947,254.8727,-40.41728,35.03048,0.09899233,0,10071.21,-,-
+876,1616.371,51.68645,55.8737,1467.976,-237.3738,8.748758,248.4784,-40.17931,9.457517,-0.7087581,0,6459.834,-,-
+877,1600.061,-29.47068,-22.60738,1412.494,-235.0089,-4.938048,236.6747,-39.37761,-3.788047,-1.150001,0,4556.121,-,-
+878,1581.856,8.105929,13.57199,1389.449,-232.097,1.34276,230.1644,-38.44722,2.248221,-0.9054611,0,5282.592,-,-
+879,1572.667,148.4575,150.4194,1404.169,-230.6267,24.44936,231.2516,-37.98175,24.77247,-0.3231136,0,8311.051,-,-
+880,1572.022,182.7074,182.4399,1451.437,-230.5235,30.07761,238.938,-37.94918,30.03358,0.04402655,0,9069.901,-,-
+881,1574.01,204.2709,203.0324,1462.307,-230.8416,33.66996,241.032,-38.04961,33.46582,0.2041344,0,9568.499,-,-
+882,1578.242,229.9324,227.9318,1468.278,-231.5187,38.00165,242.6669,-38.26382,37.671,0.3306517,0,10212.51,-,-
+883,1584.06,238.2253,235.9183,1475.129,-232.4496,39.51738,244.698,-38.5593,39.13469,0.3826935,0,10488.37,-,-
+884,1589.837,230.9059,228.6528,1476.249,-233.3739,38.44291,245.7768,-38.85381,38.06779,0.3751185,0,10360.29,-,-
+885,1595.385,235.1282,232.864,1472.28,-234.2616,39.28247,245.9714,-39.13769,38.90419,0.3782817,0,10528.08,-,-
+886,1601.216,238.0602,235.7774,1472.651,-235.1763,39.91768,246.9326,-39.43412,39.5349,0.3827807,0,10665.48,-,-
+887,1606.859,233.3147,230.6424,1475.043,-235.9946,39.25984,248.2054,-39.71078,38.81017,0.4496704,0,10602.31,-,-
+888,1614.638,283.6588,280.1063,1475.411,-237.1225,47.96231,249.4692,-40.09373,47.36164,0.6006723,0,11985.45,-,-
+889,1624.701,282.7675,278.5155,1493.714,-238.5817,48.10957,254.1379,-40.59188,47.38615,0.7234234,0,12068.47,-,-
+890,1636,312.0479,307.6002,1496.066,-240.22,53.46053,256.3083,-41.15485,52.69853,0.7620006,0,12944.32,-,-
+891,1647.057,281.0288,276.7338,1507.565,-241.8233,48.47168,260.0238,-41.70953,47.73088,0.7408023,0,12259.17,-,-
+892,1657.59,304.5146,300.1158,1500.893,-243.3505,52.85838,260.5286,-42.24137,52.09483,0.7635447,0,12977.18,-,-
+893,1669.158,305.4732,300.3743,1510.519,-245.0279,53.39482,264.0294,-42.82936,52.50356,0.8912632,0,13123.88,-,-
+894,1683.198,359.5338,352.8913,1514.096,-247.0637,63.3729,266.8808,-43.54846,62.20206,1.17084,0,14748.97,-,-
+895,1702.491,417.6588,409.6434,1533.047,-249.8612,74.46207,273.3185,-44.54636,73.03305,1.429018,0,16576.9,-,-
+896,1723.463,400.2174,392.0233,1552.336,-252.9021,72.23149,280.1665,-45.64394,70.75262,1.478874,0,16375.93,-,-
+897,1743.683,408.347,400.5495,1552.193,-255.834,74.56338,283.4274,-46.7148,73.13956,1.423818,0,16841.84,-,-
+898,1762.667,379.8153,373.0787,1558.175,-258.5867,70.10861,287.6173,-47.7315,68.86513,1.243484,0,16297.28,-,-
+899,1777.58,329.7083,324.4363,1555.462,-260.7491,61.37444,289.5458,-48.53785,60.39309,0.9813544,0,15093.63,-,-
+900,1789.188,315.2155,311.1715,1548.047,-262.4323,59.05982,290.0472,-49.17018,58.30213,0.7576898,0,14836.02,-,-
+901,1797.921,273.7151,270.1997,1547.72,-263.6985,51.53449,291.4014,-49.64859,50.87263,0.6618633,0,13794.21,-,-
+902,1806.855,321.6949,317.8199,1526.225,-265.2682,60.86899,288.7823,-50.19229,60.13579,0.7332017,0,15254.14,-,-
+903,1817.388,308.224,304.9564,1514.443,-267.2168,58.66009,288.2233,-50.85574,58.0382,0.6218885,0,15041.16,-,-
+904,1823.299,228.1031,228.2629,1499.981,-268.3103,43.55296,286.3995,-51.22994,43.58347,-0.03051039,0,12910.6,-,-
+905,1816.582,49.22429,53.34848,1497.894,-267.0677,9.364037,284.9474,-50.80483,10.14859,-0.7845532,0,7955.53,-,-
+906,1802.529,73.04116,79.06287,1490.413,-264.4679,13.78728,281.3309,-49.92106,14.92394,-1.136661,0,8403.795,-,-
+907,1786.299,-1.202009,5.481571,1493.828,-262.0133,-0.2248488,279.4367,-49.01242,1.025387,-1.250236,0,6300.15,-,-
+908,1768.927,44.44483,51.34434,1469.091,-259.4944,8.233031,272.1367,-48.06916,9.511107,-1.278077,0,7274.39,-,-
+909,1751.623,-5.435869,1.730603,1471.291,-256.9854,-0.997099,269.8781,-47.1387,0.3174438,-1.314543,0,5998.247,-,-
+910,1732.894,10.39112,17.75134,1450.306,-254.2696,1.885658,263.1844,-46.14186,3.221305,-1.335647,0,6238.086,-,-
+911,1714.636,-1.444118,5.776513,1445.875,-251.6222,-0.2593005,259.616,-45.18034,1.037209,-1.29651,0,5864.806,-,-
+912,1696.606,10.90272,17.13737,1434.583,-249.0079,1.937066,254.8797,-44.24077,3.044764,-1.107698,0,6031.766,-,-
+913,1683.345,92.24526,96.34247,1432.225,-247.085,16.26095,252.4718,-43.55602,16.9832,-0.7222533,0,7766.139,-,-
+914,1676.05,130.2924,133.0489,1452.397,-246.0273,22.86834,254.9184,-43.18161,23.35215,-0.4838081,0,8599.615,-,-
+915,1669.494,106.072,109.1307,1460.996,-245.0766,18.54447,255.4245,-42.8465,19.07921,-0.5347402,0,7991.371,-,-
+916,1660.667,81.75999,85.7057,1450.853,-243.7967,14.21844,252.31,-42.39738,14.90462,-0.6861768,0,7396.25,-,-
+917,1649.65,58.228,62.78987,1439.657,-242.1992,10.05894,248.7022,-41.84015,10.84701,-0.7880671,0,6805.385,-,-
+918,1637.733,59.45519,64.64289,1428.096,-240.4713,10.19674,244.9228,-41.24155,11.08645,-0.8897057,0,6761.249,-,-
+919,1623.559,8.846125,14.30102,1423.343,-238.4161,1.504007,241.9948,-40.53519,2.431441,-0.9274345,0,5547.623,-,-
+920,1610.325,75.00911,79.67807,1402.128,-236.4971,12.649,236.4449,-39.88118,13.43634,-0.7873414,0,6943.653,-,-
+921,1600.115,67.91325,71.36232,1420.166,-235.0167,11.37979,237.9682,-39.38025,11.95773,-0.5779368,0,6724.155,-,-
+922,1593.007,137.9055,139.1785,1419.434,-233.8811,23.0053,236.7889,-39.01588,23.21765,-0.2123484,0,8230.937,-,-
+923,1593.733,228.0697,226.4919,1442.263,-233.9973,38.06377,240.707,-39.05305,37.80044,0.2633331,0,10328.19,-,-
+924,1600.921,272.3025,268.9128,1470.204,-235.1335,45.65098,246.4769,-39.41968,45.08272,0.568263,0,11547.37,-,-
+925,1610.755,285.4727,281.4597,1486.827,-236.5595,48.15292,250.7948,-39.90235,47.47602,0.6769047,0,11991.4,-,-
+926,1621.087,284.8578,281.5069,1493.42,-238.0576,48.35741,253.5228,-40.41262,47.78857,0.5688396,0,12084.41,-,-
+927,1627.616,209.4707,208.0111,1494.971,-239.0043,35.70294,254.8082,-40.73674,35.45415,0.2487875,0,10204.84,-,-
+928,1628.436,168.177,168.7935,1471.883,-239.1232,28.67913,250.9994,-40.77755,28.78426,-0.1051318,0,9129.964,-,-
+929,1624.513,110.9374,113.1513,1457.935,-238.5544,18.87252,248.0219,-40.58254,19.24914,-0.37662,0,7829.982,-,-
+930,1617.298,98.6873,101.7471,1437.535,-237.5082,16.71398,243.4654,-40.22511,17.2322,-0.5182176,0,7513.515,-,-
+931,1609.13,88.93793,92.09264,1430.912,-236.3239,14.98673,241.1196,-39.82239,15.51832,-0.5315931,0,7247.096,-,-
+932,1601.445,106.6829,109.2618,1425.168,-235.2095,17.89103,239.0049,-39.44532,18.32353,-0.4325022,0,7596.697,-,-
+933,1596.178,137.339,138.5277,1431.467,-234.3885,22.9564,239.2717,-39.17835,23.1551,-0.1986974,0,8242.498,-,-
+934,1595.479,200.2509,199.4341,1441.663,-234.2766,33.45755,240.8705,-39.14251,33.32108,0.1364657,0,9640.249,-,-
+935,1600.276,251.3697,248.4943,1461.034,-235.04,42.12467,244.8408,-39.38813,41.6428,0.4818695,0,10999.56,-,-
+936,1609.909,301.2658,297.6664,1479.907,-236.4368,50.79018,249.4964,-39.86071,50.18336,0.6068231,0,12390.66,-,-
+937,1618.373,230.136,227.6346,1497.901,-237.6641,39.00245,253.8577,-40.27827,38.57851,0.4239335,0,10641.52,-,-
+938,1622.498,213.6573,212.9392,1476.628,-238.2622,36.30199,250.8903,-40.48256,36.17999,0.1220011,0,10259.1,-,-
+939,1621.987,134.2216,135.8195,1471.48,-238.1881,22.79809,249.9368,-40.45723,23.06949,-0.2713999,0,8334.064,-,-
+940,1614.45,67.22802,71.93609,1444.12,-237.0952,11.36589,244.1499,-40.08446,12.16186,-0.7959688,0,6794.885,-,-
+941,1598.261,-42.65803,-35.13531,1418.057,-234.7218,-7.139653,237.3396,-39.28526,-5.880579,-1.259074,0,4257.276,-,-
+942,1576.576,-45.83546,-37.66281,1386.093,-231.2522,-7.567374,228.8421,-38.17942,-6.21808,-1.349294,0,4109.939,-,-
+943,1557.216,-5.905482,1.267353,1389.1,-228.1545,-0.9630145,226.5223,-37.20545,0.2066689,-1.169683,0,4890.564,-,-
+944,1540.557,-0.03538772,6.617812,1406.432,-225.4891,-0.005708985,226.8951,-36.37743,1.06763,-1.073339,0,4939.864,-,-
+945,1523.776,-11.86542,-4.828369,1412.087,-222.8042,-1.893358,225.3259,-35.55274,-0.7704601,-1.122898,0,4613.162,-,-
+946,1505.168,-38.17061,-30.34639,1411.838,-219.8269,-6.016483,222.5351,-34.64929,-4.783222,-1.233261,0,3971.165,-,-
+947,1484.424,-55.46068,-46.83458,1406.625,-216.5078,-8.62128,218.6578,-33.65582,-7.280366,-1.340914,0,3510.752,-,-
+948,1461.786,-77.70343,-68.46862,1404.741,-212.8858,-11.89468,215.0347,-32.5881,-10.48103,-1.413645,0,2936.732,-,-
+949,1437.992,-81.99844,-72.18598,1400.969,-209.0787,-12.34783,210.9665,-31.48436,-10.87021,-1.47762,0,2738.197,-,-
+950,1412.439,-115.0142,-104.704,1403.964,-204.9902,-17.01179,207.6606,-30.32016,-15.4868,-1.524987,0,1922.5,-,-
+951,1386.16,-100.4851,-90.35044,1393.552,-201.3392,-14.58625,202.2857,-29.22606,-13.11512,-1.471133,0,2139.299,-,-
+952,1361.533,-90.52612,-80.75507,1399.137,-198.384,-12.90716,199.4881,-28.28547,-11.51401,-1.39315,0,2287.861,-,-
+953,1337.054,-102.5713,-92.65458,1402.931,-195.4465,-14.36163,196.4328,-27.36563,-12.97312,-1.388506,0,1970.051,-,-
+954,1311.675,-111.9389,-101.5176,1398.292,-192.401,-15.37574,192.0669,-26.42787,-13.94429,-1.431453,0,1706.747,-,-
+955,1284.644,-119.4295,-109.3095,1394.64,-189.1573,-16.06656,187.6176,-25.44688,-14.70514,-1.361421,0,1479.054,-,-
+956,1260.877,-57.80224,-48.75932,1391.87,-186.3052,-7.632134,183.7807,-24.59951,-6.438118,-1.194016,0,2543.192,-,-
+957,1239.233,-103.0113,-93.61691,1415.446,-183.708,-13.368,183.6855,-23.84018,-12.14887,-1.219128,0,1599.85,-,-
+958,1213.585,-115.0557,-105.1952,1398.054,-180.6302,-14.622,177.6736,-22.95563,-13.36887,-1.25313,0,1249.22,-,-
+959,1189.711,-75.95383,-66.76804,1393.488,-178.0226,-9.462803,173.6095,-22.17916,-8.31838,-1.144422,0,1885.705,-,-
+960,1167.449,-110.3127,-99.24905,1408.474,-175.9077,-13.48628,172.193,-21.50558,-12.13369,-1.352588,0,1211.857,-,-
+961,1133.834,-110.9945,-97.21107,1394.906,-172.7142,-13.17891,165.6239,-20.50719,-11.54234,-1.636567,0,1140.264,-,-
+962,1098.11,-111.912,-99.78085,1394.523,-169.3204,-12.86919,160.3615,-19.4708,-11.47418,-1.395011,0,1060.613,-,-
+963,1073.161,-95.85229,-86.63557,1394.557,-166.9503,-10.77199,156.722,-18.76207,-9.736206,-1.035786,0,1310.331,-,-
+964,1051.866,-87.29785,-81.42811,1400.828,-164.9273,-9.615958,154.3028,-18.16693,-8.969399,-0.6465591,0,1416.447,-,-
+965,1043.845,165.5191,163.9237,1404.512,-164.1653,18.09309,153.5289,-17.9451,17.9187,0.1743868,0,5548.823,-,-
+966,1059.793,395.5151,386.0345,1498.636,-165.6803,43.89477,166.3205,-18.38741,42.8426,1.052168,0,9548.215,-,-
+967,1091.15,489.4966,474.9799,1581.556,-168.6593,55.93231,180.7164,-19.27184,54.27356,1.658747,0,11272.46,-,-
+968,1132.423,607.7789,590.0827,1614.371,-172.5802,72.07471,191.4435,-20.46578,69.97617,2.098536,0,14011.35,-,-
+969,1179.849,624.2126,605.8678,1656.255,-177.0857,77.12366,204.6362,-21.87955,74.85709,2.266571,0,14868.77,-,-
+970,1224.723,565.478,548.2744,1663.003,-181.9668,72.52407,213.2846,-23.33773,70.31767,2.206397,0,14211.73,-,-
+971,1266.425,567.3588,551.5138,1642.572,-186.971,75.24296,217.8374,-24.79604,73.1416,2.101355,0,14817.47,-,-
+972,1304.474,498.4864,483.8705,1644.054,-191.5369,68.09533,224.5847,-26.16474,66.09874,1.996592,0,13712.05,-,-
+973,1339.956,522.6118,508.3632,1619.482,-195.7947,73.33282,227.2456,-27.47389,71.33346,1.999366,0,14801.65,-,-
+974,1376.07,518.0093,504.4055,1628.336,-200.1284,74.64603,234.646,-28.83884,72.68569,1.960342,0,15210.87,-,-
+975,1408.422,453.2821,441.2574,1624.713,-204.3475,66.85439,239.6283,-30.13914,65.08088,1.773511,0,14090.83,-,-
+976,1436.595,438.9888,428.2625,1593.327,-208.8552,66.04142,239.6999,-31.42015,64.42775,1.613671,0,14045.72,-,-
+977,1462.377,410.2007,400.0607,1580.788,-212.9803,62.81803,242.0815,-32.61575,61.2652,1.552826,0,13627.45,-,-
+978,1487.568,432.9453,422.6733,1563.158,-217.0109,67.44324,243.5053,-33.80547,65.8431,1.600143,0,14439.72,-,-
+979,1513.982,441.3753,430.7774,1562.871,-221.2371,69.97733,247.7836,-35.07578,68.2971,1.680233,0,14921.37,-,-
+980,1540.825,448.1226,437.9244,1557.266,-225.532,72.30673,251.2724,-36.39067,70.66122,1.645513,0,15367.17,-,-
+981,1565.277,398.7137,389.7075,1551.883,-229.4443,65.35533,254.3776,-37.60946,63.87906,1.476269,0,14437.56,-,-
+982,1586.142,379.9174,372.3694,1529.166,-232.7827,63.10444,253.995,-38.6653,61.8507,1.253738,0,14172.42,-,-
+983,1603.258,324.7882,320.056,1519.481,-235.4724,54.5296,255.1099,-39.53412,53.73509,0.7945065,0,12928.49,-,-
+984,1610.003,168.8253,168.9929,1503.721,-236.4504,28.46379,253.526,-39.86534,28.49205,-0.02825567,0,9033.822,-,-
+985,1602.412,30.84503,34.47963,1451.779,-235.3497,5.175925,243.6145,-39.49267,5.785827,-0.6099021,0,5911.316,-,-
+986,1591.718,101.8353,104.7631,1407.448,-233.6749,16.97434,234.5995,-38.94994,17.46236,-0.4880157,0,7416.735,-,-
+987,1587.728,165.7649,166.0382,1431.953,-233.0365,27.56114,238.0857,-38.74616,27.60659,-0.04544837,0,8811.921,-,-
+988,1590.347,238.6005,236.2112,1452.299,-233.4555,39.73671,241.867,-38.87986,39.33879,0.3979142,0,10564.55,-,-
+989,1599.711,306.7121,301.9272,1473.391,-234.9538,51.38082,246.8245,-39.35977,50.57925,0.8015693,0,12423.92,-,-
+990,1614.356,350.9182,344.5453,1498.367,-237.0816,59.32446,253.3064,-40.07982,58.24709,1.077369,0,13720.79,-,-
+991,1631.714,367.3452,360.2594,1515.697,-239.5985,62.76926,258.9912,-40.94085,61.5585,1.210765,0,14328.3,-,-
+992,1649.959,374.0866,367.0236,1524.266,-242.2441,64.63592,263.3677,-41.85573,63.41554,1.220376,0,14739.8,-,-
+993,1667.223,352.1396,345.5881,1529.747,-244.7473,61.48047,267.0804,-42.73073,60.33664,1.143829,0,14345.79,-,-
+994,1682.902,346.0588,340.0083,1526.924,-247.0208,60.98701,269.0945,-43.53323,59.92071,1.066298,0,14371.83,-,-
+995,1697.641,336.1734,331.1057,1528.608,-249.158,59.76375,271.7506,-44.29444,58.86283,0.9009231,0,14280.77,-,-
+996,1708.402,267.4321,264.4038,1528.7,-250.7183,47.84452,273.4897,-44.85436,47.30275,0.5417725,0,12554.34,-,-
+997,1712.889,209.5591,208.3225,1512.151,-251.3689,37.58931,271.2395,-45.08887,37.3675,0.221809,0,11105.91,-,-
+998,1714.622,211.2465,210.4417,1497.689,-251.6202,37.93032,268.9172,-45.17961,37.78582,0.1444966,0,11167.78,-,-
+999,1716.933,221.5492,220.402,1498.854,-251.9553,39.83384,269.4891,-45.30075,39.62757,0.2062697,0,11458.41,-,-
+1000,1720.386,235.7368,234.0036,1502.576,-252.456,42.46996,270.7017,-45.48206,42.15772,0.3122377,0,11861.49,-,-
+1001,1725.639,260.101,257.4954,1507.779,-253.2177,47.00246,272.4684,-45.75858,46.5316,0.4708626,0,12546.55,-,-
+1002,1733.472,290.6153,287.2458,1516.166,-254.3535,52.75504,275.2278,-46.17247,52.14337,0.6116683,0,13462.79,-,-
+1003,1742.568,288.7711,285.0791,1526.211,-255.6724,52.69534,278.505,-46.65542,52.02161,0.6737242,0,13524.56,-,-
+1004,1752.026,300.8026,297.1518,1528.477,-257.0438,55.18878,280.4323,-47.16026,54.51895,0.6698323,0,13975.39,-,-
+1005,1760.92,280.7266,276.5096,1533.843,-258.3334,51.76685,282.8454,-47.63749,50.98923,0.7776241,0,13529.35,-,-
+1006,1773.2,373.908,367.6677,1532.889,-260.114,69.43063,284.6407,-48.30032,68.27187,1.158758,0,16264.27,-,-
+1007,1792.224,425.0623,415.4276,1557.627,-262.8725,79.77624,292.3374,-49.33624,77.96797,1.808269,0,17954.12,-,-
+1008,1821.486,592.0911,578.7317,1525.845,-267.9749,112.9388,291.0482,-51.11502,110.3905,2.548249,0,23535.64,-,-
+1009,1859.212,607.0242,594.1224,1482.007,-274.9542,118.1853,288.5412,-53.53255,115.6734,2.511929,0,24733.7,-,-
+1010,1886.512,390.1579,381.1231,1430.494,-280.0047,77.07767,282.6013,-55.31635,75.2928,1.784869,0,18475.54,-,-
+1011,1904.73,427.1401,420.3733,1351.331,-283.3751,85.19859,269.5403,-56.5228,83.84886,1.349723,0,19890.62,-,-
+1012,1920.543,342.2468,338.6078,1326.828,-286.3004,68.83227,266.85,-57.5804,68.10039,0.7318789,0,17645.68,-,-
+1013,1923.083,156.251,158.959,1305.331,-286.7704,31.46657,262.8739,-57.75119,32.01192,-0.5453516,0,12405.19,-,-
+1014,1906.866,-127.7185,-32.56297,1301.247,-283.7702,-25.50366,259.8415,-56.66509,-6.502386,-19.00127,0,4731.841,-,-
+1015,1369.067,-188.774,-56.43615,1370.792,-199.288,-27.06422,196.5282,-28.5716,-8.091158,-18.97306,0,223.022,-,-
+1016,1347.198,-123.9699,-114.7336,1365.561,-196.6638,-17.48946,192.6509,-27.74498,-16.18642,-1.303035,0,1541.969,-,-
+1017,1322.599,-122.2453,-112.9154,1390.147,-193.7119,-16.93124,192.5384,-26.82953,-15.63903,-1.292212,0,1515.937,-,-
+1018,1300.348,-85.01706,-78.75797,1390.874,-191.0418,-11.57695,189.3982,-26.01456,-10.72464,-0.8523136,0,2237.56,-,-
+1019,1291.3,310.5679,311.591,1405.395,-189.956,41.99643,190.044,-25.68673,42.13477,-0.1383385,0,9548.874,-,-
+1020,1295.232,406.3922,403.491,1553.61,-190.4278,55.12157,210.726,-25.82894,54.72806,0.393513,0,11765.26,-,-
+1021,1305.844,577.5373,571.9572,1588.659,-191.7013,78.97688,217.2453,-26.2147,78.21381,0.7630631,0,15628.99,-,-
+1022,1323.205,677.7645,670.3763,1651.235,-193.7846,93.91491,228.8045,-26.8519,92.89117,1.023741,0,18157.38,-,-
+1023,1342.943,681.9122,673.9005,1687.926,-196.1532,95.89913,237.3775,-27.58554,94.77242,1.126715,0,18569.35,-,-
+1024,1363.46,720.5341,712.1484,1689.369,-198.6152,102.8787,241.2102,-28.35852,101.6814,1.197317,0,19815.02,-,-
+1025,1385.072,736.0537,728.4763,1703.484,-201.2086,106.7605,247.0808,-29.18419,105.6614,1.099077,0,20527.65,-,-
+1026,1401.614,535.2069,529.2987,1709.693,-203.2582,78.55589,250.943,-29.83357,77.68871,0.8671894,0,15985.03,-,-
+1027,1414.802,614.6028,608.9919,1631.714,-205.3683,91.05816,241.751,-30.4269,90.22686,0.8312957,0,18063.63,-,-
+1028,1429.796,613.388,607.2955,1655.711,-207.7674,91.84129,247.9061,-31.10857,90.92907,0.9122214,0,18229.91,-,-
+1029,1445.416,648.8126,642.6105,1649.955,-210.2666,98.20662,249.7432,-31.82671,97.26785,0.9387677,0,19277.28,-,-
+1030,1460.968,620.2458,614.5584,1657.391,-212.7549,94.89278,253.5679,-32.54984,94.02265,0.8701284,0,18799.16,-,-
+1031,1474.025,560.3552,556.1159,1643.075,-214.844,86.49617,253.6243,-33.16322,85.8418,0.6543733,0,17438.4,-,-
+1032,1482.309,440.8734,438.3839,1619.675,-216.1694,68.43546,251.4173,-33.55534,68.04903,0.3864306,0,14574.38,-,-
+1033,1486.554,407.0135,405.254,1576.402,-216.8486,63.36043,245.401,-33.75717,63.08653,0.2739021,0,13806.63,-,-
+1034,1491.151,456.8613,454.7742,1562.967,-217.5842,71.34024,244.062,-33.97641,71.01434,0.3259029,0,15051.59,-,-
+1035,1497.039,461.4176,458.2057,1578.61,-218.5262,72.33623,247.478,-34.25826,71.83271,0.5035145,0,15223.21,-,-
+1036,1507.27,631.2414,626.6406,1576.507,-220.1632,99.63574,248.8373,-34.75077,98.90955,0.7261913,0,19663.98,-,-
+1037,1520.142,572.0042,567.1431,1630.737,-222.2227,91.05671,259.5952,-35.37539,90.28288,0.7738308,0,18346.9,-,-
+1038,1531.712,589.3934,584.899,1606.449,-224.0739,94.53901,257.6752,-35.94157,93.81809,0.7209159,0,18957.4,-,-
+1039,1542.735,557.4647,553.7302,1608.58,-225.8376,90.0611,259.8739,-36.48516,89.45779,0.6033173,0,18256.56,-,-
+1040,1550.501,468.9228,466.3328,1595.404,-227.0802,76.1381,259.0428,-36.87057,75.71756,0.4205409,0,16016.19,-,-
+1041,1555.763,464.2068,462.1244,1563.891,-227.9221,75.62816,254.7877,-37.13286,75.2889,0.3392576,0,15959.98,-,-
+1042,1560.967,469.6069,467.6554,1560.58,-228.7547,76.76386,255.0988,-37.39318,76.44486,0.3190017,0,16170.55,-,-
+1043,1565.573,444.1751,442.6015,1560.927,-229.4917,72.82092,255.9085,-37.62434,72.56293,0.257982,0,15557.97,-,-
+1044,1568.879,421.6785,420.4799,1551.414,-230.0206,69.27867,254.886,-37.7907,69.08176,0.1969146,0,15029.18,-,-
+1045,1571.598,422.821,422.1674,1543.034,-230.4557,69.58675,253.9485,-37.92779,69.47919,0.1075606,0,15085.35,-,-
+1046,1572.166,339.0975,339.0818,1543.427,-230.5466,55.82795,254.105,-37.95646,55.82536,0.002586292,0,12969.63,-,-
+1047,1571.677,381.6303,381.6791,1515.558,-230.4683,62.81086,249.4391,-37.93177,62.81889,-0.008024774,0,14063.72,-,-
+1048,1571.921,366.9365,367.133,1529.709,-230.5074,60.40186,251.8072,-37.94409,60.4342,-0.03234528,0,13686.54,-,-
+1049,1570.689,323.5978,324.6922,1525.275,-230.3102,53.22606,250.8805,-37.88193,53.40608,-0.1800176,0,12553.42,-,-
+1050,1566.415,245.5518,248.5677,1512.193,-229.6264,40.279,248.052,-37.66668,40.77371,-0.4947115,0,10491.13,-,-
+1051,1555.499,59.44648,64.76066,1489.222,-227.8799,9.683325,242.5816,-37.11969,10.54896,-0.8656353,0,6195.114,-,-
+1052,1539.664,44.49257,50.75349,1429.303,-225.3462,7.17368,230.4512,-36.3333,8.183149,-1.009469,0,5790.172,-,-
+1053,1524.034,56.28992,62.00447,1427.648,-222.8454,8.983673,227.8477,-35.56535,9.895696,-0.9120224,0,5945.936,-,-
+1054,1510.967,134.7388,139.4326,1434.716,-220.7547,21.31946,227.0124,-34.9296,22.06216,-0.742699,0,7534.354,-,-
+1055,1500.463,148.5053,152.467,1464.902,-219.0741,23.33436,230.1773,-34.4227,23.95686,-0.6224971,0,7761.202,-,-
+1056,1491.063,171.661,175.2659,1472.052,-217.5701,26.80379,229.8517,-33.97221,27.36668,-0.5628873,0,8205.852,-,-
+1057,1482.349,169.9957,172.7971,1482.456,-216.1758,26.38864,230.1234,-33.55724,26.82351,-0.4348721,0,8102.227,-,-
+1058,1476.999,298.8647,299.7327,1483.04,-215.3198,46.2257,229.3832,-33.30373,46.35995,-0.1342501,0,10994.5,-,-
+1059,1477.996,415.8251,414.8492,1528.609,-215.4794,64.35949,236.591,-33.3509,64.20844,0.1510459,0,13927.61,-,-
+1060,1481.899,414.315,412.7404,1568.957,-216.1038,64.2951,243.4772,-33.53588,64.05076,0.244338,0,13932.64,-,-
+1061,1485.909,423.1763,421.5495,1567.197,-216.7455,65.84794,243.8622,-33.72647,65.5948,0.2531405,0,14187.72,-,-
+1062,1490.075,423.2709,421.4099,1569.056,-217.412,66.04732,244.836,-33.92503,65.75693,0.2903874,0,14234.04,-,-
+1063,1495.259,466.0204,463.6233,1567.401,-218.2415,72.97095,245.4286,-34.17294,72.5956,0.3753473,0,15314.85,-,-
+1064,1502.116,492.1666,489.5125,1580.118,-219.3386,77.4184,248.5545,-34.50222,77.00092,0.4174908,0,16014.88,-,-
+1065,1508.6,456.1823,453.7661,1587.226,-220.376,72.06778,250.7504,-34.81505,71.68607,0.3817111,0,15219.82,-,-
+1066,1514.263,464.5259,462.0223,1572.947,-221.2821,73.66138,249.4273,-35.08942,73.26437,0.3970117,0,15479.95,-,-
+1067,1521.178,508.9296,505.9665,1573.499,-222.3885,81.07115,250.6543,-35.4259,80.59914,0.4720102,0,16692.38,-,-
+1068,1529.15,510.5309,507.5093,1586.099,-223.664,81.75244,253.9855,-35.81581,81.26859,0.483853,0,16838.52,-,-
+1069,1536.368,484.8699,482.1775,1584.318,-224.8189,78.00979,254.8979,-36.17068,77.57661,0.4331811,0,16253.9,-,-
+1070,1542.686,479.6742,477.5602,1573.533,-225.8298,77.49123,254.2039,-36.48273,77.1497,0.3415226,0,16198.76,-,-
+1071,1547,409.9503,408.8712,1570.545,-226.52,66.41254,254.4306,-36.69657,66.23773,0.1748108,0,14516.33,-,-
+1072,1548.115,356.6272,356.7304,1546.722,-226.6984,57.81577,250.7518,-36.75194,57.8325,-0.01672752,0,13168.35,-,-
+1073,1546.481,302.5436,303.2811,1529.239,-226.437,48.99606,247.6557,-36.67081,49.11549,-0.1194318,0,11753.28,-,-
+1074,1544.408,337.9313,338.5911,1511.36,-226.1053,54.65364,244.4323,-36.56801,54.76034,-0.1067003,0,12645.95,-,-
+1075,1543.166,333.3802,334.0436,1523.799,-225.9066,53.87423,246.2459,-36.50649,53.98143,-0.1071999,0,12515.19,-,-
+1076,1541.073,304.0672,304.8244,1522.922,-225.5717,49.07061,245.7704,-36.40294,49.1928,-0.1221936,0,11735.46,-,-
+1077,1539.361,346.9468,347.3869,1513.319,-225.2978,55.92835,243.9494,-36.31834,55.99929,-0.07094125,0,12825.58,-,-
+1078,1538.862,350.4022,350.5948,1528.122,-225.2179,56.46705,246.2558,-36.2937,56.49809,-0.0310383,0,12909.61,-,-
+1079,1538.393,348.4949,348.1853,1529.448,-225.1429,56.14258,246.3943,-36.27055,56.0927,0.04988169,0,12855.36,-,-
+1080,1540.417,448.1328,446.7811,1527.993,-225.4667,72.28923,246.4837,-36.37051,72.0712,0.2180318,0,15363.1,-,-
+1081,1545.18,456.6821,455.5218,1560.341,-226.2288,73.89613,252.4802,-36.60628,73.70837,0.1877626,0,15623.2,-,-
+1082,1546.256,306.8455,307.3312,1563.28,-226.401,49.6855,253.1318,-36.65965,49.76416,-0.07865696,0,11862.08,-,-
+1083,1542.735,276.1694,278.3772,1513.42,-225.8376,44.6165,244.5003,-36.48516,44.97318,-0.3566816,0,11032.02,-,-
+1084,1535.145,143.6443,147.5154,1505.277,-224.6232,23.09227,241.9884,-36.11043,23.71458,-0.6223113,0,7917.425,-,-
+1085,1523.252,101.6832,106.7596,1462.496,-222.7203,16.21996,233.2894,-35.52713,17.02971,-0.8097525,0,6890.949,-,-
+1086,1509.617,66.78856,72.21024,1451.083,-220.5387,10.55838,229.397,-34.86424,11.41548,-0.8570963,0,6082.259,-,-
+1087,1496.003,94.00761,98.48075,1441.829,-218.3605,14.72733,225.8785,-34.20859,15.4281,-0.7007681,0,6542.99,-,-
+1088,1487.171,245.5411,248.2712,1453.48,-216.9473,38.23964,226.3594,-33.78655,38.66481,-0.4251728,0,9851.006,-,-
+1089,1482.3,244.6322,245.9336,1508.756,-216.168,37.9733,234.1984,-33.55492,38.17532,-0.2020224,0,9793.026,-,-
+1090,1480.637,369.0822,369.1893,1508.681,-215.9019,57.22691,233.9239,-33.47601,57.24352,-0.01661574,0,12776.66,-,-
+1091,1481.762,353.09,352.6736,1552.605,-216.0819,54.78889,240.9174,-33.52938,54.72427,0.06461586,0,12375.24,-,-
+1092,1482.73,364.1751,363.8677,1546.636,-216.2368,56.54588,240.1479,-33.57533,56.49815,0.04772615,0,12671.98,-,-
+1093,1483.307,338.1689,338.1709,1550.454,-216.3291,52.5283,240.8344,-33.60274,52.52861,-0.0003092398,0,12005.95,-,-
+1094,1482.72,318.8651,319.2229,1541.447,-216.2352,49.5102,239.3405,-33.57486,49.56577,-0.05556452,0,11500.83,-,-
+1095,1481.508,313.0723,313.5763,1534.946,-216.0413,48.57103,238.1364,-33.51733,48.64921,-0.07818564,0,11354.26,-,-
+1096,1480.187,313.7646,314.2726,1533.253,-215.8299,48.63502,237.6617,-33.45468,48.71376,-0.07874236,0,11360.04,-,-
+1097,1478.955,315.6036,316.1231,1533.838,-215.6328,48.87937,237.5544,-33.3963,48.95982,-0.08045347,0,11392.75,-,-
+1098,1477.576,307.5775,307.7977,1534.893,-215.4122,47.5919,237.4961,-33.33103,47.62597,-0.0340676,0,11198.43,-,-
+1099,1477.849,379.4493,379.1633,1531.819,-215.4559,58.72357,237.0642,-33.34394,58.67931,0.04425835,0,13015.12,-,-
+1100,1479.013,342.6922,342.4022,1557.107,-215.6421,53.07681,241.1677,-33.39905,53.03189,0.04491743,0,12077.44,-,-
+1101,1479.307,346.4493,346.2487,1543.963,-215.6891,53.66938,239.1795,-33.41298,53.63831,0.03107533,0,12177.65,-,-
+1102,1480.021,359.1558,358.8602,1545.067,-215.8033,55.66464,239.4659,-33.44681,55.61882,0.0458242,0,12513.6,-,-
+1103,1480.793,349.2492,348.9826,1549.376,-215.9269,54.15747,240.2591,-33.48341,54.11613,0.04133986,0,12265.73,-,-
+1104,1481.361,351.8578,351.4178,1545.694,-216.0177,54.58292,239.78,-33.51035,54.51465,0.06826997,0,12339.16,-,-
+1105,1483.004,391.607,390.9669,1546.061,-216.2806,60.81649,240.103,-33.58834,60.71709,0.09940303,0,13383.85,-,-
+1106,1484.578,350.3199,349.8394,1559.76,-216.5325,54.46236,242.4875,-33.66315,54.38765,0.07471478,0,12333.43,-,-
+1107,1485.42,363.8792,363.6184,1544.884,-216.6672,56.60244,240.3111,-33.70319,56.56187,0.04057139,0,12692.78,-,-
+1108,1485.889,336.2486,336.0112,1549.606,-216.7422,52.32093,241.1216,-33.72551,52.28399,0.03693792,0,11983.62,-,-
+1109,1486.613,374.1817,373.7612,1539.546,-216.8581,58.25177,239.673,-33.75998,58.18631,0.0654618,0,12971.66,-,-
+1110,1488.002,362.8584,362.2103,1552.568,-217.0803,56.54176,241.9262,-33.82615,56.44076,0.1009942,0,12693.7,-,-
+1111,1489.87,393.787,393.2071,1547.96,-217.3792,61.43818,241.5109,-33.91525,61.34771,0.09046569,0,13512.8,-,-
+1112,1490.917,331.8962,331.6512,1558.692,-217.5467,51.81845,243.3562,-33.96524,51.78019,0.03826213,0,11924.31,-,-
+1113,1491.102,360.8588,360.5981,1536.762,-217.5763,56.34732,239.962,-33.97408,56.30661,0.04071419,0,12674.8,-,-
+1114,1492.227,368.6059,368.0939,1546.627,-217.7563,57.60044,241.6846,-34.02784,57.52043,0.08000778,0,12886.92,-,-
+1115,1493.675,374.3943,373.8201,1548.917,-217.988,58.56175,242.2774,-34.09709,58.47193,0.08981726,0,13051.84,-,-
+1116,1495.113,369.0165,368.6645,1550.542,-218.2181,57.77613,242.765,-34.16594,57.72102,0.05511532,0,12928.05,-,-
+1117,1495.445,331.8427,332.0101,1548.639,-218.2712,51.96744,242.5209,-34.18184,51.99366,-0.02622381,0,11970.8,-,-
+1118,1494.271,309.4606,310.6172,1535.944,-218.0834,48.4243,240.3441,-34.12562,48.60529,-0.1809899,0,11379.92,-,-
+1119,1489.625,194.0943,196.9288,1529.573,-217.34,30.27738,238.6029,-33.90355,30.71955,-0.4421667,0,8695.142,-,-
+1120,1480.001,110.6093,115.0127,1491.142,-215.8002,17.14282,231.1052,-33.44586,17.82528,-0.6824614,0,6789.244,-,-
+1121,1467.472,73.8661,78.32265,1464.105,-213.7955,11.35125,224.9939,-32.85467,12.0361,-0.6848524,0,6027.757,-,-
+1122,1457.623,207.1913,210.5864,1452.897,-212.2197,31.62609,221.773,-32.39362,32.14432,-0.5182347,0,8747.346,-,-
+1123,1450.424,171.2592,174.5264,1503.205,-211.0678,26.01223,228.3188,-32.05868,26.50847,-0.49624,0,7886.815,-,-
+1124,1441.191,123.557,127.3298,1492.377,-209.5906,18.64737,225.2313,-31.63165,19.21676,-0.5693892,0,6862.419,-,-
+1125,1431.459,145.7263,149.396,1477.05,-208.0334,21.84468,221.4128,-31.18464,22.39477,-0.5500929,0,7243.797,-,-
+1126,1422.754,157.4646,160.9247,1487.253,-206.6406,23.46072,221.5865,-30.78748,23.97624,-0.5155178,0,7429.693,-,-
+1127,1414.069,141.5575,144.7156,1493.653,-205.251,20.96197,221.1816,-30.39377,21.42962,-0.4676552,0,7085.301,-,-
+1128,1406.89,211.2829,213.7696,1489.287,-204.1024,31.12813,219.4154,-30.07024,31.4945,-0.3663712,0,8453.948,-,-
+1129,1401.579,210.2529,212.5078,1516.649,-203.2526,30.85945,222.6031,-29.832,31.19041,-0.3309633,0,8389.839,-,-
+1130,1395.554,180.1112,182.8979,1516.685,-202.4665,26.32182,221.6515,-29.58887,26.72908,-0.4072633,0,7733.734,-,-
+1131,1387.563,129.2806,132.8144,1505.431,-201.5076,18.78516,218.747,-29.28011,19.29863,-0.5134746,0,6708.767,-,-
+1132,1377.782,105.1045,108.8382,1486.324,-200.3338,15.16458,214.4484,-28.90436,15.70328,-0.5387047,0,6184.011,-,-
+1133,1368.803,154.6087,157.9011,1477.173,-199.2564,22.16172,211.739,-28.56155,22.63366,-0.4719375,0,7077.811,-,-
+1134,1361.243,155.197,158.2617,1495.8,-198.3492,22.12318,213.2249,-28.27448,22.56006,-0.4368814,0,7041.998,-,-
+1135,1353.398,139.7746,142.4198,1496.036,-197.4077,19.8099,212.0295,-27.97811,20.18481,-0.374905,0,6697.245,-,-
+1136,1347.96,245.8792,246.5972,1490.127,-196.7552,34.70782,210.3434,-27.77358,34.80918,-0.1013538,0,8679.943,-,-
+1137,1349.799,422.2444,420.4563,1529.579,-196.9759,59.6845,216.207,-27.84266,59.43176,0.25274,0,12647.14,-,-
+1138,1356.929,455.4142,452.2107,1595.01,-197.8315,64.71312,226.6465,-28.11131,64.2579,0.4552177,0,13433.15,-,-
+1139,1365.889,499.3502,495.4028,1607.16,-198.9067,71.42484,229.8811,-28.45073,70.86021,0.5646318,0,14616.55,-,-
+1140,1376.755,535.6113,531.3108,1623.279,-200.2106,77.22092,234.0337,-28.86505,76.60091,0.6200177,0,15643.17,-,-
+1141,1387.504,501.1285,497.433,1636.798,-201.5005,72.81351,237.8253,-29.27784,72.27655,0.5369577,0,14970.27,-,-
+1142,1395.348,428.5453,425.5509,1624.367,-202.4418,62.61925,237.3533,-29.58089,62.18171,0.4375392,0,13341.14,-,-
+1143,1402.557,480.3386,477.6578,1596.641,-203.4091,70.54993,234.5074,-29.8758,70.15619,0.3937424,0,14678.17,-,-
+1144,1408.826,396.055,393.6852,1614.176,-204.4122,58.43076,238.1425,-30.15732,58.08114,0.3496163,0,12714.38,-,-
+1145,1414.47,459.5853,457.3317,1581.338,-205.3152,68.07513,234.2325,-30.41189,67.74133,0.3337983,0,14306.07,-,-
+1146,1420.152,400.7273,398.7023,1603.172,-206.2243,59.59535,238.4205,-30.66926,59.29419,0.3011607,0,12953.56,-,-
+1147,1424.652,416.9223,415.1123,1580.279,-206.9443,62.20031,235.7606,-30.87386,61.93027,0.2700441,0,13389.83,-,-
+1148,1429.249,406.6238,405.2979,1584.9,-207.6798,60.85963,237.2129,-31.08357,60.66118,0.1984558,0,13191.28,-,-
+1149,1431.322,320.7202,320.417,1580.78,-208.0115,48.07201,236.9394,-31.17837,48.02657,0.04543883,0,11146.48,-,-
+1150,1430.774,304.2251,305.2394,1549.561,-207.9238,45.58215,232.1712,-31.15329,45.73412,-0.1519732,0,10764.56,-,-
+1151,1426.217,161.0303,165.0083,1545.016,-207.1947,24.05038,230.753,-30.94518,24.6445,-0.5941197,0,7513.737,-,-
+1152,1410.704,-109.947,-103.0398,1496.064,-204.7126,-16.24231,221.0114,-30.24191,-15.22193,-1.020384,0,2022.152,-,-
+1153,1391.456,3.920417,10.95557,1395.7,-201.9747,0.5712554,203.3715,-29.43033,1.596369,-1.025114,0,4333.694,-,-
+1154,1375.386,-14.8689,-8.626122,1438.987,-200.0463,-2.141569,207.2575,-28.81269,-1.242421,-0.8991483,0,3908.352,-,-
+1155,1360.089,24.54802,31.11972,1431.862,-198.2107,3.49633,203.9374,-28.23079,4.432325,-0.9359952,0,4547.281,-,-
+1156,1342.327,-97.598,-88.84552,1446.827,-196.0792,-13.71917,203.3779,-27.5625,-12.48885,-1.23032,0,2088.967,-,-
+1157,1315.958,-126.1624,-113.4686,1400.167,-192.915,-17.38603,192.9526,-26.58499,-15.63675,-1.749282,0,1415.944,-,-
+1158,1278.253,-125.9736,-108.2932,1388.794,-188.3904,-16.86262,185.9016,-25.21762,-14.49595,-2.366673,0,1323.973,-,-
+1159,1226.61,-124.4795,-100.6098,1388.271,-182.1932,-15.98943,178.3238,-23.40277,-12.92336,-3.06607,0,1140.175,-,-
+1160,1157.421,-119.0772,-90.88316,1388.03,-174.955,-14.43274,168.2359,-21.20539,-11.01548,-3.417258,0,1032.334,-,-
+1161,1084.691,-119.4936,-91.36508,1389.852,-168.0457,-13.57311,157.8713,-19.08807,-10.37803,-3.195077,0,896.9926,-,-
+1162,1016.333,-112.8639,-86.65202,1389.676,-161.5516,-12.01213,147.9034,-17.19396,-9.222387,-2.789738,0,880.1261,-,-
+1163,953.2953,-113.8423,-88.9229,1318.088,-157.4312,-11.36474,131.5832,-15.71618,-8.877071,-2.48767,0,780.5153,-,-
+1164,891.1482,-51.95162,-93.70045,1218.689,-154.0132,-4.848168,113.7291,-14.37263,-8.744204,3.896036,0,1673.212,-,-
+1165,1132.584,-63.8334,-86.82883,1422.171,-172.5955,-7.570892,168.6751,-20.4705,-10.29824,2.727348,0,2009.364,-,-
+1166,1027.589,-117.1181,-72.46526,1411.117,-162.621,-12.60294,151.8487,-17.49946,-7.797905,-4.805037,0,828.8263,-,-
+1167,906.3764,-126.5627,-77.26476,1238.787,-154.8507,-12.01276,117.5801,-14.69773,-7.333625,-4.67914,0,506.5318,-,-
+1168,778.9708,-136.0569,-83.51562,1030.702,-148.8949,-11.09866,84.0781,-12.14589,-6.812672,-4.285986,0,161.8957,-,-
+1169,640.4005,-110.5911,-98.02908,803.4507,-148.202,-7.416527,53.88148,-9.938809,-6.574084,-0.8424429,0,453.6218,-,-
+1170,725.2108,-63.89921,-57.02477,963.7918,-148.6261,-4.852755,73.19411,-11.28724,-4.330684,-0.5220711,0,1068.468,-,-
+1171,600,-34.98454,-105.1626,772.2873,-148,-2.198144,48.52424,-9.299114,-6.607558,4.409414,0,1114.119,-,-
+1172,974.2606,12.80663,2.593833,1388.479,-158.5843,1.306588,141.6586,-16.17946,0.2646341,1.041954,0,2892.233,-,-
+1173,678.2445,-117.595,-31.17452,932.6062,-148.3912,-8.352256,66.23891,-10.53958,-2.214189,-6.138067,0,388.363,-,-
+1174,600,-49.4764,-32.89319,751.4012,-148,-3.108694,47.21193,-9.299114,-2.06674,-1.041954,0,971.2563,-,-
+1175,600,-33.76773,-33.76773,782.6964,-148,-2.121689,49.17826,-9.299114,-2.121689,0,0,1126.114,-,-
+1176,600,-23.20201,-23.20201,788.5872,-148,-1.457825,49.54839,-9.299114,-1.457825,0,0,1230.272,-,-
+1177,600,-1.447651,-1.447651,792.5493,-148,-0.0909586,49.79734,-9.299114,-0.0909586,0,0,1444.729,-,-
+1178,600,0,0,800.7072,-148,0,50.30991,-9.299114,0,0,0,1459,-,-
+1179,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1180,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1181,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1182,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1183,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1184,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1185,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1186,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1187,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1188,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1189,600,3.787888E-06,3.787888E-06,801.2501,-148,2.38E-07,50.34402,-9.299114,2.38E-07,0,0,1459,-,-
+1190,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1191,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1192,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1193,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1194,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1195,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1196,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1197,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1198,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1199,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1200,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1201,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1202,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1203,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1204,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1205,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1206,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1207,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1208,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1209,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+1210,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1211,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1212,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1213,600,3.787888E-06,3.787888E-06,801.2501,-148,2.38E-07,50.34402,-9.299114,2.38E-07,0,0,1459,-,-
+1214,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1215,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+1216,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1217,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1218,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1219,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1220,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1221,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1222,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1223,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1224,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1225,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1226,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+1227,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1228,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1229,600,3.787888E-06,3.787888E-06,801.2501,-148,2.38E-07,50.34402,-9.299114,2.38E-07,0,0,1459,-,-
+1230,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1231,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1232,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1233,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1234,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+1235,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1236,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1237,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1238,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+1239,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+1240,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1241,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1242,600,3.787888E-06,3.787888E-06,801.2501,-148,2.38E-07,50.34402,-9.299114,2.38E-07,0,0,1459,-,-
+1243,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1244,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1245,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1246,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1247,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1248,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1249,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1250,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1251,600,3.787888E-06,3.787888E-06,801.2501,-148,2.38E-07,50.34402,-9.299114,2.38E-07,0,0,1459,-,-
+1252,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1253,600,3.787888E-06,3.787888E-06,801.2501,-148,2.38E-07,50.34402,-9.299114,2.38E-07,0,0,1459,-,-
+1254,600,3.787888E-06,3.787888E-06,801.2501,-148,2.38E-07,50.34402,-9.299114,2.38E-07,0,0,1459,-,-
+1255,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1256,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1257,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1258,600,3.787888E-06,3.787888E-06,801.2501,-148,2.38E-07,50.34402,-9.299114,2.38E-07,0,0,1459,-,-
+1259,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1260,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1261,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1262,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1263,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1264,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+1265,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1266,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1267,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1268,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1269,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+1270,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+1271,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1272,600,3.787888E-06,3.787888E-06,801.2501,-148,2.38E-07,50.34402,-9.299114,2.38E-07,0,0,1459,-,-
+1273,600,3.787888E-06,3.787888E-06,801.2501,-148,2.38E-07,50.34402,-9.299114,2.38E-07,0,0,1459,-,-
+1274,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1275,600,3.787888E-06,3.787888E-06,801.2501,-148,2.38E-07,50.34402,-9.299114,2.38E-07,0,0,1459,-,-
+1276,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1277,600,3.787888E-06,3.787888E-06,801.2501,-148,2.38E-07,50.34402,-9.299114,2.38E-07,0,0,1459,-,-
+1278,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1279,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+1280,600,3.787888E-06,3.787888E-06,801.2501,-148,2.38E-07,50.34402,-9.299114,2.38E-07,0,0,1459,-,-
+1281,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+1282,600,3.787888E-06,3.787888E-06,801.2501,-148,2.38E-07,50.34402,-9.299114,2.38E-07,0,0,1459,-,-
+1283,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1284,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+1285,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+1286,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+1287,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+1288,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1289,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1290,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1291,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1292,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1293,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1294,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1295,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1296,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1297,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1298,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1299,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1300,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1301,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1302,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1303,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1304,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1305,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1306,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1307,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1308,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1309,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1310,600,3.787888E-06,3.787888E-06,801.2501,-148,2.38E-07,50.34402,-9.299114,2.38E-07,0,0,1459,-,-
+1311,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1312,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1313,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1314,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1315,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+1316,600,3.787888E-06,3.787888E-06,801.2501,-148,2.38E-07,50.34402,-9.299114,2.38E-07,0,0,1459,-,-
+1317,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1318,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1319,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1320,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1321,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+1322,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1323,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1324,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+1325,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+1326,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1327,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1328,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1329,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+1330,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1331,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1332,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1333,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+1334,600,3.787888E-06,3.787888E-06,801.2501,-148,2.38E-07,50.34402,-9.299114,2.38E-07,0,0,1459,-,-
+1335,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1336,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1337,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1338,600,3.787888E-06,3.787888E-06,801.2501,-148,2.38E-07,50.34402,-9.299114,2.38E-07,0,0,1459,-,-
+1339,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1340,600,3.787888E-06,3.787888E-06,801.2501,-148,2.38E-07,50.34402,-9.299114,2.38E-07,0,0,1459,-,-
+1341,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1342,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1343,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1344,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1345,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1346,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1347,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1348,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1349,600,3.787888E-06,3.787888E-06,801.2501,-148,2.38E-07,50.34402,-9.299114,2.38E-07,0,0,1459,-,-
+1350,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1351,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1352,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1353,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1354,600,3.787888E-06,3.787888E-06,801.2501,-148,2.38E-07,50.34402,-9.299114,2.38E-07,0,0,1459,-,-
+1355,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+1356,600,3.787888E-06,3.787888E-06,801.2501,-148,2.38E-07,50.34402,-9.299114,2.38E-07,0,0,1459,-,-
+1357,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1358,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1359,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1360,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+1361,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1362,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1363,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1364,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1365,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1366,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1367,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1368,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1369,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1370,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1371,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1372,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1373,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1374,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1375,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1376,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1377,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1378,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1379,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1380,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1381,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1382,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1383,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1384,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1385,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1386,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1387,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1388,600,7.591691E-06,7.591691E-06,801.2501,-148,4.77E-07,50.34402,-9.299114,4.77E-07,0,0,1459,-,-
+1389,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1390,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1391,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1392,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1393,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1394,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1395,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1396,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1397,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1398,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1399,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1400,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1401,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+1402,600,9.17054,3.794549E-06,801.2501,-148,0.576202,50.34402,-9.299114,2.384186E-07,0.5762018,0,1546.074,-,-
+1403,644.4445,9.615221,1.077136,875.1463,-148.2222,0.6488935,59.06019,-10.00294,0.07269168,0.5762018,0,1643.63,-,-
+1404,644.4445,8.352283,8.352283,875.5502,-148.2222,0.5636628,59.08745,-10.00294,0.5636628,0,0,1631.638,-,-
+1405,644.4445,157.4312,93.74334,875.0767,-148.2222,10.62441,59.05548,-10.00294,6.32637,4.298042,0,3051.907,-,-
+1406,909.8743,89.61217,93.9563,1335.958,-155.0431,8.53841,127.2925,-14.77279,8.952327,-0.4139163,0,3499.163,-,-
+1407,612.8438,51.72377,7.161686,871.5715,-148.0642,3.319469,55.93472,-9.502296,0.4596145,2.859854,0,1977.089,-,-
+1408,1049.945,8.642522,4.877934,1448.822,-164.7448,0.9502451,159.2979,-18.11368,0.5363288,0.4139163,0,3109.251,-,-
+1409,644.4445,-86.6936,19.37119,877.2248,-148.2222,-5.85061,59.20045,-10.00294,1.307286,-7.157896,0,697.6987,-,-
+1410,644.4445,22.3256,22.3256,839.4344,-148.2222,1.506667,56.65013,-10.00294,1.506667,0,0,1764.315,-,-
+1411,644.4445,17.65526,17.65526,880.3167,-148.2222,1.191484,59.40911,-10.00294,1.191484,0,0,1719.97,-,-
+1412,644.4445,18.14902,18.12706,878.5653,-148.2222,1.224806,59.29092,-10.00294,1.223324,0.001481877,0,1724.658,-,-
+1413,644.5549,20.55459,20.33351,878.9247,-148.2228,1.387386,59.32534,-10.00469,1.372464,0.01492213,0,1747.731,-,-
+1414,645.5549,34.30902,33.75776,881.4067,-148.2278,2.31937,59.58516,-10.02055,2.282104,0.03726603,0,1880.429,-,-
+1415,647.3238,38.86414,35.91607,889.3552,-148.2366,2.634507,60.28724,-10.0486,2.434664,0.1998428,0,1927.395,-,-
+1416,660.2452,38.85215,31.96376,911.3663,-148.3012,2.686265,63.01252,-10.25365,2.209997,0.4762683,0,1954.416,-,-
+1417,681.7216,45.86092,36.57824,945.3491,-148.4086,3.273998,67.4882,-10.59485,2.61131,0.6626881,0,2066.065,-,-
+1418,706.7773,46.65885,37.03551,987.6808,-148.5339,3.453387,73.10175,-10.99352,2.741129,0.7122577,0,2126.258,-,-
+1419,730.1458,42.46338,34.26281,1025.2,-148.6507,3.246779,78.38752,-11.36594,2.619758,0.6270215,0,2135.496,-,-
+1420,748.145,35.47499,29.54738,1052.434,-148.7407,2.779308,82.45353,-11.65318,2.314906,0.4644022,0,2106.94,-,-
+1421,760.0593,29.0183,25.75812,1068.939,-148.8003,2.30966,85.0803,-11.8435,2.050172,0.2594877,0,2070.653,-,-
+1422,764.6102,20.2586,19.23368,1073.9,-148.823,1.622102,85.98698,-11.91623,1.540037,0.08206514,0,1997.037,-,-
+1423,765.2238,20.10689,20.23899,1071.65,-148.8261,1.611247,85.87566,-11.92604,1.621832,-0.01058546,0,1996.885,-,-
+1424,763.9455,16.41499,16.57795,1069.579,-148.8197,1.313202,85.56648,-11.90561,1.326239,-0.01303712,0,1959.146,-,-
+1425,764.4057,23.36051,22.67772,1068.91,-148.822,1.869971,85.56449,-11.91296,1.815315,0.05465584,0,2026.06,-,-
+1426,767.3715,20.13854,20.098,1076.202,-148.8369,1.618312,86.48244,-11.96037,1.615054,0.003257972,0,2001.696,-,-
+1427,764.6102,13.9079,14.64133,1070.662,-148.823,1.113603,85.72772,-11.91623,1.172328,-0.05872486,0,1936.737,-,-
+1428,763.6898,22.91134,22.67687,1066.841,-148.8185,1.832298,85.31891,-11.90152,1.813547,0.01875098,0,2020.292,-,-
+1429,765.7863,19.07935,18.87628,1073.522,-148.8289,1.530029,86.08891,-11.93503,1.513745,0.01628429,0,1988.31,-,-
+1430,764.7125,17.77143,18.22923,1070.411,-148.8236,1.423146,85.71902,-11.91787,1.459806,-0.0366605,0,1973.636,-,-
+1431,763.4852,17.84528,18.65832,1067.969,-148.8174,1.426766,85.38622,-11.89825,1.49177,-0.06500448,0,1971.76,-,-
+1432,760.6218,7.042952,15.92825,1063.456,-148.8031,0.5609861,84.70656,-11.85249,1.268719,-0.7077329,0,1863.179,-,-
+1433,717.6179,-50.84889,-32.05458,991.1354,-148.5881,-3.821232,74.48261,-11.16621,-2.408862,-1.41237,0,1204.724,-,-
+1434,665.5632,-15.48021,3.123377,884.9767,-148.3278,-1.078933,61.68076,-10.33809,0.2176919,-1.296625,0,1444.077,-,-
+1435,624.9115,77.67553,-18.54058,834.6921,-148.1246,5.083132,54.62273,-9.693357,-1.213306,6.296438,0,2248.843,-,-
+1436,1023.406,2.144206,-0.2660159,1455.286,-162.2236,0.2297964,155.9642,-17.38563,-0.02850914,0.2583055,0,2949.941,-,-
+1437,644.4445,24.65268,32.43059,873.2214,-148.2222,1.663712,58.93029,-10.00294,2.188613,-0.5249006,0,1786.411,-,-
+1438,998.4866,34.45653,-7.237188,1441.06,-159.9168,3.602818,150.679,-16.7211,-0.7567296,4.359548,0,3386.042,-,-
+1439,913.1129,-47.3893,-7.222083,1313.424,-155.2212,-4.53141,125.5909,-14.8424,-0.6905825,-3.840828,0,1839.033,-,-
+1440,792.6539,-67.01781,-20.79579,1087.218,-148.9633,-5.562915,90.24622,-12.36492,-1.726186,-3.83673,0,1033.393,-,-
+1441,682.2707,-39.09208,-3.385132,902.9142,-148.4113,-2.79302,64.51071,-10.60358,-0.2418582,-2.551162,0,1246.395,-,-
+1442,619.2075,-10.66077,-2.597964,815.6495,-148.096,-0.6912789,52.88937,-9.60303,-0.1684604,-0.5228185,0,1394.241,-,-
+1443,644.4445,15.11501,9.796928,868.1033,-148.2222,1.020053,58.58488,-10.00294,0.6611562,0.3588963,0,1695.85,-,-
+1444,646.427,33.34153,27.25241,880.7487,-148.2321,2.25701,59.62112,-10.03438,1.844816,0.4121945,0,1873.074,-,-
+1445,674.444,25.42469,15.06465,931.6462,-148.3722,1.795685,65.79994,-10.47918,1.06398,0.7317053,0,1856.74,-,-
+1446,698.6438,54.09911,17.47569,967.3593,-148.4932,3.957989,70.77376,-10.86403,1.278553,2.679436,0,2179.823,-,-
+1447,843.8422,61.55166,69.95789,1205.908,-151.4113,5.439133,106.5624,-13.37976,6.181966,-0.7428332,0,2835.917,-,-
+1448,645.6003,72.87508,100.9799,903.9525,-148.228,4.926873,61.11361,-10.02127,6.826957,-1.900084,0,2246.709,-,-
+1449,727.7936,135.8361,89.9426,1028.763,-148.639,10.35266,78.40656,-11.32842,6.854918,3.497744,0,3178.75,-,-
+1450,867.4923,206.9459,144.7915,1269.465,-152.7121,18.79971,115.3228,-13.87291,13.15338,5.646328,0,4946.908,-,-
+1451,1035.213,188.2241,129.6809,1502.531,-163.3452,20.40486,162.8853,-17.70781,14.05835,6.34651,0,5916.068,-,-
+1452,1166.934,148.0674,94.74348,1500.117,-175.8587,18.09399,183.3158,-21.49012,11.57775,6.516236,0,5810.391,-,-
+1453,1302.747,200.2309,135.9018,1487.237,-191.3296,27.31617,202.8938,-26.10183,18.54018,8.775992,0,7541.448,-,-
+1454,1484.631,247.991,160.0423,1482.97,-216.541,38.55521,230.5577,-33.66566,24.88181,13.6734,0,9887.729,-,-
+1455,1734.831,343.6884,232.7754,1505.034,-254.5505,62.43824,273.4212,-46.24446,42.28856,20.14968,0,14950.58,-,-
+1456,2034.273,322.8988,230.6285,1071.125,-307.5119,68.78667,228.1803,-65.50881,49.13046,19.65621,0,18923.87,-,-
+1457,2212.783,-37.63881,64.52233,711.9996,-341.4287,-8.721745,164.986,-79.11658,14.95125,-23.67299,0,ERROR,-,-
+1458,1365.991,-101.6683,104.755,1414.636,-198.9189,-14.54327,202.3583,-28.4546,14.98481,-29.52808,0,2062.863,-,-
+1459,1435.985,281.8245,243.3706,1394.831,-208.7576,42.37964,209.7491,-31.39213,36.59709,5.782552,0,10291.35,-,-
+1460,1555.953,354.7569,300.5945,1493.449,-227.9525,57.80375,243.3412,-37.14235,48.97858,8.825164,0,13202.9,-,-
+1461,1705.628,428.0973,361.6154,1525.263,-250.3161,76.46371,272.4317,-44.70969,64.5892,11.87452,0,16891.88,-,-
+1462,1887.01,487.2884,427.628,1387.229,-280.0969,96.29171,274.1266,-55.34916,84.50237,11.78934,0,21421.84,-,-
+1463,2010.176,55.05623,139.7558,1152.572,-302.9334,11.58962,242.6222,-63.76905,29.41932,-17.8297,0,10831.39,-,-
+1464,1359.912,346.1077,485.647,1468.018,-198.1894,49.28908,209.06,-28.22409,69.16082,-19.87174,0,11073.55,-,-
+1465,1460.599,638.5287,597.7583,1541.898,-212.6958,97.66524,235.8389,-32.53259,91.42927,6.235968,0,19229.95,-,-
+1466,1564.59,559.363,524.1234,1604.412,-229.3344,91.64798,262.8725,-37.57494,85.87419,5.77379,0,18591.31,-,-
+1467,1639.38,356.486,334.0009,1574.531,-240.7101,61.19989,270.3083,-41.32402,57.33976,3.860132,0,14128.45,-,-
+1468,1678.83,211.7384,201.005,1525.825,-246.4303,37.22502,268.2502,-43.3241,35.33801,1.887006,0,10803.25,-,-
+1469,1693.723,114.5044,108.4742,1491.219,-248.5898,20.30922,264.4919,-44.09145,19.23966,1.069563,0,8362.14,-,-
+1470,1709.133,219.2019,207.1438,1470.599,-250.8243,39.23275,263.2078,-44.89253,37.07459,2.158164,0,11315.54,-,-
+1471,1753.812,402.7584,382.806,1511.777,-257.3027,73.97011,277.6512,-47.2559,70.30568,3.66443,0,16819.75,-,-
+1472,1809.11,324.9886,310.2763,1545.287,-265.6853,61.56895,292.754,-50.33397,58.7817,2.787256,0,15379.76,-,-
+1473,1828.497,-40.59858,53.04216,1492.345,-269.2719,-7.773806,285.7538,-51.56012,10.1565,-17.93031,0,5810.682,-,-
+1474,1245.703,258.9066,395.1407,1415.153,-184.4844,33.7743,184.6063,-24.06593,51.546,-17.7717,0,8287.407,-,-
+1475,1279.657,569.8088,553.903,1532.014,-188.5588,76.35744,205.2981,-25.2679,74.22597,2.131468,0,15066.67,-,-
+1476,1325.282,653.5901,636.0149,1643.822,-194.0338,90.70733,228.1349,-26.92864,88.26819,2.439137,0,17645.55,-,-
+1477,1368.083,523.4054,507.3785,1674.928,-199.17,74.98584,239.9591,-28.53415,72.68974,2.2961,0,15225.44,-,-
+1478,1405.977,563.0521,547.4522,1626.655,-203.9563,82.90017,239.4982,-30.02922,80.60335,2.296819,0,16699.46,-,-
+1479,1446.416,582.2336,567.2193,1627.927,-210.4266,88.18995,246.5794,-31.87296,85.91576,2.274191,0,17657.5,-,-
+1480,1481.576,463.7591,451.3645,1623.916,-216.0522,71.95235,251.951,-33.52055,70.02934,1.923016,0,15115.88,-,-
+1481,1508.876,429.7935,418.3658,1574.973,-220.4202,67.91129,248.8602,-34.8284,66.10561,1.805677,0,14589.41,-,-
+1482,1538.958,526.5458,513.9343,1553.638,-225.2333,84.85776,250.3832,-36.29844,82.82529,2.03247,0,17389.74,-,-
+1483,1572.196,501.842,489.3297,1574.55,-230.5514,82.62326,259.2339,-37.95797,80.56322,2.060039,0,17169.21,-,-
+1484,1601.915,463.0815,452.0413,1557.491,-235.2777,77.68292,261.2725,-39.46834,75.8309,1.852022,0,16529.96,-,-
+1485,1627.751,428.6975,419.3847,1548.933,-239.0239,73.07479,264.0275,-40.74346,71.48734,1.587449,0,15941.3,-,-
+1486,1648.79,370.5494,362.8506,1542.102,-242.0745,63.97939,266.2607,-41.79681,62.65011,1.329281,0,14627.26,-,-
+1487,1666.484,364.9799,358.0603,1528.553,-244.6402,63.69403,266.7536,-42.69309,62.48646,1.207569,0,14692.49,-,-
+1488,1683.574,362.6791,355.6192,1530.552,-247.1182,63.94158,269.8416,-43.5678,62.6969,1.244681,0,14840.8,-,-
+1489,1701.953,395.4627,388.6997,1533.816,-249.7832,70.48257,273.3691,-44.51838,69.27721,1.205364,0,15977.49,-,-
+1490,1717.592,310.0464,305.8405,1545.856,-252.0508,55.76675,278.0467,-45.33533,55.01025,0.7565059,0,13804.25,-,-
+1491,1723.154,190.8206,191.0577,1525.88,-252.8573,34.43325,275.3424,-45.62767,34.47604,-0.04278851,0,10720.67,-,-
+1492,1716.396,56.04358,60.33729,1493.65,-251.8774,10.07331,268.4695,-45.27259,10.84506,-0.7717544,0,7157.148,-,-
+1493,1701.523,19.38078,26.39168,1452.393,-249.7208,3.453327,258.7918,-44.49602,4.702551,-1.249224,0,6250.329,-,-
+1494,1681.102,-56.74624,-48.84713,1433.698,-246.7598,-9.989869,252.3949,-43.44073,-8.599273,-1.390596,0,4437.777,-,-
+1495,1661.836,38.10447,43.86319,1403.092,-243.9662,6.631209,244.176,-42.45673,7.633382,-1.002173,0,6429.746,-,-
+1496,1652.243,130.4621,133.5077,1427.433,-242.5752,22.57287,246.978,-41.97097,23.09983,-0.5269598,0,8431.763,-,-
+1497,1646.547,116.3686,119.3513,1453.249,-241.7493,20.06497,250.578,-41.68387,20.57926,-0.5142853,0,8083.302,-,-
+1498,1637.236,54.66465,59.49218,1445.9,-240.3992,9.372307,247.901,-41.21667,10.19999,-0.8276835,0,6651.438,-,-
+1499,1622.242,-3.931145,2.887116,1421.348,-238.2251,-0.667826,241.4597,-40.46986,0.4904656,-1.158292,0,5255.314,-,-
+1500,1602.922,-35.18467,-27.71858,1395.109,-235.4237,-5.906015,234.1797,-39.51765,-4.652774,-1.253241,0,4446.63,-,-
+1501,1584.731,13.9096,20.37056,1386.905,-232.5569,2.308335,230.1605,-38.59344,3.380548,-1.072213,0,5406.916,-,-
+1502,1570.49,37.69171,43.12023,1406.633,-230.2784,6.198828,231.3368,-37.87189,7.09161,-0.8927816,0,5824.364,-,-
+1503,1557.458,35.59444,40.89435,1417.685,-228.1933,5.805334,231.2196,-37.21755,6.66973,-0.8643962,0,5699.802,-,-
+1504,1543.848,23.04487,28.17448,1420.064,-226.0157,3.725697,229.5837,-36.54027,4.555008,-0.8293115,0,5397.59,-,-
+1505,1531.689,61.62979,66.48664,1418.42,-224.0702,9.885301,227.5119,-35.94044,10.66433,-0.7790297,0,6082.943,-,-
+1506,1519.437,17.61967,23.1999,1434.663,-222.1099,2.803555,228.2764,-35.34104,3.691454,-0.8878991,0,5183.292,-,-
+1507,1503.61,-14.00902,-7.306606,1422.656,-219.5776,-2.205827,224.0081,-34.57418,-1.150481,-1.055346,0,4476.642,-,-
+1508,1485.728,-27.25053,-19.45395,1415.097,-216.7165,-4.239775,220.168,-33.71785,-3.026744,-1.213031,0,4115.029,-,-
+1509,1464.379,-82.36854,-72.69027,1414.587,-213.3007,-12.63117,216.9261,-32.70953,-11.14701,-1.484156,0,2849.484,-,-
+1510,1436.985,-129.8674,-117.3792,1399.338,-208.9176,-19.54254,210.5734,-31.43807,-17.6633,-1.879243,0,1718.262,-,-
+1511,1401.435,-128.3605,-112.6193,1387.323,-203.2296,-18.83793,203.6007,-29.82556,-16.52778,-2.310149,0,1589.718,-,-
+1512,1357.637,-125.9823,-108.2588,1387.812,-197.9164,-17.91109,197.3072,-28.13806,-15.3913,-2.519787,0,1525.853,-,-
+1513,1312.307,-120.5893,-106.6049,1388.625,-192.4768,-16.57193,190.831,-26.45103,-14.65012,-1.921806,0,1524.865,-,-
+1514,1287.908,82.69175,87.97169,1391.422,-189.549,11.15259,187.6603,-25.56435,11.86469,-0.7121029,0,5230.417,-,-
+1515,1286,152.289,152.5457,1468.555,-189.32,20.5087,197.7698,-25.49565,20.54327,-0.03457093,0,6517.444,-,-
+1516,1286.619,138.0761,137.6294,1494.581,-189.3943,18.6036,201.3715,-25.51793,18.54342,0.06018067,0,6248.626,-,-
+1517,1288.244,174.5353,172.8507,1489.213,-189.5893,23.54562,200.9017,-25.57647,23.31835,0.2272683,0,6958.22,-,-
+1518,1295.069,246.0701,242.0719,1502.606,-190.4083,33.37185,203.7824,-25.82304,32.82963,0.5422244,0,8354.016,-,-
+1519,1308.289,308.5955,302.358,1528.844,-191.9947,42.27872,209.4572,-26.30398,41.42417,0.8545522,0,9679.709,-,-
+1520,1326.36,350.4413,342.0556,1551.647,-194.1632,48.67492,215.5177,-26.96851,47.51019,1.16473,0,10825.19,-,-
+1521,1350.341,436.66,424.7124,1566.582,-197.0409,61.74694,221.5262,-27.86304,60.05747,1.689472,0,12940.63,-,-
+1522,1386.146,598.9392,584.2164,1597.018,-201.3375,86.94014,231.8181,-29.22552,84.80302,2.137118,0,17298.18,-,-
+1523,1424.275,494.1082,479.5055,1648.214,-206.884,73.6961,245.8307,-30.85669,71.51812,2.177975,0,15238.3,-,-
+1524,1459.61,551.6651,537.2399,1600.043,-212.5376,84.32201,244.5667,-32.48637,82.11712,2.204891,0,17020.91,-,-
+1525,1496.731,538.0913,523.8669,1608.019,-218.477,84.33897,252.0365,-34.24349,82.10949,2.229487,0,17145.26,-,-
+1526,1531.165,505.3185,492.6093,1592.235,-223.9864,81.02439,255.3042,-35.9147,78.98656,2.037838,0,16726.92,-,-
+1527,1560.709,445.2657,434.5967,1571.866,-228.7134,72.77291,256.9012,-37.38025,71.02921,1.7437,0,15523.48,-,-
+1528,1584.879,400.7083,392.5362,1544.539,-232.5807,66.50482,256.3443,-38.60098,65.14851,1.356319,0,14695.1,-,-
+1529,1601.875,302.0839,297.1311,1525.989,-235.2719,50.67396,255.9816,-39.46638,49.84313,0.8308274,0,12327.12,-,-
+1530,1609.842,218.1796,216.0581,1496.299,-236.4271,36.78121,252.2495,-39.85741,36.42356,0.35765,0,10242.59,-,-
+1531,1612.555,194.0304,193.9477,1470.242,-236.8205,32.76521,248.2745,-39.99102,32.75125,0.01395596,0,9641.105,-,-
+1532,1610.258,114.9275,116.3219,1462.033,-236.4874,19.37975,246.5365,-39.87789,19.61487,-0.235119,0,7833.433,-,-
+1533,1605.542,143.25,144.8545,1434.97,-235.8036,24.0849,241.2643,-39.64612,24.35468,-0.2697794,0,8436.727,-,-
+1534,1602.197,140.7256,142.5367,1443.172,-235.3186,23.61118,242.1379,-39.48215,23.91504,-0.3038575,0,8360.363,-,-
+1535,1596.433,92.23934,95.48776,1442.68,-234.4293,15.4204,241.1844,-39.19143,15.96346,-0.5430644,0,7238.721,-,-
+1536,1585.846,39.61126,44.32816,1429.352,-232.7354,6.578218,237.3717,-38.65022,7.36155,-0.7833321,0,5984.335,-,-
+1537,1572.707,35.32328,41.5365,1414.827,-230.6331,5.817514,233.0128,-37.98378,6.84079,-1.023276,0,5788.464,-,-
+1538,1554.569,-61.07113,-52.50914,1417.573,-227.731,-9.942018,230.7724,-37.07327,-8.548178,-1.39384,0,3694.177,-,-
+1539,1529.58,-99.34982,-88.97225,1389.385,-223.7328,-15.91358,222.5479,-35.8369,-14.25133,-1.662251,0,2757.068,-,-
+1540,1502.374,-108.6418,-97.44837,1381.026,-219.3798,-17.09243,217.2745,-34.51464,-15.33138,-1.761047,0,2454.614,-,-
+1541,1473.287,-131.8846,-118.1562,1382.972,-214.7259,-20.34746,213.3681,-33.1284,-18.2294,-2.118057,0,1836.256,-,-
+1542,1433.115,-129.3176,-110.718,1381.051,-208.2984,-19.4074,207.2619,-31.26048,-16.61605,-2.791354,0,1712.451,-,-
+1543,1379.361,-127.8161,-105.8354,1387.116,-200.5233,-18.46257,200.3638,-28.96486,-15.28753,-3.175041,0,1542.252,-,-
+1544,1322.517,-125.2788,-103.4171,1387.509,-193.702,-17.35032,192.1612,-26.8265,-14.32261,-3.027712,0,1451.381,-,-
+1545,1269.65,-121.9404,-102.249,1388.564,-187.358,-16.21288,184.62,-24.91064,-13.59477,-2.618109,0,1387.627,-,-
+1546,1223.823,-117.4641,-101.7426,1390.06,-181.8588,-15.05401,178.1479,-23.30674,-13.03917,-2.014842,0,1255.864,-,-
+1547,1191.054,-94.18803,-82.96223,1392.239,-178.1501,-11.74778,173.6496,-22.22011,-10.34762,-1.400159,0,1551.188,-,-
+1548,1167.623,-98.63609,-89.68188,1401.471,-175.9242,-12.06055,171.3623,-21.51081,-10.96569,-1.094861,0,1427.887,-,-
+1549,1146.087,-71.34174,-65.53505,1399.816,-173.8783,-8.562289,168.0031,-20.86851,-7.865382,-0.6969069,0,1894.348,-,-
+1550,1138.617,172.8765,174.1083,1410.572,-173.1686,20.61305,168.1905,-20.64788,20.75992,-0.1468696,0,6123.475,-,-
+1551,1139.92,99.41944,100.1233,1502.255,-173.2924,11.86791,179.3274,-20.68629,11.95193,-0.084018,0,4811.005,-,-
+1552,1135.07,49.03712,51.24113,1474.942,-172.8316,5.828761,175.3178,-20.5435,6.090739,-0.2619779,0,3923.09,-,-
+1553,1128.836,70.0769,71.52375,1455.99,-172.2394,8.283892,172.1147,-20.36067,8.454926,-0.1710334,0,4235.219,-,-
+1554,1127.815,155.2417,154.3652,1463.803,-172.1424,18.33474,172.8817,-20.3308,18.23122,0.1035241,0,5756.484,-,-
+1555,1133.229,203.5209,200.087,1495.438,-172.6568,24.15212,177.4658,-20.48943,23.74462,0.4075047,0,6642.13,-,-
+1556,1145.025,288.8074,283.0686,1513.034,-173.7774,34.62996,181.423,-20.83708,33.94183,0.6881261,0,8164.522,-,-
+1557,1162.007,313.1124,306.0968,1544.22,-175.3907,38.10111,187.9086,-21.34243,37.24741,0.8537014,0,8744.101,-,-
+1558,1180.266,319.3205,311.8836,1553.101,-177.1253,39.46711,191.9588,-21.89218,38.54793,0.9191785,0,8993.278,-,-
+1559,1199.371,334.6104,326.6111,1555.338,-178.9402,42.02634,195.3471,-22.47451,41.02165,1.00469,0,9419.067,-,-
+1560,1220.437,363.9019,354.9445,1560.813,-181.4524,46.50807,199.4779,-23.19032,45.36328,1.144787,0,10100.76,-,-
+1561,1244.338,397.6165,387.6199,1571.342,-184.3206,51.81212,204.7565,-24.01822,50.5095,1.302621,0,11055.76,-,-
+1562,1270.631,418.4665,407.7527,1583.521,-187.4757,55.68122,210.7036,-24.94555,54.25564,1.425586,0,11751.51,-,-
+1563,1298.159,429.1154,417.9096,1591.097,-190.7791,58.33519,216.2984,-25.93506,56.81184,1.52335,0,12249.36,-,-
+1564,1326.924,449.7553,438.4316,1594.93,-194.2309,62.49582,221.6237,-26.98938,60.92234,1.573477,0,12959.55,-,-
+1565,1355.084,422.3713,412.1352,1602.653,-197.6101,59.93621,227.423,-28.04167,58.48366,1.452546,0,12704.43,-,-
+1566,1378.461,356.5449,348.9714,1593.203,-200.4153,51.46801,229.9822,-28.93037,50.37475,1.093259,0,11504.74,-,-
+1567,1393.267,249.7114,245.7983,1569.784,-202.192,36.43354,229.0355,-29.50034,35.86261,0.5709304,0,9211.638,-,-
+1568,1398.198,155.0434,154.6035,1530.812,-202.7838,22.70129,224.1398,-29.69139,22.63688,0.06441163,0,7269.281,-,-
+1569,1395.484,91.53658,93.82526,1495.755,-202.4581,13.37667,218.5817,-29.58616,13.71113,-0.334455,0,6033.995,-,-
+1570,1386.67,27.48788,31.80937,1472.044,-201.4004,3.991563,213.7581,-29.2457,4.619095,-0.6275321,0,4750.31,-,-
+1571,1373.732,3.893002,9.192435,1447.905,-199.8478,0.5600352,208.2911,-28.74949,1.322395,-0.7623599,0,4244.671,-,-
+1572,1360.028,8.214086,13.52435,1438.975,-198.2034,1.169865,204.9413,-28.22848,1.926163,-0.7562982,0,4253.782,-,-
+1573,1347.05,14.24345,20.62829,1440.61,-196.646,2.009221,203.2164,-27.73943,2.909883,-0.9006622,0,4297.185,-,-
+1574,1327.864,-109.3195,-100.6594,1442.918,-194.3437,-15.20126,200.643,-27.02419,-13.99705,-1.204214,0,1803.519,-,-
+1575,1303.439,-86.76237,-75.47917,1395.737,-191.4127,-11.8427,190.5123,-26.12703,-10.30259,-1.540109,0,2219.824,-,-
+1576,1270.98,-119.8203,-104.7668,1404.133,-187.5176,-15.94768,186.8855,-24.95798,-13.94411,-2.003571,0,1435.984,-,-
+1577,1227.45,-118.2446,-101.9691,1390.974,-182.294,-15.19896,178.7934,-23.43175,-13.10693,-2.092028,0,1259.56,-,-
+1578,1189.361,-116.1204,-103.2838,1391.738,-177.9893,-14.46275,173.3404,-22.16849,-12.86395,-1.598803,0,1143.018,-,-
+1579,1163.257,-82.46207,-74.40951,1392.978,-175.5094,-10.0452,169.687,-21.37985,-9.064267,-0.9809301,0,1719.037,-,-
+1580,1149.096,50.60915,54.1753,1406.196,-174.1641,6.089953,169.2118,-20.9577,6.519079,-0.4291258,0,3978.438,-,-
+1581,1145.415,123.172,122.3148,1456.539,-173.8144,14.77418,174.7084,-20.84862,14.67137,0.1028086,0,5263.025,-,-
+1582,1153.382,293.1817,286.5406,1483.37,-174.5713,35.41104,179.1643,-21.08505,34.60891,0.8021286,0,8307.341,-,-
+1583,1178.546,480.6869,467.958,1545.096,-176.9619,59.32496,190.6911,-21.84011,57.754,1.570962,0,12016.56,-,-
+1584,1216.998,574.2743,557.3909,1612.062,-181.0398,73.18766,205.4472,-23.07238,71.03598,2.151684,0,14307.36,-,-
+1585,1263.134,649.0516,629.5569,1644.987,-186.5761,85.85336,217.5908,-24.67937,83.27469,2.578672,0,16649.8,-,-
+1586,1314.765,697.4858,677.0815,1671.336,-192.7718,96.03114,230.1127,-26.54118,93.22186,2.809286,0,18493.35,-,-
+1587,1365.711,645.2081,627.0979,1689.3,-198.8853,92.27569,241.5985,-28.44397,89.68562,2.590069,0,18056.09,-,-
+1588,1406.138,492.9496,477.9111,1670.46,-203.9821,72.58703,245.976,-30.03645,70.3726,2.214427,0,15018.7,-,-
+1589,1441.432,548.4587,533.7148,1605.229,-209.6291,82.78786,242.3036,-31.64276,80.56232,2.225538,0,16724.15,-,-
+1590,1480.152,570.1478,554.9946,1612.139,-215.8243,88.37356,249.8834,-33.45302,86.0248,2.348755,0,17777.14,-,-
+1591,1517.623,532.8279,518.1853,1607.297,-221.8197,84.67973,255.4399,-35.25272,82.35265,2.327081,0,17278.09,-,-
+1592,1553.777,552.6194,538.041,1582.607,-227.6043,89.91734,257.5077,-37.03376,87.54527,2.372063,0,18272.2,-,-
+1593,1590.871,559.3756,546.3578,1576.076,-233.5393,93.18953,262.5674,-38.90663,91.02081,2.168717,0,18933.83,-,-
+1594,1619.381,384.2816,375.7186,1577.628,-237.8102,65.16692,267.5361,-40.32814,63.71481,1.452115,0,14642.88,-,-
+1595,1634.092,281.1744,277.3771,1526.601,-239.9433,48.11504,261.2345,-41.05952,47.46525,0.6497934,0,12126.28,-,-
+1596,1638.526,173.9162,173.6388,1496.552,-240.5863,29.84158,256.7874,-41.28125,29.794,0.04758399,0,9374.974,-,-
+1597,1635.489,128.2638,128.8151,1462.999,-240.1459,21.96749,250.5649,-41.12931,22.06191,-0.09441794,0,8282.218,-,-
+1598,1635.758,240.7174,239.0774,1448.869,-240.1849,41.23397,248.1857,-41.14276,40.95305,0.2809185,0,11098.23,-,-
+1599,1643.712,286.5552,282.9655,1485.375,-241.3382,49.32449,255.6764,-41.54134,48.7066,0.6178887,0,12366.74,-,-
+1600,1653.788,287.6732,283.8087,1501.605,-242.7993,49.82048,260.0543,-42.04901,49.15121,0.6692699,0,12501.84,-,-
+1601,1663.139,274.9257,271.1832,1504.285,-244.1552,47.88203,261.9915,-42.52292,47.23022,0.6518099,0,12270.94,-,-
+1602,1672.597,292.3187,288.5443,1503.014,-245.5266,51.20078,263.2589,-43.00495,50.53967,0.6611132,0,12820.15,-,-
+1603,1682.109,278.4318,274.8857,1510.379,-246.9058,49.04578,266.0533,-43.49247,48.42113,0.6246506,0,12561.5,-,-
+1604,1690.426,269.9821,267.2203,1508.751,-248.1118,47.79251,267.0807,-43.92099,47.30361,0.4888981,0,12430.78,-,-
+1605,1696.001,224.0524,222.2544,1508.072,-248.9201,39.79278,267.8408,-44.20941,39.47346,0.3193237,0,11302.48,-,-
+1606,1699.468,228.1757,226.4881,1496.721,-249.4229,40.60794,266.3683,-44.38926,40.3076,0.3003419,0,11445.59,-,-
+1607,1704.479,256.4848,254.2171,1499.3,-250.1495,45.78064,267.614,-44.64983,45.37587,0.4047745,0,12230.06,-,-
+1608,1710.861,258.2555,255.3886,1508.629,-251.0749,46.26929,270.2874,-44.98281,45.75566,0.5136361,0,12343.09,-,-
+1609,1718.881,291.2729,288.902,1511.365,-252.2377,52.42934,272.0469,-45.403,52.00259,0.4267559,0,13299.94,-,-
+1610,1722.791,174.8267,175.2211,1521.081,-252.8047,31.54052,274.4186,-45.60856,31.61168,-0.07115901,0,10287.56,-,-
+1611,1716.893,90.14629,93.31541,1489.633,-251.9495,16.20764,267.8251,-45.29865,16.77742,-0.5697815,0,7952.578,-,-
+1612,1706.844,86.24139,90.28296,1463.671,-250.4924,15.41481,261.617,-44.77308,16.1372,-0.7223902,0,7773.247,-,-
+1613,1696.579,82.13224,86.15851,1458.59,-249.004,14.59205,259.1408,-44.23937,15.30738,-0.7153272,0,7620.023,-,-
+1614,1686.61,89.35657,93.32081,1453.579,-247.5584,15.78228,256.7331,-43.72411,16.48245,-0.7001688,0,7721.312,-,-
+1615,1676.655,79.60224,83.63824,1451.838,-246.115,13.97647,254.912,-43.2126,14.68511,-0.7086361,0,7444.06,-,-
+1616,1666.323,78.39257,83.00828,1445.147,-244.6168,13.67926,252.1738,-42.68489,14.48469,-0.8054265,0,7355.092,-,-
+1617,1653.439,23.97108,29.59912,1440.05,-242.7486,4.150538,249.3413,-42.03138,5.125021,-0.9744829,0,6064.189,-,-
+1618,1638.015,22.31995,28.56352,1417.6,-240.5122,3.828597,243.1645,-41.25566,4.899573,-1.070976,0,5934.825,-,-
+1619,1622.054,8.194813,14.63352,1410.945,-238.1978,1.39198,239.6647,-40.46054,2.485665,-1.093685,0,5524.068,-,-
+1620,1605.65,8.92907,15.38017,1400.149,-235.8193,1.501363,235.4256,-39.65142,2.586072,-1.084709,0,5442.019,-,-
+1621,1589.635,12.26462,18.07332,1400.631,-233.3416,2.041644,233.1576,-38.84349,3.008597,-0.9669527,0,5403.416,-,-
+1622,1576.482,64.39735,68.51597,1404.723,-231.2371,10.63128,231.904,-38.17466,11.31122,-0.6799375,0,6465.619,-,-
+1623,1568.972,126.0501,127.7323,1424.023,-230.0355,20.71033,233.9703,-37.79538,20.98672,-0.2763916,0,7783.174,-,-
+1624,1568.045,199.0769,198.5094,1444.922,-229.8872,32.68948,237.2638,-37.7487,32.59629,0.09318474,0,9404.598,-,-
+1625,1571.82,223.2628,221.7419,1468.304,-230.4912,36.7492,241.6837,-37.93899,36.49885,0.2503472,0,9986.705,-,-
+1626,1575.689,202.4101,201.3791,1475.332,-231.1102,33.39883,243.4383,-38.13452,33.22871,0.1701238,0,9538.698,-,-
+1627,1577.006,171.75,171.5869,1468.119,-231.321,28.36342,242.4506,-38.20119,28.33649,0.0269305,0,8863.58,-,-
+1628,1576.509,164.5807,165.3685,1458.069,-231.2414,27.1709,240.715,-38.17603,27.30095,-0.130054,0,8699.913,-,-
+1629,1573.043,109.8708,111.943,1456.683,-230.6869,18.09888,239.9575,-38.00074,18.44022,-0.3413403,0,7453.438,-,-
+1630,1566.083,90.51926,94.44942,1440.1,-229.5733,14.84514,236.1761,-37.64998,15.48969,-0.6445475,0,6968.793,-,-
+1631,1553.253,-13.16931,-6.70924,1436.766,-227.5205,-2.142071,233.6991,-37.00764,-1.0913,-1.050771,0,4718.592,-,-
+1632,1533.543,-49.48325,-41.39218,1405.398,-224.3669,-7.946626,225.696,-36.03158,-6.647263,-1.299363,0,3859.317,-,-
+1633,1512.571,-42.29077,-33.55275,1396.94,-221.0114,-6.698692,221.2698,-35.00733,-5.314623,-1.384069,0,3917.194,-,-
+1634,1489.597,-91.01402,-81.56133,1404.085,-217.3355,-14.1973,219.0236,-33.90222,-12.72277,-1.474529,0,2779.957,-,-
+1635,1465.037,-76.44225,-66.6981,1391.049,-213.4059,-11.72764,213.4124,-32.74038,-10.23271,-1.494931,0,2978.163,-,-
+1636,1440.626,-93.86736,-84.22419,1400.941,-209.5002,-14.16102,211.3488,-31.60561,-12.70623,-1.454788,0,2498.328,-,-
+1637,1416.577,-74.49482,-65.42979,1398.768,-205.6523,-11.05083,207.4983,-30.50721,-9.706091,-1.344739,0,2800.674,-,-
+1638,1395.107,-51.36602,-43.48671,1409.135,-202.4128,-7.504332,205.8679,-29.57156,-6.353202,-1.15113,0,3203.979,-,-
+1639,1377.024,-16.24975,-9.798712,1417.985,-200.2429,-2.343241,204.4757,-28.87535,-1.41299,-0.9302506,0,3891.023,-,-
+1640,1362.729,18.23163,22.65809,1431.342,-198.5275,2.601738,204.2592,-28.33079,3.233414,-0.6316764,0,4447.089,-,-
+1641,1354.829,113.8707,113.8009,1444.377,-197.5795,16.15568,204.9243,-28.03205,16.14577,0.009910605,0,6209.195,-,-
+1642,1363.078,350.6391,344.279,1479.943,-198.5694,50.05064,211.2489,-28.34403,49.1428,0.9078408,0,11210.12,-,-
+1643,1386.616,432.0855,421.8747,1566.758,-201.3939,62.74144,227.5027,-29.24362,61.25877,1.48267,0,13300.46,-,-
+1644,1414.32,443.7947,433.1192,1592.221,-205.2912,65.7292,235.8195,-30.40511,64.14809,1.581115,0,13925.51,-,-
+1645,1440.303,403.1862,393.9249,1589.064,-209.4485,60.81183,239.6756,-31.59073,59.41497,1.396863,0,13225.67,-,-
+1646,1460.953,340.2764,332.4682,1569.009,-212.7525,52.0591,240.0436,-32.54914,50.86452,1.194586,0,11824.02,-,-
+1647,1479.574,365.7281,358.2829,1541.517,-215.7318,56.66615,238.8436,-33.42562,55.51258,1.153565,0,12678.74,-,-
+1648,1498.37,347.9728,340.5392,1545.023,-218.7392,54.60005,242.428,-34.32214,53.43364,1.166408,0,12418.62,-,-
+1649,1516.938,366.3711,358.3785,1533.457,-221.7101,58.19929,243.5948,-35.21939,56.92963,1.269659,0,13090.48,-,-
+1650,1538.501,414.3081,405.2554,1533.104,-225.1602,66.74978,247.0005,-36.27588,65.29128,1.458498,0,14531.04,-,-
+1651,1562.402,420.0613,410.7375,1541.617,-228.9843,68.72807,252.2306,-37.46512,67.20255,1.525513,0,14921.87,-,-
+1652,1585.376,401.7728,392.8692,1536.229,-232.6602,66.7024,255.0449,-38.62628,65.22421,1.478187,0,14725.9,-,-
+1653,1607.168,400.4236,393.0795,1526.823,-236.0394,67.39219,256.9678,-39.72595,66.15616,1.236032,0,14938.16,-,-
+1654,1622.363,270.252,266.429,1529.495,-238.2426,45.91405,259.8511,-40.47587,45.26455,0.6494967,0,11720.37,-,-
+1655,1626.448,173.8755,174.4109,1490.252,-238.835,29.61469,253.8215,-40.67867,29.70588,-0.09119538,0,9246.58,-,-
+1656,1619.663,45.54586,49.62702,1458.404,-237.8511,7.725065,247.3609,-40.3421,8.417274,-0.6922088,0,6342.65,-,-
+1657,1605.892,26.6947,32.53485,1412.504,-235.8543,4.489211,237.5388,-39.6633,5.471342,-0.9821312,0,5839.644,-,-
+1658,1590.294,3.007771,9.331367,1406.422,-233.447,0.5008997,234.2188,-38.87715,1.554001,-1.053101,0,5222.881,-,-
+1659,1574.104,11.38189,16.57026,1402.132,-230.8566,1.876188,231.1272,-38.05436,2.731438,-0.8552498,0,5310.441,-,-
+1660,1564.27,130.2205,132.4719,1407.159,-229.2832,21.33142,230.5066,-37.55888,21.70022,-0.3687972,0,7840.298,-,-
+1661,1562.819,182.8575,182.0459,1447.66,-229.051,29.92609,236.9212,-37.48604,29.79327,0.1328238,0,9003.03,-,-
+1662,1568.34,274.8512,271.8535,1463.728,-229.9344,45.14051,240.397,-37.76355,44.64818,0.4923286,0,11268.72,-,-
+1663,1577.866,267.5771,263.7327,1491.604,-231.4586,44.21276,246.4632,-38.24476,43.57754,0.6352234,0,11181.46,-,-
+1664,1587.66,283.7088,279.7334,1486.347,-233.0256,47.16925,247.1191,-38.74269,46.50829,0.6609586,0,11701.96,-,-
+1665,1597.844,277.6405,274.1229,1488.646,-234.655,46.45642,249.089,-39.26385,45.86784,0.588582,0,11652.82,-,-
+1666,1605.354,231.2941,228.8367,1487.413,-235.7763,38.88337,250.0524,-39.6369,38.47025,0.4131179,0,10534.23,-,-
+1667,1610.205,224.7063,222.795,1473.751,-236.4797,37.89003,248.5043,-39.87527,37.56776,0.3222699,0,10415.09,-,-
+1668,1614.96,230.601,228.2471,1472.883,-237.1692,38.99883,249.0913,-40.10963,38.60074,0.3980843,0,10617.56,-,-
+1669,1622.027,273.596,270.3969,1476.518,-238.1939,46.47254,250.7987,-40.45921,45.92914,0.5433995,0,11803.25,-,-
+1670,1631.029,272.6365,268.936,1492.154,-239.4992,46.56657,254.8613,-40.9067,45.93453,0.6320431,0,11873.34,-,-
+1671,1640.622,288.8599,284.6848,1494.191,-240.8902,49.62772,256.7102,-41.38626,48.91043,0.7172887,0,12393.74,-,-
+1672,1652.001,312.1588,307.3747,1501.783,-242.5401,54.00257,259.8042,-41.95875,53.17495,0.8276252,0,13115.83,-,-
+1673,1664.657,318.5026,313.3964,1511.592,-244.3752,55.52216,263.5044,-42.6001,54.63203,0.890133,0,13413.18,-,-
+1674,1677.662,323.4491,317.8749,1516.459,-246.261,56.82494,266.4182,-43.2642,55.84564,0.9792995,0,13680.18,-,-
+1675,1692.656,363.5732,356.8912,1521.304,-248.4351,64.44498,269.658,-44.03625,63.26057,1.184411,0,14978.29,-,-
+1676,1711.21,401.4178,393.4883,1536.092,-251.1254,71.93307,275.2638,-45.00105,70.51211,1.420959,0,16255.61,-,-
+1677,1732.478,425.0141,416.5915,1550.08,-254.2093,77.10804,281.2228,-46.11984,75.57997,1.528067,0,17143.55,-,-
+1678,1753.544,402.9806,395.5593,1559.989,-257.2639,73.99961,286.4619,-47.24155,72.63683,1.362778,0,16822.3,-,-
+1679,1769.828,332.7197,326.7736,1558.665,-259.6251,61.66492,288.8767,-48.11786,60.5629,1.102021,0,15080.89,-,-
+1680,1783.451,352.2659,346.9742,1546.999,-261.6004,65.79008,288.9216,-48.85716,64.80178,0.9883042,0,15791.68,-,-
+1681,1796.429,322.7381,317.8669,1554.585,-263.4822,60.714,292.451,-49.5667,59.79764,0.9163622,0,15134.37,-,-
+1682,1807.943,326.2178,321.4611,1533.692,-265.4695,61.76195,290.3698,-50.26063,60.86138,0.9005679,0,15396.06,-,-
+1683,1820.33,342.8634,338.8427,1509.333,-267.761,65.35816,287.7159,-51.04182,64.59172,0.7664431,0,16045.98,-,-
+1684,1828.176,234.2498,234.0847,1496.963,-269.2126,44.84622,286.5878,-51.53971,44.81462,0.03160162,0,13155.21,-,-
+1685,1821.163,38.32294,43.07069,1489.881,-267.9152,7.308634,284.1378,-51.09457,8.214087,-0.9054527,0,7725.192,-,-
+1686,1804.249,26.67847,33.30348,1484.754,-264.7861,5.040644,280.5301,-50.02882,6.292377,-1.251733,0,7182.794,-,-
+1687,1787.871,42.11745,48.78838,1484.78,-262.2413,7.885457,277.9886,-49.09824,9.134424,-1.248968,0,7411.592,-,-
+1688,1770.714,6.095026,12.81361,1479.705,-259.7535,1.130193,274.3799,-48.16577,2.376011,-1.245818,0,6369.203,-,-
+1689,1754.109,48.44608,54.79709,1463.383,-257.3458,8.899055,268.8086,-47.27182,10.06567,-1.166615,0,7225.602,-,-
+1690,1738.806,27.59327,34.11981,1466.438,-255.1269,5.024384,267.0198,-46.45538,6.212786,-1.188402,0,6657.166,-,-
+1691,1721.286,-0.8620064,5.9217,1453.356,-252.5865,-0.1553789,261.9712,-45.52938,1.067402,-1.222781,0,5917.609,-,-
+1692,1704.721,42.20574,48.24658,1438.388,-250.1845,7.534483,256.7781,-44.66243,8.612881,-1.078398,0,6778.514,-,-
+1693,1690.95,52.27888,57.27596,1444.209,-248.1877,9.257327,255.7346,-43.94806,10.14219,-0.8848628,0,6920.519,-,-
+1694,1679.624,89.07571,93.41547,1442.415,-246.5455,15.66751,253.7062,-43.36484,16.43083,-0.7633197,0,7673.132,-,-
+1695,1669.144,66.98536,71.09184,1448.966,-245.0259,11.70853,253.2681,-42.82865,12.42631,-0.7177818,0,7117.638,-,-
+1696,1658.987,92.74304,96.97861,1438.666,-243.5531,16.11213,249.9376,-42.31217,16.84797,-0.7358413,0,7631.092,-,-
+1697,1647.85,43.36968,48.63164,1442.346,-241.9382,7.483979,248.8948,-41.74945,8.391994,-0.9080161,0,6463.244,-,-
+1698,1632.507,3.290373,9.623637,1421.552,-239.7135,0.5625081,243.0225,-40.9804,1.645216,-1.082708,0,5477.417,-,-
+1699,1616.008,14.86899,21.31258,1402.508,-237.3212,2.516249,237.3437,-40.16138,3.606684,-1.090435,0,5636.627,-,-
+1700,1600.128,12.30337,17.58883,1400.288,-235.0186,2.061615,234.6393,-39.38089,2.947272,-0.8856575,0,5484.133,-,-
+1701,1589.487,119.6362,122.1264,1401.78,-233.3179,19.91352,233.3273,-38.83593,20.32802,-0.4144963,0,7796.673,-,-
+1702,1587.647,191.3102,191.1763,1437.842,-233.0235,31.80685,239.0527,-38.74202,31.78459,0.02226009,0,9380.964,-,-
+1703,1590.159,210.2162,208.8976,1460.802,-233.4254,35.00542,243.2543,-38.87025,34.78584,0.2195794,0,9828.969,-,-
+1704,1594.271,225.9847,223.8875,1465.847,-234.0834,37.72853,244.7257,-39.08061,37.37839,0.3501368,0,10279.99,-,-
+1705,1600.692,259.5433,256.3083,1469.499,-235.1003,43.50571,246.3234,-39.40848,42.96344,0.5422725,0,11215.19,-,-
+1706,1610.513,297.4191,293.7341,1482.672,-236.5244,50.16048,250.0564,-39.89043,49.539,0.6214831,0,12297.6,-,-
+1707,1619.219,239.1692,236.577,1496.858,-237.7868,40.55454,253.8135,-40.32013,40.11499,0.4395503,0,10883.9,-,-
+1708,1623.559,209.196,208.5341,1479.745,-238.4161,35.56722,251.5842,-40.53519,35.45469,0.112531,0,10154.98,-,-
+1709,1622.551,129.1568,130.5446,1470.242,-238.2699,21.94544,249.8134,-40.48519,22.18125,-0.2358141,0,8224.502,-,-
+1710,1616.573,105.9925,108.6058,1443.119,-237.4031,17.94316,244.3014,-40.18929,18.38556,-0.4423956,0,7672.071,-,-
+1711,1609.412,102.2863,105.2397,1433.36,-236.3647,17.23906,241.5745,-39.83626,17.73681,-0.4977546,0,7546.458,-,-
+1712,1601.727,93.21428,96.19003,1429.66,-235.2504,15.63506,239.8004,-39.45913,16.13419,-0.4991287,0,7298.041,-,-
+1713,1594.458,109.3332,111.5463,1427.478,-234.1133,18.25549,238.3477,-39.09019,18.62502,-0.3695275,0,7604.844,-,-
+1714,1590.616,162.5609,162.941,1433.717,-233.4986,27.07759,238.8126,-38.8936,27.14091,-0.06331562,0,8762.508,-,-
+1715,1592.551,228.0489,226.3356,1450.679,-233.8082,38.03206,241.9319,-38.99255,37.74634,0.2857242,0,10315.15,-,-
+1716,1599.214,261.205,258.2525,1470.208,-234.8742,43.74381,246.2147,-39.33422,43.24936,0.4944501,0,11242.53,-,-
+1717,1607.383,261.7128,258.2686,1482.535,-236.0706,44.05275,249.5473,-39.73652,43.47301,0.5797406,0,11341.79,-,-
+1718,1616.519,282.5219,279.8233,1484.869,-237.3953,47.82573,251.3607,-40.18662,47.3689,0.4568287,0,11975.89,-,-
+1719,1620.966,166.3515,166.7166,1492.787,-238.0401,28.2377,253.3963,-40.40662,28.29967,-0.06197453,0,9044.435,-,-
+1720,1614.678,61.74939,65.81327,1454.507,-237.1283,10.44112,245.9406,-40.09571,11.12828,-0.6871579,0,6674.079,-,-
+1721,1600.491,-0.6581458,6.667917,1415.958,-235.0712,-0.1103072,237.3189,-39.39864,1.117563,-1.22787,0,5197.357,-,-
+1722,1577.759,-106.6726,-96.73995,1400.077,-231.4414,-17.62473,231.3242,-38.23934,-15.98362,-1.641104,0,2765.62,-,-
+1723,1550.498,-89.92059,-79.73799,1369.312,-227.0797,-14.60021,222.3321,-36.87042,-12.94688,-1.653325,0,3040.263,-,-
+1724,1526.638,-51.668,-42.64172,1379.836,-223.2621,-8.260118,220.5932,-35.69272,-6.817096,-1.443023,0,3781.798,-,-
+1725,1505.168,-51.09573,-42.66289,1397.638,-219.8269,-8.05375,220.2968,-34.64929,-6.72456,-1.32919,0,3697,-,-
+1726,1484.263,-45.82047,-37.3779,1401.985,-216.4821,-7.121952,217.9128,-33.64817,-5.809709,-1.312243,0,3714.511,-,-
+1727,1462.727,-66.62331,-58.41964,1408.108,-213.0363,-10.20512,215.689,-32.63214,-8.948511,-1.25661,0,3176.011,-,-
+1728,1443.058,-16.06625,-8.883322,1404.222,-209.8893,-2.427879,212.2014,-31.71777,-1.342418,-1.085461,0,4159.612,-,-
+1729,1426.667,-10.96664,-4.451964,1426.212,-207.2667,-1.638418,213.0764,-30.96569,-0.6651244,-0.9732939,0,4193.779,-,-
+1730,1410.316,-18.29154,-11.60265,1431.33,-204.6506,-2.70144,211.3903,-30.22442,-1.713572,-0.9878678,0,3964.58,-,-
+1731,1393.038,-30.93243,-24.27628,1430.556,-202.1646,-4.51238,208.6875,-29.49148,-3.54139,-0.9709901,0,3632.146,-,-
+1732,1376.876,-1.007681,5.270511,1425.764,-200.2251,-0.1452936,205.5754,-28.86968,0.7599344,-0.905228,0,4171.879,-,-
+1733,1361.493,-21.14479,-13.72878,1437.118,-198.3792,-3.014724,204.8974,-28.28395,-1.957383,-1.057341,0,3723.011,-,-
+1734,1339.513,-121.5108,-111.9031,1429.44,-195.7415,-17.04474,200.5126,-27.45735,-15.69704,-1.347698,0,1574.57,-,-
+1735,1313.126,-106.6043,-96.16695,1391.018,-192.5751,-14.65918,191.2792,-26.48105,-13.22394,-1.435238,0,1823.598,-,-
+1736,1287.062,-121.7048,-109.2103,1396.714,-189.4474,-16.40348,188.2502,-25.53388,-14.71945,-1.684027,0,1436.944,-,-
+1737,1250.061,-116.5402,-101.5571,1390.51,-185.0073,-15.25583,182.0262,-24.21858,-13.29444,-1.961385,0,1403.99,-,-
+1738,1211.717,-117.0074,-103.9286,1392.414,-180.4061,-14.84715,176.6844,-22.89185,-13.18758,-1.659571,0,1203.832,-,-
+1739,1184.632,-113.1977,-102.2655,1392.619,-177.54,-14.04267,172.7605,-22.02462,-12.68648,-1.356187,0,1188.716,-,-
+1740,1156.754,-126.1731,-114.5167,1394.028,-174.8916,-15.28398,168.8656,-21.1855,-13.87198,-1.411997,0,900.0683,-,-
+1741,1125.974,-125.6808,-113.2635,1388.892,-171.9675,-14.81924,163.7666,-20.27699,-13.35509,-1.464148,0,855.1411,-,-
+1742,1094.321,-125.1796,-111.0191,1389.006,-168.9605,-14.34521,159.176,-19.36237,-12.72246,-1.622747,0,808.8465,-,-
+1743,1054.539,-119.1463,-105.551,1388.787,-165.1812,-13.15745,153.3652,-18.24113,-11.65611,-1.501341,0,850.4886,-,-
+1744,1026.366,11.99725,16.61423,1391.594,-162.5048,1.289474,149.5696,-17.46614,1.78571,-0.4962364,0,3109.106,-,-
+1745,1031.707,324.8764,318.1866,1441.976,-163.0122,35.09969,155.7912,-17.61185,34.37691,0.7227746,0,8130.948,-,-
+1746,1059.625,481.7665,469.0891,1556.119,-165.6644,53.45858,172.6727,-18.38273,52.05185,1.406736,0,10921.45,-,-
+1747,1095.194,490.7332,476.1493,1612.295,-169.0434,56.28143,184.9116,-19.38733,54.60882,1.672605,0,11321.35,-,-
+1748,1132.853,533.7682,517.3524,1615.408,-172.621,63.32204,191.6392,-20.47839,61.3746,1.947438,0,12553.18,-,-
+1749,1177.447,639.9495,622.0102,1630.082,-176.8575,78.90703,200.9923,-21.80687,76.69508,2.211949,0,15182.66,-,-
+1750,1222.979,561.5866,544.829,1668.547,-181.7575,71.92243,213.6909,-23.27769,69.77629,2.146142,0,14115.95,-,-
+1751,1261.898,513.4102,498.8687,1641.6,-186.4277,67.84492,216.9303,-24.63561,65.92332,1.921601,0,13557.06,-,-
+1752,1296.198,474.4474,460.5046,1624.934,-190.5438,64.40033,220.5646,-25.86394,62.50776,1.892566,0,13134.33,-,-
+1753,1331.935,549.7631,535.0309,1610.644,-194.8322,76.68091,224.6525,-27.17518,74.62606,2.054851,0,15337.86,-,-
+1754,1370.172,532.5641,518.4481,1637.908,-199.4206,76.41447,235.0137,-28.61369,74.38905,2.025419,0,15475.31,-,-
+1755,1403.021,447.7177,435.8118,1631.604,-203.4834,65.78049,239.7217,-29.89659,64.03122,1.749265,0,13900.17,-,-
+1756,1430.133,421.397,411.1741,1593.355,-207.8213,63.10976,238.626,-31.12398,61.57874,1.531016,0,13555.19,-,-
+1757,1454.451,396.4041,386.2595,1577.039,-211.7122,60.37622,240.1985,-32.24583,58.83109,1.545127,0,13205.88,-,-
+1758,1481.079,474.056,463.3427,1560.116,-215.9726,73.52525,241.9713,-33.49697,71.86363,1.661615,0,15357.75,-,-
+1759,1508.285,414.7575,404.3798,1578.717,-220.3256,65.5098,249.354,-34.79982,63.87067,1.639127,0,14222.29,-,-
+1760,1533.275,435.2266,425.7249,1550.812,-224.324,69.8818,249.0049,-36.0184,68.35617,1.525625,0,14977.82,-,-
+1761,1556.074,375.2676,366.8452,1550.719,-227.9718,61.15048,252.6922,-37.1484,59.77805,1.372431,0,13734.27,-,-
+1762,1575.649,373.832,366.9802,1524.863,-231.1038,61.68288,251.6047,-38.1325,60.55231,1.130566,0,13904.18,-,-
+1763,1590.562,283.0425,278.5107,1520.081,-233.4899,47.14449,253.1897,-38.89085,46.38965,0.7548347,0,11715.43,-,-
+1764,1598.476,232.5349,230.5978,1488.374,-234.7561,38.92448,249.1418,-39.2963,38.60023,0.3242463,0,10493.75,-,-
+1765,1600.316,158.2659,158.8742,1471.765,-235.0458,26.52294,246.6453,-39.39008,26.62489,-0.1019493,0,8740.226,-,-
+1766,1595.412,93.76311,95.88772,1448.727,-234.2659,15.66511,242.0405,-39.13908,16.02007,-0.3549589,0,7264.911,-,-
+1767,1589.635,139.8859,140.071,1428.829,-233.3416,23.28627,237.8517,-38.84349,23.31708,-0.0308062,0,8249.371,-,-
+1768,1594.485,311.2653,307.3882,1442.602,-234.1176,51.97323,240.8771,-39.09157,51.32585,0.6473807,0,12486.33,-,-
+1769,1609.062,342.7576,336.3465,1498.673,-236.314,57.75485,252.5272,-39.81905,56.67459,1.08026,0,13454.08,-,-
+1770,1626.676,379.2537,372.1528,1512.13,-238.868,64.60402,257.584,-40.69,63.39441,1.209611,0,14594.07,-,-
+1771,1644.746,356.9959,350.2589,1526.824,-241.4882,61.48805,262.9761,-41.59329,60.32769,1.16036,0,14201.44,-,-
+1772,1660.559,337.8629,331.8265,1523.531,-243.7811,58.7521,264.9319,-42.3919,57.70242,1.049679,0,13870.36,-,-
+1773,1675.096,334.5832,329.0222,1521.252,-245.8889,58.69113,266.8513,-43.13276,57.71563,0.9755002,0,13956.92,-,-
+1774,1688.518,318.7352,313.5046,1523.459,-247.8351,56.35914,269.3799,-43.82249,55.43426,0.924884,0,13684.25,-,-
+1775,1701.389,326.1172,321.7353,1522.269,-249.7014,58.10398,271.2212,-44.48906,57.32327,0.7807142,0,14048.58,-,-
+1776,1710.565,245.4307,243.04,1526.666,-251.0319,43.96399,273.4715,-44.96733,43.53574,0.4282537,0,12008.51,-,-
+1777,1713.427,198.6595,197.6973,1506.629,-251.4469,35.6454,270.3339,-45.11703,35.47276,0.1726408,0,10828.54,-,-
+1778,1715.402,227.2652,226.0697,1495.101,-251.7333,40.82513,268.5747,-45.22048,40.61037,0.2147584,0,11590.01,-,-
+1779,1719.432,241.2855,239.4859,1503.722,-252.3176,43.4455,270.7579,-45.43193,43.12147,0.3240291,0,11994.84,-,-
+1780,1724.444,249.2679,246.8901,1508.821,-253.0444,45.01363,272.4679,-45.6956,44.58424,0.4293884,0,12253.97,-,-
+1781,1731.376,282.6688,279.4535,1512.881,-254.0495,51.25047,274.2993,-46.06153,50.66751,0.5829558,0,13216.54,-,-
+1782,1740.593,298.2501,294.6927,1523.724,-255.386,54.36338,277.7361,-46.55035,53.71496,0.6484212,0,13762.76,-,-
+1783,1749.258,273.8409,271.0662,1529.943,-256.6424,50.16269,280.2578,-47.01224,49.65441,0.5082763,0,13193.79,-,-
+1784,1754.552,231.2476,229.5643,1525.898,-257.41,42.48856,280.3627,-47.29556,42.17929,0.3092712,0,12105.57,-,-
+1785,1757.723,232.7315,230.0262,1517.103,-257.8698,42.8385,279.2507,-47.46567,42.34054,0.4979664,0,12177.35,-,-
+1786,1768.121,382.827,375.483,1520.722,-259.3775,70.88318,281.5726,-48.02562,69.52338,1.359801,0,16448.43,-,-
+1787,1794.468,564.4623,553.0085,1559.674,-263.1979,106.0716,293.0881,-49.45916,103.9193,2.152342,0,22224.36,-,-
+1788,1825.61,491.7664,479.5638,1544.834,-268.7379,94.01463,295.3375,-51.37661,91.68179,2.332846,0,20533.99,-,-
+1789,1855.813,554.7438,543.5692,1469.61,-274.3254,107.8091,285.6045,-53.31248,105.6374,2.171668,0,22968.57,-,-
+1790,1881.836,413.213,405.0058,1429.706,-279.1397,81.42998,281.7456,-55.00877,79.81264,1.617341,0,19085.89,-,-
+1791,1897.179,342.0146,337.3158,1371.273,-281.9781,67.94878,272.4337,-56.02119,67.01525,0.933528,0,17249.32,-,-
+1792,1905.496,270.6892,268.8,1340.602,-283.5168,54.01416,267.5079,-56.5738,53.63717,0.3769875,0,15342.33,-,-
+1793,1906.692,193.7573,197.021,1324.186,-283.738,38.68719,264.398,-56.6535,39.33886,-0.6516655,0,13223.63,-,-
+1794,1889.011,-108.258,-96.87075,1344.912,-280.467,-21.41525,266.0461,-55.48108,-19.16266,-2.252587,0,4990.532,-,-
+1795,1849.122,-144.1956,-128.0608,1364.255,-273.0876,-27.92198,264.1738,-52.88057,-24.79765,-3.12433,0,3576,-,-
+1796,1807.889,-142.9369,-129.0722,1440.167,-265.4595,-27.06106,272.6549,-50.25724,-24.43617,-2.624889,0,3046.202,-,-
+1797,1779.689,-94.59051,-4.057299,1443.616,-261.0549,-17.6287,269.0447,-48.65244,-0.7561531,-16.87255,0,4041.175,-,-
+1798,1284.092,10.10383,127.7384,1388.338,-189.091,1.35866,186.6896,-25.42704,17.17696,-15.8183,0,3908.404,-,-
+1799,1284.102,433.4487,431.8518,1441.289,-189.0922,58.28621,193.8113,-25.42739,58.07148,0.214734,0,12190.27,-,-
+1800,1292.093,439.9684,435.9868,1599.038,-190.0512,59.53109,216.3621,-25.71538,58.99236,0.5387298,0,12403.25,-,-
+1801,1304.082,596.8421,590.9059,1600.971,-191.4898,81.50664,218.6337,-26.15046,80.69597,0.8106695,0,16066.95,-,-
+1802,1321.862,673.9199,666.6092,1658.305,-193.6234,93.28741,229.551,-26.80234,92.27543,1.011983,0,18050.71,-,-
+1803,1340.809,653.8749,646.3175,1686.649,-195.8971,91.81005,236.821,-27.50575,90.74892,1.061131,0,17875.35,-,-
+1804,1359.844,688.757,681.1648,1679.271,-198.1813,98.08074,239.1324,-28.22152,96.99959,1.081155,0,19000.56,-,-
+1805,1378.966,667.6556,661.0274,1692.202,-200.4759,96.41279,244.3624,-28.94972,95.45564,0.9571458,0,18801.19,-,-
+1806,1393.216,509.188,504.4281,1685.31,-202.1859,74.28912,245.8821,-29.49837,73.59466,0.6944566,0,15245.89,-,-
+1807,1402.928,498.3729,494.2787,1626.229,-203.4685,73.21809,238.9163,-29.89242,72.61659,0.601504,0,15114.91,-,-
+1808,1413.785,559.3511,554.6559,1618.762,-205.2056,82.81261,239.6596,-30.38094,82.11749,0.6951239,0,16693.2,-,-
+1809,1426.51,578.6564,573.2528,1636.942,-207.2416,86.44188,244.5326,-30.95853,85.63467,0.8072062,0,17303.73,-,-
+1810,1440.927,633.9174,628.0585,1639.06,-209.5483,95.65402,247.3235,-31.61948,94.76997,0.8840586,0,18863.95,-,-
+1811,1455.95,611.6909,605.8247,1653.868,-211.952,93.26251,252.1598,-32.31562,92.3681,0.8944055,0,18530,-,-
+1812,1470.416,621.02,616.0975,1641.058,-214.2665,95.62565,252.6928,-32.99311,94.86768,0.7579678,0,18940.62,-,-
+1813,1480.725,457.6668,454.3746,1641.446,-215.916,70.96635,254.5246,-33.48019,70.45586,0.5104892,0,14960.67,-,-
+1814,1486.985,468.8123,466.167,1582.005,-216.9176,73.00191,246.3446,-33.77769,72.58999,0.411927,0,15294.36,-,-
+1815,1494.017,491.9769,488.3503,1583.648,-218.0427,76.97131,247.7666,-34.11346,76.40392,0.5673971,0,15924.68,-,-
+1816,1505.187,636.0603,630.8284,1587.73,-219.8299,100.2576,250.2624,-34.65021,99.43295,0.8246651,0,19751.67,-,-
+1817,1520.278,653.868,647.4691,1632.028,-222.2445,104.0978,259.8239,-35.38202,103.0791,1.018731,0,20372.42,-,-
+1818,1537.327,723.0119,716.5878,1631.639,-224.9723,116.3966,262.6751,-36.21796,115.3624,1.034207,0,22544.05,-,-
+1819,1552.584,594.7038,589.7132,1649.557,-227.4134,96.69064,268.1953,-36.97429,95.87923,0.8113993,0,19369.59,-,-
+1820,1562.453,521.6865,518.4341,1603.453,-228.9925,85.35818,262.3564,-37.46768,84.82603,0.5321554,0,17567.14,-,-
+1821,1568.948,468.1811,465.8954,1577.06,-230.0317,76.92208,259.1107,-37.79417,76.54655,0.3755322,0,16236.75,-,-
+1822,1573.946,466.8063,464.9932,1557.609,-230.8314,76.94053,256.7302,-38.04638,76.64169,0.2988376,0,16265.47,-,-
+1823,1578.063,436.4304,435.2813,1555.855,-231.4901,72.12202,257.1119,-38.25475,71.93213,0.189897,0,15515.78,-,-
+1824,1579.726,373.1335,372.8338,1545.408,-231.7562,61.72692,255.6545,-38.33908,61.67735,0.04957282,0,13929.24,-,-
+1825,1579.57,365.7295,366.027,1524.491,-231.7312,60.49611,252.1694,-38.33116,60.54532,-0.04921645,0,13736.23,-,-
+1826,1578.23,325.9352,326.9232,1522.529,-231.5168,53.86792,251.6312,-38.26321,54.0312,-0.1632806,0,12693.58,-,-
+1827,1574.601,275.0646,276.5242,1510.474,-230.9361,45.35591,249.0647,-38.07948,45.59658,-0.2406724,0,11340.45,-,-
+1828,1570.894,320.0185,321.3868,1494.464,-230.343,52.6442,245.8448,-37.89227,52.8693,-0.2250953,0,12463.08,-,-
+1829,1567.725,293.2509,294.7857,1510.516,-229.836,48.14352,247.9841,-37.73258,48.39549,-0.2519652,0,11737.76,-,-
+1830,1563.177,263.3225,265.8378,1502.899,-229.1083,43.10471,246.0178,-37.50401,43.51645,-0.4117379,0,10916.17,-,-
+1831,1555.069,149.6443,153.8971,1495.261,-227.811,24.36905,243.498,-37.09822,25.0616,-0.6925513,0,8203.245,-,-
+1832,1541.767,53.8968,59.34255,1459.986,-225.6827,8.701824,235.7198,-36.43726,9.58106,-0.8792367,0,5980.088,-,-
+1833,1527.692,109.6722,114.999,1430.095,-223.4307,17.5453,228.786,-35.74434,18.39748,-0.8521782,0,7102.979,-,-
+1834,1515.007,98.50806,103.6352,1452.599,-221.4011,15.62842,230.4565,-35.12554,16.44184,-0.8134212,0,6757.233,-,-
+1835,1501.92,86.22168,91.04913,1451.755,-219.3072,13.56101,228.333,-34.49279,14.32027,-0.7592648,0,6420.332,-,-
+1836,1490.76,165.9149,169.5396,1449.92,-217.5216,25.90131,226.3499,-33.95774,26.46716,-0.5658486,0,8075.401,-,-
+1837,1483.728,240.9438,243.3973,1479.986,-216.3965,37.43679,229.9538,-33.62274,37.81801,-0.3812155,0,9719.458,-,-
+1838,1478.436,230.6295,232.2987,1508.151,-215.5497,35.70639,233.4942,-33.37173,35.96482,-0.2584276,0,9442.882,-,-
+1839,1475.345,325.0508,325.0819,1505.129,-215.0552,50.21962,232.5391,-33.22555,50.22443,-0.00480542,0,11582.71,-,-
+1840,1478.28,465.3397,463.3342,1537.739,-215.5248,72.03696,238.0499,-33.36435,71.72651,0.3104558,0,15118.96,-,-
+1841,1485.41,492.1127,489.2872,1585.12,-216.6656,76.549,246.5683,-33.70272,76.1095,0.4395065,0,15836.92,-,-
+1842,1492.481,468.4047,465.7138,1592.349,-217.797,73.20802,248.8718,-34.03997,72.78746,0.4205629,0,15342.7,-,-
+1843,1498.937,472.5999,470.0837,1582.009,-218.8299,74.1832,248.3252,-34.34937,73.78825,0.3949541,0,15511.66,-,-
+1844,1505.128,462.2502,459.7453,1581.537,-219.8205,72.85831,249.2765,-34.64737,72.46352,0.3947946,0,15328.73,-,-
+1845,1511.525,484.5759,482.1205,1575.855,-220.844,76.70184,249.4366,-34.95663,76.31317,0.3886677,0,15932.2,-,-
+1846,1517.471,448.8423,446.5835,1581.757,-221.7953,71.32517,251.3557,-35.24532,70.96622,0.3589556,0,15137.47,-,-
+1847,1522.88,467.4922,465.2695,1567.681,-222.6608,74.55361,250.0069,-35.50897,74.19914,0.3544717,0,15642.27,-,-
+1848,1528.641,466.3124,463.8225,1572.236,-223.5826,74.64678,251.6819,-35.79085,74.2482,0.3985789,0,15674.88,-,-
+1849,1535.39,509.8709,507.3573,1569.534,-224.6624,81.97993,252.3586,-36.12249,81.57578,0.4041573,0,16902.31,-,-
+1850,1541.278,436.948,435.0676,1582.592,-225.6045,70.52439,255.4339,-36.41307,70.22089,0.3035043,0,15103.77,-,-
+1851,1544.848,422.8369,421.6463,1556.748,-226.1757,68.40491,251.8446,-36.58982,68.2123,0.1926093,0,14802.85,-,-
+1852,1547.264,393.3316,392.83,1551.269,-226.5622,63.73117,251.3507,-36.70968,63.6499,0.08127549,0,14107.97,-,-
+1853,1547.371,333.5536,333.9697,1541.371,-226.5794,54.04913,249.7642,-36.71499,54.11656,-0.06743018,0,12564.14,-,-
+1854,1545.171,302.6215,303.5865,1521.773,-226.2273,48.96716,246.238,-36.60583,49.12331,-0.1561532,0,11741.44,-,-
+1855,1542.52,314.0074,315.0681,1511.972,-225.8032,50.72234,244.2324,-36.47451,50.89368,-0.1713368,0,12007.67,-,-
+1856,1539.84,299.7203,300.6564,1516.666,-225.3744,48.33039,244.565,-36.342,48.48135,-0.1509539,0,11610.08,-,-
+1857,1537.816,338.024,338.6119,1512.29,-225.0506,54.43529,243.5387,-36.24208,54.52997,-0.09468412,0,12578.63,-,-
+1858,1536.886,341.5812,341.6748,1525.673,-224.9018,54.97488,245.5454,-36.19621,54.98994,-0.01506026,0,12660.74,-,-
+1859,1537.346,392.6432,391.7235,1526.655,-224.9754,63.21183,245.777,-36.21889,63.06376,0.1480711,0,13985.3,-,-
+1860,1541.503,487.2911,485.0374,1542.606,-225.6405,78.66136,249.0165,-36.4242,78.29755,0.3638081,0,16384.78,-,-
+1861,1548.662,512.5078,510.7243,1572.281,-226.7859,83.1162,254.9854,-36.77912,82.82697,0.289232,0,17144.85,-,-
+1862,1550.482,282.4928,283.2576,1580.832,-227.0771,45.86726,256.6735,-36.86963,45.99143,-0.1241735,0,11277.37,-,-
+1863,1544.809,218.7362,222.0584,1504.597,-226.1694,35.3854,243.4017,-36.58789,35.92283,-0.5374311,0,9676.952,-,-
+1864,1533.756,65.94511,71.26926,1485.934,-224.4009,10.59174,238.6626,-36.04206,11.44688,-0.8551368,0,6175.065,-,-
+1865,1518.009,27.0423,32.9829,1436.558,-221.8814,4.298793,228.3632,-35.2715,5.243145,-0.9443524,0,5357.617,-,-
+1866,1503.915,119.6612,124.7197,1425.93,-219.6264,18.84539,224.5692,-34.58888,19.64205,-0.7966557,0,7144.316,-,-
+1867,1492.609,127.4333,131.5053,1461.441,-217.8174,19.91854,228.4314,-34.0461,20.55502,-0.6364829,0,7231.368,-,-
+1868,1483.464,198.2633,200.9204,1466.331,-216.3542,30.79981,227.7916,-33.6102,31.21258,-0.4127711,0,8741.103,-,-
+1869,1479.277,316.4415,317.3535,1492.565,-215.6843,49.01979,231.2125,-33.41155,49.16108,-0.1412841,0,11414.39,-,-
+1870,1478.886,345.055,344.9868,1534.751,-215.6218,53.43818,237.6847,-33.39304,53.42761,0.0105737,0,12137.17,-,-
+1871,1479.62,360.7847,360.6057,1544.682,-215.7392,55.90194,239.3414,-33.42781,55.8742,0.02774163,0,12551.46,-,-
+1872,1479.786,323.5323,323.5208,1550.302,-215.7658,50.13549,240.2392,-33.43567,50.1337,0.001787612,0,11590.43,-,-
+1873,1479.678,350.1502,350.1209,1537.042,-215.7485,54.2563,238.1671,-33.43055,54.25177,0.00453177,0,12277.23,-,-
+1874,1479.933,337.6277,337.4486,1546.452,-215.7893,52.32494,239.6664,-33.44264,52.29718,0.02775648,0,11956.28,-,-
+1875,1480.578,365.5997,365.4189,1541.763,-215.8925,56.68469,239.0438,-33.47322,56.65665,0.02803998,0,12686.04,-,-
+1876,1480.842,323.1178,323.1139,1551.707,-215.9347,50.10699,240.6285,-33.48574,50.10637,0.0006175882,0,11590.88,-,-
+1877,1480.598,345.5523,345.9178,1536.646,-215.8957,53.57714,238.2537,-33.47417,53.63382,-0.05667591,0,12168.12,-,-
+1878,1479.004,269.8969,270.747,1545.23,-215.6406,41.80189,239.3266,-33.39862,41.93355,-0.1316619,0,10346.44,-,-
+1879,1476.324,301.9285,302.8901,1518.941,-215.2118,46.67824,234.8288,-33.27181,46.8269,-0.148662,0,11059.52,-,-
+1880,1474.172,288.6328,289.4386,1530.989,-214.8675,44.55766,236.3463,-33.17016,44.68207,-0.1244067,0,10738.62,-,-
+1881,1472.274,310.9169,311.3336,1526.712,-214.5639,47.93599,235.3827,-33.08064,48.00023,-0.06424265,0,11234.45,-,-
+1882,1472.079,354.1005,354.0362,1534.649,-214.5327,54.58663,236.575,-33.07144,54.57672,0.009909392,0,12298.96,-,-
+1883,1472.597,339.2961,338.8232,1549.949,-214.6155,52.32285,239.0177,-33.09586,52.24992,0.07293474,0,11921.82,-,-
+1884,1474.455,407.079,406.1992,1543.999,-214.9128,62.85486,238.4005,-33.18352,62.71901,0.1358491,0,13680.26,-,-
+1885,1477.018,368.3076,367.2643,1567.438,-215.3229,56.96722,242.4404,-33.30463,56.80586,0.1613605,0,12718.37,-,-
+1886,1479.698,413.582,412.4005,1552.792,-215.7517,64.08602,240.6108,-33.4315,63.90294,0.1830781,0,13891.77,-,-
+1887,1482.955,392.3844,391.3261,1567.904,-216.2728,60.93521,243.4872,-33.58601,60.77087,0.1643467,0,13403.42,-,-
+1888,1485.019,369.2287,368.3645,1559.859,-216.603,57.41906,242.575,-33.68412,57.28467,0.1343897,0,12826.79,-,-
+1889,1487.298,402.0009,400.9948,1550.937,-216.9677,62.61143,241.5576,-33.7926,62.45473,0.1567042,0,13694.2,-,-
+1890,1490.075,390.1634,389.1479,1561.693,-217.412,60.88121,243.6869,-33.92503,60.72274,0.1584702,0,13421.32,-,-
+1891,1492.403,386.1416,385.4081,1556.844,-217.7845,60.34778,243.31,-34.03624,60.23314,0.1146425,0,13341.99,-,-
+1892,1493.763,353.3757,353.2163,1555.104,-218.0021,55.27732,243.2595,-34.1013,55.25238,0.02494532,0,12509.54,-,-
+1893,1493.205,311.9701,312.1434,1543.833,-217.9128,48.78216,241.4061,-34.0746,48.80926,-0.02710004,0,11433.51,-,-
+1894,1492.892,362.3797,362.3096,1529.227,-217.8627,56.65273,239.0721,-34.05963,56.64178,0.01095435,0,12733.04,-,-
+1895,1493.557,350.0219,349.7728,1546.816,-217.9691,54.74515,241.9297,-34.09144,54.70619,0.03896294,0,12420.68,-,-
+1896,1494.144,359.9427,359.7188,1542.277,-218.0631,56.31893,241.3145,-34.11954,56.28391,0.03502262,0,12683.29,-,-
+1897,1494.682,348.2387,348.266,1545.635,-218.1491,54.50727,241.927,-34.1453,54.51154,-0.004267497,0,12386.49,-,-
+1898,1494.007,312.7928,313.1566,1541.789,-218.0411,48.93707,241.2161,-34.11298,48.99399,-0.05692495,0,11463.25,-,-
+1899,1492.853,328.2793,329.2844,1529.592,-217.8565,51.3203,239.1229,-34.05777,51.47742,-0.1571184,0,11851.3,-,-
+1900,1488.951,202.7805,206.0866,1536.41,-217.2322,31.61806,239.561,-33.8714,32.13356,-0.5155,0,8885.37,-,-
+1901,1476.187,-19.87463,-13.70548,1495.39,-215.1899,-3.072339,231.1663,-33.26534,-2.118674,-0.9536646,0,4228.407,-,-
+1902,1457.887,-20.41505,-13.92946,1418.604,-212.2619,-3.116756,216.5777,-32.40593,-2.126604,-0.9901524,0,4134.319,-,-
+1903,1443.636,124.2742,128.8542,1421.261,-209.9818,18.78742,214.8622,-31.74446,19.47982,-0.6923953,0,6887.217,-,-
+1904,1434.912,185.2925,188.3713,1476.494,-208.5859,27.84272,221.8634,-31.34288,28.30535,-0.4626265,0,8081.401,-,-
+1905,1428.173,197.4949,200.134,1500.585,-207.5077,29.53693,224.4244,-31.03442,29.93163,-0.3946973,0,8302.097,-,-
+1906,1421.649,189.6808,192.4666,1506.685,-206.4639,28.23868,224.3074,-30.73725,28.65341,-0.4147347,0,8078.063,-,-
+1907,1414.167,156.0547,159.0012,1505.626,-205.2667,23.11033,222.97,-30.3982,23.54668,-0.43635,0,7363.874,-,-
+1908,1406.841,190.9819,193.8721,1494.747,-204.0945,28.13623,220.2122,-30.06803,28.56202,-0.4257869,0,8000.875,-,-
+1909,1399.642,156.5961,159.3929,1509.487,-202.957,22.95231,221.2457,-29.74745,23.36224,-0.40993,0,7308.065,-,-
+1910,1392.786,200.0637,202.6836,1496.513,-202.1343,29.17973,218.2697,-29.48174,29.56185,-0.382119,0,8099.252,-,-
+1911,1386.477,173.4679,176.3753,1512.865,-201.3772,25.18607,219.6552,-29.23827,25.6082,-0.422131,0,7549.733,-,-
+1912,1378.163,117.8722,121.3332,1502.943,-200.3795,17.01142,216.9061,-28.91895,17.51092,-0.4995048,0,6431.333,-,-
+1913,1369.077,138.0007,141.4772,1481.995,-199.2892,19.78508,212.4728,-28.57198,20.2835,-0.4984183,0,6760.894,-,-
+1914,1360.695,139.966,143.0926,1489.569,-198.2834,19.94399,212.2511,-28.25373,20.3895,-0.4455139,0,6746.377,-,-
+1915,1353.369,175.0486,177.2991,1490.271,-197.4043,24.80867,211.2079,-27.97702,25.12762,-0.318954,0,7373.796,-,-
+1916,1349.398,267.9631,268.4058,1503.336,-196.9277,37.8655,212.4344,-27.82759,37.92805,-0.06254865,0,9175.118,-,-
+1917,1351.149,397.8775,396.0971,1537.856,-197.1379,56.29648,217.5943,-27.89343,56.04457,0.2519067,0,12168.3,-,-
+1918,1358.328,482.8811,479.2623,1585.916,-197.9994,68.68684,225.5866,-28.16418,68.17207,0.5147662,0,14112.49,-,-
+1919,1369.312,552.1698,547.4495,1617.128,-199.3174,79.17785,231.8865,-28.58093,78.50098,0.6768652,0,15933.47,-,-
+1920,1382.037,557.7659,553.1674,1642.657,-200.8444,80.72354,237.7361,-29.06753,80.05802,0.6655183,0,16250.89,-,-
+1921,1392.443,469.3135,465.5524,1645.099,-202.0932,68.43355,239.8822,-29.46847,67.88512,0.5484312,0,14277.78,-,-
+1922,1400.953,489.3365,486.1675,1612.141,-203.1525,71.78931,236.5131,-29.80398,71.3244,0.4649037,0,14877.15,-,-
+1923,1408.376,431.386,428.8092,1617.505,-204.3401,63.62286,238.5574,-30.13706,63.24284,0.3800226,0,13564.84,-,-
+1924,1413.912,419.6696,417.7692,1594.599,-205.2259,62.13817,236.1035,-30.38668,61.8568,0.28137,0,13342.19,-,-
+1925,1417.932,375.074,373.6265,1589.262,-205.8691,55.69305,235.9824,-30.56858,55.47812,0.2149317,0,12289.02,-,-
+1926,1421.189,391.9496,390.7724,1571.921,-206.3902,58.33252,233.9435,-30.71635,58.15731,0.1752041,0,12739.01,-,-
+1927,1423.85,353.5243,352.5883,1577.46,-206.816,52.71231,235.2076,-30.83735,52.57276,0.1395558,0,11840.68,-,-
+1928,1425.894,369.5777,368.6085,1562.766,-207.1431,55.18507,233.3512,-30.93045,55.04035,0.1447257,0,12223.9,-,-
+1929,1428.72,385.072,384.1246,1567.82,-207.5952,57.61262,234.5697,-31.0594,57.47088,0.1417418,0,12640.9,-,-
+1930,1430.657,335.6824,335.964,1573.059,-207.9051,50.29128,235.6726,-31.14794,50.33347,-0.04218995,0,11484.04,-,-
+1931,1427.302,178.1059,180.7291,1556.269,-207.3683,26.6209,232.6104,-30.99466,27.01298,-0.3920758,0,7863.076,-,-
+1932,1417.443,77.54507,82.36547,1500.63,-205.7909,11.51035,222.745,-30.54642,12.22586,-0.7155124,0,5872.458,-,-
+1933,1403.036,-7.742927,-1.146365,1466.23,-203.4858,-1.137634,215.4267,-29.89726,-0.1684303,-0.9692037,0,4155.466,-,-
+1934,1384.237,-89.78989,-81.88728,1434.557,-201.1084,-13.01567,207.949,-29.15207,-11.87013,-1.14554,0,2361.27,-,-
+1935,1363.287,-89.91766,-81.51568,1403.311,-198.5944,-12.83692,200.341,-28.35195,-11.63743,-1.199492,0,2305.233,-,-
+1936,1342.004,-105.1665,-96.2858,1403.246,-196.0405,-14.7795,197.2043,-27.55042,-13.53146,-1.248044,0,1927.603,-,-
+1937,1318.618,-127.7381,-115.9762,1397.363,-193.2342,-17.63877,192.9554,-26.68281,-16.01462,-1.624145,0,1389.29,-,-
+1938,1282.605,-126.4113,-107.1649,1388.253,-188.9126,-16.97882,186.462,-25.37362,-14.39375,-2.585073,0,1325.766,-,-
+1939,1220.908,-122.6429,-94.8125,1387.7,-181.509,-15.68028,177.4219,-23.2065,-12.12208,-3.558201,0,1145.625,-,-
+1940,1141.722,-118.6285,-89.35065,1388.319,-173.4636,-14.18332,165.9886,-20.73945,-10.68284,-3.500482,0,1013.071,-,-
+1941,1074.528,-117.1349,-93.16174,1390.233,-167.0802,-13.18052,156.435,-18.80058,-10.48296,-2.697561,0,922.732,-,-
+1942,1022.054,-107.9481,-85.41473,1391.319,-162.0951,-11.5536,148.9118,-17.34892,-9.141874,-2.411724,0,980.7946,-,-
+1943,960.7875,-41.70559,-86.77953,1332.066,-157.8433,-4.196142,134.0237,-15.88116,-8.731186,4.535044,0,2079.591,-,-
+1944,1216.514,-59.24067,-84.37721,1425.148,-180.9817,-7.546849,181.554,-23.05581,-10.74907,3.202221,0,2295.025,-,-
+1945,1109.274,-123.9946,-81.98792,1413.137,-170.381,-14.40357,164.1541,-19.79196,-9.523954,-4.879621,0,856.9827,-,-
+1946,1005.743,-117.4307,-76.92406,1386.215,-160.5456,-12.36793,145.9978,-16.90885,-8.101731,-4.266203,0,774.949,-,-
+1947,906.0809,-123.7316,-80.29117,1239.23,-154.8344,-11.74022,117.5838,-14.6914,-7.618393,-4.121822,0,556.9361,-,-
+1948,784.7748,-127.1723,-74.51316,1041.586,-148.9239,-10.4512,85.59901,-12.23878,-6.123598,-4.327603,0,274.3034,-,-
+1949,636.8536,-113.4417,-103.2291,801.1038,-148.1843,-7.565559,53.42653,-9.882579,-6.884468,-0.6810913,0,418.0717,-,-
+1950,741.9532,-34.82963,-74.19086,990.5296,-148.7098,-2.706163,76.96133,-11.55433,-5.764419,3.058256,0,1413.747,-,-
+1951,836.1458,-32.46653,-9.801683,1165.28,-150.988,-2.842801,102.033,-13.22066,-0.858245,-1.984556,0,1647.772,-,-
+1952,600,-39.98116,-74.40804,784.2833,-148,-2.51209,49.27797,-9.299114,-4.675195,2.163105,0,1064.861,-,-
+1953,952.2463,8.564109,0.09903125,1352.095,-157.3736,0.8540043,134.8295,-15.69313,0.009875298,0.844129,0,2732.643,-,-
+1954,664.0984,-98.85714,-16.94905,907.8115,-148.3205,-6.874943,63.13305,-10.31483,-1.178708,-5.696235,0,619.0623,-,-
+1955,600,-31.3233,-17.88857,760.2183,-148,-1.968101,47.76592,-9.299114,-1.123972,-0.844129,0,1150.212,-,-
+1956,600,-3.233814,-3.233814,789.5037,-148,-0.2031865,49.60598,-9.299114,-0.2031865,0,0,1427.121,-,-
+1957,600,-10.423,-10.423,800.0374,-148,-0.6548967,50.26783,-9.299114,-0.6548967,0,0,1356.249,-,-
+1958,600,-0.004712832,-0.004712832,797.3414,-148,-0.000296116,50.09844,-9.299114,-0.000296116,0,0,1458.953,-,-
+1959,600,0,0,801.2483,-148,0,50.34391,-9.299114,0,0,0,1459,-,-
+1960,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1961,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1962,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1963,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1964,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1965,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1966,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1967,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1968,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1969,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1970,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1971,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1972,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1973,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1974,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1975,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1976,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1977,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1978,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1979,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1980,600,3.787888E-06,3.787888E-06,801.2501,-148,2.38E-07,50.34402,-9.299114,2.38E-07,0,0,1459,-,-
+1981,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1982,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1983,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+1984,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1985,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1986,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1987,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+1988,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1989,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1990,600,3.787888E-06,3.787888E-06,801.2501,-148,2.38E-07,50.34402,-9.299114,2.38E-07,0,0,1459,-,-
+1991,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1992,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1993,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1994,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1995,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+1996,600,3.787888E-06,3.787888E-06,801.2501,-148,2.38E-07,50.34402,-9.299114,2.38E-07,0,0,1459,-,-
+1997,600,3.787888E-06,3.787888E-06,801.2501,-148,2.38E-07,50.34402,-9.299114,2.38E-07,0,0,1459,-,-
+1998,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+1999,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2000,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2001,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2002,600,9.17054,3.794549E-06,801.2501,-148,0.576202,50.34402,-9.299114,2.384186E-07,0.5762018,0,1546.074,-,-
+2003,644.4445,12.30506,3.766974,875.1463,-148.2222,0.8304201,59.06019,-10.00294,0.2542183,0.5762018,0,1669.17,-,-
+2004,644.4445,45.10218,45.09225,876.559,-148.2222,3.043769,59.15552,-10.00294,3.043099,0.0006695998,0,1980.579,-,-
+2005,644.4944,106.4829,55.84216,888.9359,-148.2225,7.186672,59.99543,-10.00373,3.76886,3.417812,0,2563.494,-,-
+2006,862.1945,80.23293,80.24034,1248.152,-152.4207,7.244134,112.6941,-13.76188,7.244804,-0.0006695998,0,3151.222,-,-
+2007,644.4445,-20.88721,29.7575,912.1981,-148.2222,-1.409595,61.56067,-10.00294,2.008217,-3.417812,0,1346.425,-,-
+2008,644.4445,18.99788,18.99788,864.1118,-148.2222,1.282092,58.31551,-10.00294,1.282092,0,0,1732.718,-,-
+2009,644.4445,16.33427,16.33427,879.0688,-148.2222,1.102336,59.3249,-10.00294,1.102336,0,0,1707.427,-,-
+2010,644.4445,19.26394,19.26394,878.0699,-148.2222,1.300048,59.25749,-10.00294,1.300048,0,0,1735.245,-,-
+2011,644.4445,18.65764,18.65764,879.1685,-148.2222,1.259131,59.33163,-10.00294,1.259131,0,0,1729.488,-,-
+2012,644.4445,16.14553,15.90098,878.9412,-148.2222,1.089598,59.31629,-10.00294,1.073095,0.01650345,0,1705.635,-,-
+2013,645.6724,39.36745,44.46101,879.9409,-148.2284,2.661816,59.4969,-10.02241,3.006216,-0.3443995,0,1928.706,-,-
+2014,618.264,-4.578203,-5.011764,845.7184,-148.0913,-0.2964133,54.75557,-9.588092,-0.3244839,0.02807063,0,1452.222,-,-
+2015,647.7556,97.88329,80.93255,875.5726,-148.2388,6.639698,59.39255,-10.05545,5.489882,1.149816,0,2488.688,-,-
+2016,701.8685,51.81871,37.3172,997.1608,-148.5093,3.808649,73.29082,-10.91536,2.742796,1.065853,0,2164.943,-,-
+2017,722.4244,38.25288,30.02062,1014.86,-148.6121,2.893911,76.77632,-11.24282,2.271123,0.6227876,0,2079.302,-,-
+2018,743.2361,45.70056,37.72189,1043.028,-148.7162,3.556943,81.18044,-11.5748,2.935951,0.6209924,0,2193.723,-,-
+2019,762.5648,33.86193,27.98548,1076.533,-148.8128,2.704065,85.96719,-11.88354,2.234797,0.4692677,0,2121.905,-,-
+2020,772.9451,28.71249,25.19925,1088.869,-148.8647,2.324064,88.13588,-12.0495,2.039693,0.2843715,0,2099.02,-,-
+2021,780.2573,26.37486,23.70111,1098.638,-148.9013,2.155046,89.76791,-12.16648,1.936579,0.2184675,0,2104.815,-,-
+2022,786.3934,23.89848,23.56498,1107.545,-148.932,1.968062,91.20738,-12.26468,1.940598,0.02746388,0,2103.483,-,-
+2023,781.9448,5.940524,8.849702,1099.669,-148.9097,0.4864402,90.04646,-12.19348,0.7246585,-0.2382183,0,1897.489,-,-
+2024,771.7178,12.90313,15.43903,1076.646,-148.8586,1.042755,87.00816,-12.02987,1.247691,-0.2049359,0,1942.123,-,-
+2025,769.2634,19.14046,19.74146,1075.339,-148.8463,1.5419,86.62614,-11.99062,1.590314,-0.0484142,0,1996.192,-,-
+2026,768.7009,17.48074,18.09041,1076.773,-148.8435,1.407168,86.67825,-11.98163,1.456245,-0.04907745,0,1979.252,-,-
+2027,766.1954,16.11552,17.01112,1072.181,-148.831,1.293041,86.02731,-11.94157,1.364901,-0.0718595,0,1961.027,-,-
+2028,764.2012,18.83329,18.80268,1068.491,-148.821,1.507171,85.50813,-11.90969,1.504721,0.002449848,0,1982.645,-,-
+2029,766.3488,23.58632,22.82351,1072.891,-148.8317,1.892846,86.10152,-11.94402,1.831629,0.06121738,0,2032.285,-,-
+2030,768.0362,18.49675,18.16138,1077.358,-148.8402,1.487667,86.65036,-11.971,1.460694,0.02697289,0,1987.503,-,-
+2031,768.0362,21.51933,20.45756,1075.469,-148.8402,1.730769,86.49841,-11.971,1.645372,0.08539673,0,2016.202,-,-
+2032,773.3542,26.92911,25.63027,1085.006,-148.8668,2.180866,87.86969,-12.05604,2.075679,0.1051874,0,2079.455,-,-
+2033,774.5814,12.98762,14.72486,1089.026,-148.8729,1.053477,88.33523,-12.07567,1.194392,-0.1409148,0,1948.938,-,-
+2034,764.559,4.049094,9.833635,1067.936,-148.8228,0.3241884,85.50368,-11.91541,0.7873244,-0.463136,0,1843.02,-,-
+2035,745.3326,-7.932438,1.774709,1033.977,-148.7267,-0.6191351,80.703,-11.60827,0.1385179,-0.757653,0,1686,-,-
+2036,715.4191,-17.90327,-4.439517,981.7395,-148.5771,-1.341286,73.55047,-11.13118,-0.332602,-1.008684,0,1524.888,-,-
+2037,677.2729,-24.17809,-8.375927,917.0703,-148.3864,-1.714803,65.04216,-10.52413,-0.594053,-1.12075,0,1382.923,-,-
+2038,635.803,70.62216,-8.472417,848.5409,-148.179,4.702104,56.49681,-9.865927,-0.5641031,5.266207,0,2204.744,-,-
+2039,981.9337,1.17768,-29.34934,1425.911,-159.0063,0.1210983,146.6234,-16.35028,-3.01793,3.139028,0,2790.107,-,-
+2040,839.9738,-58.35692,-6.925572,1183.475,-151.1986,-5.133183,104.1006,-13.29971,-0.6091862,-4.523996,0,1340.147,-,-
+2041,727.9713,-61.7023,-17.86211,979.5536,-148.6399,-4.70375,74.67429,-11.33126,-1.361682,-3.342068,0,1096.347,-,-
+2042,620.287,-32.5566,-5.300683,806.3637,-148.1014,-2.114757,52.3784,-9.620122,-0.3443128,-1.770444,0,1180.656,-,-
+2043,600,-7.25806,-3.153369,788.6285,-148,-0.4560374,49.55099,-9.299114,-0.198132,-0.2579054,0,1387.449,-,-
+2044,600,5.779666,-3.390871,798.5283,-148,0.3631471,50.17301,-9.299114,-0.2130547,0.5762018,0,1513.878,-,-
+2045,644.4445,25.67798,17.13989,873.9625,-148.2222,1.732906,58.98029,-10.00294,1.156704,0.5762018,0,1796.146,-,-
+2046,644.4445,88.33761,43.3917,881.5737,-148.2222,5.961558,59.49395,-10.00294,2.928335,3.033223,0,2391.099,-,-
+2047,840.5137,89.43745,89.24881,1209.216,-151.2283,7.872139,106.4333,-13.31087,7.855536,0.01660363,0,3155.112,-,-
+2048,645.6799,43.44872,72.70344,917.5689,-148.2284,2.937804,62.04182,-10.02253,4.915875,-1.978071,0,1967.473,-,-
+2049,718.7428,164.8494,105.5035,1004.762,-148.5937,12.40765,75.62501,-11.18414,7.940886,4.466765,0,3485.929,-,-
+2050,919.598,291.2358,215.1119,1357.927,-155.5779,28.04603,130.7685,-14.98216,20.71529,7.330743,0,6563.563,-,-
+2051,1104.653,132.5401,83.87145,1528.418,-169.942,15.33211,176.8058,-19.65872,9.702165,5.629946,0,5240.825,-,-
+2052,1177.315,107.2764,57.80796,1484.135,-176.8449,13.22591,182.9762,-21.80288,7.127035,6.098877,0,5126.673,-,-
+2053,1343.756,282.795,215.921,1472.746,-196.2507,39.79429,207.2415,-27.61597,30.38393,9.410359,0,9456.317,-,-
+2054,1513.062,10.57763,62.52004,1502.221,-221.0899,1.675998,238.0232,-35.03114,9.906143,-8.230145,0,5019.407,-,-
+2055,1007.81,251.9182,344.7888,1443.455,-160.7419,26.58685,152.3388,-16.96432,36.38819,-9.801339,0,6839.25,-,-
+2056,1161.267,374.542,321.6249,1519.485,-175.3204,45.54715,184.781,-21.32029,39.11203,6.435121,0,9891.758,-,-
+2057,1278.037,248.6118,204.6322,1565.12,-188.3644,33.27314,209.469,-25.20989,27.3871,5.886038,0,8295.613,-,-
+2058,1383.305,325.7701,278.9973,1523.635,-200.9966,47.19085,220.7128,-29.11624,40.41537,6.775481,0,10850.17,-,-
+2059,1511.207,336.5845,294.741,1519.198,-220.7931,53.26559,240.4179,-34.94122,46.64371,6.621881,0,12260.04,-,-
+2060,1596.608,46.11098,116.3542,1501.105,-234.4573,7.709589,250.9794,-39.20042,19.454,-11.74441,0,6211.394,-,-
+2061,1075.369,230.9394,345.5558,1463.173,-167.16,26.00664,164.7714,-18.82429,38.91386,-12.90722,0,6815.418,-,-
+2062,1144.645,458.8178,426.5428,1518.861,-173.7413,54.99709,182.0612,-20.82584,51.12838,3.868711,0,11191.5,-,-
+2063,1236.03,595.7756,555.5858,1596.836,-183.3236,77.11526,206.6893,-23.72882,71.91323,5.202025,0,15062.09,-,-
+2064,1345.194,643.2435,598.0493,1642.786,-196.4233,90.61267,231.4165,-27.66983,84.24624,6.366429,0,17700.83,-,-
+2065,1462.489,683.5992,639.0362,1638.705,-212.9982,104.6942,250.9701,-32.621,97.86935,6.824894,0,20328.36,-,-
+2066,1569.923,550.1807,515.0843,1616.158,-230.1877,90.45078,265.6996,-37.8433,84.68086,5.769923,0,18417.93,-,-
+2067,1640.951,331.5322,308.4187,1572.394,-240.9379,56.97049,270.2002,-41.40277,52.99866,3.971834,0,13500.07,-,-
+2068,1686.982,301.3854,288.0918,1520.478,-247.6124,53.24285,268.6082,-43.74329,50.89439,2.348461,0,13206.1,-,-
+2069,1708.258,-7.620193,81.62532,1519.023,-250.6974,-1.363164,271.7355,-44.84685,14.60182,-15.96498,0,5689.64,-,-
+2070,1146.06,-167.0519,-27.16661,1433.241,-173.8757,-20.04876,172.0106,-20.86771,-3.260405,-16.78835,0,126.0684,-,-
+2071,1143.091,224.5142,220.8159,1374.693,-173.5936,26.8753,164.5565,-20.77989,26.43259,0.4427079,0,7027.752,-,-
+2072,1164.452,467.4688,455.6105,1520.148,-175.6229,57.00368,185.3686,-21.41566,55.55766,1.446017,0,11591.15,-,-
+2073,1202.272,571.146,554.3168,1607.286,-179.2726,71.90821,202.36,-22.57072,69.78938,2.118829,0,14092.32,-,-
+2074,1248.732,655.787,636.0938,1643.711,-184.8478,85.75525,214.943,-24.17198,83.18002,2.575232,0,16593.1,-,-
+2075,1301.019,701.6288,680.6075,1673.537,-191.1223,95.5916,228.0067,-26.03896,92.7276,2.863996,0,18373.97,-,-
+2076,1354.342,688.1742,668.141,1690.252,-197.521,97.60125,239.7223,-28.01369,94.76001,2.841238,0,18899.39,-,-
+2077,1401.919,594.1999,577.4792,1686.156,-203.307,87.23366,247.5422,-29.84722,84.77892,2.45474,0,17404.09,-,-
+2078,1438.704,476.1308,463.0266,1642.041,-209.1926,71.73421,247.3911,-31.51712,69.75993,1.974292,0,14959.43,-,-
+2079,1467.953,446.9688,435.2507,1591.845,-213.8725,68.70969,244.7042,-32.87727,66.90834,1.801356,0,14568.86,-,-
+2080,1497.591,489.7701,477.957,1572.451,-218.6145,76.80935,246.6033,-34.28474,74.95673,1.852613,0,15909.51,-,-
+2081,1527.323,455.8165,444.4997,1577.688,-223.3717,72.9037,252.3369,-35.72626,71.09368,1.810023,0,15409.04,-,-
+2082,1554.516,445.1153,434.5988,1557.677,-227.7226,72.45966,253.572,-37.07062,70.7477,1.711966,0,15439.77,-,-
+2083,1580.204,431.946,421.3516,1545.887,-231.8326,71.47781,255.8112,-38.36333,69.72466,1.753152,0,15425.07,-,-
+2084,1607.732,488.7437,478.2321,1536.081,-236.1212,82.28554,258.6166,-39.75367,80.51578,1.769758,0,17280.78,-,-
+2085,1633.071,393.7423,384.7893,1557.569,-239.7953,67.33577,266.3673,-41.00854,65.80466,1.531107,0,15074.98,-,-
+2086,1652.807,380.3749,372.7647,1532.534,-242.657,65.83588,265.2533,-41.99945,64.51868,1.317202,0,14949.43,-,-
+2087,1671.334,373.2038,365.9554,1532.283,-245.3434,65.31876,268.1828,-42.94042,64.05013,1.268635,0,14980.6,-,-
+2088,1689.244,372.4248,365.5087,1533.962,-247.9404,65.88092,271.3535,-43.85997,64.65747,1.223448,0,15181.27,-,-
+2089,1706.105,356.1796,349.9583,1537.387,-250.3852,63.63607,274.674,-44.73455,62.52456,1.111509,0,14940.28,-,-
+2090,1720.534,325.0135,321.5098,1536.531,-252.4775,58.55896,276.8427,-45.48985,57.92768,0.6312799,0,14255.58,-,-
+2091,1723.772,126.9174,129.6121,1529.95,-252.9469,22.91023,276.1759,-45.6602,23.39667,-0.4864359,0,9012.02,-,-
+2092,1706.911,-78.98071,-71.45417,1473.657,-250.5021,-14.11759,263.4123,-44.77657,-12.77224,-1.345348,0,4099.783,-,-
+2093,1685.898,34.62132,41.58628,1407.947,-247.4552,6.112284,248.5685,-43.68743,7.341925,-1.229641,0,6496.443,-,-
+2094,1671.979,50.99462,55.69994,1434.281,-245.4369,8.928609,251.1272,-42.97337,9.75246,-0.8238513,0,6778.054,-,-
+2095,1662.279,119.6273,122.3131,1435.187,-244.0305,20.82393,249.828,-42.47923,21.29147,-0.467537,0,8250.362,-,-
+2096,1658.504,170.0941,171.8229,1454.008,-243.4831,29.54162,252.5294,-42.28769,29.84188,-0.3002606,0,9482.957,-,-
+2097,1653.587,94.46682,98.37678,1467.454,-242.7701,16.35818,254.109,-42.03886,17.03524,-0.6770605,0,7637.132,-,-
+2098,1638.794,-31.53359,-24.39674,1439.753,-240.6251,-5.411609,247.0819,-41.29466,-4.186825,-1.224784,0,4742.792,-,-
+2099,1617.648,-37.4367,-29.29348,1391.886,-237.559,-6.341766,235.7851,-40.24242,-4.962307,-1.379459,0,4485.067,-,-
+2100,1597.884,-12.3064,-4.861835,1383.297,-234.6614,-2.059231,231.4672,-39.2659,-0.8135309,-1.2457,0,4928.712,-,-
+2101,1580.257,-2.49407,4.533523,1395.59,-231.8411,-0.4127289,230.948,-38.36602,0.750226,-1.162955,0,5066.957,-,-
+2102,1562.563,-16.46312,-10.14446,1402.816,-229.0101,-2.69388,229.5445,-37.47319,-1.659951,-1.033929,0,4690.759,-,-
+2103,1548.537,68.96414,73.45488,1401.074,-226.7659,11.18339,227.2015,-36.77291,11.91162,-0.7282287,0,6354.238,-,-
+2104,1540.033,92.96758,95.64123,1432.407,-225.4053,14.99306,231.007,-36.35153,15.42424,-0.4311847,0,6824.628,-,-
+2105,1535.115,141.4622,143.171,1441.794,-224.6184,22.74101,231.7783,-36.10895,23.01572,-0.2747053,0,7868.534,-,-
+2106,1531.448,115.6631,119.4285,1459.431,-224.0317,18.54922,234.0532,-35.9286,19.15309,-0.6038653,0,7265.236,-,-
+2107,1516.118,-88.77379,-81.00329,1454.512,-221.5789,-14.09439,230.9293,-35.17953,-12.86069,-1.233703,0,2943.752,-,-
+2108,1492.284,-58.24156,-48.58102,1386.798,-217.7654,-9.101503,216.7172,-34.03056,-7.591835,-1.509668,0,3487.253,-,-
+2109,1467.55,-113.4876,-102.1929,1402.583,-213.808,-17.44094,215.5511,-32.85833,-15.70515,-1.735791,0,2203.71,-,-
+2110,1435.373,-130.9921,-116.1932,1387.845,-208.6597,-19.68967,208.6096,-31.36404,-17.46522,-2.224448,0,1687.129,-,-
+2111,1392.904,-128.0208,-110.6472,1386.88,-202.1485,-18.67371,202.2967,-29.4863,-16.13951,-2.534196,0,1572.382,-,-
+2112,1347.977,-125.8474,-109.8004,1387.892,-196.7572,-17.7646,195.9146,-27.77422,-15.4994,-2.265203,0,1504.126,-,-
+2113,1312.535,-122.166,-111.0715,1389.033,-192.5042,-16.79152,190.9203,-26.45938,-15.2666,-1.52492,0,1492,-,-
+2114,1292.543,28.33747,33.54337,1390.979,-190.1052,3.835612,188.2757,-25.73164,4.540256,-0.7046438,0,4277.91,-,-
+2115,1286.511,124.7876,125.8463,1448.176,-189.3813,16.81177,195.1028,-25.51404,16.9544,-0.1426307,0,5993.013,-,-
+2116,1287.236,168.0633,166.5897,1484.269,-189.4683,22.65477,200.078,-25.54015,22.45613,0.1986359,0,6827.774,-,-
+2117,1293.9,248.0979,244.8893,1500.199,-190.268,33.6165,203.2723,-25.78072,33.18174,0.4347573,0,8384.795,-,-
+2118,1303.345,227.6023,223.7011,1529.863,-191.4014,31.06452,208.8048,-26.1236,30.53206,0.5324607,0,8058.934,-,-
+2119,1313.502,266.8981,261.1888,1522.191,-192.6202,36.71172,209.3767,-26.49484,35.92642,0.785302,0,8859.794,-,-
+2120,1331.949,401.1213,391.899,1536.201,-194.8339,55.94895,214.2714,-27.1757,54.6626,1.286352,0,12040.38,-,-
+2121,1359.692,464.4086,451.4472,1584.851,-198.163,66.12557,225.6616,-28.21576,64.28004,1.845525,0,13688.78,-,-
+2122,1396.867,602.6469,587.0593,1607.019,-202.624,88.15491,235.074,-29.63976,85.87479,2.280128,0,17537.07,-,-
+2123,1437.925,553.222,537.8443,1644.656,-209.068,83.3037,247.651,-31.48129,80.98814,2.315561,0,16801.38,-,-
+2124,1474.281,516.9046,502.6401,1616.028,-214.885,79.80302,249.4927,-33.1753,77.60077,2.202248,0,16314.23,-,-
+2125,1509.642,540.5253,526.8147,1592.056,-220.5427,85.45128,251.687,-34.86545,83.28378,2.167492,0,17377.73,-,-
+2126,1543.23,487.9634,475.955,1589.072,-225.9168,78.85815,256.8046,-36.50966,76.9175,1.940647,0,16425.05,-,-
+2127,1570.127,410.3211,401.3073,1563.229,-230.2203,67.46635,257.0314,-37.85358,65.98427,1.482083,0,14769.8,-,-
+2128,1588.654,321.2782,315.1795,1532.361,-233.1846,53.44896,254.9289,-38.7934,52.43436,1.0146,0,12683.45,-,-
+2129,1600.84,282.6731,279.0686,1500.326,-235.1218,47.3872,251.5141,-39.41572,46.78295,0.6042472,0,11814.54,-,-
+2130,1606.805,194.6698,193.7149,1489.467,-235.9867,32.75597,250.6239,-39.70813,32.59529,0.1606797,0,9597.663,-,-
+2131,1605.65,136.6607,137.9129,1460.919,-235.8193,22.97858,245.6438,-39.65142,23.18912,-0.2105392,0,8290.435,-,-
+2132,1600.504,111.2554,113.4176,1440.542,-235.0731,18.6469,241.4412,-39.39928,19.00929,-0.3623929,0,7693.02,-,-
+2133,1594.781,123.0054,124.9658,1433.345,-234.165,20.54253,239.3759,-39.10674,20.86993,-0.3273998,0,7912.2,-,-
+2134,1590.656,142.4993,143.9512,1438.253,-233.5049,23.73655,239.5742,-38.89565,23.9784,-0.2418496,0,8315.439,-,-
+2135,1587.486,141.2804,142.998,1445.521,-232.9978,23.48662,240.305,-38.73381,23.77216,-0.285543,0,8264.071,-,-
+2136,1582.017,94.05922,97.0652,1446.599,-232.1227,15.58264,239.6558,-38.45541,16.08064,-0.4979962,0,7169.31,-,-
+2137,1572.358,52.33934,57.54323,1433.265,-230.5773,8.618036,235.9971,-37.96615,9.474893,-0.856856,0,6165.259,-,-
+2138,1555.805,-45.98845,-38.63035,1423.12,-227.9288,-7.4926,231.8596,-37.13496,-6.293793,-1.198807,0,4032.882,-,-
+2139,1535.33,-31.38551,-22.4792,1393.558,-224.6528,-5.046143,224.0554,-36.11954,-3.614192,-1.431951,0,4251.271,-,-
+2140,1510.986,-122.385,-111.8913,1403.659,-220.7577,-19.36499,222.1012,-34.93052,-17.70457,-1.660423,0,2180.526,-,-
+2141,1482.517,-111.4678,-99.10781,1376.313,-216.2027,-17.30525,213.671,-33.56522,-15.38637,-1.918879,0,2314.128,-,-
+2142,1448.754,-131.2198,-114.615,1386.198,-210.8006,-19.90776,210.3044,-31.98123,-17.3886,-2.519165,0,1742.714,-,-
+2143,1398.587,-130.3471,-106.8364,1386.527,-202.8304,-19.09059,203.0704,-29.70648,-15.64723,-3.443361,0,1537.505,-,-
+2144,1329.799,-123.7072,-98.70051,1386.091,-194.5759,-17.22699,193.0219,-27.0959,-13.74466,-3.482334,0,1503.254,-,-
+2145,1273.492,-124.6391,-106.8539,1389.059,-187.819,-16.62184,185.2445,-25.0475,-14.25001,-2.371831,0,1340.161,-,-
+2146,1241.248,-116.6682,-103.1145,1389.546,-183.9498,-15.16491,180.6176,-23.91038,-13.40315,-1.761756,0,1357.605,-,-
+2147,1205.269,-115.1075,-100.1272,1392.443,-179.6323,-14.52835,175.7479,-22.67237,-12.6376,-1.890753,0,1206.723,-,-
+2148,1165.85,-114.0362,-100.0328,1392.875,-175.7558,-13.9224,170.0527,-21.45758,-12.21276,-1.709639,0,1140.26,-,-
+2149,1135.151,-110.3618,-101.2497,1393.58,-172.8393,-13.11901,165.6586,-20.54589,-12.03583,-1.083181,0,1154.264,-,-
+2150,1120.372,79.63659,82.50578,1395.568,-171.4353,9.343369,163.7352,-20.11366,9.679996,-0.3366277,0,4364.614,-,-
+2151,1120.828,172.1178,171.3712,1467.351,-171.4787,20.20196,172.2272,-20.12694,20.11432,0.08764031,0,6026.782,-,-
+2152,1124.12,140.4277,139.3055,1501.855,-171.7914,16.53081,176.7948,-20.22287,16.3987,0.1321136,0,5473.318,-,-
+2153,1126.471,154.3972,153.1694,1490.05,-172.0147,18.21328,175.772,-20.29151,18.06844,0.1448393,0,5735.05,-,-
+2154,1130.287,171.8101,169.0437,1495.204,-172.3773,20.33602,176.9774,-20.40315,20.00859,0.3274302,0,6065.431,-,-
+2155,1140.336,283.7455,278.611,1501.361,-173.3319,33.88367,179.2861,-20.69855,33.27053,0.6131412,0,8035.444,-,-
+2156,1156.029,290.2068,283.8511,1542.46,-174.8228,35.13217,186.7288,-21.16388,34.36275,0.7694177,0,8270.732,-,-
+2157,1172.272,298.6467,292.6434,1544.82,-176.3658,36.66188,189.6421,-21.65068,35.92491,0.7369708,0,8547.154,-,-
+2158,1186.231,246.6369,241.3039,1548.175,-177.6919,30.63769,192.3171,-22.07322,29.97521,0.6624803,0,7672.343,-,-
+2159,1199.088,279.7571,273.3431,1528.997,-178.9134,35.12859,191.9934,-22.46583,34.3232,0.8053917,0,8387.415,-,-
+2160,1218.381,381.7852,372.6618,1540.748,-181.2057,48.71143,196.5818,-23.11978,47.54738,1.164044,0,10424.31,-,-
+2161,1244.808,431.1474,420.0409,1577.63,-184.377,56.20265,205.6535,-24.03464,54.75484,1.447807,0,11737.22,-,-
+2162,1274.137,447.9952,436.2147,1595.459,-187.8964,59.7748,212.8777,-25.07052,58.20295,1.571851,0,12377.52,-,-
+2163,1304.004,448.1753,437.0003,1601.65,-191.4805,61.20057,218.7133,-26.14761,59.67457,1.525994,0,12690.54,-,-
+2164,1330.377,382.9143,372.7302,1602.234,-194.6452,53.34637,223.218,-27.11734,51.92756,1.418809,0,11610.44,-,-
+2165,1355.218,420.3369,412.1504,1578.461,-197.6262,59.65342,224.0121,-28.04673,58.4916,1.161816,0,12665.19,-,-
+2166,1371.65,213.9859,209.8767,1593.238,-199.598,30.73668,228.8509,-28.67003,30.14645,0.5902338,0,8228.895,-,-
+2167,1375.962,174.5776,173.1804,1517.493,-200.1154,25.15495,218.6562,-28.83472,24.95364,0.2013137,0,7505.514,-,-
+2168,1378.676,179.4879,178.8413,1502.838,-200.4411,25.91349,216.9716,-28.93861,25.82015,0.09334143,0,7616.626,-,-
+2169,1379.214,129.3438,130.2107,1504.782,-200.5057,18.68124,217.3371,-28.95922,18.80646,-0.1252176,0,6657.963,-,-
+2170,1374.31,67.20566,69.98952,1486.177,-199.9172,9.672065,213.8867,-28.77157,10.07271,-0.4006451,0,5435.292,-,-
+2171,1365.201,41.1901,44.87597,1462.87,-198.8241,5.888681,209.1371,-28.4246,6.415627,-0.5269455,0,4879.435,-,-
+2172,1355.783,57.92399,61.73812,1453.054,-197.694,8.223889,206.3006,-28.06805,8.765409,-0.5415201,0,5141.799,-,-
+2173,1346.029,31.15672,36.03142,1459.379,-196.5235,4.391722,205.708,-27.70113,5.078839,-0.687117,0,4595.678,-,-
+2174,1331.237,-44.37485,-36.61578,1449.314,-194.7484,-6.186156,202.0442,-27.14926,-5.104489,-1.081667,0,3142.71,-,-
+2175,1306.892,-123.3566,-109.8243,1420.549,-191.827,-16.88227,194.4127,-26.25295,-15.03027,-1.852001,0,1452.382,-,-
+2176,1262.704,-117.1347,-99.51717,1389.622,-186.5245,-15.48873,183.7498,-24.66414,-13.15916,-2.329571,0,1456.159,-,-
+2177,1218.341,-119.7221,-104.732,1391.975,-181.2009,-15.27467,177.5942,-23.1184,-13.36216,-1.912508,0,1186.764,-,-
+2178,1187.789,-114.9743,-103.1113,1391.449,-177.84,-14.30108,173.0754,-22.12062,-12.82549,-1.475585,0,1161.434,-,-
+2179,1158.756,-111.6814,-102.2099,1393.304,-175.0818,-13.55194,169.07,-21.24524,-12.40262,-1.149317,0,1171.314,-,-
+2180,1140.404,29.15325,31.67914,1394.946,-173.3384,3.481563,166.5883,-20.70056,3.783212,-0.3016487,0,3626.877,-,-
+2181,1146.194,338.3775,332.6742,1448.377,-173.8884,40.61517,173.8475,-20.87168,39.93061,0.6845611,0,9103.445,-,-
+2182,1168.859,380.4576,370.4334,1561.931,-176.0416,46.56902,191.1845,-21.54796,45.34202,1.226995,0,10057.95,-,-
+2183,1196.469,448.4016,436.0135,1576.879,-178.6646,56.18201,197.5734,-22.38559,54.62985,1.552158,0,11577.13,-,-
+2184,1230.943,527.4457,513.3256,1600.941,-182.7132,67.98988,206.3678,-23.55247,66.16975,1.82013,0,13516.66,-,-
+2185,1267.379,497.6165,482.3214,1629.606,-187.0855,66.04348,216.2807,-24.82991,64.01351,2.029966,0,13298.45,-,-
+2186,1307.698,615.2288,598.7267,1618.353,-191.9238,84.25054,221.6202,-26.28239,81.99072,2.259825,0,16535.14,-,-
+2187,1350.247,552.4832,535.7305,1660.941,-197.0296,78.11976,234.8529,-27.8595,75.75098,2.368779,0,15666.65,-,-
+2188,1391.923,608.2789,590.768,1638.478,-202.0308,88.66384,238.8275,-29.44837,86.11143,2.552413,0,17592.1,-,-
+2189,1438.113,653.5273,635.7859,1645.805,-209.0981,98.42046,247.8564,-31.48993,95.74863,2.671835,0,19294.52,-,-
+2190,1481.187,556.1555,539.3367,1647.651,-215.9899,86.26501,255.5663,-33.5021,83.65627,2.608746,0,17420.59,-,-
+2191,1522.688,631.3795,614.8704,1600.318,-222.6301,100.6769,255.1796,-35.4996,98.04447,2.63248,0,19868.01,-,-
+2192,1564.162,564.6531,549.2832,1610.831,-229.2659,92.48943,263.852,-37.55345,89.97186,2.517573,0,18725.64,-,-
+2193,1600.074,526.8943,514.1335,1576.832,-235.0107,88.28608,264.2129,-39.37825,86.14787,2.138208,0,18194.64,-,-
+2194,1628.449,416.6169,407.7075,1568.438,-239.1251,71.046,267.4669,-40.77819,69.52667,1.519325,0,15630.48,-,-
+2195,1645.015,288.1699,285.0161,1538.21,-241.5272,49.64175,264.9806,-41.60682,49.09846,0.5432898,0,12422.21,-,-
+2196,1644.383,65.6635,67.42109,1500.367,-241.4355,11.30721,258.3624,-41.57505,11.60987,-0.3026566,0,6939.594,-,-
+2197,1636.161,131.1053,132.6518,1429.783,-240.2433,22.46337,244.9768,-41.16291,22.72835,-0.2649762,0,8349.614,-,-
+2198,1636.631,241.1273,239.4635,1450.027,-240.3115,41.32623,248.5167,-41.18641,41.04108,0.2851451,0,11118.03,-,-
+2199,1644.504,284.9362,281.201,1485.715,-241.4531,49.06945,255.8581,-41.58113,48.4262,0.6432545,0,12333.25,-,-
+2200,1655.387,306.545,301.9532,1501.478,-243.0311,53.1401,260.2838,-42.12986,52.34411,0.7959934,0,13006.43,-,-
+2201,1667.573,314.9631,310.3213,1510.689,-244.7981,55.00133,263.8083,-42.74856,54.19073,0.8105999,0,13352.44,-,-
+2202,1678.724,288.1844,284.5801,1515.814,-246.415,50.66153,266.4734,-43.31866,50.02793,0.6336007,0,12777.88,-,-
+2203,1685.71,231.8267,229.9072,1510.271,-247.4279,40.92371,266.6039,-43.67775,40.58485,0.3388571,0,11394.94,-,-
+2204,1688.384,201.6627,200.0494,1495.557,-247.8157,35.65541,264.4252,-43.81559,35.37016,0.2852536,0,10643.54,-,-
+2205,1693.812,288.8481,285.8882,1488.819,-248.6027,51.2346,264.0801,-44.09605,50.70958,0.5250235,0,12954.06,-,-
+2206,1703.243,284.8677,281.8664,1514.934,-249.9702,50.80991,270.2085,-44.58549,50.27459,0.5353183,0,12950.59,-,-
+2207,1708.913,214.9788,213.1087,1515.57,-250.7924,38.47194,271.2218,-44.88104,38.13729,0.3346525,0,11204.07,-,-
+2208,1712.647,246.8006,244.6735,1498.406,-251.3338,44.2632,268.736,-45.07621,43.88169,0.3815039,0,12065.86,-,-
+2209,1719.594,281.6396,278.5694,1508.68,-252.3411,50.71639,271.6762,-45.44044,50.16351,0.5528775,0,13041.8,-,-
+2210,1728.071,279.2197,277.374,1519.924,-253.5703,50.52848,275.0502,-45.88689,50.19448,0.3340041,0,13079.94,-,-
+2211,1728.891,125.8827,127.4023,1519.861,-253.6892,22.79095,275.1694,-45.93018,23.06607,-0.2751243,0,9038.203,-,-
+2212,1720.413,87.6779,91.14187,1478.292,-252.4599,15.79616,266.3309,-45.48348,16.42023,-0.6240715,0,7923.428,-,-
+2213,1711.479,112.1329,115.8213,1464.841,-251.1645,20.0971,262.5371,-45.01512,20.75814,-0.6610442,0,8485.636,-,-
+2214,1701.872,70.80042,75.13303,1467.656,-249.7714,12.61802,261.5651,-44.51417,13.39018,-0.772157,0,7399.081,-,-
+2215,1689.687,55.21168,61.37956,1451.642,-248.0046,9.769354,256.8589,-43.88283,10.86072,-1.091366,0,6978.342,-,-
+2216,1670.811,-63.16888,-55.32439,1439.841,-245.2676,-11.05247,251.9245,-42.91372,-9.679937,-1.372529,0,4233.667,-,-
+2217,1650.241,15.09324,22.20495,1395.912,-242.2849,2.608305,241.2314,-41.86995,3.8373,-1.228995,0,5847.025,-,-
+2218,1635.127,35.20803,41.28075,1413.706,-240.0934,6.028675,242.069,-41.11122,7.068507,-1.039832,0,6204.901,-,-
+2219,1619.717,5.787253,12.17886,1414.194,-237.859,0.9816129,239.8705,-40.34478,2.065735,-1.084122,0,5456.358,-,-
+2220,1602.99,4.748561,10.74553,1398.351,-235.4335,0.7971159,234.7338,-39.52098,1.803795,-1.006679,0,5332.833,-,-
+2221,1589.608,70.33371,74.78799,1399.235,-233.3373,11.70799,232.9213,-38.84211,12.44946,-0.7414739,0,6698.151,-,-
+2222,1580.634,92.63456,95.54595,1423.257,-231.9014,15.33321,235.5826,-38.38516,15.81511,-0.4819031,0,7126.988,-,-
+2223,1574.991,138.2036,139.2188,1432.06,-230.9986,22.79429,236.1935,-38.09921,22.96172,-0.1674303,0,8100.122,-,-
+2224,1575.542,219.0601,218.2146,1447.057,-231.0867,36.1428,238.7505,-38.12708,36.00331,0.1394925,0,9918.861,-,-
+2225,1579.236,203.6154,202.3783,1472.958,-231.6777,33.67335,243.5936,-38.31422,33.46876,0.2045905,0,9593.364,-,-
+2226,1581.762,196.3893,195.7534,1467.173,-232.0819,32.53027,243.025,-38.44245,32.42493,0.1053357,0,9449.325,-,-
+2227,1582.434,165.2526,165.8773,1464.662,-232.1894,27.38436,242.7122,-38.4766,27.48787,-0.1035122,0,8760.104,-,-
+2228,1578.618,103.6661,105.9835,1455.455,-231.5789,17.13729,240.6049,-38.28288,17.52039,-0.3830943,0,7357.609,-,-
+2229,1570.772,80.85918,84.09045,1436.862,-230.3235,13.3006,236.3506,-37.88611,13.83211,-0.5315146,0,6789.15,-,-
+2230,1562.375,89.13956,92.89809,1431.191,-228.98,14.58426,234.1594,-37.46377,15.1992,-0.6149398,0,6909.733,-,-
+2231,1551.869,34.16213,39.63844,1436.581,-227.299,5.551734,233.4606,-36.93867,6.441697,-0.8899628,0,5647.089,-,-
+2232,1534.793,-44.61237,-36.75114,1421.633,-224.5669,-7.17024,228.4893,-36.09309,-5.906759,-1.263481,0,3968.281,-,-
+2233,1512.289,-74.64614,-65.08598,1398.709,-220.9662,-11.82145,221.5086,-34.99366,-10.30744,-1.514011,0,3229.604,-,-
+2234,1486.695,-107.1868,-96.56358,1392.926,-216.8712,-16.68752,216.8595,-33.76388,-15.03363,-1.653885,0,2423.801,-,-
+2235,1458.857,-121.3292,-110.4693,1386.144,-212.4171,-18.53559,211.7629,-32.45121,-16.87653,-1.659065,0,1998.127,-,-
+2236,1432.135,-92.95173,-82.75113,1385.631,-208.1416,-13.94023,207.807,-31.21558,-12.41042,-1.529813,0,2479.414,-,-
+2237,1407.629,-86.32611,-76.77928,1400.689,-204.2206,-12.72504,206.4707,-30.10346,-11.31777,-1.407265,0,2509.311,-,-
+2238,1384.171,-76.94398,-69.23565,1404.579,-201.1005,-11.15303,203.5938,-29.14953,-10.03571,-1.117323,0,2633.587,-,-
+2239,1369.003,70.11974,73.93385,1408.326,-199.2804,10.05248,201.9,-28.56916,10.59928,-0.546796,0,5458.136,-,-
+2240,1365.08,143.8012,143.584,1463.87,-198.8096,20.5565,209.2615,-28.42,20.52546,0.03104367,0,6847.274,-,-
+2241,1370.091,255.0725,251.9707,1491.228,-199.4109,36.59668,213.9548,-28.6106,36.15165,0.4450308,0,9094.303,-,-
+2242,1380.638,260.2695,255.5818,1532.422,-200.6765,37.62978,221.5576,-29.01383,36.95204,0.6777416,0,9322.581,-,-
+2243,1393.63,309.761,303.3609,1534.191,-202.2356,45.2067,223.9008,-29.51438,44.27267,0.9340314,0,10590.53,-,-
+2244,1412.734,390.3997,381.0309,1548.737,-205.0374,57.75619,229.1219,-30.33348,56.37016,1.386032,0,12609.54,-,-
+2245,1440.572,493.7103,482.7798,1569.602,-209.4915,74.47933,236.7844,-31.60312,72.8304,1.648935,0,15401.1,-,-
+2246,1467.684,383.2444,373.1491,1598.391,-213.8294,58.90295,245.6655,-32.86462,57.35134,1.55161,0,13005.71,-,-
+2247,1491.37,430.7699,420.7354,1552.755,-217.6192,67.27587,242.503,-33.98687,65.70872,1.567149,0,14427.71,-,-
+2248,1518.066,449.3018,439.3173,1560.83,-221.8906,71.42619,248.1275,-35.27428,69.83893,1.587258,0,15154.79,-,-
+2249,1541.604,372.7453,364.1835,1560.02,-225.6566,60.17466,251.844,-36.4292,58.79247,1.382187,0,13516.06,-,-
+2250,1561.153,372.8076,365.3615,1528.517,-228.7845,60.94792,249.8874,-37.4025,59.73059,1.217329,0,13724.41,-,-
+2251,1579.048,343.0065,336.123,1523.123,-231.6477,56.7187,251.8598,-38.30468,55.58046,1.138237,0,13143.43,-,-
+2252,1595.762,352.8901,346.35,1508.236,-234.3219,58.9707,252.038,-39.15702,57.87779,1.092905,0,13575.63,-,-
+2253,1611.924,335.4377,329.5053,1512.476,-236.729,56.62198,255.3064,-39.95992,55.62059,1.001393,0,13295.07,-,-
+2254,1625.601,304.3581,300.8426,1509.887,-238.7121,51.81165,257.0319,-40.63657,51.2132,0.5984474,0,12635.97,-,-
+2255,1629.645,138.804,140.0629,1501.664,-239.2985,23.68774,256.268,-40.83773,23.90257,-0.2148272,0,8482.199,-,-
+2256,1619.246,7.078693,12.38321,1447.171,-237.7907,1.200313,245.3924,-40.32146,2.099785,-0.8994719,0,5482.331,-,-
+2257,1602.936,12.50175,18.76451,1398.757,-235.4257,2.098533,234.794,-39.51834,3.149794,-1.051261,0,5505.405,-,-
+2258,1587.781,25.75036,31.20589,1402.247,-233.045,4.281565,233.1544,-38.74886,5.188667,-0.9071021,0,5690.002,-,-
+2259,1575.542,69.72857,73.20869,1409.484,-231.0867,11.50454,232.5512,-38.12708,12.07873,-0.5741878,0,6577.333,-,-
+2260,1570.329,168.5154,168.8424,1425.467,-230.2526,27.71142,234.4102,-37.86377,27.7652,-0.05377791,0,8740.503,-,-
+2261,1573.903,250.2347,247.9648,1457.527,-230.8245,41.24336,240.2277,-38.0442,40.86924,0.3741232,0,10691.34,-,-
+2262,1581.722,258.0152,254.8742,1482.421,-232.0755,42.73701,245.5445,-38.44042,42.21673,0.5202758,0,10975.11,-,-
+2263,1589.689,255.8087,252.9793,1482.708,-233.3502,42.58494,246.8291,-38.84624,42.11393,0.4710108,0,11002.34,-,-
+2264,1595.95,224.9202,222.7721,1480.268,-234.352,37.59034,247.3936,-39.16666,37.23134,0.3590048,0,10270.23,-,-
+2265,1600.491,221.944,220.1637,1469.186,-235.0712,37.19848,246.24,-39.39864,36.9001,0.2983814,0,10241.32,-,-
+2266,1604.898,223.3198,221.2847,1469.364,-235.7102,37.53214,246.948,-39.61452,37.1901,0.3420344,0,10323.32,-,-
+2267,1610.715,252.3991,249.6171,1471.271,-236.5537,42.57309,248.1648,-39.90038,42.10384,0.4692504,0,11136.19,-,-
+2268,1618.87,273.2269,269.7049,1482.544,-237.7362,46.31953,251.3323,-40.30286,45.72244,0.5970857,0,11760.44,-,-
+2269,1628.409,283.788,279.5509,1491.373,-239.1193,48.39341,254.3187,-40.7762,47.67087,0.7225371,0,12133.93,-,-
+2270,1640.151,321.3569,316.4581,1497.357,-240.8219,55.19505,257.1804,-41.36266,54.35364,0.8414091,0,13228.66,-,-
+2271,1653.022,310.4531,305.3744,1511.594,-242.6882,53.74068,261.663,-42.01031,52.86154,0.8791453,0,13082.51,-,-
+2272,1665.678,321.0239,315.6778,1511.339,-244.5233,55.99601,263.622,-42.65205,55.06348,0.9325275,0,13489.11,-,-
+2273,1679.879,345.872,339.8542,1517.629,-246.5825,60.8446,266.9759,-43.37793,59.78596,1.058641,0,14329.14,-,-
+2274,1695.907,362.9099,356.2781,1528.09,-248.9065,64.45097,271.3812,-44.20454,63.27319,1.177785,0,15000.25,-,-
+2275,1713.198,376.7298,369.6924,1536.435,-251.4137,67.58747,275.6451,-45.10505,66.32491,1.262568,0,15597.85,-,-
+2276,1731.269,383.8996,376.8221,1543.92,-254.034,69.60026,279.9097,-46.05588,68.31712,1.28314,0,16020.83,-,-
+2277,1748.775,370.0718,363.5642,1549.586,-256.5724,67.77172,283.7778,-46.98643,66.57999,1.191734,0,15854.84,-,-
+2278,1763.997,342.1671,336.0854,1550.052,-258.7796,63.20692,286.334,-47.80314,62.08349,1.123433,0,15270.36,-,-
+2279,1779.34,376.4104,370.4451,1547.818,-261.0043,70.13731,288.4082,-48.63346,69.02579,1.111523,0,16409.82,-,-
+2280,1793.984,331.7399,326.5991,1558.763,-263.1277,62.3225,292.838,-49.43263,61.35672,0.9657787,0,15353.51,-,-
+2281,1805.202,309.8123,306.0683,1541.028,-264.9624,58.56701,291.3163,-50.08857,57.85924,0.7077675,0,14899.65,-,-
+2282,1812.82,260.5764,257.7168,1521.406,-266.3717,49.46732,288.8207,-50.56749,48.92445,0.542875,0,13651.06,-,-
+2283,1819.578,293.7105,291.1071,1497.974,-267.6219,55.96529,285.4326,-50.99422,55.46923,0.4960656,0,14672.26,-,-
+2284,1825.906,251.4237,251.1305,1491.808,-268.7926,48.07433,285.2463,-51.39541,48.01827,0.05605835,0,13596.63,-,-
+2285,1821.056,64.7028,68.73819,1493.486,-267.8954,12.33886,284.8085,-51.08779,13.10841,-0.7695504,0,8431.774,-,-
+2286,1805.565,29.73891,36.17603,1487.41,-265.0295,5.622984,281.2371,-50.11134,6.840103,-1.217119,0,7282.82,-,-
+2287,1788.691,29.75316,36.33562,1485.841,-262.3602,5.573102,278.3148,-49.14303,6.806072,-1.23297,0,7088.378,-,-
+2288,1772.488,38.23588,44.6438,1477.798,-260.0108,7.097135,274.3008,-48.26177,8.286536,-1.189401,0,7145.275,-,-
+2289,1756.487,28.71616,35.61307,1472.076,-257.6906,5.282018,270.772,-47.39933,6.550629,-1.268611,0,6788.292,-,-
+2290,1737.798,-20.05362,-12.36043,1461.124,-254.9807,-3.649394,265.8979,-46.40184,-2.249373,-1.400021,0,5591.28,-,-
+2291,1717.807,-3.293787,4.087603,1439.356,-252.082,-0.5925139,258.9234,-45.34661,0.735312,-1.327826,0,5842.832,-,-
+2292,1700.731,32.36856,38.85413,1435.927,-249.606,5.764845,255.7388,-44.45486,6.919925,-1.15508,0,6535.205,-,-
+2293,1685.226,25.15648,30.79079,1439.089,-247.3578,4.439527,253.9652,-43.65282,5.433849,-0.9943223,0,6281.345,-,-
+2294,1672.436,84.78101,88.9381,1431.72,-245.5032,14.8483,250.7473,-42.99672,15.57636,-0.7280606,0,7534.232,-,-
+2295,1664.362,119.1146,121.7978,1445.904,-244.3325,20.76068,252.0088,-42.5851,21.22834,-0.4676654,0,8251.429,-,-
+2296,1658.961,137.5146,140.3161,1454.049,-243.5493,23.88987,252.6061,-42.31085,24.37656,-0.4866914,0,8629.343,-,-
+2297,1650.268,49.49809,54.31323,1456.692,-242.2888,8.554045,251.7392,-41.87131,9.386177,-0.8321325,0,6614.415,-,-
+2298,1634.71,-6.807041,0.2908575,1424.295,-240.0329,-1.165273,243.82,-41.09038,0.04979086,-1.215064,0,5266.375,-,-
+2299,1614.544,-44.71529,-37.47804,1398.664,-237.1089,-7.560221,236.4787,-40.0891,-6.336586,-1.223635,0,4305.106,-,-
+2300,1598.381,70.25513,75.14551,1380.797,-234.7409,11.75945,231.1206,-39.29142,12.57801,-0.8185624,0,6763.336,-,-
+2301,1590.025,107.0841,109.8904,1420.953,-233.404,17.83025,236.5987,-38.86341,18.29753,-0.467279,0,7520.866,-,-
+2302,1584.288,124.3007,125.4549,1434.6,-232.4861,20.62226,238.0092,-38.57089,20.81376,-0.191504,0,7861.022,-,-
+2303,1584.234,224.7578,222.2968,1440.215,-232.4774,37.28745,238.9325,-38.56815,36.87918,0.4082662,0,10142.14,-,-
+2304,1596.608,380.4571,374.5537,1469.598,-234.4573,63.61106,245.7114,-39.20042,62.62403,0.9870299,0,14297.04,-,-
+2305,1613.859,328.4725,323.3432,1521.538,-237.0096,55.51281,257.1444,-40.05531,54.64594,0.8668706,0,13135.45,-,-
+2306,1622.457,207.7777,205.7104,1507.374,-238.2563,35.30211,256.1079,-40.48053,34.95087,0.3512439,0,10106.71,-,-
+2307,1624.271,190.0731,189.6347,1470.155,-238.5193,32.33015,250.0634,-40.57052,32.25559,0.07455666,0,9658.377,-,-
+2308,1624.661,177.763,177.648,1464.74,-238.5759,30.24355,249.2022,-40.58989,30.22398,0.01956486,0,9332.086,-,-
+2309,1624.849,185.0959,185.6995,1460.922,-238.6031,31.49476,248.5815,-40.59922,31.59747,-0.1027095,0,9530.881,-,-
+2310,1621.624,106.5478,109.2844,1462.423,-238.1355,18.09353,248.3429,-40.43923,18.55824,-0.4647138,0,7714.76,-,-
+2311,1611.064,33.27113,37.77325,1434.152,-236.6043,5.61318,241.9561,-39.91756,6.372733,-0.7595532,0,6017.33,-,-
+2312,1598.986,72.18657,76.0283,1406.564,-234.8378,12.08731,235.5228,-39.32251,12.73059,-0.6432803,0,6811.023,-,-
+2313,1591.785,130.9378,132.3284,1421.151,-233.6856,21.82619,236.8936,-38.95337,22.058,-0.2318081,0,8066.232,-,-
+2314,1592.013,224.4337,223.0542,1440.418,-233.7221,37.4165,240.1397,-38.96502,37.18653,0.2299736,0,10216.02,-,-
+2315,1598.704,265.103,261.9301,1469.165,-234.7926,44.38246,245.9616,-39.30802,43.85127,0.5311931,0,11337.88,-,-
+2316,1607.947,279.9056,276.0015,1483.872,-236.1523,47.13158,249.8601,-39.76423,46.47419,0.65739,0,11817.92,-,-
+2317,1618.319,289.7925,287.0209,1491.009,-237.6563,49.11113,252.6812,-40.2756,48.64143,0.4696966,0,12182.77,-,-
+2318,1621.906,142.1199,142.7647,1495.353,-238.1764,24.13844,253.9792,-40.45321,24.24795,-0.1095096,0,8509.71,-,-
+2319,1615.068,75.24124,78.97492,1446.838,-237.1849,12.72552,244.703,-40.11496,13.35699,-0.631475,0,6977.288,-,-
+2320,1603.111,33.08007,38.31808,1421.284,-235.4511,5.553395,238.6014,-39.52692,6.432739,-0.8793438,0,5965.351,-,-
+2321,1588.722,20.97649,27.04919,1408.917,-233.1955,3.489871,234.4023,-38.79688,4.500189,-1.010318,0,5590.725,-,-
+2322,1572.573,-7.678591,-0.702425,1408.566,-230.6117,-1.264506,231.9618,-37.97701,-0.115675,-1.148831,0,4922.29,-,-
+2323,1553.629,-37.3229,-29.40455,1402.988,-227.5807,-6.072274,228.26,-37.02638,-4.783992,-1.288282,0,4207.948,-,-
+2324,1532.751,-47.09046,-39.3497,1397.113,-224.2402,-7.558457,224.2497,-35.99263,-6.315992,-1.242465,0,3906.496,-,-
+2325,1514.761,12.95629,19.40098,1397.38,-221.3618,2.055196,221.6599,-35.1136,3.077488,-1.022292,0,5072.712,-,-
+2326,1500.399,17.37653,23.75817,1421.681,-219.0638,2.730225,223.3765,-34.41962,3.732917,-1.002692,0,5092.67,-,-
+2327,1482.651,-53.41482,-46.08032,1427.058,-216.2242,-8.293337,221.5692,-33.57158,-7.154562,-1.138775,0,3546.144,-,-
+2328,1463.519,-15.70073,-7.4104,1405.203,-213.1631,-2.406284,215.3606,-32.66923,-1.135713,-1.270571,0,4259.748,-,-
+2329,1440.935,-121.237,-111.43,1423.504,-209.5496,-18.29398,214.7988,-31.61986,-16.81416,-1.479815,0,1919.165,-,-
+2330,1414.158,-96.48391,-86.52459,1388.757,-205.2653,-14.28833,205.6615,-30.39779,-12.81345,-1.474879,0,2323.323,-,-
+2331,1390.943,-62.86497,-53.86062,1400.715,-201.9132,-9.156862,204.027,-29.41051,-7.845295,-1.311567,0,2949.466,-,-
+2332,1368.922,-78.83166,-70.06639,1413.547,-199.2706,-11.30077,202.6364,-28.56608,-10.04424,-1.256529,0,2554.73,-,-
+2333,1346.889,-67.56422,-58.52559,1407.455,-196.6267,-9.529656,198.5157,-27.73339,-8.254794,-1.274862,0,2737.65,-,-
+2334,1323.471,-108.9165,-98.95525,1411.715,-193.8165,-15.09513,195.6546,-26.86172,-13.71456,-1.380566,0,1800.884,-,-
+2335,1296.762,-121.4454,-109.9649,1395.815,-190.6114,-16.49187,189.547,-25.88438,-14.93286,-1.559013,0,1467.138,-,-
+2336,1265.673,-118.2187,-106.2284,1390.839,-186.8808,-15.66882,184.3432,-24.76936,-14.07961,-1.589206,0,1450.963,-,-
+2337,1236.546,-104.0674,-92.44,1392.124,-183.3855,-13.47577,180.2672,-23.74674,-11.97013,-1.505637,0,1566.917,-,-
+2338,1207.23,-115.0794,-102.6818,1397.527,-179.8676,-14.54843,176.6765,-22.73901,-12.98112,-1.567309,0,1217.039,-,-
+2339,1174.139,-114.0107,-101.9912,1393.129,-176.5432,-14.01825,171.2929,-21.70697,-12.54039,-1.477855,0,1155.28,-,-
+2340,1146.973,-100.9646,-91.04091,1393.733,-173.9624,-12.12693,167.4023,-20.89476,-10.93499,-1.191939,0,1348.625,-,-
+2341,1124.362,-98.94559,-88.42612,1398.877,-171.8144,-11.65014,164.7079,-20.22993,-10.41155,-1.238592,0,1346.241,-,-
+2342,1093.918,-109.4612,-96.19586,1399.363,-168.9222,-12.53931,160.3038,-19.35085,-11.0197,-1.519606,0,1098.534,-,-
+2343,1057.509,-106.6872,-95.42542,1395.039,-165.4634,-11.81477,154.4895,-18.32376,-10.56761,-1.247157,0,1081.727,-,-
+2344,1037.759,60.81943,63.07124,1396.731,-163.5871,6.609483,151.7881,-17.77765,6.854196,-0.2447127,0,3890.541,-,-
+2345,1046.344,345.7163,338.5756,1460.12,-164.4027,37.88113,159.9896,-18.01408,37.0987,0.7824284,0,8536.388,-,-
+2346,1073.335,444.9042,432.7146,1563.883,-166.9668,50.00696,175.7795,-18.76697,48.63685,1.370107,0,10439.37,-,-
+2347,1107.407,499.9497,485.0234,1599.206,-170.2037,57.97786,185.4557,-19.73807,56.2469,1.730961,0,11586.34,-,-
+2348,1148.129,588.955,572.0378,1618.331,-174.0723,70.81111,194.5749,-20.92902,68.77713,2.033978,0,13830.25,-,-
+2349,1192.304,578.5115,561.8792,1650.175,-178.2689,72.23167,206.0372,-22.25826,70.15498,2.076687,0,14127.72,-,-
+2350,1231.884,503.1904,488.8079,1647.471,-182.8261,64.91286,212.5281,-23.58504,63.05749,1.855378,0,13042.03,-,-
+2351,1264.786,449.1381,436.3,1621.288,-186.7743,59.48748,214.7365,-24.7379,57.78709,1.700394,0,12303.47,-,-
+2352,1296.44,484.1761,470.697,1601.815,-190.5728,65.73315,217.4669,-25.87271,63.90317,1.829976,0,13331.12,-,-
+2353,1332.419,544.6168,529.7333,1614.163,-194.8903,75.99071,225.2251,-27.19315,73.914,2.076705,0,15221.31,-,-
+2354,1371.166,548.7837,534.0786,1635.96,-199.5399,78.79884,234.9045,-28.65157,76.68737,2.111473,0,15878.89,-,-
+2355,1406.42,481.2229,468.5802,1636.131,-204.0272,70.8745,240.9694,-30.04912,69.01247,1.862024,0,14740.24,-,-
+2356,1434.862,416.1887,405.8503,1603.873,-208.5779,62.53584,240.9954,-31.34059,60.98241,1.553432,0,13480.19,-,-
+2357,1458.468,388.0295,378.4512,1574.072,-212.3549,59.26391,240.4087,-32.43305,57.80101,1.462899,0,13031.92,-,-
+2358,1482.987,440.062,429.8673,1556.817,-216.2779,68.34077,241.7706,-33.58754,66.75755,1.583225,0,14562.08,-,-
+2359,1509.669,438.2671,427.8288,1566.63,-220.547,69.2866,247.6719,-34.86676,67.63638,1.650219,0,14801.16,-,-
+2360,1535.465,428.8087,418.7802,1558.019,-224.6744,68.94965,250.5193,-36.12619,67.33714,1.612521,0,14846.95,-,-
+2361,1560.091,420.4771,410.9733,1547.116,-228.6145,68.69433,252.756,-37.34929,67.14167,1.552661,0,14907.41,-,-
+2362,1583.253,403.6132,395.8007,1537.036,-232.3205,66.91821,254.8373,-38.51824,65.62291,1.295303,0,14747.62,-,-
+2363,1599.443,281.9269,277.2779,1526.872,-234.9109,47.22086,255.7407,-39.34599,46.44219,0.7786675,0,11780.51,-,-
+2364,1606.684,221.7997,220.7202,1489.124,-235.9692,37.31815,250.5475,-39.70218,37.13651,0.181635,0,10302.86,-,-
+2365,1604.884,95.30128,97.94764,1469.593,-235.7082,16.01662,246.9843,-39.61384,16.46138,-0.4447551,0,7363.522,-,-
+2366,1593.343,20.83221,24.9838,1428.532,-233.9349,3.475947,238.357,-39.03308,4.168659,-0.6927117,0,5622.766,-,-
+2367,1584.033,138.5755,139.6009,1405.872,-232.4453,22.98684,233.2054,-38.55792,23.15694,-0.1700996,0,8177.405,-,-
+2368,1588.211,296.2171,292.9153,1443.815,-233.1138,49.26596,240.1311,-38.7708,48.71681,0.5491471,0,12031.06,-,-
+2369,1600.585,310.8893,304.986,1492.091,-235.0848,52.10905,250.0937,-39.40324,51.11957,0.9894847,0,12541.1,-,-
+2370,1617.836,401.5824,393.9713,1500.296,-237.5862,68.03584,254.1793,-40.25172,66.74638,1.289461,0,15101.19,-,-
+2371,1638.794,392.1332,383.9609,1532.264,-240.6251,67.29559,262.958,-41.29466,65.8931,1.402483,0,15101.4,-,-
+2372,1658.92,390.5472,382.9682,1533.171,-243.5434,67.84653,266.3451,-42.30878,66.52989,1.316634,0,15307.21,-,-
+2373,1676.91,353.1914,346.6643,1536.292,-246.152,62.0224,269.7814,-43.22567,60.87619,1.146206,0,14495.15,-,-
+2374,1691.756,330.3799,324.9277,1529.212,-248.3046,58.5302,270.9156,-43.98971,57.56428,0.9659188,0,14047.17,-,-
+2375,1704.331,309.0907,305.2961,1526.101,-250.128,55.16562,272.3741,-44.64213,54.48838,0.6772367,0,13613.2,-,-
+2376,1710.861,208.6648,207.2317,1522.409,-251.0749,37.38457,272.7562,-44.98281,37.12782,0.2567541,0,11061.42,-,-
+2377,1711.546,189.8133,189.939,1496.499,-251.1742,34.02075,268.2215,-45.01862,34.04327,-0.02252338,0,10571.28,-,-
+2378,1710.229,167.501,167.2789,1491.17,-250.9832,29.99854,267.0607,-44.94978,29.95877,0.03977516,0,9958.539,-,-
+2379,1712.661,266.9796,264.7406,1486.036,-251.3358,47.88264,266.5198,-45.07694,47.48108,0.4015579,0,12587.53,-,-
+2380,1721.461,299.3218,295.6909,1514.317,-252.6118,53.95903,272.9873,-45.53859,53.3045,0.6545354,0,13555.04,-,-
+2381,1730.906,283.912,280.1885,1525.08,-253.9814,51.46191,276.4361,-46.03668,50.78699,0.6749187,0,13245.17,-,-
+2382,1740.176,298.9091,294.9002,1523.903,-255.3255,54.47045,277.7021,-46.52818,53.73991,0.7305371,0,13775.85,-,-
+2383,1751.045,318.467,314.9344,1530.514,-256.9015,58.39698,280.6488,-47.10778,57.7492,0.6477786,0,14452.78,-,-
+2384,1757.951,220.2904,218.5554,1537.138,-257.9029,40.55375,282.9752,-47.47791,40.23434,0.3194102,0,11858.21,-,-
+2385,1759.778,217.9185,215.0765,1515.316,-258.1678,40.15879,279.2477,-47.57607,39.63506,0.5237362,0,11816.16,-,-
+2386,1772.192,438.9351,431.4612,1518.803,-259.9678,81.45911,281.8648,-48.24574,80.07209,1.387022,0,18048.21,-,-
+2387,1797.208,482.3952,471.5504,1571.592,-263.5952,90.78831,295.7787,-49.60945,88.74728,2.041039,0,19776.73,-,-
+2388,1826.631,539.4975,527.3406,1526.73,-268.9267,103.1974,292.0396,-51.44147,100.872,2.325429,0,22000.61,-,-
+2389,1858.271,536.6312,524.9528,1473.955,-274.7801,104.4272,286.8282,-53.47158,102.1546,2.272574,0,22441.16,-,-
+2390,1885.397,455.6636,446.4955,1418.88,-279.7984,89.96545,280.1413,-55.24293,88.15533,1.810124,0,20434.5,-,-
+2391,1904.448,377.5327,371.3692,1364.836,-283.3229,75.2926,272.1938,-56.50402,74.06339,1.229209,0,18406.41,-,-
+2392,1916.432,313.6326,310.6645,1325.442,-285.5399,62.94239,266.0006,-57.30452,62.34672,0.5956759,0,16742.6,-,-
+2393,1919.401,191.4569,194.2225,1307.04,-286.0892,38.48269,262.7139,-57.5037,39.03856,-0.5558764,0,13351.62,-,-
+2394,1902.46,-88.68348,-77.62749,1317.263,-282.9551,-17.66798,262.432,-56.37177,-15.46535,-2.202629,0,5648.505,-,-
+2395,1863.511,-144.2583,-128.5081,1339.201,-275.7495,-28.15148,261.3402,-53.81153,-25.07789,-3.073594,0,3770.026,-,-
+2396,1823.273,-124.9365,-110.6724,1409.1,-268.3055,-23.85447,269.0433,-51.22829,-21.13098,-2.723489,0,3692.256,-,-
+2397,1791.996,-85.35809,-74.92154,1455.126,-262.8394,-16.01808,273.0652,-49.32376,-14.05958,-1.958496,0,4308.628,-,-
+2398,1770.969,-16.95449,70.46313,1451.252,-259.7905,-3.144302,269.1426,-48.17956,13.06777,-16.21207,0,5859.001,-,-
+2399,1286.498,243.339,356.3745,1428.748,-189.3798,32.78306,192.4834,-25.51357,48.0114,-15.22834,0,8249.356,-,-
+2400,1294.058,500.1992,496.1924,1528.219,-190.287,67.78371,207.0942,-25.78644,67.24074,0.5429674,0,13626.42,-,-
+2401,1306.597,558.7331,553.041,1623.275,-191.7916,76.44951,222.107,-26.24218,75.67068,0.7788319,0,15188.53,-,-
+2402,1322.628,645.4267,638.3217,1644.485,-193.7154,89.39501,227.7699,-26.8306,88.41093,0.9840851,0,17424.9,-,-
+2403,1342.258,709.508,701.4594,1675.995,-196.071,99.7291,235.5795,-27.55992,98.59779,1.131314,0,19215.95,-,-
+2404,1363.062,702.46,695.2562,1699.505,-198.5674,100.2688,242.5865,-28.34342,99.24053,1.028271,0,19378.09,-,-
+2405,1378.535,512.9564,507.8401,1697.966,-200.4242,74.05032,245.1181,-28.93321,73.31172,0.7385958,0,15125.07,-,-
+2406,1388.825,508.8053,504.2124,1628.433,-201.659,73.99932,236.8351,-29.32876,73.33134,0.6679778,0,15173.52,-,-
+2407,1401.598,615.6505,610.1625,1626.076,-203.2557,90.3621,238.6673,-29.83285,89.55661,0.805485,0,17916.68,-,-
+2408,1416.387,596.0604,589.9768,1660.563,-205.6219,88.40987,246.3009,-30.4986,87.50754,0.9023346,0,17632.17,-,-
+2409,1432.163,664.1267,657.5574,1648.051,-208.1461,99.60291,247.1677,-31.21686,98.61768,0.9852279,0,19469.58,-,-
+2410,1449.387,662.412,655.8768,1666.633,-210.9019,100.5405,252.9607,-32.01058,99.54861,0.991924,0,19652.98,-,-
+2411,1465.027,612.3972,607.2338,1660.819,-213.4043,93.9523,254.7983,-32.73991,93.16014,0.7921612,0,18665.01,-,-
+2412,1475.385,464.4474,461.6454,1640.22,-215.0616,71.75803,253.4172,-33.22744,71.32512,0.4329064,0,15066.93,-,-
+2413,1479.141,360.2541,358.5742,1587.143,-215.6626,55.80165,245.841,-33.40511,55.54146,0.2601933,0,12532.68,-,-
+2414,1483.825,502.7714,500.0253,1548.551,-216.412,78.12353,240.6228,-33.62735,77.69683,0.4266972,0,16075.96,-,-
+2415,1492.922,536.3181,532.2575,1595.725,-217.8675,83.84712,249.4731,-34.06107,83.2123,0.6348194,0,17048.78,-,-
+2416,1504.218,595.9501,591.1193,1603.51,-219.6749,93.87486,252.587,-34.60348,93.11391,0.7609589,0,18772.82,-,-
+2417,1517.188,609.6545,604.4229,1619.578,-221.7501,96.86164,257.3179,-35.23155,96.03043,0.8312044,0,19278.81,-,-
+2418,1530.509,618.542,613.3804,1619.542,-223.8814,99.13653,259.5713,-35.88249,98.30925,0.8272792,0,19663.99,-,-
+2419,1543.136,590.8301,586.5031,1618.134,-225.9018,95.47627,261.4853,-36.50501,94.77704,0.6992341,0,19144.13,-,-
+2420,1552.281,490.1435,487.1965,1605.905,-227.365,79.67503,261.047,-36.95919,79.19598,0.4790483,0,16600.54,-,-
+2421,1557.964,460.9741,458.7498,1570.289,-228.2742,75.20775,256.192,-37.24285,74.84485,0.3628994,0,15903.15,-,-
+2422,1563.461,486.155,483.8915,1558.636,-229.1538,79.59586,255.188,-37.51826,79.22526,0.3705972,0,16640.63,-,-
+2423,1569.339,479.4984,477.2843,1565.086,-230.0942,78.80115,257.2076,-37.81387,78.43729,0.3638577,0,16541.13,-,-
+2424,1574.591,465.283,463.7159,1561.147,-230.9346,76.72088,257.4188,-38.07898,76.46247,0.2584114,0,16233.58,-,-
+2425,1577.222,379.9961,379.4691,1555.776,-231.3555,62.76256,256.9618,-38.21214,62.67551,0.08704703,0,14080.12,-,-
+2426,1577.242,364.1649,364.4702,1527.503,-231.3587,60.14854,252.2953,-38.21315,60.19896,-0.05042087,0,13671.18,-,-
+2427,1575.687,317.5967,318.5401,1522.815,-231.1099,52.40522,251.2729,-38.13442,52.56088,-0.1556649,0,12451.18,-,-
+2428,1572.498,298.917,300.182,1508.273,-230.5997,49.22314,248.3698,-37.97322,49.43146,-0.2083178,0,11934.68,-,-
+2429,1569.329,315.5943,317.0961,1502.924,-230.0926,51.86469,246.9901,-37.81337,52.1115,-0.2468101,0,12332.19,-,-
+2430,1564.947,248.1125,251.0648,1509.932,-229.3915,40.66089,247.449,-37.59288,41.14471,-0.4838208,0,10541.78,-,-
+2431,1554.462,72.94802,77.91181,1490.365,-227.7139,11.87469,242.6058,-37.06793,12.68271,-0.8080208,0,6488.286,-,-
+2432,1539.967,83.07738,88.74512,1433.895,-225.3947,13.39747,231.2371,-36.34827,14.31148,-0.9140089,0,6603.574,-,-
+2433,1525.981,82.18993,87.79036,1440.694,-223.157,13.13398,230.2234,-35.66056,14.02893,-0.8949494,0,6477.07,-,-
+2434,1511.818,66.98294,72.56488,1443.689,-220.8909,10.60455,228.5608,-34.97083,11.48827,-0.8837177,0,6095.926,-,-
+2435,1497.929,84.14735,88.98512,1441.468,-218.6686,13.19959,226.1126,-34.30096,13.95845,-0.7588644,0,6362.516,-,-
+2436,1487.532,195.1984,198.4958,1449.901,-217.0051,30.40683,225.8568,-33.80375,30.92048,-0.5136495,0,8703.793,-,-
+2437,1481.38,244.5519,246.3849,1491.028,-216.0208,37.93727,231.3028,-33.51125,38.22163,-0.2843552,0,9784.168,-,-
+2438,1478.329,313.7785,314.4194,1509.342,-215.5326,48.57613,233.6616,-33.36666,48.67535,-0.09921875,0,11346.18,-,-
+2439,1478.162,356.2747,356.0062,1533.984,-215.5059,55.14875,237.4495,-33.35876,55.10718,0.04157111,0,12419.48,-,-
+2440,1479.678,380.5274,379.3819,1548.606,-215.7485,58.9633,239.9588,-33.43055,58.7858,0.1774976,0,13062.33,-,-
+2441,1483.914,464.3833,462.1646,1555.769,-216.4262,72.1629,241.7589,-33.63158,71.81812,0.3447734,0,15155.59,-,-
+2442,1490.819,488.2996,485.4267,1583.108,-217.531,76.23245,247.1519,-33.96055,75.78394,0.4485128,0,15802.6,-,-
+2443,1498.35,493.7391,490.8986,1589.067,-218.736,77.47104,249.3354,-34.32117,77.02534,0.4456972,0,16012.79,-,-
+2444,1505.099,462.6672,460.1106,1588.883,-219.8158,72.92265,250.4296,-34.64597,72.51969,0.4029537,0,15338.43,-,-
+2445,1511.202,472.9339,470.3842,1576.135,-220.7923,74.84306,249.4277,-34.94098,74.43957,0.4034946,0,15649.37,-,-
+2446,1517.911,490.5289,487.6205,1577.489,-221.8658,77.97215,250.7501,-35.26673,77.50984,0.4623126,0,16163.24,-,-
+2447,1525.814,523.9421,521.0219,1580.871,-223.1302,83.71696,252.5961,-35.65239,83.25037,0.4665926,0,17149.75,-,-
+2448,1532.593,451.6498,449.394,1590.244,-224.2149,72.48653,255.2226,-35.98487,72.12448,0.3620509,0,15364.77,-,-
+2449,1537.16,441.9728,440.0538,1564.156,-224.9456,71.14481,251.7838,-36.20972,70.83591,0.3088954,0,15180.81,-,-
+2450,1542.236,473.7116,472.1559,1559.157,-225.7578,76.50565,251.8078,-36.46046,76.25439,0.2512555,0,16035.22,-,-
+2451,1544.985,353.8314,353.4171,1569.342,-226.1976,57.24653,253.9046,-36.59661,57.17952,0.06701151,0,13062.99,-,-
+2452,1544.32,341.8361,341.9374,1528.858,-226.0912,55.28201,247.2482,-36.56365,55.29839,-0.01638361,0,12745.94,-,-
+2453,1544.476,384.7916,384.7566,1524.641,-226.1161,62.2351,246.5911,-36.57138,62.22943,0.005664325,0,13857.77,-,-
+2454,1544.496,336.4009,336.7451,1539.35,-226.1194,54.40923,248.9733,-36.57237,54.4649,-0.05567174,0,12607.33,-,-
+2455,1542.745,315.2522,316.2696,1523.438,-225.8392,50.93085,246.1203,-36.48565,51.09521,-0.1643635,0,12042.22,-,-
+2456,1539.38,271.7226,273.1158,1517.277,-225.3008,43.80263,244.5904,-36.31927,44.02723,-0.2245978,0,10881.61,-,-
+2457,1535.742,302.5272,303.3997,1503.329,-224.7187,48.65318,241.7691,-36.13983,48.7935,-0.1403168,0,11639.29,-,-
+2458,1534.999,382.9807,382.6787,1513.981,-224.5998,61.56213,243.3644,-36.10324,61.51359,0.04853724,0,13710.75,-,-
+2459,1537.258,420.2666,419.079,1540.767,-224.9613,67.65505,248.0346,-36.21456,67.46387,0.1911794,0,14660.9,-,-
+2460,1540.965,442.3411,440.2137,1552.269,-225.5544,71.38035,250.4888,-36.39759,71.03705,0.3432985,0,15229.89,-,-
+2461,1547.939,549.7347,547.9921,1557.26,-226.6702,89.11189,252.4314,-36.74319,88.82941,0.2824813,0,18119.9,-,-
+2462,1549.738,242.8993,244.7404,1593.77,-226.9581,39.41969,258.6501,-36.83261,39.71848,-0.2987914,0,10267.9,-,-
+2463,1538.647,45.42678,50.40982,1492.987,-225.1835,7.319469,240.56,-36.28308,8.12237,-0.8029009,0,5803.504,-,-
+2464,1524.67,120.3512,125.6159,1427.816,-222.9472,19.21564,227.9695,-35.59644,20.05622,-0.840578,0,7318.064,-,-
+2465,1512.2,94.58971,99.32633,1457.031,-220.952,14.97896,230.7314,-34.98934,15.72904,-0.7500778,0,6648.436,-,-
+2466,1500.873,157.3422,161.6058,1450.567,-219.1397,24.72964,227.9872,-34.44241,25.39976,-0.6701178,0,7961.393,-,-
+2467,1490.78,135.8487,139.5347,1475.302,-217.5248,21.2079,230.3155,-33.95869,21.78333,-0.575429,0,7405.078,-,-
+2468,1482.358,217.2429,219.693,1469.591,-216.1773,33.72309,228.1279,-33.55767,34.10342,-0.3803294,0,9166.255,-,-
+2469,1478.485,309.0959,309.9686,1499.556,-215.5576,47.85627,232.1712,-33.37405,47.99138,-0.1351117,0,11240.14,-,-
+2470,1477.977,347.1813,347.3174,1532.385,-215.4763,53.73444,237.1724,-33.35,53.7555,-0.02106483,0,12182.51,-,-
+2471,1477.801,322.7345,322.501,1546.038,-215.4482,49.94477,239.2571,-33.34167,49.90863,0.03613592,0,11548.82,-,-
+2472,1479.15,406.9054,406.2204,1536.792,-215.664,63.02812,238.0433,-33.40554,62.92201,0.1061073,0,13725.74,-,-
+2473,1481.243,352.5208,352.1299,1566.156,-215.9989,54.68141,242.935,-33.50476,54.62078,0.06062927,0,12355.05,-,-
+2474,1481.116,321.5195,321.7023,1546.991,-215.9786,49.86834,239.9416,-33.49873,49.8967,-0.02835631,0,11552.47,-,-
+2475,1480.324,326.0258,326.3215,1536.195,-215.8518,50.54026,238.1396,-33.46117,50.58609,-0.0458342,0,11660.56,-,-
+2476,1479.63,324.3733,324.9705,1537.993,-215.7408,50.2605,238.3067,-33.42828,50.35303,-0.09252776,0,11610.51,-,-
+2477,1477.321,262.2426,263.4488,1538.179,-215.3714,40.57017,237.9635,-33.31896,40.75677,-0.1865986,0,10158.32,-,-
+2478,1473.565,266.1123,267.4845,1516.999,-214.7704,41.06415,234.0902,-33.14151,41.27589,-0.2117418,0,10218.27,-,-
+2479,1470.426,283.824,284.8518,1519.189,-214.2682,43.70397,233.9288,-32.99358,43.86224,-0.1582704,0,10599.92,-,-
+2480,1468.401,307.8921,308.5831,1526.04,-213.9442,47.34475,234.6601,-32.89832,47.451,-0.1062494,0,11135.63,-,-
+2481,1466.954,305.7177,305.8657,1535.07,-213.7126,46.96407,235.8161,-32.83033,46.9868,-0.02272788,0,11074.79,-,-
+2482,1467.658,391.6007,390.8743,1533.932,-213.8253,60.1862,235.7542,-32.8634,60.07456,0.1116427,0,13221.4,-,-
+2483,1470.602,394.5439,392.949,1563.763,-214.2963,60.76019,240.8213,-33.00187,60.51458,0.2456135,0,13328.6,-,-
+2484,1475.668,477.0963,474.8673,1563.119,-215.1069,73.72646,241.5512,-33.24081,73.382,0.3444568,0,15373.5,-,-
+2485,1481.801,439.3052,437.468,1590.542,-216.0882,68.16867,246.8104,-33.53123,67.88359,0.2850837,0,14531.37,-,-
+2486,1484.911,362.7221,361.9521,1576.471,-216.5858,56.40311,245.1405,-33.67898,56.28338,0.1197311,0,12657.49,-,-
+2487,1485.674,348.9623,348.6957,1549.231,-216.7078,54.29136,241.0285,-33.71527,54.24988,0.04147639,0,12309.93,-,-
+2488,1486.251,355.4638,355.2614,1544.184,-216.8002,55.32433,240.3365,-33.74274,55.29283,0.03149505,0,12484.07,-,-
+2489,1486.691,343.8789,343.7757,1546.381,-216.8706,53.53711,240.7497,-33.76369,53.52103,0.01607615,0,12189.31,-,-
+2490,1486.77,341.5561,341.5502,1542.267,-216.8832,53.17831,240.1221,-33.76746,53.17738,0.0009264289,0,12130.11,-,-
+2491,1486.721,338.9588,338.9083,1541.465,-216.8754,52.77218,239.9893,-33.76512,52.76431,0.007869984,0,12062.46,-,-
+2492,1487.024,355.3269,355.1383,1540.426,-216.9238,55.33179,239.8764,-33.77955,55.30242,0.02937556,0,12488.7,-,-
+2493,1487.669,352.7451,352.3481,1546.031,-217.027,54.95357,240.8537,-33.81028,54.89172,0.06185316,0,12428.8,-,-
+2494,1489.019,383.4095,382.8002,1544.663,-217.243,59.78493,240.8589,-33.87465,59.68992,0.0950103,0,13235.59,-,-
+2495,1490.731,368.0112,367.2288,1555.007,-217.5169,57.44986,242.7505,-33.95635,57.32771,0.1221514,0,12855.73,-,-
+2496,1492.951,404.4991,403.5941,1548.852,-217.8722,63.23998,242.1498,-34.06245,63.0985,0.1414822,0,13813.94,-,-
+2497,1495.279,373.1703,372.8457,1561.049,-218.2446,58.43296,244.4373,-34.17389,58.38214,0.05082327,0,13037.16,-,-
+2498,1494.584,286.6482,288.2115,1550.453,-218.1334,44.86402,242.6653,-34.1406,45.10869,-0.2446723,0,10848.92,-,-
+2499,1487.405,116.8463,121.5506,1522.23,-216.9848,18.20006,237.1036,-33.7977,18.9328,-0.7327399,0,6955.573,-,-
+2500,1470.866,-73.6572,-66.80066,1465.694,-214.3385,-11.34533,225.759,-33.01429,-10.28922,-1.056106,0,3063.556,-,-
+2501,1452.928,50.6313,56.77987,1399.809,-211.4685,7.703565,212.9813,-32.17498,8.639071,-0.9355061,0,5516.331,-,-
+2502,1440.017,99.79523,104.4502,1448.239,-209.4027,15.04894,218.3919,-31.57756,15.75091,-0.7019673,0,6401.248,-,-
+2503,1429.552,139.7018,143.1701,1468.686,-207.7283,20.91369,219.8658,-31.09741,21.4329,-0.5192084,0,7119.607,-,-
+2504,1422.607,231.6341,234.0312,1484.98,-206.6171,34.50771,221.225,-30.7808,34.86482,-0.3571132,0,9039.913,-,-
+2505,1417.512,208.2953,210.3095,1520.333,-205.8019,30.91967,225.6806,-30.54955,31.21866,-0.2989917,0,8466.579,-,-
+2506,1412.484,231.4778,233.5075,1512.862,-204.9974,34.23903,223.775,-30.32219,34.53926,-0.3002294,0,8959.094,-,-
+2507,1407.31,199.304,201.5199,1522.818,-204.1696,29.37207,224.4224,-30.08912,29.69863,-0.3265609,0,8183.256,-,-
+2508,1401.344,197.4056,199.6808,1512.235,-203.215,28.96895,221.9181,-29.82148,29.30284,-0.3338852,0,8099.294,-,-
+2509,1395.877,215.0635,217.1345,1511.817,-202.5052,31.43709,220.9912,-29.60138,31.73983,-0.3027365,0,8445.238,-,-
+2510,1390.937,214.7295,216.7494,1518.435,-201.9124,31.27719,221.1731,-29.41028,31.57141,-0.2942172,0,8386.413,-,-
+2511,1385.724,201.1063,203.5313,1518.327,-201.2869,29.18307,220.3284,-29.20928,29.53498,-0.351908,0,8074.825,-,-
+2512,1378.741,142.2347,145.1415,1513.297,-200.4489,20.53605,218.492,-28.9411,20.95574,-0.4196934,0,6902.329,-,-
+2513,1371.111,171.3596,174.3512,1491.135,-199.5333,24.60423,214.1007,-28.64947,25.03376,-0.4295284,0,7413.556,-,-
+2514,1363.707,146.1966,149.2454,1502.109,-198.6448,20.8779,214.5117,-28.36789,21.31329,-0.4353877,0,6884.676,-,-
+2515,1355.785,147.0081,149.8819,1492.644,-197.6942,20.87184,211.9218,-28.06812,21.27985,-0.408014,0,6850.891,-,-
+2516,1349.271,197.3139,198.9671,1492.894,-196.9125,27.87954,210.939,-27.82282,28.11312,-0.2335817,0,7775.426,-,-
+2517,1347.491,329.9416,328.989,1511.591,-196.6989,46.55771,213.2989,-27.75597,46.42329,0.1344201,0,10574.67,-,-
+2518,1354.044,523.4173,520.0027,1560.629,-197.4853,74.21803,221.2897,-28.00245,73.73386,0.4841707,0,15023.71,-,-
+2519,1364.627,492.6527,488.6472,1632.259,-198.7552,70.40175,233.2554,-28.4028,69.82935,0.5724006,0,14437.65,-,-
+2520,1374.183,490.1533,486.6425,1620.96,-199.902,70.53506,233.2628,-28.76671,70.02986,0.505207,0,14515.17,-,-
+2521,1382.281,441.2415,438.0736,1620.231,-200.8737,63.87064,234.5318,-29.0769,63.41209,0.4585519,0,13457.82,-,-
+2522,1390.106,484.1791,480.9694,1602.034,-201.8127,70.4827,233.2106,-29.37819,70.01546,0.4672419,0,14600.92,-,-
+2523,1398.41,464.2436,461.3773,1617.989,-202.8092,67.98437,236.9402,-29.69961,67.56463,0.4197393,0,14241.97,-,-
+2524,1404.523,403.5519,401.3597,1609.494,-203.7237,59.35494,236.7264,-29.96394,59.0325,0.3224419,0,12856.08,-,-
+2525,1409.433,420.4549,418.6318,1585.628,-204.5093,62.05724,234.0315,-30.18464,61.78816,0.2690845,0,13313.67,-,-
+2526,1413.688,380.6531,379.0596,1590.755,-205.1901,56.35229,235.4971,-30.37656,56.11639,0.235896,0,12384.4,-,-
+2527,1417.443,403.4892,401.985,1574.988,-205.7909,59.89163,233.7822,-30.54642,59.66835,0.2232797,0,12991.2,-,-
+2528,1421.248,384.4157,383.2878,1582.347,-206.3997,57.21365,235.5051,-30.71903,57.04577,0.1678786,0,12544.92,-,-
+2529,1423.116,329.8608,329.4756,1574.966,-206.6985,49.15861,234.7147,-30.80395,49.10121,0.05739959,0,11293.19,-,-
+2530,1423.185,314.3609,314.8664,1554.943,-206.7096,46.85096,231.7419,-30.80709,46.9263,-0.07533624,0,10938.77,-,-
+2531,1420.573,223.6641,225.8936,1550.129,-206.2917,33.27274,230.6004,-30.68838,33.6044,-0.3316628,0,8841.881,-,-
+2532,1411.956,76.53249,81.03677,1518.947,-204.913,11.31607,224.591,-30.29837,11.98207,-0.6660008,0,5828.257,-,-
+2533,1397.891,4.192938,9.924603,1466.488,-202.7469,0.6137908,214.6745,-29.67947,1.452831,-0.8390402,0,4373.302,-,-
+2534,1383.142,39.93613,45.9381,1439.089,-200.977,5.78444,208.441,-29.10997,6.65378,-0.8693401,0,4967.149,-,-
+2535,1367.718,-28.21471,-21.42347,1452.645,-199.1262,-4.041111,208.0581,-28.52026,-3.068421,-0.9726894,0,3623.489,-,-
+2536,1348.968,-78.18573,-69.81253,1426.773,-196.8762,-11.0448,201.551,-27.81144,-9.861969,-1.182829,0,2517.64,-,-
+2537,1325.562,-128.9134,-116.0931,1407.663,-194.0674,-17.89479,195.4012,-26.93899,-16.11518,-1.779613,0,1382.036,-,-
+2538,1284.092,-126.9454,-105.1267,1387.596,-189.091,-17.07032,186.5898,-25.42704,-14.13637,-2.933954,0,1318.222,-,-
+2539,1214.697,-121.4952,-93.22092,1387.176,-180.7636,-15.45452,176.4526,-22.99364,-11.85796,-3.596561,0,1135.806,-,-
+2540,1141.781,-122.2316,-95.1177,1389.03,-173.4692,-14.61487,166.0822,-20.7412,-11.37294,-3.241925,0,946.608,-,-
+2541,1079.028,-119.5556,-93.0796,1388.997,-167.5077,-13.50925,156.9505,-18.92762,-10.51758,-2.991675,0,885.9068,-,-
+2542,1008.215,-113.7247,-84.32858,1389.518,-160.7804,-12.00705,146.7053,-16.9752,-8.903414,-3.103639,0,846.7731,-,-
+2543,930.7995,-119.6824,-89.54667,1281.234,-156.194,-11.66581,124.8859,-15.22471,-8.728391,-2.937424,0,653.7853,-,-
+2544,857.0523,-118.8403,-90.58641,1161.381,-152.1379,-10.66596,104.2343,-13.65442,-8.130158,-2.535798,0,596.2342,-,-
+2545,789.291,-123.7252,-97.71218,1053.95,-148.9465,-10.22643,87.11356,-12.31107,-8.076338,-2.150088,0,318.0589,-,-
+2546,726.7427,-91.28198,-116.3924,952.4598,-148.6337,-6.946953,72.48631,-11.31167,-8.857965,1.911012,0,723.2477,-,-
+2547,898.0064,-73.32384,-80.49582,1247.564,-154.3904,-6.895301,117.3197,-14.51872,-7.569747,0.6744462,0,1437.504,-,-
+2548,769.9961,-130.5498,-80.80686,1039.582,-148.85,-10.52673,83.82549,-12.00234,-6.515765,-4.010965,0,230.7783,-,-
+2549,649.1603,-101.5799,-105.1367,821.3766,-148.2458,-6.905391,55.8371,-10.07774,-7.147186,0.2417948,0,560.8511,-,-
+2550,784.9226,-8.710006,-56.21937,1063.889,-148.9246,-0.7159355,87.44835,-12.24114,-4.621058,3.905123,0,1761.473,-,-
+2551,892.3317,-34.48125,-7.09658,1263.367,-154.0782,-3.222092,118.055,-14.39781,-0.6631382,-2.558954,0,1899.361,-,-
+2552,608.6652,-145.3102,-74.00597,796.0764,-148.0433,-9.261964,50.74133,-9.436173,-4.717086,-4.544878,0,34.46717,-,-
+2553,600,-102.597,-102.1835,745.9717,-148,-6.446362,46.87078,-9.299114,-6.420379,-0.02598357,0,447.5872,-,-
+2554,606.6129,-24.98709,-24.98709,773.7142,-148.0331,-1.587289,49.1497,-9.403706,-1.587289,0,0,1226.562,-,-
+2555,600,-13.47911,-12.15611,791.7767,-148,-0.8469175,49.74879,-9.299114,-0.7637906,-0.08312693,0,1326.121,-,-
+2556,600,-13.89231,-13.89231,796.1954,-148,-0.8728795,50.02643,-9.299114,-0.8728795,0,0,1322.048,-,-
+2557,600,0,0,796.0404,-148,0,50.01669,-9.299114,0,0,0,1459,-,-
+2558,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2559,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2560,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2561,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2562,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2563,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2564,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2565,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2566,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2567,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2568,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2569,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2570,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2571,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2572,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2573,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2574,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2575,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2576,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2577,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2578,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2579,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2580,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2581,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2582,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2583,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2584,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2585,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2586,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2587,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2588,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2589,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2590,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2591,600,3.787888E-06,3.787888E-06,801.2501,-148,2.38E-07,50.34402,-9.299114,2.38E-07,0,0,1459,-,-
+2592,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2593,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2594,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2595,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2596,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2597,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2598,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2599,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+2600,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2601,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2602,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2603,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+2604,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2605,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2606,600,3.787888E-06,3.787888E-06,801.2501,-148,2.38E-07,50.34402,-9.299114,2.38E-07,0,0,1459,-,-
+2607,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2608,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2609,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2610,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2611,600,3.787888E-06,3.787888E-06,801.2501,-148,2.38E-07,50.34402,-9.299114,2.38E-07,0,0,1459,-,-
+2612,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2613,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2614,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2615,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2616,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2617,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2618,600,3.787888E-06,3.787888E-06,801.2501,-148,2.38E-07,50.34402,-9.299114,2.38E-07,0,0,1459,-,-
+2619,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2620,600,3.787888E-06,3.787888E-06,801.2501,-148,2.38E-07,50.34402,-9.299114,2.38E-07,0,0,1459,-,-
+2621,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2622,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2623,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2624,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2625,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2626,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2627,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2628,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2629,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2630,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2631,600,3.787888E-06,3.787888E-06,801.2501,-148,2.38E-07,50.34402,-9.299114,2.38E-07,0,0,1459,-,-
+2632,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2633,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2634,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2635,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2636,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2637,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2638,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2639,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2640,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2641,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2642,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2643,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2644,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+2645,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+2646,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2647,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2648,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2649,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2650,600,3.787888E-06,3.787888E-06,801.2501,-148,2.38E-07,50.34402,-9.299114,2.38E-07,0,0,1459,-,-
+2651,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2652,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2653,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2654,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2655,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2656,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2657,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2658,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2659,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2660,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2661,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2662,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2663,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2664,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2665,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2666,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2667,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2668,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2669,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2670,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2671,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2672,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2673,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2674,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2675,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2676,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2677,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2678,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2679,600,3.787888E-06,3.787888E-06,801.2501,-148,2.38E-07,50.34402,-9.299114,2.38E-07,0,0,1459,-,-
+2680,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2681,600,3.787888E-06,3.787888E-06,801.2501,-148,2.38E-07,50.34402,-9.299114,2.38E-07,0,0,1459,-,-
+2682,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2683,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2684,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2685,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+2686,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2687,600,3.787888E-06,3.787888E-06,801.2501,-148,2.38E-07,50.34402,-9.299114,2.38E-07,0,0,1459,-,-
+2688,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2689,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2690,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2691,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2692,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2693,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2694,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2695,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+2696,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2697,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+2698,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2699,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2700,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2701,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2702,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2703,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2704,600,3.787888E-06,3.787888E-06,801.2501,-148,2.38E-07,50.34402,-9.299114,2.38E-07,0,0,1459,-,-
+2705,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2706,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2707,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2708,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+2709,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2710,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2711,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2712,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2713,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2714,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2715,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2716,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2717,600,3.787888E-06,3.787888E-06,801.2501,-148,2.38E-07,50.34402,-9.299114,2.38E-07,0,0,1459,-,-
+2718,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2719,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+2720,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2721,600,3.787888E-06,3.787888E-06,801.2501,-148,2.38E-07,50.34402,-9.299114,2.38E-07,0,0,1459,-,-
+2722,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2723,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2724,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2725,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2726,600,3.787888E-06,3.787888E-06,801.2501,-148,2.38E-07,50.34402,-9.299114,2.38E-07,0,0,1459,-,-
+2727,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2728,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+2729,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2730,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+2731,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+2732,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2733,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+2734,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2735,600,3.787888E-06,3.787888E-06,801.2501,-148,2.38E-07,50.34402,-9.299114,2.38E-07,0,0,1459,-,-
+2736,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2737,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2738,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2739,600,3.787888E-06,3.787888E-06,801.2501,-148,2.38E-07,50.34402,-9.299114,2.38E-07,0,0,1459,-,-
+2740,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2741,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2742,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2743,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2744,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2745,600,3.787888E-06,3.787888E-06,801.2501,-148,2.38E-07,50.34402,-9.299114,2.38E-07,0,0,1459,-,-
+2746,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2747,600,3.787888E-06,3.787888E-06,801.2501,-148,2.38E-07,50.34402,-9.299114,2.38E-07,0,0,1459,-,-
+2748,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2749,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2750,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2751,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+2752,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2753,600,3.787888E-06,3.787888E-06,801.2501,-148,2.38E-07,50.34402,-9.299114,2.38E-07,0,0,1459,-,-
+2754,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2755,600,3.787888E-06,3.787888E-06,801.2501,-148,2.38E-07,50.34402,-9.299114,2.38E-07,0,0,1459,-,-
+2756,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2757,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2758,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2759,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2760,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2761,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2762,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2763,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2764,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2765,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2766,600,3.787888E-06,3.787888E-06,801.2501,-148,2.38E-07,50.34402,-9.299114,2.38E-07,0,0,1459,-,-
+2767,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2768,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2769,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2770,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2771,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2772,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2773,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2774,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2775,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2776,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2777,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2778,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2779,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2780,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2781,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+2782,600,9.170536,0,801.2501,-148,0.5762018,50.34402,-9.299114,0,0.5762018,0,1546.074,-,-
+2783,644.4445,10.61535,2.07727,875.1463,-148.2222,0.7163886,59.06019,-10.00294,0.1401868,0.5762018,0,1653.126,-,-
+2784,644.4445,77.686,60.97763,875.9253,-148.2222,5.242723,59.11276,-10.00294,4.115141,1.127582,0,2289.962,-,-
+2785,723.5632,130.2165,81.14743,1023.739,-148.6178,9.866682,77.57013,-11.26097,6.148651,3.718031,0,3091.489,-,-
+2786,878.7474,-1.426485,10.82689,1284.84,-153.3311,-0.1312683,118.2339,-14.10987,0.996314,-1.127582,0,2249.236,-,-
+2787,644.4445,27.83756,88.80271,871.2152,-148.2222,1.878648,58.79489,-10.00294,5.992946,-4.114298,0,1816.651,-,-
+2788,614.2244,126.4271,13.54924,834.8284,-148.0711,8.131971,53.69736,-9.524146,0.8715067,7.260465,0,2689.296,-,-
+2789,1054.623,67.17117,2.269033,1465.112,-165.1892,7.418375,161.8068,-18.24347,0.2505918,7.167784,0,4026.198,-,-
+2790,1032.132,-57.89632,9.277586,1463.238,-163.0525,-6.2577,158.1535,-17.62347,1.002764,-7.260465,0,1899.306,-,-
+2791,644.4445,-72.93523,27.40423,837.1724,-148.2222,-4.922112,56.49747,-10.00294,1.849404,-6.771516,0,833.3301,-,-
+2792,644.4445,17.1958,17.1958,844.5939,-148.2222,1.160477,56.99832,-10.00294,1.160477,0,0,1715.608,-,-
+2793,644.4445,17.82277,17.50951,878.393,-148.2222,1.202789,59.27929,-10.00294,1.181648,0.02114069,0,1721.561,-,-
+2794,646.017,51.26941,48.98604,881.1131,-148.2301,3.468414,59.60796,-10.02788,3.313942,0.1544715,0,2042.439,-,-
+2795,655.8477,41.49707,35.97761,909.0206,-148.2792,2.850028,62.43172,-10.18385,2.47095,0.3790776,0,1970.295,-,-
+2796,673.5912,35.67484,27.3133,933.4575,-148.368,2.516443,65.84451,-10.46562,1.926634,0.5898086,0,1952.274,-,-
+2797,697.6755,56.1857,44.91879,969.5313,-148.4884,4.10495,70.83435,-10.84862,3.281785,0.8231648,0,2197.602,-,-
+2798,729.89,49.80681,38.78313,1027.996,-148.6494,3.806929,78.57375,-11.36186,2.964346,0.8425831,0,2204.685,-,-
+2799,753.4118,40.67012,32.78246,1063.365,-148.7671,3.208755,83.89642,-11.73729,2.586441,0.6223136,0,2167.328,-,-
+2800,769.7236,34.24952,28.71146,1086.145,-148.8486,2.760692,87.54897,-11.99798,2.314295,0.4463969,0,2150.71,-,-
+2801,781.3311,29.91656,26.21384,1102.333,-148.9067,2.447797,90.19374,-12.18366,2.144838,0.3029591,0,2152.422,-,-
+2802,788.3876,23.78598,22.34753,1112.022,-148.9419,1.963765,91.80828,-12.29661,1.845007,0.1187578,0,2111.383,-,-
+2803,788.5922,15.97798,16.60733,1110.147,-148.943,1.31948,91.67725,-12.29989,1.371453,-0.0519727,0,2018.363,-,-
+2804,785.2173,16.75982,17.32082,1101.879,-148.9261,1.378122,90.60502,-12.24586,1.424252,-0.04612971,0,2012.113,-,-
+2805,785.7797,22.5669,22.12911,1103.036,-148.9289,1.856955,90.76518,-12.25486,1.820931,0.03602403,0,2084.611,-,-
+2806,787.4161,18.81004,18.83033,1107.804,-148.9371,1.551038,91.34729,-12.28106,1.552712,-0.001673703,0,2046.989,-,-
+2807,785.6775,17.11807,17.39313,1103.663,-148.9284,1.408406,90.80489,-12.25323,1.431036,-0.02263016,0,2018.56,-,-
+2808,786.0355,22.03528,21.77065,1103.579,-148.9302,1.8138,90.8394,-12.25896,1.792017,0.02178313,0,2079.399,-,-
+2809,787.007,18.11358,18.2558,1106.961,-148.935,1.492834,91.2304,-12.27451,1.504555,-0.01172115,0,2036.709,-,-
+2810,785.3195,17.57017,18.03849,1102.831,-148.9266,1.444944,90.69514,-12.2475,1.483458,-0.03851416,0,2022.34,-,-
+2811,784.6548,19.4134,19.68807,1101.561,-148.9233,1.595177,90.514,-12.23686,1.617746,-0.02256886,0,2041.438,-,-
+2812,783.939,16.75797,17.96507,1101.115,-148.9197,1.375727,90.39481,-12.2254,1.474823,-0.0990959,0,2006.159,-,-
+2813,778.5699,10.81247,13.151,1091.615,-148.8929,0.8815588,89.0012,-12.13948,1.072223,-0.1906642,0,1936.661,-,-
+2814,772.178,13.13723,16.51589,1079.209,-148.8609,1.062307,87.2673,-12.03723,1.335513,-0.2732064,0,1945.312,-,-
+2815,761.5421,-8.907363,7.17514,1063.198,-148.8077,-0.7103489,84.78848,-11.86719,0.5722067,-1.282556,0,1710.429,-,-
+2816,687.8577,12.32095,-61.22308,937.3007,-148.4393,0.8875064,67.51591,-10.69242,-4.410039,5.297545,0,1760.489,-,-
+2817,1043.288,-16.48403,-10.96868,1440.546,-164.1123,-1.800927,157.3838,-17.92974,-1.19836,-0.6025672,0,2665.499,-,-
+2818,644.4445,21.97595,34.92996,861.9373,-148.2222,1.483071,58.16876,-10.00294,2.357286,-0.8742154,0,1760.995,-,-
+2819,1002.265,27.70097,-5.572967,1442.799,-160.2152,2.90741,151.4318,-16.8157,-0.5849216,3.492331,0,3299.094,-,-
+2820,866.3327,-82.1752,-28.37002,1236.903,-152.6483,-7.455111,112.2145,-13.84858,-2.573789,-4.881321,0,1169.73,-,-
+2821,732.1096,-47.49823,-4.970697,974.9214,-148.6606,-3.641516,74.74366,-11.39726,-0.3810852,-3.260431,0,1268.188,-,-
+2822,661.4896,-30.37519,-3.908262,879.3435,-148.3074,-2.104121,60.91303,-10.27341,-0.2707293,-1.833392,0,1288.686,-,-
+2823,600,-7.219245,-3.544804,788.692,-148,-0.4535986,49.55498,-9.299114,-0.2227266,-0.230872,0,1387.832,-,-
+2824,644.5211,29.26123,26.43501,869.5463,-148.2226,1.97496,58.68924,-10.00415,1.784207,0.1907535,0,1830.33,-,-
+2825,615.0692,-9.342643,-0.3808151,836.7179,-148.0753,-0.6017587,53.89291,-9.537518,-0.02452826,-0.5772304,0,1398.545,-,-
+2826,600,4.069386,-2.065213,797.6586,-148,0.2556871,50.11837,-9.299114,-0.1297612,0.3854483,0,1497.639,-,-
+2827,644.4445,22.57604,9.513343,873.3653,-148.2222,1.523568,58.93999,-10.00294,0.6420181,0.8815499,0,1766.693,-,-
+2828,666.7973,70.49118,70.49118,915.6817,-148.334,4.922177,63.93917,-10.35769,4.922177,0,0,2268.588,-,-
+2829,644.4445,132.8767,127.2512,899.2957,-148.2222,8.967326,60.68993,-10.00294,8.587686,0.3796405,0,2813.998,-,-
+2830,693.5847,134.903,93.99532,996.4066,-148.4679,9.798279,72.37103,-10.78353,6.82707,2.971209,0,3008.791,-,-
+2831,836.9651,206.5234,145.8279,1220.095,-151.0331,18.10111,106.9374,-13.23756,12.78135,5.319761,0,4685.16,-,-
+2832,995.8392,187.6764,116.1295,1495.972,-159.7711,19.57165,156.006,-16.66158,12.11045,7.461198,0,5737.218,-,-
+2833,1190.252,263.7664,196.2481,1496.383,-178.0739,32.87661,186.5135,-22.19565,24.46093,8.415683,0,8023.077,-,-
+2834,1341.456,107.7165,56.11632,1525.263,-195.9747,15.13168,214.2644,-27.52993,7.883049,7.248631,0,6007.812,-,-
+2835,1453.439,88.39276,141.746,1462.922,-211.5502,13.45371,222.6623,-32.19874,21.57428,-8.120568,0,6243.092,-,-
+2836,1009.962,287.8582,360.3149,1485.202,-160.9464,30.44474,157.0794,-17.02217,38.10797,-7.663231,0,7430.629,-,-
+2837,1173.415,406.9756,344.9906,1530.41,-176.4744,50.00905,188.0564,-21.68513,42.39235,7.616702,0,10567.93,-,-
+2838,1323.306,354.0586,310.2798,1572.829,-193.7967,49.06413,217.9568,-26.85563,42.99743,6.066696,0,10876.39,-,-
+2839,1399.727,0.08320723,62.01333,1563.023,-202.9673,0.01219644,229.1065,-29.75075,9.089857,-9.077661,0,4306.13,-,-
+2840,937.9701,228.5192,329.0256,1338.88,-156.5883,22.44607,131.5102,-15.38073,32.31821,-9.872145,0,5832.879,-,-
+2841,1005.795,452.1567,422.089,1517.416,-160.5505,47.62413,159.8243,-16.91024,44.4572,3.166929,0,10063.13,-,-
+2842,1088.015,499.7262,466.5948,1594.245,-168.3614,56.93714,181.643,-19.18254,53.16226,3.774877,0,11411.11,-,-
+2843,1172.164,480.1915,444.7216,1611.444,-176.3556,58.94289,197.8027,-21.64742,54.589,4.353894,0,11933.56,-,-
+2844,1265.583,599.0472,558.0763,1604.28,-186.87,79.39265,212.6177,-24.76616,73.96272,5.42993,0,15565.87,-,-
+2845,1376.655,661.4372,615.3566,1644.018,-200.1986,95.35475,237.0065,-28.86123,88.71164,6.64311,0,18616.37,-,-
+2846,1496.45,695.011,647.3561,1633.041,-218.432,108.9137,255.9104,-34.23001,101.4458,7.467905,0,21042.42,-,-
+2847,1616.172,657.6118,624.0422,1607.438,-237.3449,111.2976,272.0511,-40.16948,105.6161,5.681489,0,22052.4,-,-
+2848,1668.748,-49.63612,31.35162,1607.262,-244.9685,-8.673956,280.8705,-42.80846,5.478724,-14.15268,0,4521.256,-,-
+2849,1119.606,-93.01025,42.03629,1409.757,-171.3625,-10.90497,165.2867,-20.09138,4.928539,-15.83351,0,1447.548,-,-
+2850,1124.671,308.0047,303.8931,1402.778,-171.8438,36.27533,165.2126,-20.23895,35.79109,0.4842418,0,8376.982,-,-
+2851,1140.175,258.9509,251.8419,1551.431,-173.3166,30.91844,185.2391,-20.69381,30.06963,0.8488119,0,7571.149,-,-
+2852,1160.328,409.6128,399.841,1532.92,-175.2312,49.77175,186.264,-21.29221,48.58438,1.18737,0,10514.47,-,-
+2853,1189.106,441.2033,428.3291,1587.387,-177.9651,54.93991,197.666,-22.16072,53.33678,1.603127,0,11349.04,-,-
+2854,1224.844,560.5031,544.8087,1598.124,-181.9813,71.89314,204.9839,-23.34189,69.88008,2.013052,0,14113.63,-,-
+2855,1267.755,596.2586,579.2102,1640.574,-187.1306,79.15869,217.801,-24.84327,76.89536,2.263332,0,15530.2,-,-
+2856,1310.533,567.9498,551.1451,1653.798,-192.264,77.94469,226.9651,-26.38605,75.63844,2.306262,0,15466.37,-,-
+2857,1352.249,583.5874,567.2569,1643.911,-197.2699,82.64017,232.7896,-27.93483,80.32765,2.312514,0,16441.96,-,-
+2858,1392.649,549.3914,534.1334,1649.997,-202.1179,80.12207,240.632,-29.47644,77.89688,2.225187,0,16202.61,-,-
+2859,1429.045,510.4593,496.3898,1629.135,-207.6472,76.38985,243.7989,-31.07425,74.28436,2.105495,0,15681.17,-,-
+2860,1463.412,515.8132,502.1182,1604.747,-213.1459,79.04741,245.9245,-32.66422,76.94868,2.09873,0,16173.1,-,-
+2861,1497.873,520.1462,506.6187,1595.614,-218.6597,81.58852,250.2831,-34.29828,79.46664,2.121876,0,16685.57,-,-
+2862,1531.421,504.9731,492.3738,1586.194,-224.0274,80.98256,254.3779,-35.92728,78.96201,2.02055,0,16721.12,-,-
+2863,1561.273,452.146,441.0908,1571.528,-228.8037,73.92411,256.9387,-37.40852,72.11664,1.807472,0,15712.77,-,-
+2864,1587.056,428.0874,418.5062,1545.917,-232.929,71.14647,256.9254,-38.71189,69.5541,1.592373,0,15412.24,-,-
+2865,1609.479,389.2033,380.546,1535.56,-236.3745,65.59798,258.8098,-39.83955,64.13884,1.459138,0,14658.87,-,-
+2866,1630.585,406.2419,398.0974,1527.004,-239.4348,69.36762,260.7428,-40.88456,67.97691,1.39072,0,15382.63,-,-
+2867,1650.429,368.4014,360.9346,1535.798,-242.3122,63.67175,265.4359,-41.87943,62.38124,1.290505,0,14588.07,-,-
+2868,1668.137,367.4568,360.6966,1528.271,-244.8799,64.1899,266.9689,-42.7773,63.00897,1.180924,0,14781.65,-,-
+2869,1684.42,344.1676,337.2774,1531.467,-247.2409,60.70844,270.1386,-43.61133,59.49305,1.215384,0,14338.26,-,-
+2870,1702.746,412.9405,406.2016,1529.081,-249.8982,73.6319,272.6521,-44.55963,72.43027,1.201628,0,16455.29,-,-
+2871,1718.317,291.0738,287.2162,1550.48,-252.156,52.37632,278.996,-45.37338,51.68219,0.6941335,0,13287.42,-,-
+2872,1722.2,174.7191,176.2068,1520.87,-252.719,31.51031,274.2864,-45.57745,31.7786,-0.26829,0,10278.45,-,-
+2873,1710.807,-22.31472,-16.01465,1487.659,-251.067,-3.9978,266.522,-44.97998,-2.869109,-1.128691,0,5379.215,-,-
+2874,1690.453,-13.47349,-6.00296,1426.019,-248.1157,-2.385128,252.4393,-43.92239,-1.062667,-1.322461,0,5453.065,-,-
+2875,1673.296,34.87687,40.36536,1420.902,-245.6279,6.111374,248.9807,-43.04068,7.073107,-0.9617329,0,6426.53,-,-
+2876,1662.924,121.6633,124.5424,1430.692,-244.124,21.18657,249.142,-42.51199,21.68794,-0.5013747,0,8299.635,-,-
+2877,1658.853,162.2782,163.8448,1454.738,-243.5337,28.19011,252.7094,-42.30538,28.46225,-0.2721385,0,9276.858,-,-
+2878,1655.051,125.6633,128.8096,1465.546,-242.9824,21.77952,254.0033,-42.11287,22.32484,-0.5453192,0,8341.597,-,-
+2879,1643,-8.582595,-2.336116,1450.754,-241.235,-1.476675,249.6089,-41.50558,-0.4019394,-1.074735,0,5276.759,-,-
+2880,1623.586,-27.26427,-19.58633,1401.665,-238.42,-4.635514,238.3133,-40.53653,-3.330098,-1.305416,0,4746.178,-,-
+2881,1604.414,-9.932268,-2.673059,1387.973,-235.64,-1.668759,233.1986,-39.59078,-0.449111,-1.219648,0,5015.325,-,-
+2882,1587.123,3.571924,10.51873,1394.872,-232.9397,0.5936651,231.8321,-38.71531,1.748246,-1.154581,0,5219.388,-,-
+2883,1569.496,-19.46615,-12.66329,1403.351,-230.1194,-3.199403,230.6509,-37.82178,-2.081304,-1.118098,0,4658.362,-,-
+2884,1552.944,22.16607,27.47007,1399.086,-227.471,3.604733,227.5248,-36.99223,4.46729,-0.8625574,0,5421.798,-,-
+2885,1542.894,108.8198,111.7919,1415.619,-225.8631,17.58217,228.7237,-36.49303,18.06239,-0.4802201,0,7199.962,-,-
+2886,1538.031,126.3733,128.8279,1446.566,-225.085,20.35397,232.9872,-36.25269,20.74931,-0.3953382,0,7554.302,-,-
+2887,1530.547,53.32732,58.04789,1454.537,-223.8875,8.547223,233.131,-35.88436,9.303829,-0.7566063,0,5918.504,-,-
+2888,1514.237,-51.81445,-44.263,1432.973,-221.2779,-8.216245,227.2273,-35.08816,-7.018807,-1.197438,0,3722.701,-,-
+2889,1492.526,-57.04686,-48.08081,1400.089,-217.8042,-8.91625,218.8297,-34.04213,-7.514885,-1.401366,0,3513.687,-,-
+2890,1469.149,-88.47083,-78.57175,1402.731,-214.0639,-13.61114,215.8087,-32.93349,-12.08818,-1.522963,0,2741.58,-,-
+2891,1442.722,-117.3957,-104.5901,1396.036,-209.8355,-17.73632,210.9152,-31.70227,-15.80163,-1.934694,0,2008.713,-,-
+2892,1404.525,-142.3544,-126.2538,1391.506,-203.724,-20.93769,204.6648,-29.96404,-18.5696,-2.368095,0,1306.835,-,-
+2893,1361.667,-140.544,-125.1753,1382.437,-198.4,-20.04065,197.1264,-28.29054,-17.84917,-2.191483,0,1227.232,-,-
+2894,1327.529,-134.9204,-123.8798,1383.441,-194.3035,-18.75643,192.3239,-27.01178,-17.22158,-1.534851,0,1259.624,-,-
+2895,1306.449,25.78688,31.15393,1386.089,-191.7739,3.52793,189.6322,-26.23678,4.262201,-0.7342712,0,4301.587,-,-
+2896,1300.712,136.6161,136.7341,1447.213,-191.0854,18.60851,197.1252,-26.0278,18.62459,-0.01608238,0,6308.415,-,-
+2897,1305.858,249.1328,247.2487,1488.529,-191.703,34.06869,203.5551,-26.21521,33.81105,0.2576372,0,8478.718,-,-
+2898,1310.184,122.2806,121.44,1530.616,-192.2221,16.77716,210.0038,-26.37328,16.66183,0.1153317,0,6092.4,-,-
+2899,1310.09,161.1138,159.6878,1483.359,-192.2108,22.10358,203.5054,-26.36984,21.90794,0.1956391,0,6836.83,-,-
+2900,1317.331,272.6159,268.2951,1497.586,-193.0797,37.60752,206.5928,-26.63546,37.01147,0.5960529,0,8990.973,-,-
+2901,1331.747,312.045,304.9268,1538.624,-194.8096,43.51786,214.5769,-27.16819,42.52515,0.9927078,0,10001.73,-,-
+2902,1353.015,418.926,408.6922,1552.677,-197.3618,59.35654,219.9948,-27.96368,57.90654,1.45,0,12614.19,-,-
+2903,1383.016,498.0415,484.5999,1591.189,-200.9619,72.1309,230.4505,-29.10513,70.18417,1.94673,0,14831.6,-,-
+2904,1420.392,579.3088,563.3222,1613.176,-206.2627,86.16818,239.9489,-30.68015,83.79029,2.377891,0,17242.06,-,-
+2905,1463.21,618.7179,602.421,1627.881,-213.1136,94.80428,249.4354,-32.65475,92.30715,2.497127,0,18791.95,-,-
+2906,1502.401,514.9881,501.0288,1628.872,-219.3842,81.02363,256.2722,-34.51594,78.82739,2.196239,0,16608.12,-,-
+2907,1533.557,462.8422,451.177,1584.019,-224.3691,74.32954,254.3835,-36.03227,72.45618,1.873363,0,15643.58,-,-
+2908,1561.099,446.6999,436.5198,1557.835,-228.7758,73.02557,254.6716,-37.3998,71.36134,1.664226,0,15566.49,-,-
+2909,1584.785,388.8079,381.0196,1545.085,-232.5656,64.52589,256.4197,-38.5962,63.23337,1.292527,0,14387.84,-,-
+2910,1600.343,284.3997,279.8053,1521.98,-235.0498,47.66184,255.0649,-39.39141,46.89187,0.7699674,0,11853.93,-,-
+2911,1607.934,227.177,225.4349,1490.191,-236.1504,38.25261,250.922,-39.76359,37.95928,0.2933312,0,10455.01,-,-
+2912,1609.116,153.0715,153.3572,1472.308,-236.3218,25.7935,248.093,-39.8217,25.84165,-0.04815486,0,8677.189,-,-
+2913,1606.496,148.2898,149.5298,1447.655,-235.9419,24.94707,243.5417,-39.69295,25.15568,-0.2086044,0,8554.839,-,-
+2914,1602.882,130.9203,132.7289,1445.04,-235.4179,21.97542,242.555,-39.51569,22.27899,-0.3035713,0,8145.814,-,-
+2915,1597.401,108.7255,111.1331,1439.177,-234.5842,18.18754,240.7447,-39.24111,18.59029,-0.4027481,0,7613.749,-,-
+2916,1590.777,105.1557,108.3845,1433.537,-233.5243,17.51745,238.8069,-38.90183,18.05532,-0.5378714,0,7483.601,-,-
+2917,1581.158,44.29857,49.33048,1434.824,-231.9853,7.33489,237.5759,-38.41177,8.168066,-0.8331758,0,6053.093,-,-
+2918,1565.438,-21.88717,-14.55141,1418.126,-229.4701,-3.588013,232.4767,-37.61755,-2.385445,-1.202568,0,4588.686,-,-
+2919,1544.224,-66.14692,-57.47581,1400.087,-226.0758,-10.69667,226.4091,-36.5589,-9.294456,-1.402212,0,3544.978,-,-
+2920,1521.841,-49.00112,-40.09943,1389.177,-222.4946,-7.809152,221.3888,-35.45825,-6.390518,-1.418634,0,3816.709,-,-
+2921,1499.485,-71.30292,-62.00146,1399.712,-218.9176,-11.19639,219.7907,-34.37569,-9.735824,-1.460567,0,3242.71,-,-
+2922,1475.06,-91.85379,-79.74425,1396.38,-215.0096,-14.18846,215.6959,-33.21209,-12.31793,-1.870535,0,2696.51,-,-
+2923,1438.369,-129.6528,-112.4182,1395.323,-209.139,-19.52903,210.1715,-31.5017,-16.93306,-2.59597,0,1729.065,-,-
+2924,1388.027,-129.2378,-108.6595,1387.117,-201.5632,-18.78522,201.6228,-29.29799,-15.79407,-2.991145,0,1534.154,-,-
+2925,1334.837,-126.2538,-105.2648,1387.105,-195.1805,-17.64823,193.8948,-27.28307,-14.71431,-2.933924,0,1462.06,-,-
+2926,1282.574,-123.1901,-102.8549,1388.226,-188.9089,-16.54576,186.4537,-25.37251,-13.81453,-2.73123,0,1394.016,-,-
+2927,1232.73,-119.7714,-100.6483,1389.436,-182.9276,-15.46144,179.3639,-23.61434,-12.99281,-2.468626,0,1257.726,-,-
+2928,1186.607,-115.1983,-99.43143,1390.84,-177.7277,-14.31468,172.8274,-22.08465,-12.35547,-1.959213,0,1155.221,-,-
+2929,1153.933,-90.43095,-80.74471,1393.078,-174.6236,-10.92764,168.3389,-21.10145,-9.757157,-1.170481,0,1555.448,-,-
+2930,1138.281,26.19896,30.94347,1403.122,-173.1367,3.122929,167.2529,-20.63798,3.688477,-0.5655481,0,3576.423,-,-
+2931,1130.166,52.04235,54.79343,1447.395,-172.3658,6.159249,171.3002,-20.39961,6.484842,-0.3255925,0,3958.803,-,-
+2932,1124.469,75.6969,77.80414,1457.115,-171.8246,8.913622,171.5813,-20.23305,9.161757,-0.2481353,0,4313.03,-,-
+2933,1119.579,68.31403,69.85781,1466.01,-171.36,8.009276,171.878,-20.0906,8.190272,-0.1809964,0,4187.454,-,-
+2934,1116.717,117.801,117.4818,1463.183,-171.0881,13.77593,171.1081,-20.00744,13.7386,0.03732706,0,5032.597,-,-
+2935,1121.178,218.666,215.8149,1481.5,-171.5119,25.67346,173.9421,-20.13712,25.33872,0.3347392,0,6830.823,-,-
+2936,1131.012,229.5685,225.8301,1518.787,-172.4461,27.18993,179.884,-20.4244,26.74716,0.4427682,0,7053.096,-,-
+2937,1139.974,204.723,200.1877,1522.911,-173.2975,24.43938,181.8018,-20.68788,23.89797,0.5414149,0,6693.073,-,-
+2938,1153.758,330.648,324.032,1513.354,-174.607,39.94931,182.8453,-21.09624,39.14996,0.7993513,0,9013.315,-,-
+2939,1173.145,323.5827,314.9341,1559.444,-176.4488,39.75261,191.58,-21.67699,38.69012,1.062487,0,9021.547,-,-
+2940,1197.14,429.8687,420.0282,1556.411,-178.7283,53.89014,195.1183,-22.40613,52.6565,1.233643,0,11214.72,-,-
+2941,1222.573,358.5577,348.4725,1595.347,-181.7088,45.90526,204.2484,-23.26373,44.61408,1.291177,0,10013.76,-,-
+2942,1247.831,431.9739,421.691,1569.238,-184.7397,56.44714,205.0563,-24.14041,55.10344,1.343701,0,11785.05,-,-
+2943,1274.231,387.5415,376.5634,1596.134,-187.9077,51.71244,212.9836,-25.07387,50.24755,1.464885,0,11134.73,-,-
+2944,1302.956,485.9053,473.8074,1579.624,-191.3547,66.29947,215.5322,-26.10944,64.64877,1.650702,0,13433.15,-,-
+2945,1334.958,460.0764,448.4151,1615.346,-195.195,64.31705,225.8197,-27.28757,62.68685,1.630203,0,13248.89,-,-
+2946,1361.681,384.6606,375.1555,1606.643,-198.4017,54.85064,229.0991,-28.29107,53.49527,1.355375,0,11974.74,-,-
+2947,1382.828,349.1131,342.7828,1579.542,-200.9394,50.55486,228.7325,-29.09791,49.63818,0.9166748,0,11379.79,-,-
+2948,1393.616,174.4682,172.5332,1567.404,-202.2339,25.46174,228.7456,-29.51384,25.17934,0.2824033,0,7613.401,-,-
+2949,1392.595,107.7182,108.7409,1502.974,-202.1114,15.70878,219.1819,-29.47435,15.85793,-0.1491492,0,6326.44,-,-
+2950,1388.47,108.0972,110.1379,1478.014,-201.6164,15.71736,214.9036,-29.31507,16.01408,-0.296719,0,6308.013,-,-
+2951,1382.331,64.80196,67.42863,1478.216,-200.8797,9.380562,213.9827,-29.07882,9.760792,-0.3802298,0,5439.148,-,-
+2952,1375.264,87.42596,90.16374,1461.926,-200.0317,12.59085,210.5426,-28.80803,12.98514,-0.3942878,0,5829.162,-,-
+2953,1368.573,69.89065,73.34997,1470.445,-199.2288,10.01649,210.7392,-28.55279,10.51227,-0.495778,0,5451.062,-,-
+2954,1357.852,0.4747753,7.928221,1463.916,-197.9422,0.06751017,208.16,-28.14619,1.127345,-1.059835,0,4103.993,-,-
+2955,1330.887,-122.1572,-108.2829,1437.682,-194.7064,-17.02507,200.3699,-27.13627,-15.09141,-1.933658,0,1538.901,-,-
+2956,1287.693,-123.3661,-104.548,1390.155,-189.5232,-16.63554,187.458,-25.55661,-14.09798,-2.537559,0,1403.311,-,-
+2957,1235.995,-118.5177,-98.88963,1389.303,-183.3194,-15.34012,179.8217,-23.7276,-12.79959,-2.540529,0,1297.196,-,-
+2958,1189.24,-116.8511,-101.5707,1391.308,-177.9778,-14.55227,173.2693,-22.16481,-12.6493,-1.902974,0,1129.308,-,-
+2959,1159.75,-91.50805,-82.28823,1392.567,-175.1763,-11.11354,169.1255,-21.27493,-9.993802,-1.119735,0,1545.758,-,-
+2960,1143.158,14.64143,18.44466,1402.687,-173.6,1.752744,167.9173,-20.78187,2.208033,-0.4552893,0,3408.175,-,-
+2961,1140.753,184.9814,183.1391,1443.002,-173.3715,22.09776,172.3801,-20.71086,21.87768,0.2200854,0,6350.733,-,-
+2962,1152.361,303.3839,297.6795,1506.169,-174.4743,36.61083,181.7569,-21.05468,35.92246,0.6883724,0,8491.417,-,-
+2963,1169.356,301.3624,293.163,1549.616,-176.0888,36.90324,189.7577,-21.5629,35.89918,1.004055,0,8576.943,-,-
+2964,1193.446,454.5882,442.9374,1548.23,-178.3774,56.81324,193.4937,-22.29314,55.35715,1.456092,0,11666.05,-,-
+2965,1227.665,514.6507,500.6844,1603.219,-182.3198,66.16389,206.1111,-23.43918,64.36838,1.795513,0,13227.18,-,-
+2966,1263.591,499.3141,484.0637,1625.007,-186.6309,66.07071,215.0257,-24.69555,64.05273,2.017983,0,13293.11,-,-
+2967,1304.172,618.8207,601.436,1618.916,-191.5006,84.51394,221.0996,-26.15373,82.13966,2.374285,0,16564.68,-,-
+2968,1350.765,632.2889,613.2263,1661.553,-197.0918,89.43839,235.0297,-27.87899,86.74195,2.696443,0,17536.16,-,-
+2969,1399.89,681.931,662.5884,1666.288,-202.9868,99.96846,244.2713,-29.75708,97.1329,2.835562,0,19473.26,-,-
+2970,1448.015,622.5644,604.5991,1668.218,-210.6824,94.40304,252.9615,-31.94699,91.67886,2.72418,0,18685.75,-,-
+2971,1490.363,574.2372,558.3928,1633.884,-217.4581,89.62145,255.0011,-33.93878,87.14861,2.472842,0,18018.23,-,-
+2972,1527.78,531.1909,516.2578,1605.22,-223.4448,84.98457,256.8171,-35.74866,82.59544,2.389137,0,17367.04,-,-
+2973,1565.411,586.9259,572.1863,1577.914,-229.4657,96.21445,258.6666,-37.6162,93.79819,2.41626,0,19330.91,-,-
+2974,1601.888,515.6293,502.8701,1584.052,-235.2738,86.49647,265.7237,-39.46701,84.35611,2.140357,0,17919.25,-,-
+2975,1629.712,416.7101,408.4132,1565.167,-239.3082,71.11702,267.1161,-40.84107,69.70103,1.415987,0,15648.63,-,-
+2976,1643.765,237.2308,234.2809,1538.221,-241.3459,40.83565,264.7812,-41.544,40.32787,0.5077831,0,11092.51,-,-
+2977,1644.598,146.9606,147.1769,1484.871,-241.4667,25.30984,255.7273,-41.58586,25.34709,-0.03725124,0,8753.811,-,-
+2978,1642.677,179.9569,179.2871,1456.913,-241.1882,30.95632,250.6193,-41.48936,30.8411,0.1152193,0,9580.859,-,-
+2979,1647.957,294.0748,291.0364,1468.351,-241.9538,50.74957,253.3986,-41.75484,50.22522,0.5243438,0,12605.83,-,-
+2980,1657.926,277.9444,274.7458,1504.844,-243.3993,48.25605,261.2674,-42.2584,47.7007,0.5553446,0,12294.01,-,-
+2981,1664.052,218.8744,216.7314,1501.841,-244.2876,38.14085,261.7096,-42.56933,37.76743,0.3734248,0,10831.92,-,-
+2982,1668.701,249.4934,246.8033,1486.046,-244.9617,43.59796,259.6806,-42.80606,43.12788,0.4700761,0,11672.26,-,-
+2983,1677.555,306.2799,302.3425,1497.153,-246.2455,53.80516,263.0096,-43.25872,53.11346,0.691696,0,13233.23,-,-
+2984,1688.478,294.9244,290.7582,1515.788,-247.8293,52.14766,268.0171,-43.82044,51.41099,0.7366643,0,13054.88,-,-
+2985,1698.5,290.9171,287.3506,1515.287,-249.2825,51.7444,269.5188,-44.33901,51.11005,0.634352,0,13056.94,-,-
+2986,1706.414,253.3648,251.2803,1516.396,-250.43,45.27509,270.9728,-44.75066,44.9026,0.3724923,0,12169.82,-,-
+2987,1708.993,183.5535,182.6208,1507.415,-250.804,32.84971,269.775,-44.88522,32.6828,0.1669126,0,10376.36,-,-
+2988,1711.102,244.45,242.5813,1489.717,-251.1098,43.80206,266.9367,-44.99541,43.46721,0.3348483,0,11988.83,-,-
+2989,1718.371,290.0729,286.6888,1507.696,-252.1638,52.19786,271.3059,-45.37621,51.58891,0.6089537,0,13260.36,-,-
+2990,1728.098,297.3551,293.9652,1521.99,-253.5742,53.81116,275.4285,-45.88831,53.19771,0.6134478,0,13582.89,-,-
+2991,1735.42,242.6795,241.2419,1525.922,-254.6359,44.10282,277.31,-46.27569,43.84155,0.2612671,0,12199.38,-,-
+2992,1735.339,145.9039,147.5918,1512.721,-254.6241,26.51428,274.8981,-46.27139,26.82102,-0.3067431,0,9643.533,-,-
+2993,1726.916,70.17064,73.87904,1485.86,-253.4028,12.68981,268.7061,-45.82593,13.36045,-0.6706354,0,7535.301,-,-
+2994,1716.691,105.125,109.0715,1462.385,-251.9202,18.89848,262.8951,-45.28806,19.60794,-0.7094586,0,8352.479,-,-
+2995,1707.085,79.07383,83.36121,1467.76,-250.5273,14.13567,262.3848,-44.78564,14.90211,-0.7664358,0,7614.856,-,-
+2996,1695.128,54.26469,59.20055,1456.076,-248.7935,9.632709,258.473,-44.16419,10.50889,-0.8761817,0,6989.871,-,-
+2997,1682.271,55.73991,61.94741,1444.052,-246.9293,9.819532,254.3944,-43.50079,10.91309,-1.093558,0,6945.626,-,-
+2998,1663.878,-57.14453,-49.06747,1437.291,-244.2623,-9.956915,250.4349,-42.56049,-8.549561,-1.407354,0,4325.605,-,-
+2999,1641.629,-26.06575,-18.13391,1393.918,-241.0362,-4.480989,239.6298,-41.43677,-3.117419,-1.363569,0,4881.002,-,-
+3000,1624.07,26.10416,32.56242,1396.284,-238.4901,4.439593,237.4691,-40.56054,5.537962,-1.098369,0,5935.542,-,-
+3001,1609.197,22.46676,28.69498,1407.343,-236.3336,3.78598,237.1581,-39.82568,4.835527,-1.049547,0,5765.191,-,-
+3002,1592.752,-8.852361,-2.620765,1404.445,-233.8403,-1.476508,234.251,-39.00283,-0.4371243,-1.039384,0,4987.073,-,-
+3003,1577.893,51.60932,56.12623,1397.283,-231.4629,8.527747,230.8822,-38.24613,9.274105,-0.7463581,0,6191.211,-,-
+3004,1570.101,133.6287,134.8353,1419.439,-230.2162,21.9713,233.3849,-37.85228,22.16969,-0.1983885,0,7960.79,-,-
+3005,1571.847,246.6133,245.2888,1446.432,-230.4955,40.59339,238.0878,-37.94036,40.37538,0.218012,0,10576,-,-
+3006,1576.751,200.0038,198.5748,1482.777,-231.2802,33.02403,244.8317,-38.18828,32.78808,0.2359502,0,9491.697,-,-
+3007,1579.035,195.0527,194.0582,1466.723,-231.6456,32.25317,242.5316,-38.30403,32.08871,0.1644607,0,9398.713,-,-
+3008,1581.749,208.6059,207.7909,1464.319,-232.0798,34.55356,242.5503,-38.44179,34.41856,0.135002,0,9726.82,-,-
+3009,1583.133,166.9709,168.1093,1468.507,-232.3013,27.68132,243.4569,-38.51214,27.87005,-0.1887337,0,8803.756,-,-
+3010,1576.012,33.37778,37.68754,1456.835,-231.1619,5.508656,240.4355,-38.15087,6.219936,-0.7112798,0,5770.296,-,-
+3011,1561.421,10.76486,16.52599,1415.317,-228.8274,1.760179,231.4207,-37.41594,2.702191,-0.9420117,0,5241.34,-,-
+3012,1547.059,33.09853,38.48508,1410.78,-226.5294,5.362214,228.5571,-36.6995,6.234878,-0.8726637,0,5604.966,-,-
+3013,1534.363,40.97773,46.22618,1421.326,-224.4981,6.584225,228.376,-36.07193,7.427535,-0.8433105,0,5698.807,-,-
+3014,1520.672,8.583763,15.32962,1427.151,-222.3075,1.366916,227.2657,-35.40123,2.441157,-1.074241,0,5015.514,-,-
+3015,1500.385,-88.4526,-79.19287,1420.139,-219.0616,-13.89767,223.1322,-34.41895,-12.44278,-1.454888,0,2882.998,-,-
+3016,1474.039,-108.7605,-98.41294,1390.279,-214.8462,-16.78838,214.6049,-33.16388,-15.19112,-1.597261,0,2333.277,-,-
+3017,1448.391,-84.89252,-72.50515,1387.494,-210.7426,-12.87609,210.4483,-31.96441,-10.99723,-1.878857,0,2723.76,-,-
+3018,1411.539,-124.0372,-109.4791,1402.775,-204.8462,-18.33468,207.3526,-30.27955,-16.18276,-2.151919,0,1727.044,-,-
+3019,1375.237,-81.14362,-70.37757,1389.758,-200.0284,-11.68586,200.1453,-28.80699,-10.13539,-1.550465,0,2521.764,-,-
+3020,1357.798,23.16077,27.72001,1406.68,-197.9358,3.29319,200.0134,-28.14414,3.94146,-0.6482698,0,4510.937,-,-
+3021,1352.424,158.2607,158.2098,1446.22,-197.2909,22.41376,204.8216,-27.94142,22.40654,0.007214983,0,7045.833,-,-
+3022,1358.053,250.5859,246.8629,1496.602,-197.9664,35.63707,212.8392,-28.15378,35.1076,0.5294742,0,8866.847,-,-
+3023,1371.085,314.2,307.7318,1530.577,-199.5302,45.11273,219.7597,-28.64848,44.18404,0.9286876,0,10458.62,-,-
+3024,1390.486,385.6229,377.3737,1553.681,-201.8583,56.15107,226.2336,-29.39286,54.94989,1.201177,0,12295.2,-,-
+3025,1412.506,373.7674,364.6842,1576.362,-205.001,55.28666,233.1712,-30.32318,53.94309,1.343564,0,12217.69,-,-
+3026,1436.112,423.705,414.2926,1565.286,-208.7779,63.72071,235.4023,-31.39797,62.30517,1.415535,0,13673.81,-,-
+3027,1459.811,381.5886,372.1931,1576.343,-212.5697,58.33385,240.9771,-32.49576,56.89755,1.436297,0,12879.66,-,-
+3028,1483.336,426.5337,416.5335,1554.547,-216.3338,66.25543,241.475,-33.60412,64.70206,1.553373,0,14241.09,-,-
+3029,1510.018,451.6854,441.2497,1561.864,-220.6029,71.42442,246.9756,-34.88365,69.77424,1.650187,0,15126.89,-,-
+3030,1535.801,414.9247,405.1783,1562.457,-224.7281,66.7318,251.288,-36.14274,65.16431,1.567488,0,14517.29,-,-
+3031,1559.043,405.8603,396.9258,1542.946,-228.4469,66.26181,251.9054,-37.29683,64.80313,1.458678,0,14545.53,-,-
+3032,1580.728,387.8039,379.9517,1533.175,-231.9165,64.19452,253.7917,-38.38994,62.89471,1.299806,0,14318.99,-,-
+3033,1598.556,331.7826,325.3173,1521.877,-234.769,55.54053,254.7628,-39.30042,54.45824,1.082291,0,13059.65,-,-
+3034,1613.254,327.4985,321.9247,1506.111,-236.9218,55.32746,254.4418,-40.02547,54.38581,0.9416517,0,13103.9,-,-
+3035,1626.582,306.0477,301.7775,1507.64,-238.8544,52.13072,256.8043,-40.68533,51.40335,0.7273685,0,12689.98,-,-
+3036,1634.75,221.9449,222.0859,1503.102,-240.0388,37.99489,257.317,-41.09238,38.01902,-0.02412647,0,10602.43,-,-
+3037,1625.87,-39.33722,-33.52523,1475.51,-238.7512,-6.697583,251.2213,-40.64994,-5.708029,-0.9895544,0,4492.273,-,-
+3038,1605.435,-18.10624,-10.60584,1384.386,-235.7881,-3.044035,232.7441,-39.64087,-1.783062,-1.260973,0,4840.268,-,-
+3039,1588.211,15.22467,21.09605,1391.889,-233.1138,2.532123,231.4949,-38.7708,3.508634,-0.9765112,0,5458.561,-,-
+3040,1575.972,80.71406,83.43137,1405.834,-231.1555,13.32068,232.0124,-38.14885,13.76913,-0.4484518,0,6825.59,-,-
+3041,1574.601,235.9071,235.7494,1428.074,-230.9361,38.89915,235.4777,-38.07948,38.87314,0.02601293,0,10328.42,-,-
+3042,1576.764,154.2771,153.8977,1479.34,-231.2822,25.47398,244.2662,-38.18894,25.41134,0.06263848,0,8472.089,-,-
+3043,1576.509,188.5618,187.8417,1452.213,-231.2414,31.12997,239.7481,-38.17603,31.0111,0.1188679,0,9234.691,-,-
+3044,1580.378,238.6163,236.5054,1462.482,-231.8605,39.49024,242.0361,-38.37217,39.14088,0.3493572,0,10459.54,-,-
+3045,1587.109,249.0393,246.2185,1477.102,-232.9375,41.39074,245.4969,-38.71459,40.92192,0.4688198,0,10800.1,-,-
+3046,1594.552,255.5564,252.5516,1478.384,-234.1283,42.67308,246.8622,-39.09501,42.17134,0.501745,0,11047.24,-,-
+3047,1602.21,255.4987,252.4969,1479.476,-235.3204,42.86835,248.231,-39.48278,42.3647,0.503653,0,11126.66,-,-
+3048,1609.64,253.1264,250.0086,1481.282,-236.3978,42.66727,249.6865,-39.84747,42.14173,0.5255413,0,11143.66,-,-
+3049,1617.876,274.1257,270.6415,1482.522,-237.592,46.44336,251.1742,-40.25369,45.85305,0.5903116,0,11773.19,-,-
+3050,1627.146,276.92,272.9595,1491.36,-238.9362,47.1856,254.1193,-40.71337,46.51075,0.6748471,0,11943.12,-,-
+3051,1637.773,305.2819,300.35,1494.741,-240.4771,52.35804,256.3589,-41.24355,51.51218,0.8458575,0,12788.14,-,-
+3052,1651.907,352.1759,346.1549,1506.494,-242.5265,60.92195,260.6043,-41.95401,59.8804,1.041553,0,14156.72,-,-
+3053,1668.016,350.0006,343.825,1523.69,-244.8623,61.13609,266.1493,-42.77114,60.05737,1.078717,0,14296.35,-,-
+3054,1682.956,333.2592,327.1739,1526.384,-247.0286,58.73318,269.0079,-43.53601,57.66072,1.072464,0,14017.76,-,-
+3055,1698.594,368.2357,362.0072,1525.339,-249.2961,65.50043,271.3218,-44.34388,64.39252,1.107907,0,15181.21,-,-
+3056,1714.26,338.1732,332.1201,1538.139,-251.5677,60.70781,276.1219,-45.16065,59.62116,1.086651,0,14542.44,-,-
+3057,1729.025,354.2706,348.4085,1534.007,-253.7086,64.14532,277.752,-45.93727,63.08392,1.061404,0,15171.81,-,-
+3058,1743.723,341.038,335.0085,1541.527,-255.8398,62.27431,281.4863,-46.71693,61.17331,1.100997,0,14987.47,-,-
+3059,1759.321,376.7951,370.7174,1542.297,-258.1016,69.4191,284.146,-47.55151,68.29936,1.119737,0,16172.05,-,-
+3060,1774.275,332.1872,326.6248,1554.017,-260.2699,61.72094,288.7389,-48.35857,60.68742,1.033516,0,15121.32,-,-
+3061,1787.293,341.2559,336.3068,1547.977,-262.1575,63.87112,289.7269,-49.06667,62.94482,0.9262984,0,15534.21,-,-
+3062,1799.157,311.8962,307.3045,1553.167,-263.8778,58.76352,292.628,-49.7165,57.8984,0.8651192,0,14867.74,-,-
+3063,1810.375,331.3841,326.9093,1526.635,-265.9194,62.82447,289.4226,-50.41353,61.97612,0.8483501,0,15576.27,-,-
+3064,1821.647,315.4831,311.7525,1507.74,-268.0047,60.18231,287.6201,-51.12523,59.47066,0.7116508,0,15307.19,-,-
+3065,1829.144,255.6415,254.5643,1489.567,-269.3917,48.9675,285.3228,-51.6013,48.76117,0.2063287,0,13762.82,-,-
+3066,1827.075,119.0882,122.0865,1482.095,-269.0089,22.78524,283.5705,-51.4697,23.35892,-0.5736784,0,9973.275,-,-
+3067,1814.029,27.19607,33.70128,1481.25,-266.5954,5.166292,281.3852,-50.6437,6.402053,-1.235761,0,7329.597,-,-
+3068,1794.32,-22.203,-13.7946,1488.178,-263.1764,-4.171961,279.6297,-49.45104,-2.592016,-1.579945,0,5849.994,-,-
+3069,1771.735,-34.74962,-26.46248,1465.818,-259.9016,-6.447293,271.9615,-48.22101,-4.909734,-1.537559,0,5465.905,-,-
+3070,1752.711,42.41655,49.2431,1453.01,-257.1431,7.785282,266.6905,-47.19694,9.03825,-1.252968,0,7071.155,-,-
+3071,1737.462,34.09357,40.34704,1464.346,-254.932,6.203209,266.4328,-46.38401,7.341007,-1.137798,0,6794.059,-,-
+3072,1721.273,19.46614,25.98518,1455.026,-252.5846,3.508796,262.2702,-45.52869,4.683862,-1.175066,0,6370.732,-,-
+3073,1704.694,21.31503,27.90982,1443.857,-250.1806,3.805056,257.7504,-44.66103,4.982325,-1.177269,0,6312.489,-,-
+3074,1688.128,15.5615,21.56545,1437.207,-247.7786,2.750967,254.07,-43.80238,3.812349,-1.061382,0,6084.79,-,-
+3075,1674.545,78.82518,83.07756,1429.827,-245.809,13.82262,250.7316,-43.10457,14.56831,-0.7456885,0,7414.072,-,-
+3076,1666.793,132.2227,134.7083,1445.061,-244.685,23.07896,252.2298,-42.70882,23.51281,-0.4338487,0,8558.323,-,-
+3077,1662.064,139.1983,141.5463,1458.971,-243.9993,24.2276,253.9352,-42.4683,24.63626,-0.4086608,0,8691.237,-,-
+3078,1654.984,81.04165,86.26179,1458.719,-242.9727,14.04529,252.8098,-42.10948,14.94999,-0.9047008,0,7346.133,-,-
+3079,1635.731,-101.2432,-92.50587,1434.571,-240.181,-17.34229,245.7325,-41.1414,-15.84564,-1.496647,0,3179.233,-,-
+3080,1610.997,-33.75885,-25.58152,1366.315,-236.5946,-5.695226,230.5018,-39.91426,-4.315684,-1.379542,0,4526.685,-,-
+3081,1594.74,54.2963,58.87846,1385.232,-234.1584,9.067524,231.3348,-39.10464,9.832749,-0.7652251,0,6379.673,-,-
+3082,1588.036,157.5511,158.3204,1416.093,-233.0858,26.20054,235.4944,-38.76187,26.32848,-0.1279375,0,8631.104,-,-
+3083,1590.885,250.7739,248.5889,1449.433,-233.5416,41.77821,241.4714,-38.90735,41.41418,0.3640294,0,10884.86,-,-
+3084,1599,267.3209,264.6447,1477.641,-234.84,44.76205,247.4264,-39.32323,44.31393,0.4481196,0,11398.33,-,-
+3085,1604.347,197.3987,195.2601,1483.944,-235.6303,33.16432,249.3127,-39.58751,32.80503,0.3592907,0,9644.998,-,-
+3086,1609.748,270.3288,267.1454,1462.677,-236.4135,45.56998,246.567,-39.85279,45.03335,0.5366356,0,11589.39,-,-
+3087,1620.321,304.3995,300.3991,1488.448,-237.9465,51.65039,252.5593,-40.37468,50.97161,0.6787772,0,12581.39,-,-
+3088,1629.86,251.2897,249.2476,1501.405,-239.3297,42.88976,256.2576,-40.84844,42.54122,0.3485356,0,11309.31,-,-
+3089,1630.612,126.1067,126.8167,1485.53,-239.4388,21.53364,253.665,-40.88591,21.65488,-0.1212373,0,8204.852,-,-
+3090,1626.286,146.1194,147.6354,1445.22,-238.8115,24.88475,246.1271,-40.67062,25.14294,-0.2581865,0,8625.178,-,-
+3091,1622.995,144.9966,146.3891,1450.472,-238.3343,24.64358,246.5217,-40.50721,24.88023,-0.2366517,0,8580.396,-,-
+3092,1619.287,136.4653,138.3993,1448.976,-237.7966,23.1406,245.7048,-40.32349,23.46855,-0.3279486,0,8367.897,-,-
+3093,1613.268,96.76215,99.0667,1444.434,-236.9239,16.3471,244.0242,-40.02616,16.73643,-0.3893341,0,7446.403,-,-
+3094,1607.706,145.2943,145.9455,1429.763,-236.1174,24.46154,240.7129,-39.75239,24.57117,-0.1096343,0,8495.299,-,-
+3095,1610.003,256.896,255.1402,1446.044,-236.4504,43.31245,243.8017,-39.86534,43.01642,0.2960257,0,11244.91,-,-
+3096,1616.519,233.3594,231.1313,1483.47,-237.3953,39.50343,251.124,-40.18662,39.12624,0.3771867,0,10705.28,-,-
+3097,1621.208,221.8708,220.2568,1477.281,-238.0752,37.66756,250.8017,-40.41862,37.39355,0.2740113,0,10457.78,-,-
+3098,1624.634,208.4153,207.0735,1474.624,-238.5719,35.45797,250.8797,-40.58855,35.22969,0.2282815,0,10146.14,-,-
+3099,1627.952,219.0176,219.0255,1471.318,-239.053,37.33784,250.8284,-40.75346,37.3392,-0.00135533,0,10455.12,-,-
+3100,1624.594,70.65121,74.10149,1474.004,-238.5661,12.01969,250.768,-40.58656,12.60667,-0.5869845,0,6932.086,-,-
+3101,1610.554,-2.338286,3.995154,1422.361,-236.5303,-0.3943679,239.8908,-39.89245,0.67381,-1.068178,0,5220.493,-,-
+3102,1592.725,-12.33288,-4.992471,1396.164,-233.836,-2.056999,232.8659,-39.00145,-0.8326931,-1.224306,0,4909.829,-,-
+3103,1573.647,-30.07782,-22.84279,1397.03,-230.7835,-4.956582,230.2192,-38.03126,-3.764307,-1.192274,0,4448.834,-,-
+3104,1556.383,19.19693,25.77337,1394.703,-228.0213,3.128793,227.3144,-37.16383,4.200647,-1.071854,0,5380.363,-,-
+3105,1540.61,-6.637372,-0.3290316,1415.126,-225.4976,-1.070822,228.3055,-36.38004,-0.05308342,-1.017739,0,4800.063,-,-
+3106,1524.676,11.65994,18.51072,1409.579,-222.9482,1.86167,225.0586,-35.59673,2.95549,-1.09382,0,5092.608,-,-
+3107,1506.149,-57.89204,-49.897,1420,-219.9839,-9.130939,223.9675,-34.69664,-7.869933,-1.261006,0,3557.267,-,-
+3108,1484.451,-52.56297,-43.98935,1399.481,-216.5122,-8.170984,217.5513,-33.65711,-6.838203,-1.332781,0,3572.34,-,-
+3109,1463.063,-57.70761,-49.14617,1405.574,-213.0901,-8.841475,215.3502,-32.64787,-7.529763,-1.311711,0,3366.646,-,-
+3110,1441.418,-61.71194,-53.11217,1407.808,-209.6269,-9.315105,212.5015,-31.64212,-8.017014,-1.298092,0,3183.979,-,-
+3111,1419.842,-61.14893,-52.53644,1410.35,-206.1747,-9.091959,209.6986,-30.6552,-7.811407,-1.280552,0,3098.507,-,-
+3112,1398.13,-68.39635,-59.9935,1414.213,-202.7756,-10.01403,207.0575,-29.68875,-8.783758,-1.230276,0,2850.429,-,-
+3113,1377.628,-43.50789,-35.5549,1411.47,-200.3154,-6.27666,203.6255,-28.89847,-5.129324,-1.147336,0,3326.172,-,-
+3114,1358.174,-54.97646,-45.56201,1420.951,-197.9809,-7.819172,202.0985,-28.15835,-6.480177,-1.338995,0,3033.384,-,-
+3115,1330.162,-134.6189,-121.9898,1416.45,-194.6194,-18.75164,197.3033,-27.10937,-16.99247,-1.759167,0,1272.721,-,-
+3116,1294.518,-133.5081,-120.3351,1385.628,-190.3421,-18.09858,187.838,-25.80309,-16.31282,-1.78576,0,1205.553,-,-
+3117,1264.088,-116.7542,-105.544,1386.229,-186.6906,-15.45534,183.5021,-24.71316,-13.97139,-1.483945,0,1470.102,-,-
+3118,1238.279,-121.6378,-110.0468,1392.805,-183.5935,-15.77305,180.6082,-23.80699,-14.27002,-1.50303,0,1250.963,-,-
+3119,1205.672,-120.0499,-107.5612,1390.652,-179.6806,-15.15722,175.5805,-22.68606,-13.58043,-1.57679,0,1117.427,-,-
+3120,1175.577,-81.81066,-71.31138,1391.329,-176.6798,-10.07139,171.2811,-21.75037,-8.778869,-1.292526,0,1752.694,-,-
+3121,1153.073,-110.7613,-101.4212,1406.222,-174.5419,-13.37437,169.8007,-21.07586,-12.24656,-1.127812,0,1178.339,-,-
+3122,1128.594,-112.8871,-101.4892,1395.064,-172.2164,-13.34169,164.8771,-20.35359,-11.99461,-1.347077,0,1096.101,-,-
+3123,1095.57,-109.1632,-95.40057,1393.891,-169.0791,-12.52405,159.9181,-19.39808,-10.9451,-1.578952,0,1106.939,-,-
+3124,1059.322,-107.0887,-96.11226,1395.163,-165.6356,-11.87956,154.7681,-18.37428,-10.66192,-1.217643,0,1078.544,-,-
+3125,1040.862,56.82951,59.32577,1396.63,-163.8819,6.194349,152.231,-17.86293,6.466439,-0.2720897,0,3835.594,-,-
+3126,1046.922,298.3562,292.3415,1458.688,-164.4576,32.7098,159.9209,-18.03005,32.05039,0.6594128,0,7773.037,-,-
+3127,1070.836,429.2428,417.5101,1546.885,-166.7294,48.1343,173.4641,-18.69665,46.81862,1.315681,0,10174.08,-,-
+3128,1105.593,528.1517,513.4837,1593.406,-170.0313,61.14804,184.4804,-19.68579,59.44982,1.69822,0,12128.76,-,-
+3129,1144.421,521.204,505.3355,1628.837,-173.72,62.46291,195.2055,-20.81921,60.56117,1.901745,0,12434.79,-,-
+3130,1185.277,577.524,561.4538,1626.214,-177.6013,71.68338,201.8488,-22.04422,69.68872,1.994661,0,14027.5,-,-
+3131,1225.22,509.5564,495.0848,1647.011,-182.0264,65.37849,211.3193,-23.35485,63.52172,1.856771,0,13100.12,-,-
+3132,1258.217,443.9861,430.5289,1623.572,-185.986,58.49969,213.9222,-24.50555,56.72657,1.773118,0,12132.53,-,-
+3133,1292.812,548.5759,533.9817,1599.539,-190.1374,74.26782,216.5504,-25.74137,72.29202,1.975803,0,14746.39,-,-
+3134,1331.452,533.6441,518.9247,1637.246,-194.7742,74.40564,228.2801,-27.15724,72.35333,2.052309,0,14944.05,-,-
+3135,1366.88,490.5652,478.2114,1632.43,-199.0256,70.21918,233.6649,-28.48839,68.45087,1.768321,0,14419.97,-,-
+3136,1393.737,365.3048,355.276,1617.917,-202.2484,53.31689,236.1379,-29.51853,51.85317,1.46372,0,11863.6,-,-
+3137,1417.343,430.3261,419.2946,1567.433,-205.7749,63.87064,232.6444,-30.54189,62.23331,1.637327,0,13634.23,-,-
+3138,1449.023,536.3912,522.5857,1581.038,-210.8437,81.39272,239.9087,-31.9937,79.29785,2.094863,0,16514.81,-,-
+3139,1486.588,558.9882,544.8172,1606.004,-216.8541,87.02056,250.0149,-33.75879,84.81449,2.206069,0,17565.82,-,-
+3140,1520.337,467.0469,455.3882,1603.062,-222.2539,74.35822,255.2224,-35.3849,72.50204,1.856181,0,15604.69,-,-
+3141,1545.353,387.2048,378.3078,1564.642,-226.2565,62.66097,253.2045,-36.61486,61.22117,1.439799,0,13929.42,-,-
+3142,1565.129,364.383,356.7811,1532.09,-229.4207,59.72234,251.1094,-37.60203,58.47639,1.245953,0,13548.72,-,-
+3143,1583.576,363.202,356.7823,1518.892,-232.3721,60.23041,251.8804,-38.53467,59.16581,1.064596,0,13713.27,-,-
+3144,1597.441,273.545,269.7889,1514.515,-234.5905,45.7596,253.3536,-39.24316,45.13127,0.6283286,0,11542.71,-,-
+3145,1602.506,184.6223,184.0462,1485.556,-235.3634,30.98222,249.2972,-39.49728,30.88554,0.09667719,0,9341.114,-,-
+3146,1600.343,124.471,126.238,1456.194,-235.0498,20.85978,244.04,-39.39141,21.15592,-0.2961399,0,7986.76,-,-
+3147,1593.612,89.18288,91.90398,1438.05,-233.9779,14.88308,239.9855,-39.04686,15.33718,-0.4541037,0,7149.038,-,-
+3148,1586.666,119.0291,120.1494,1428.06,-232.8666,19.77731,237.2796,-38.69201,19.96346,-0.1861493,0,7761.61,-,-
+3149,1587.996,258.7728,255.9667,1437.473,-233.0794,43.0325,239.0439,-38.75983,42.56586,0.4666419,0,11061.04,-,-
+3150,1600.719,354.9739,348.8802,1479.898,-235.1042,59.50318,248.0707,-39.4098,58.4817,1.021482,0,13681.88,-,-
+3151,1618.574,369.5281,362.2336,1514.315,-237.6932,62.63378,256.6713,-40.28821,61.39739,1.23639,0,14246.22,-,-
+3152,1637.37,379.9237,372.5306,1522.416,-240.4187,65.14361,261.041,-41.22338,63.87596,1.267651,0,14745.35,-,-
+3153,1655.736,365.6389,358.7195,1529.11,-243.0817,63.3975,265.1297,-42.14751,62.19775,1.199748,0,14577.37,-,-
+3154,1672.167,345.1774,338.782,1528.391,-245.4642,60.44364,267.635,-42.98298,59.32374,1.1199,0,14214.18,-,-
+3155,1687.886,354.9413,348.9989,1526.102,-247.7435,62.73766,269.7461,-43.7899,61.68731,1.05035,0,14679.86,-,-
+3156,1702.047,316.5041,311.9294,1532.016,-249.7968,56.41304,273.0634,-44.52327,55.59766,0.8153833,0,13790.31,-,-
+3157,1710.914,249.5989,246.8352,1524.251,-251.0825,44.71976,273.0947,-44.98557,44.22459,0.4951711,0,12119.92,-,-
+3158,1715.953,239.3062,237.6522,1508.383,-251.8132,43.00193,271.0476,-45.24936,42.70472,0.2972083,0,11907.01,-,-
+3159,1719.231,214.152,212.9708,1506.78,-252.2885,38.55538,271.2768,-45.42138,38.34271,0.2126701,0,11291.45,-,-
+3160,1721.891,227.3499,226.1923,1501.192,-252.6742,40.99483,270.6889,-45.5612,40.7861,0.2087274,0,11660.59,-,-
+3161,1725.048,225.0644,223.7009,1505.543,-253.132,40.65712,271.9713,-45.72743,40.4108,0.2463204,0,11634.79,-,-
+3162,1728.743,239.9642,237.8745,1506.127,-253.6677,43.44157,272.6595,-45.92237,43.06327,0.3782964,0,12058.83,-,-
+3163,1735.541,290.1137,287.0084,1511.879,-254.6534,52.72684,274.7771,-46.2821,52.16247,0.5643678,0,13474.56,-,-
+3164,1744.341,283.5699,279.9849,1526.608,-255.9294,51.79885,278.8608,-46.74985,51.14399,0.6548656,0,13402.41,-,-
+3165,1753.557,301.6498,297.9096,1527.72,-257.2658,55.39258,280.5384,-47.24224,54.70576,0.6868181,0,14017.87,-,-
+3166,1763.137,293.9943,289.943,1534.645,-258.6548,54.28172,283.3495,-47.75681,53.5337,0.7480226,0,13924.58,-,-
+3167,1773.912,330.1582,324.6987,1536.056,-260.2172,61.33138,285.3434,-48.3389,60.3172,1.014177,0,15060.58,-,-
+3168,1790.531,418.4823,410.3604,1548.326,-262.627,78.46709,290.3173,-49.2436,76.9442,1.52289,0,17726.63,-,-
+3169,1814.647,490.8909,480.0489,1538.597,-266.7097,93.2837,292.3787,-50.68268,91.2234,2.060305,0,20324.6,-,-
+3170,1844.93,553.5909,541.3636,1491.408,-272.3121,106.9541,288.141,-52.61086,104.5918,2.362317,0,22733.77,-,-
+3171,1876.086,517.8834,506.8445,1440.786,-278.0759,101.7451,283.0615,-54.63171,99.57632,2.168751,0,22168.86,-,-
+3172,1900.511,424.4976,415.962,1384.813,-282.5945,84.48396,275.607,-56.24226,82.78519,1.698763,0,19740.01,-,-
+3173,1919.052,400.5172,396.4261,1329.194,-286.0246,80.48901,267.1184,-57.48027,79.66685,0.8221571,0,19320.9,-,-
+3174,1921.161,87.59444,92.03557,1320.87,-286.4148,17.62256,265.7373,-57.62193,18.51604,-0.8934826,0,10420.93,-,-
+3175,1896.575,-136.6281,-122.5035,1308.265,-281.8664,-27.13555,259.8329,-55.98116,-24.33028,-2.805266,0,4403.953,-,-
+3176,1849.753,-142.4108,-125.0842,1357.082,-273.2043,-27.58579,262.8744,-52.92123,-24.22952,-3.356271,0,3627.905,-,-
+3177,1809.65,-28.69747,-15.37838,1436.994,-265.7852,-5.438345,272.3191,-50.36793,-2.914296,-2.524049,0,5843.469,-,-
+3178,1783.061,-181.4085,-90.5425,1470.432,-261.5439,-33.8729,274.5616,-48.83592,-16.90625,-16.96665,0,1945.408,-,-
+3179,1283.055,11.94902,131.1978,1342.961,-188.9666,1.605484,180.4419,-25.38978,17.62789,-16.02241,0,3936.345,-,-
+3180,1281.148,354.7531,353.7414,1441.987,-188.7377,47.5942,193.4592,-25.32134,47.45848,0.1357234,0,10455.54,-,-
+3181,1288.122,476.8306,473.1266,1569.812,-189.5746,64.32055,211.7548,-25.57207,63.8209,0.4996484,0,13098.25,-,-
+3182,1299.731,542.0156,536.8217,1614.714,-190.9677,73.77238,219.7747,-25.99214,73.06547,0.7069145,0,14688.5,-,-
+3183,1314.197,596.5734,590.1149,1638.518,-192.7036,82.10186,225.4968,-26.52034,81.21303,0.8888316,0,16206.06,-,-
+3184,1332.148,687.5341,679.8516,1658.2,-194.8578,95.91253,231.3226,-27.18309,94.84081,1.071721,0,18532.03,-,-
+3185,1352.77,712.191,703.8537,1691.395,-197.3324,100.8902,239.606,-27.95445,99.70914,1.181085,0,19446.65,-,-
+3186,1374.041,724.9662,717.2107,1700.437,-199.8849,104.3148,244.6746,-28.76129,103.1989,1.115942,0,20088.48,-,-
+3187,1391.799,586.9485,580.8474,1705.894,-202.0159,85.54707,248.632,-29.44358,84.65783,0.8892367,0,17091.75,-,-
+3188,1404.758,547.665,542.4847,1654.043,-203.7613,80.56477,243.3196,-29.97449,79.8027,0.7620589,0,16317.28,-,-
+3189,1417.834,599.244,593.4283,1635.363,-205.8534,88.97289,242.8108,-30.56414,88.10941,0.8634865,0,17735.21,-,-
+3190,1433.956,675.2629,668.3454,1648.566,-208.433,101.3999,247.5545,-31.29903,100.3611,1.038764,0,19758.25,-,-
+3191,1452.571,707.0199,700.0485,1669.291,-211.4114,107.5468,253.9207,-32.15839,106.4864,1.060438,0,20757.22,-,-
+3192,1469.02,601.4214,596.401,1675.154,-214.0432,92.51992,257.698,-32.92743,91.7476,0.7723238,0,18455.51,-,-
+3193,1477.869,419.2711,416.6836,1635.685,-215.459,64.88726,253.1421,-33.34489,64.48682,0.4004406,0,14008.97,-,-
+3194,1482.045,423.0982,421.4167,1570.112,-216.1272,65.66459,243.6804,-33.54281,65.40362,0.2609703,0,14144.98,-,-
+3195,1486.32,425.6588,423.184,1570.163,-216.8112,66.25253,244.3913,-33.74603,65.86734,0.3851944,0,14251.64,-,-
+3196,1494.467,578.1299,574.0297,1568.187,-218.1147,90.47746,245.4217,-34.135,89.83578,0.6416857,0,18174.61,-,-
+3197,1506.898,599.2418,594.2557,1617.035,-220.1037,94.56154,255.1713,-34.7328,93.77473,0.7868086,0,18894.76,-,-
+3198,1519.525,594.7559,589.8214,1619.943,-222.124,94.64011,257.7723,-35.34533,93.85491,0.7851949,0,18940.54,-,-
+3199,1531.702,589.8851,585.2708,1614.169,-224.0723,94.61725,258.9119,-35.94108,93.87712,0.7401309,0,18970.27,-,-
+3200,1542.725,557.4366,553.3518,1608.751,-225.836,90.05599,259.8998,-36.48466,89.39608,0.6599119,0,18255.69,-,-
+3201,1552.242,537.8779,534.4509,1594.57,-227.3587,87.43227,259.1981,-36.95725,86.87521,0.5570635,0,17862.37,-,-
+3202,1559.959,492.6203,490.1941,1585.485,-228.5934,80.47373,259.0024,-37.34269,80.07738,0.3963553,0,16766.01,-,-
+3203,1564.449,416.2379,414.8296,1569.06,-229.3118,68.19171,257.0571,-37.56786,67.961,0.2307101,0,14851.76,-,-
+3204,1567.041,420.9913,419.8469,1542.689,-229.7265,69.08474,253.1555,-37.69816,68.89693,0.1878068,0,14993.25,-,-
+3205,1570.2,439.7473,438.5663,1543.216,-230.232,72.30806,253.7525,-37.85727,72.11388,0.1941822,0,15501.12,-,-
+3206,1572.977,408.06,407.2625,1548.633,-230.6763,67.21637,255.0936,-37.99741,67.08501,0.1313607,0,14745.67,-,-
+3207,1574.21,380.9232,380.678,1537.76,-230.8736,62.79553,253.5011,-38.05972,62.75511,0.04042358,0,14072.23,-,-
+3208,1574.21,360.366,360.4205,1528.771,-230.8736,59.40665,252.0193,-38.05972,59.41563,-0.008983976,0,13540.93,-,-
+3209,1573.936,369.7195,370.0795,1521.986,-230.8298,60.93799,250.8571,-38.04587,60.99732,-0.05933174,0,13779.78,-,-
+3210,1572.4,310.2747,311.4026,1525.702,-230.584,51.09025,251.2241,-37.96827,51.27596,-0.1857097,0,12227.18,-,-
+3211,1568.263,265.7769,268.336,1507.133,-229.9221,43.64803,247.5135,-37.75967,44.06831,-0.4202815,0,11033.38,-,-
+3212,1559.519,125.7882,130.284,1494.873,-228.5231,20.54277,244.1313,-37.32066,21.27699,-0.7342186,0,7705.206,-,-
+3213,1545.63,57.52914,63.27763,1450.792,-226.3008,9.311551,234.8223,-36.62859,10.24199,-0.9304388,0,6077.057,-,-
+3214,1530.617,71.28401,77.34114,1430.708,-223.8987,11.42582,229.3221,-35.88779,12.39669,-0.9708731,0,6269.241,-,-
+3215,1515.183,30.5036,36.91875,1439.084,-221.4293,4.839994,228.3388,-35.13409,5.857883,-1.017889,0,5411.263,-,-
+3216,1498.36,7.632831,13.34828,1428.39,-218.7376,1.197651,224.1257,-34.32166,2.09445,-0.8967986,0,4896.531,-,-
+3217,1486.505,214.8492,218.0431,1422.72,-216.8408,33.44481,221.4697,-33.75484,33.94199,-0.4971856,0,9143.079,-,-
+3218,1482.349,302.0608,303.3459,1497.72,-216.1758,46.88927,232.4929,-33.55724,47.08876,-0.1994925,0,11108.51,-,-
+3219,1480.05,286.6435,287.218,1529.425,-215.808,44.42701,237.0463,-33.44819,44.51606,-0.08904973,0,10737.92,-,-
+3220,1479.463,368.4629,368.0577,1523.949,-215.7141,57.08559,236.1039,-33.42037,57.02282,0.06276575,0,12748.25,-,-
+3221,1482.084,412.5853,410.9256,1552.158,-216.1334,64.03467,240.9003,-33.54466,63.77707,0.2575954,0,13893.08,-,-
+3222,1487.796,491.9448,489.3159,1565.844,-217.0474,76.64581,243.9611,-33.81633,76.23621,0.4095916,0,15858.12,-,-
+3223,1495.289,486.2484,483.5153,1591.338,-218.2462,76.13982,249.1817,-34.17437,75.71186,0.4279602,0,15800.64,-,-
+3224,1501.538,448.6743,446.1814,1587.467,-219.2461,70.54986,249.6144,-34.4744,70.15788,0.3919854,0,14964.95,-,-
+3225,1507.818,491.3901,488.7702,1572.304,-220.2509,77.58968,248.2642,-34.77725,77.17599,0.4136843,0,16056.54,-,-
+3226,1514.703,476.3933,473.798,1584.922,-221.3525,75.56519,251.3993,-35.11078,75.15352,0.4116662,0,15769.42,-,-
+3227,1520.865,467.8126,465.3467,1577.792,-222.3384,74.50599,251.2863,-35.41064,74.11327,0.3927225,0,15628.65,-,-
+3228,1527.096,482.8212,480.5605,1572.798,-223.3354,77.21137,251.5173,-35.71515,76.84985,0.3615161,0,16079,-,-
+3229,1532.231,428.9931,427.1391,1576.411,-224.157,68.83402,252.9428,-35.96707,68.53654,0.2974851,0,14817.18,-,-
+3230,1536.417,448.9639,447.3059,1556.656,-224.8267,72.23524,250.4554,-36.17309,71.96849,0.2667572,0,15340.74,-,-
+3231,1540.564,429.8999,428.4487,1562.179,-225.4902,69.35467,252.0224,-36.37777,69.12055,0.2341186,0,14927.06,-,-
+3232,1543.713,412.736,411.5082,1554.744,-225.9941,66.72176,251.3356,-36.53358,66.52328,0.1984799,0,14548.43,-,-
+3233,1546.735,426.4139,425.6631,1547.935,-226.4776,69.06784,250.7248,-36.68342,68.94624,0.1216019,0,14908.66,-,-
+3234,1547.489,325.4881,325.7563,1552.574,-226.5982,52.74622,251.5987,-36.72085,52.78967,-0.04345592,0,12356.94,-,-
+3235,1545.386,314.6232,315.6641,1518.939,-226.2618,50.91624,245.8136,-36.61649,51.08469,-0.1684445,0,12053.89,-,-
+3236,1542.256,283.3934,284.5923,1516.204,-225.761,45.76936,244.8741,-36.46145,45.96298,-0.193624,0,11213.66,-,-
+3237,1539.361,321.6622,322.6277,1506.284,-225.2978,51.85243,242.8152,-36.31834,52.00807,-0.1556363,0,12172.1,-,-
+3238,1537.405,318.2691,318.9659,1519.962,-224.9848,51.24026,244.7088,-36.22181,51.35246,-0.1121934,0,12063.72,-,-
+3239,1535.859,337.0325,337.202,1519.214,-224.7374,54.20655,244.3425,-36.1456,54.2338,-0.02725501,0,12532.31,-,-
+3240,1536.554,405.5446,404.5861,1525.308,-224.8486,65.25518,245.4335,-36.17984,65.10095,0.1542299,0,14300.13,-,-
+3241,1540.671,472.2447,470.1258,1547.284,-225.5074,76.19135,249.6367,-36.38306,75.84949,0.341855,0,15976.05,-,-
+3242,1547.195,502.3773,500.4721,1567.719,-226.5512,81.39611,254.0047,-36.70625,81.08743,0.308677,0,16857.85,-,-
+3243,1550.257,340.3018,340.5775,1577.321,-227.0411,55.24546,256.0663,-36.85843,55.29021,-0.04475452,0,12769.07,-,-
+3244,1545.806,208.9116,211.893,1524.066,-226.329,33.81787,246.7103,-36.63733,34.30048,-0.4826145,0,9459.576,-,-
+3245,1535.243,96.56089,101.0309,1482.102,-224.6389,15.52412,238.278,-36.11526,16.24277,-0.71865,0,6868.212,-,-
+3246,1523.33,148.0191,152.5529,1445.996,-222.7328,23.61241,230.6692,-35.53094,24.33566,-0.7232521,0,7924.833,-,-
+3247,1512.464,129.4887,133.5518,1466.673,-220.9942,20.50905,232.2988,-35.00214,21.15258,-0.6435328,0,7428.698,-,-
+3248,1502.918,192.7579,196.4174,1462.416,-219.4669,30.33725,230.1627,-34.54084,30.91319,-0.5759448,0,8766.766,-,-
+3249,1494.076,151.125,154.4946,1487.06,-218.0522,23.64491,232.6643,-34.11628,24.17211,-0.5271974,0,7770.889,-,-
+3250,1485.987,217.0907,219.7496,1474.178,-216.7579,33.78196,229.4001,-33.73018,34.19572,-0.4137661,0,9190.458,-,-
+3251,1480.725,257.0145,258.5514,1498.998,-215.916,39.85297,232.4364,-33.48019,40.09128,-0.2383129,0,10064.56,-,-
+3252,1478.27,324.365,324.9044,1513.788,-215.5232,50.21302,234.3405,-33.36387,50.29652,-0.0835015,0,11595.92,-,-
+3253,1478.016,342.0607,342.0782,1537.819,-215.4826,52.94329,238.0197,-33.35184,52.946,-0.002710797,0,12050.58,-,-
+3254,1478.182,341.0789,341.0068,1544.069,-215.5091,52.79725,239.0139,-33.3597,52.7861,0.01115127,0,12026.96,-,-
+3255,1478.378,343.6987,343.321,1543.66,-215.5405,53.20984,238.9823,-33.36898,53.15138,0.05846263,0,12096.74,-,-
+3256,1480.079,400.1536,399.3946,1543.986,-215.8126,62.02121,239.3078,-33.44956,61.90357,0.117634,0,13573.52,-,-
+3257,1482.192,360.7133,360.3164,1563.463,-216.1507,55.98803,242.6726,-33.54979,55.92644,0.06159462,0,12576.82,-,-
+3258,1482.075,314.0717,314.5111,1549.638,-216.132,48.74472,240.5077,-33.54423,48.81292,-0.06819869,0,11381.47,-,-
+3259,1479.982,283.0292,283.8194,1533.727,-215.7971,43.86482,237.7021,-33.44497,43.98728,-0.1224596,0,10654.63,-,-
+3260,1478.104,320.8666,321.474,1523.115,-215.4966,49.66588,235.7579,-33.35601,49.7599,-0.09401649,0,11506.78,-,-
+3261,1476.93,309.5491,309.8393,1536.943,-215.3088,47.87603,237.7093,-33.30047,47.92091,-0.04488089,0,11238.65,-,-
+3262,1476.646,355.3341,355.1394,1532.9,-215.2634,54.94673,237.0384,-33.28704,54.91663,0.0301031,0,12379.14,-,-
+3263,1477.908,369.8335,369.4287,1548.802,-215.4653,57.23772,239.7021,-33.34673,57.17506,0.06265534,0,12767.22,-,-
+3264,1478.681,337.4158,337.0421,1553.803,-215.589,52.24786,240.602,-33.38333,52.18999,0.05786842,0,11937.56,-,-
+3265,1479.786,383.2872,382.793,1541.875,-215.7658,59.39528,238.9333,-33.43567,59.31868,0.07659547,0,13134.8,-,-
+3266,1481.165,348.8611,348.3531,1557.824,-215.9864,54.11087,241.6299,-33.50106,54.03209,0.0787828,0,12259.63,-,-
+3267,1482.339,376.356,375.7448,1545.224,-216.1742,58.4218,239.8653,-33.55677,58.32693,0.09487093,0,12982.65,-,-
+3268,1484.236,378.0454,377.113,1554.403,-216.4778,58.75916,241.5991,-33.64688,58.61423,0.1449303,0,13046.38,-,-
+3269,1487.024,412.505,411.4093,1554.103,-216.9238,64.23561,242.0061,-33.77955,64.06499,0.170624,0,13943.4,-,-
+3270,1489.743,377.1713,376.2841,1565.521,-217.3589,58.8408,244.2299,-33.90919,58.70241,0.1383919,0,13082.02,-,-
+3271,1491.484,375.9662,375.3532,1552.57,-217.6374,58.72134,242.4926,-33.99232,58.62561,0.09573114,0,13069.29,-,-
+3272,1492.824,362.2893,361.912,1551.783,-217.8518,56.63602,242.5874,-34.05638,56.57703,0.0589884,0,12729.98,-,-
+3273,1493.381,345.8508,345.9637,1546.845,-217.941,54.08639,241.9056,-34.08302,54.10405,-0.01766363,0,12311.02,-,-
+3274,1492.256,296.7136,297.202,1541.486,-217.761,46.36705,240.8861,-34.02922,46.44337,-0.07632522,0,11061.66,-,-
+3275,1490.926,337.1202,337.2817,1524.436,-217.5482,52.63438,238.0094,-33.96566,52.65959,-0.02521017,0,12059.41,-,-
+3276,1491.445,368.2114,367.8376,1538.49,-217.6312,57.50863,240.2871,-33.99046,57.45026,0.05837403,0,12868.45,-,-
+3277,1492.804,370.8069,370.1587,1549.042,-217.8486,57.96677,242.1556,-34.05542,57.86545,0.1013259,0,12949.91,-,-
+3278,1494.702,390.1448,389.5377,1549.354,-218.1523,61.06734,242.5124,-34.14626,60.97232,0.09502593,0,13469.77,-,-
+3279,1495.856,341.3895,342.6488,1555.913,-218.337,53.47718,243.7271,-34.20154,53.67446,-0.1972789,0,12221.89,-,-
+3280,1488.354,51.07682,55.46056,1541.546,-217.1366,7.960837,240.2654,-33.84293,8.644087,-0.6832496,0,5684.827,-,-
+3281,1473.771,58.18905,63.84967,1441.133,-214.8034,8.980487,222.4142,-33.15123,9.854107,-0.8736202,0,5755.433,-,-
+3282,1459.911,69.22461,74.01797,1446.737,-212.5858,10.58316,221.1793,-32.50043,11.31598,-0.7328168,0,5904.572,-,-
+3283,1449.71,193.3311,196.4324,1452.948,-210.9536,29.35023,220.5767,-32.02555,29.82105,-0.4708201,0,8373.571,-,-
+3284,1444.35,253.0698,254.7526,1499.542,-210.096,38.27731,226.8086,-31.77743,38.53183,-0.254524,0,9696.688,-,-
+3285,1441.259,279.2201,280.7838,1522.101,-209.6014,42.14221,229.7281,-31.63479,42.37823,-0.2360172,0,10271.95,-,-
+3286,1436.486,185.4069,187.7422,1533.072,-208.8378,27.89047,230.6176,-31.41514,28.24177,-0.3512958,0,8095.962,-,-
+3287,1429.513,189.7677,192.6763,1500.315,-207.7221,28.40789,224.5945,-31.09563,28.8433,-0.4354131,0,8140.003,-,-
+3288,1421.864,154.2618,157.2705,1503.814,-206.4982,22.96915,223.9138,-30.74702,23.41715,-0.4479975,0,7364.228,-,-
+3289,1414.392,192.1621,194.7094,1492.33,-205.3027,28.46204,221.0361,-30.40837,28.83934,-0.3772959,0,8078.025,-,-
+3290,1409.071,233.6763,235.8266,1507.668,-204.4514,34.48071,222.4678,-30.16835,34.798,-0.3172947,0,8983.399,-,-
+3291,1403.584,182.5852,184.9895,1524.585,-203.5734,26.83691,224.0881,-29.92183,27.19031,-0.3534001,0,7825.078,-,-
+3292,1396.982,186.3447,189.3378,1506.293,-202.6378,27.26067,220.358,-29.64422,27.69853,-0.4378613,0,7862.221,-,-
+3293,1388.531,105.5484,109.4755,1507.805,-201.6237,15.34743,219.2448,-29.31742,15.91847,-0.5710364,0,6259.494,-,-
+3294,1377.224,69.34786,73.78159,1477.406,-200.2669,10.00153,213.0752,-28.883,10.64097,-0.6394443,0,5494.544,-,-
+3295,1366.25,111.7866,115.4943,1463.714,-198.95,15.99369,209.4185,-28.46445,16.52416,-0.530472,0,6240.364,-,-
+3296,1358.612,193.999,196.1158,1479.656,-198.0334,27.60092,210.5158,-28.17492,27.90209,-0.3011715,0,7770.023,-,-
+3297,1355.629,290.3131,290.888,1510.41,-197.6755,41.21318,214.4195,-28.06224,41.29479,-0.08161263,0,9751.486,-,-
+3298,1355.726,314.0724,313.4256,1546.36,-197.6871,44.58926,219.5387,-28.0659,44.49744,0.09182202,0,10296.58,-,-
+3299,1358.876,411.0003,408.8991,1555.004,-198.0651,58.48582,221.2789,-28.1849,58.18682,0.2990037,0,12516.63,-,-
+3300,1366.27,482.9201,479.3862,1590.791,-198.9524,69.09402,227.6031,-28.46521,68.5884,0.505616,0,14227.71,-,-
+3301,1376.618,532.0343,527.5181,1617.234,-200.1942,76.69759,233.139,-28.85981,76.04653,0.6510569,0,15555.36,-,-
+3302,1388.952,567.1526,562.3978,1635.241,-201.6742,82.49276,237.847,-29.33366,81.80117,0.6915888,0,16575.68,-,-
+3303,1400.522,509.428,505.5428,1648.26,-203.0835,74.71389,241.7376,-29.7847,74.14407,0.5698169,0,15354.79,-,-
+3304,1408.504,433.6535,430.724,1624.849,-204.3606,63.96312,239.6623,-30.14283,63.53102,0.4320965,0,13620.62,-,-
+3305,1415.252,465.2427,462.827,1594.91,-205.4403,68.95122,236.3734,-30.44725,68.5932,0.3580186,0,14450.11,-,-
+3306,1420.651,384.3191,382.7267,1605.145,-206.3042,57.17524,238.7978,-30.69192,56.93834,0.2368962,0,12536.11,-,-
+3307,1423.263,359.316,358.4073,1574.815,-206.7221,53.5538,234.7163,-30.81063,53.41837,0.135432,0,11968.83,-,-
+3308,1425.219,359.6043,359.0187,1565.099,-207.035,53.67044,233.5888,-30.89968,53.58304,0.08739695,0,11990.36,-,-
+3309,1426.207,322.5139,322.189,1565.02,-207.1931,48.16811,233.739,-30.94472,48.11959,0.04852242,0,11148.53,-,-
+3310,1426.852,346.6336,346.4002,1551.186,-207.2963,51.79385,231.7775,-30.97413,51.75898,0.03487066,0,11705.79,-,-
+3311,1427.38,317.4371,318.0551,1559.951,-207.3808,47.44888,233.1735,-30.99822,47.54124,-0.09236163,0,11041.22,-,-
+3312,1423.742,183.1833,185.6174,1550.503,-206.7987,27.31151,231.1705,-30.83243,27.67442,-0.3629072,0,7949.138,-,-
+3313,1415.125,119.0415,123.2854,1503.023,-205.42,17.64094,222.7352,-30.44151,18.26986,-0.6289161,0,6658.101,-,-
+3314,1402.381,15.38395,20.68284,1482.016,-203.381,2.25924,217.6445,-29.86791,3.03742,-0.7781802,0,4611.891,-,-
+3315,1388.482,65.17098,70.82121,1443.327,-201.6178,9.475959,209.8619,-29.31554,10.29751,-0.8215514,0,5484.548,-,-
+3316,1373.977,-16.18486,-9.624532,1462.197,-199.8772,-2.328718,210.3846,-28.75885,-1.384802,-0.9439161,0,3877.002,-,-
+3317,1355.462,-79.44065,-70.72517,1431.348,-197.6554,-11.2761,203.1707,-28.05593,-10.03899,-1.237106,0,2507.551,-,-
+3318,1330.062,-128.7271,-114.2985,1407.141,-194.6074,-17.92959,195.9919,-27.10566,-15.91993,-2.009662,0,1397.443,-,-
+3319,1282.331,-125.6691,-101.9349,1387.431,-188.8797,-16.87553,186.3117,-25.36379,-13.68837,-3.187158,0,1340.812,-,-
+3320,1209.601,-123.2304,-93.05946,1387.541,-180.1521,-15.60949,175.7585,-22.81971,-11.78776,-3.821731,0,1078.292,-,-
+3321,1130.279,-120.7184,-90.1983,1388.046,-172.3765,-14.28853,164.2926,-20.40292,-10.6761,-3.612434,0,954.3768,-,-
+3322,1056.59,-116.1111,-89.05748,1389.073,-165.3761,-12.84721,153.6952,-18.29817,-9.85384,-2.993372,0,910.1627,-,-
+3323,995.0887,-115.855,-91.10591,1383.455,-159.7299,-12.07272,144.1636,-16.64472,-9.493731,-2.578987,0,785.635,-,-
+3324,932.1101,-117.3519,-90.7088,1283.131,-156.2661,-11.45476,125.2469,-15.25318,-8.854117,-2.600643,0,696.8063,-,-
+3325,860.5636,-121.1193,-94.57206,1168.043,-152.331,-10.91503,105.2617,-13.72777,-8.522646,-2.392384,0,558.8846,-,-
+3326,799.4923,-126.6925,-103.1127,1069.678,-148.9975,-10.60703,89.55628,-12.47446,-8.632871,-1.974158,0,281.2823,-,-
+3327,742.3431,-85.89819,-112.9165,976.4973,-148.7117,-6.677553,75.91093,-11.56055,-8.777903,2.100349,0,792.1249,-,-
+3328,916.95,-70.81161,-77.81898,1279.321,-155.4323,-6.799528,122.8439,-14.92504,-7.472395,0.6728669,0,1515.238,-,-
+3329,784.6405,-130.9484,-79.42371,1063.912,-148.9232,-10.75968,87.41882,-12.23663,-6.526037,-4.233648,0,226.6756,-,-
+3330,659.1023,-100.6854,-104.8916,836.8008,-148.2955,-6.949407,57.75686,-10.23551,-7.239723,0.2903159,0,590.5477,-,-
+3331,802.2018,-66.32221,-57.09365,1091.855,-149.1211,-5.571489,91.72281,-12.52712,-4.796231,-0.7752579,0,1053.483,-,-
+3332,600,-24.78903,-77.39087,767.9976,-148,-1.557541,48.25471,-9.299114,-4.862612,3.305071,0,1214.627,-,-
+3333,980.1921,36.60976,29.58661,1400.303,-158.9106,3.757826,143.7347,-16.31145,3.036931,0.7208952,0,3265.996,-,-
+3334,655.1318,-109.3531,-18.12334,909.4845,-148.2757,-7.502195,62.3954,-10.17249,-1.243356,-6.258839,0,490.8423,-,-
+3335,600,-69.45802,-57.98462,756.4746,-148,-4.364176,47.5307,-9.299114,-3.643281,-0.7208952,0,774.2753,-,-
+3336,600,-33.69488,-33.69488,775.2033,-148,-2.117112,48.70746,-9.299114,-2.117112,0,0,1126.832,-,-
+3337,600,-7.326926,-7.326926,788.6145,-148,-0.4603643,49.55011,-9.299114,-0.4603643,0,0,1386.77,-,-
+3338,600,-0.0003565071,-0.0003565071,798.5024,-148,-2.24E-05,50.17139,-9.299114,-2.24E-05,0,0,1458.996,-,-
+3339,600,0,0,801.2499,-148,0,50.34401,-9.299114,0,0,0,1459,-,-
+3340,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+3341,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+3342,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+3343,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+3344,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+3345,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+3346,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+3347,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+3348,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+3349,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+3350,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+3351,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+3352,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+3353,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+3354,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+3355,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+3356,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+3357,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+3358,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+3359,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+3360,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+3361,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+3362,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+3363,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+3364,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+3365,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+3366,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+3367,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+3368,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+3369,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+3370,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+3371,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+3372,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+3373,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+3374,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+3375,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+3376,600,3.787888E-06,3.787888E-06,801.2501,-148,2.38E-07,50.34402,-9.299114,2.38E-07,0,0,1459,-,-
+3377,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+3378,600,3.787888E-06,3.787888E-06,801.2501,-148,2.38E-07,50.34402,-9.299114,2.38E-07,0,0,1459,-,-
+3379,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+3380,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+3381,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+3382,600,9.170532,-3.794549E-06,801.2501,-148,0.5762016,50.34402,-9.299114,-2.384186E-07,0.5762018,0,1546.074,-,-
+3383,644.4445,33.94833,25.41025,875.1463,-148.2222,2.29104,59.06019,-10.00294,1.714838,0.5762018,0,1874.673,-,-
+3384,644.4445,24.03139,24.03139,884.6752,-148.2222,1.621784,59.70325,-10.00294,1.621784,0,0,1780.511,-,-
+3385,644.4445,72.96339,48.87914,880.9563,-148.2222,4.924013,59.45228,-10.00294,3.298661,1.625351,0,2245.121,-,-
+3386,755.8596,48.89255,48.89255,1072.492,-148.7793,3.870013,84.89145,-11.77639,3.870013,0,0,2262.61,-,-
+3387,644.4445,22.3676,46.45185,893.449,-148.2222,1.509502,60.29537,-10.00294,3.134853,-1.625351,0,1764.714,-,-
+3388,644.4445,21.05519,21.05519,880.3324,-148.2222,1.420932,59.41018,-10.00294,1.420932,0,0,1752.253,-,-
+3389,644.4445,27.05376,27.05376,879.8403,-148.2222,1.825752,59.37696,-10.00294,1.825752,0,0,1809.209,-,-
+3390,644.4445,107.6921,20.16514,882.0897,-148.2222,7.267719,59.52877,-10.00294,1.360866,5.906853,0,2574.87,-,-
+3391,991.1098,8.205436,8.205436,1449.618,-159.511,0.8516321,150.4541,-16.55545,0.8516321,0,0,2919.924,-,-
+3392,644.4445,-55.53147,31.99552,876.6768,-148.2222,-3.747601,59.16348,-10.00294,2.159252,-5.906853,0,1004.898,-,-
+3393,644.4445,27.03879,27.03879,851.1203,-148.2222,1.824742,57.43877,-10.00294,1.824742,0,0,1809.067,-,-
+3394,644.4445,18.18603,17.91583,882.0841,-148.2222,1.227304,59.52839,-10.00294,1.209069,0.01823453,0,1725.01,-,-
+3395,645.8011,45.58591,44.16686,880.9078,-148.229,3.08289,59.57415,-10.02445,2.986922,0.09596807,0,1988.021,-,-
+3396,651.5524,41.62089,38.84354,900.1943,-148.2578,2.83981,61.42063,-10.11569,2.650311,0.1894993,0,1962.45,-,-
+3397,659.7339,17.91965,11.01057,911.6785,-148.2987,1.238018,62.98529,-10.24554,0.760689,0.4773286,0,1754.588,-,-
+3398,685.8124,79.70228,63.99321,944.2097,-148.4291,5.724067,67.81135,-10.65989,4.595871,1.128196,0,2395.979,-,-
+3399,737.2534,61.72726,46.68456,1047.372,-148.6863,4.765653,80.86232,-11.47932,3.604281,1.161372,0,2333.333,-,-
+3400,762.7693,34.20387,27.6987,1082.528,-148.8138,2.732103,86.46912,-11.88681,2.212489,0.5196136,0,2125.581,-,-
+3401,770.3373,23.47311,21.53662,1084.893,-148.8517,1.893565,87.51782,-12.0078,1.737349,0.1562156,0,2039.585,-,-
+3402,772.536,20.58221,20.17588,1084.468,-148.8627,1.665097,87.73318,-12.04296,1.632224,0.0328727,0,2016.754,-,-
+3403,772.3826,17.51748,18.23828,1083.166,-148.8619,1.416879,87.61049,-12.0405,1.47518,-0.05830067,0,1987.332,-,-
+3404,768.9055,15.05842,15.50745,1076.514,-148.8445,1.212498,86.68048,-11.9849,1.248654,-0.03615606,0,1956.681,-,-
+3405,770.1327,26.18385,24.83714,1077.505,-148.8507,2.111678,86.89876,-12.00452,2.003068,0.10861,0,2064.894,-,-
+3406,775.6552,22.86183,21.54294,1090.401,-148.8783,1.856985,88.56934,-12.09285,1.749856,0.1071289,0,2044.949,-,-
+3407,776.7802,18.36958,18.67405,1091.002,-148.8839,1.494259,88.74671,-12.11085,1.519026,-0.02476705,0,2004.658,-,-
+3408,774.1212,14.82872,16.23119,1085.124,-148.8706,1.202102,87.96642,-12.06831,1.315794,-0.113692,0,1965.453,-,-
+3409,769.7236,15.46045,16.22598,1076.809,-148.8486,1.246193,86.79649,-11.99798,1.307899,-0.06170557,0,1962.216,-,-
+3410,770.2861,23.29882,23.18694,1077.905,-148.8514,1.87938,86.94828,-12.00698,1.870355,0.009024576,0,2037.823,-,-
+3411,770.2861,15.05121,15.43733,1080.848,-148.8514,1.214093,87.18573,-12.00698,1.245239,-0.03114581,0,1959.512,-,-
+3412,768.343,20.08102,20.45793,1074.679,-148.8417,1.615733,86.46942,-11.97591,1.646059,-0.03032599,0,2003.19,-,-
+3413,768.3942,17.07819,18.23356,1076.632,-148.842,1.374215,86.63232,-11.97673,1.467183,-0.09296836,0,1974.785,-,-
+3414,762.5137,2.168174,12.12742,1066.202,-148.8126,0.1731292,85.13649,-11.88272,0.9683771,-0.7952479,0,1820.865,-,-
+3415,717.0042,-57.70454,-31.81129,988.2245,-148.585,-4.332716,74.20035,-11.15643,-2.388535,-1.944182,0,1135.851,-,-
+3416,628.3375,-56.9184,-41.2777,821.6316,-148.1417,-3.745193,54.06282,-9.747627,-2.716046,-1.029147,0,957.4011,-,-
+3417,644.4445,113.6447,18.26513,851.1337,-148.2222,7.669433,57.43967,-10.00294,1.232642,6.43679,0,2631.39,-,-
+3418,1006.313,51.39287,3.111489,1464.792,-160.5997,5.415824,154.361,-16.92414,0.3278913,5.087933,0,3675.027,-,-
+3419,950.627,-36.55479,-5.654349,1379.367,-157.2845,-3.639009,137.3152,-15.65758,-0.5628872,-3.076121,0,2160.608,-,-
+3420,846.9909,-60.69831,-15.86447,1178.734,-151.5845,-5.383739,104.5498,-13.44504,-1.407126,-3.976612,0,1345.215,-,-
+3421,722.4837,-59.28104,-13.73943,969.3912,-148.6124,-4.485104,73.34251,-11.24376,-1.039502,-3.445601,0,1126.535,-,-
+3422,621.8163,-32.63666,-6.72121,810.1222,-148.1091,-2.125183,52.75228,-9.644338,-0.4376613,-1.687522,0,1183.078,-,-
+3423,600,5.364755,0.613867,788.5663,-148,0.3370775,49.54708,-9.299114,0.0385704,0.2985071,0,1509.938,-,-
+3424,644.4445,28.37809,27.85179,873.8176,-148.2222,1.915126,58.97052,-10.00294,1.879608,0.03551809,0,1821.783,-,-
+3425,602.8344,-8.432293,0.6951258,817.1349,-148.0142,-0.5323194,51.58464,-9.343938,0.04388237,-0.5762018,0,1381.826,-,-
+3426,600,8.497969,-0.1072795,798.073,-148,0.5339431,50.14441,-9.299114,-0.00674057,0.5406837,0,1539.688,-,-
+3427,644.4445,70.56814,28.62117,874.9115,-148.2222,4.762366,59.04434,-10.00294,1.93153,2.830836,0,2222.378,-,-
+3428,794.813,87.59628,87.52528,1132.581,-148.9741,7.290868,94.26768,-12.3995,7.284958,0.005910167,0,2909.154,-,-
+3429,644.8845,81.06855,94.43972,913.13,-148.2244,5.474733,61.66563,-10.00991,6.377717,-0.9029838,0,2323.003,-,-
+3430,738.2761,182.6653,123.6078,1047.75,-148.6914,14.12223,81.00378,-11.49564,9.556376,4.565857,0,3790.978,-,-
+3431,924.2001,243.6473,176.0834,1371.65,-155.831,23.58068,132.751,-15.08164,17.0417,6.538975,0,5924.294,-,-
+3432,1082.921,130.4283,85.91582,1515.476,-167.8775,14.79098,171.8599,-19.03785,9.743132,5.047852,0,5101.428,-,-
+3433,1157.014,8.63315,57.69983,1483.279,-174.9163,1.046012,179.7173,-21.19325,6.99104,-5.945028,0,3345.729,-,-
+3434,775.9276,218.0922,281.2729,1085.912,-148.8796,17.72107,88.23575,-12.09721,22.85481,-5.133741,0,4367.891,-,-
+3435,919.729,406.9228,344.4424,1378.816,-155.5851,39.19228,132.799,-14.98499,33.17456,6.017721,0,8429.407,-,-
+3436,1086.138,439.2995,371.0198,1566.717,-168.1831,49.96597,178.1985,-19.12916,42.19983,7.766144,0,10443.94,-,-
+3437,1261.492,437.9518,381.7794,1579.338,-186.379,57.85481,208.6355,-24.62125,50.43425,7.420557,0,12045.96,-,-
+3438,1375.494,162.4655,135.5099,1588.12,-200.0593,23.40176,228.7551,-28.81682,19.51903,3.882729,0,7270.229,-,-
+3439,1401.449,-31.89044,41.50893,1496.962,-203.2318,-4.680221,219.6932,-29.82618,6.091826,-10.77205,0,3636.088,-,-
+3440,926.2782,134.009,241.6435,1302.142,-155.9453,12.99883,126.3073,-15.12664,23.43933,-10.4405,0,4322.643,-,-
+3441,980.7605,410.5554,384.7184,1454.359,-158.9418,42.16609,149.3699,-16.32412,39.51251,2.653579,0,9148.914,-,-
+3442,1054.848,457.463,426.9157,1580.645,-165.2106,50.53292,174.6035,-18.24972,47.15857,3.374356,0,10503.24,-,-
+3443,1133.927,469.6482,435.266,1597.085,-172.7231,55.76817,189.6452,-20.50992,51.68547,4.082701,0,11285.01,-,-
+3444,1226.62,599.2733,558.3726,1600.309,-182.1944,76.97746,205.5619,-23.40312,71.72372,5.253738,0,15010.62,-,-
+3445,1337.942,660.7869,614.7417,1643.529,-195.553,92.58217,230.2732,-27.39873,86.13082,6.451345,0,17988.57,-,-
+3446,1457.344,689.8307,641.4365,1645.875,-212.175,105.2769,251.1814,-32.38061,97.89137,7.385556,0,20409.83,-,-
+3447,1580.828,701.0364,661.8866,1611.751,-231.9325,116.0523,266.8156,-38.39501,109.5713,6.481011,0,22694.71,-,-
+3448,1657.092,137.0883,211.3555,1616.268,-243.2784,23.78898,280.4715,-42.21616,36.67658,-12.8876,0,8608.622,-,-
+3449,1123.368,-119.1831,12.42195,1513.333,-171.72,-14.02055,178.0267,-20.20094,1.461304,-15.48186,0,970.6121,-,-
+3450,1122.441,216.9482,214.3273,1392.77,-171.6319,25.50048,163.7086,-20.17391,25.1924,0.3080775,0,6808.938,-,-
+3451,1136.454,318.9218,311.1514,1517.853,-172.9631,37.95462,180.6384,-20.5842,37.02988,0.9247422,0,8667.5,-,-
+3452,1161.309,445.2904,433.9126,1554.536,-175.3244,54.15265,189.0502,-21.32154,52.76898,1.383673,0,11112.24,-,-
+3453,1193.459,475.6851,461.9342,1599.986,-178.3786,59.45052,199.9642,-22.29353,57.73195,1.718568,0,12087.5,-,-
+3454,1230.285,549.8324,533.8587,1610.542,-182.6342,70.83774,207.4945,-23.52971,68.77976,2.057974,0,13956.91,-,-
+3455,1273.533,615.5446,598.0114,1636.685,-187.824,82.09153,218.275,-25.04897,79.75322,2.33831,0,16050.56,-,-
+3456,1318.352,590.9497,574.4711,1660.482,-193.2022,81.58504,229.242,-26.67302,79.31004,2.275005,0,16130.88,-,-
+3457,1356.562,490.1349,475.4406,1652.864,-197.7874,69.62799,234.804,-28.09746,67.54053,2.087457,0,14261.16,-,-
+3458,1392.273,547.011,533.0198,1616.586,-202.0728,79.75337,235.6958,-29.4619,77.71349,2.039889,0,16140.07,-,-
+3459,1426.908,475.7753,462.1594,1629.199,-207.3053,71.09293,243.4438,-30.97668,69.05838,2.034551,0,14826.16,-,-
+3460,1460.725,539.049,524.8007,1593.407,-212.716,82.45657,243.7383,-32.53848,80.27706,2.179512,0,16702.34,-,-
+3461,1498.424,562.8863,548.1557,1603.041,-218.7478,88.32507,251.5405,-34.32473,86.01363,2.311444,0,17823.01,-,-
+3462,1534.793,520.7798,507.5174,1599.121,-224.5669,83.70138,257.0158,-36.09309,81.56979,2.131588,0,17183.03,-,-
+3463,1565.21,449.1118,438.1231,1575.365,-229.4336,73.6132,258.2155,-37.60609,71.81207,1.801143,0,15683.8,-,-
+3464,1590.119,414.4161,404.9979,1543.992,-233.4191,69.00728,257.1006,-38.86821,67.43898,1.568298,0,15090.58,-,-
+3465,1612.582,404.4519,395.6755,1531.695,-236.8244,68.29947,258.6561,-39.99235,66.8174,1.482072,0,15111.87,-,-
+3466,1634.24,403.4921,394.8466,1532.288,-239.9648,69.05251,262.2315,-41.06691,67.57295,1.479564,0,15355.27,-,-
+3467,1656.032,412.8456,404.2415,1535.845,-243.1246,71.59538,266.345,-42.16249,70.10327,1.492114,0,15873.06,-,-
+3468,1677.488,402.0527,394.0989,1542.431,-246.2357,70.62705,270.9528,-43.25528,69.22984,1.397215,0,15853.91,-,-
+3469,1696.042,358.8323,352.0162,1543.128,-248.9261,63.73189,274.0735,-44.21154,62.52128,1.210606,0,14888.92,-,-
+3470,1711.774,348.514,342.736,1535.142,-251.2073,62.47342,275.1843,-45.03055,61.43768,1.035735,0,14798.18,-,-
+3471,1725.102,312.1833,308.2507,1535.718,-253.1398,56.39661,277.4308,-45.73028,55.68619,0.7104184,0,13956.68,-,-
+3472,1731.578,208.5556,209.1197,1528.586,-254.0788,37.81747,277.1791,-46.07222,37.91976,-0.1022846,0,11276.95,-,-
+3473,1722.254,-11.8098,-6.045083,1500.252,-252.7268,-2.129946,270.5766,-45.5803,-1.090255,-1.039691,0,5680.749,-,-
+3474,1702.517,-10.18864,-2.131495,1434.419,-249.865,-1.816504,255.7385,-44.54771,-0.3800182,-1.436486,0,5598.261,-,-
+3475,1681.747,-36.89965,-29.3453,1425.543,-246.8533,-6.498477,251.0554,-43.47386,-5.168064,-1.330412,0,4881.565,-,-
+3476,1664.59,58.87865,64.30865,1410.222,-244.3655,10.26346,245.8235,-42.59669,11.20999,-0.9465311,0,6909.534,-,-
+3477,1654.514,100.4209,104.1223,1434.553,-242.9046,17.39896,248.5512,-42.08572,18.04026,-0.6412958,0,7775.471,-,-
+3478,1645.996,88.99619,92.78974,1443.983,-241.6694,15.34012,248.8969,-41.65615,15.99401,-0.6538876,0,7469.591,-,-
+3479,1635.436,56.01666,60.85297,1436.808,-240.1382,9.593551,246.0714,-41.12666,10.42183,-0.8282789,0,6670.788,-,-
+3480,1621.665,19.5431,25.55017,1421.559,-238.1414,3.318817,241.4096,-40.44127,4.338938,-1.020121,0,5774.801,-,-
+3481,1605.22,-3.185783,3.551189,1403.724,-235.7569,-0.5355246,235.9636,-39.63032,0.5969486,-1.132473,0,5169.704,-,-
+3482,1587.795,-5.394207,1.510882,1396.986,-233.0472,-0.8969138,232.2818,-38.74958,0.2512197,-1.148134,0,5039.474,-,-
+3483,1570.517,-4.788743,1.922823,1400.077,-230.2827,-0.7875766,230.2625,-37.87325,0.3162355,-1.103812,0,4974.306,-,-
+3484,1554.072,7.983284,13.70351,1403.889,-227.6515,1.299216,228.4717,-37.04847,2.230137,-0.9309211,0,5154.794,-,-
+3485,1541.806,77.34163,81.42084,1410.969,-225.689,12.48739,227.8116,-36.43919,13.14601,-0.6586201,0,6489.698,-,-
+3486,1533.597,88.69908,91.87785,1436.806,-224.3755,14.24489,230.748,-36.03424,14.75539,-0.5105034,0,6680.335,-,-
+3487,1525.832,84.42286,88.21693,1442.57,-223.1331,13.48949,230.5007,-35.65327,14.09572,-0.6062345,0,6525.728,-,-
+3488,1514.506,12.66441,18.5663,1443.797,-221.321,2.008559,228.9843,-35.10122,2.944591,-0.9360315,0,5065.961,-,-
+3489,1496.1,-58.62527,-50.05724,1422.507,-218.376,-9.184894,222.8658,-34.21323,-7.842529,-1.342364,0,3496.343,-,-
+3490,1471.352,-111.2288,-100.1247,1401.71,-214.4163,-17.13809,215.975,-33.03719,-15.42717,-1.710919,0,2268.789,-,-
+3491,1440.169,-146.7422,-132.6803,1387.877,-209.427,-22.13081,209.3115,-31.58456,-20.01007,-2.120735,0,1374.692,-,-
+3492,1400.468,-143.4541,-126.1949,1380.835,-203.0749,-21.03849,202.5086,-29.78229,-18.50732,-2.531174,0,1265.191,-,-
+3493,1353.19,-137.415,-120.4553,1381.825,-197.3828,-19.4725,195.8125,-27.97027,-17.0692,-2.403297,0,1272.025,-,-
+3494,1315.531,-104.7247,-92.97174,1384.494,-192.8637,-14.42709,190.7308,-26.56931,-12.80798,-1.619112,0,1869.589,-,-
+3495,1294.491,-30.50262,-24.23755,1397.59,-190.3389,-4.134898,189.4556,-25.80211,-3.285613,-0.8492852,0,3215.451,-,-
+3496,1284.173,99.92941,100.9834,1425.97,-189.1008,13.43834,191.7619,-25.42994,13.58008,-0.1417443,0,5521.177,-,-
+3497,1289.225,281.1237,277.5631,1474.827,-189.707,37.95376,199.1124,-25.61183,37.47305,0.4807126,0,8975.563,-,-
+3498,1302.015,261.3938,256.9997,1541.886,-191.2418,35.64018,210.231,-26.07519,35.04106,0.5991229,0,8684.916,-,-
+3499,1311.339,213.8894,210.9236,1534.826,-192.3607,29.37195,210.767,-26.41556,28.96468,0.4072694,0,7851.345,-,-
+3500,1316.942,188.0207,184.5129,1517.367,-193.033,25.9299,209.2599,-26.62116,25.44615,0.4837501,0,7395.725,-,-
+3501,1328.926,347.1214,339.9304,1507.372,-194.4711,48.30708,209.7731,-27.06354,47.30635,1.000735,0,10775.75,-,-
+3502,1352.921,438.9147,427.677,1565.362,-197.3505,62.18436,221.7767,-27.96014,60.59223,1.59213,0,13012.39,-,-
+3503,1385.233,525.8354,511.8757,1598.254,-201.228,76.27834,231.8447,-29.19038,74.25334,2.025003,0,15530.55,-,-
+3504,1422.945,558.4343,543.2901,1622.375,-206.6712,83.21255,241.7507,-30.79617,80.9559,2.256644,0,16768.07,-,-
+3505,1461.329,548.6824,534.238,1621.783,-212.8126,83.96487,248.1815,-32.56672,81.75445,2.210426,0,16964.41,-,-
+3506,1495.643,483.7011,471.0267,1607.714,-218.3029,75.7589,251.8055,-34.19133,73.77378,1.985118,0,15743.25,-,-
+3507,1525.133,457.5688,446.0952,1576.363,-223.0213,73.07903,251.7634,-35.61908,71.24657,1.832466,0,15427.93,-,-
+3508,1553.333,463.2928,452.6392,1558.546,-227.5333,75.36137,253.5204,-37.01162,73.6284,1.732966,0,15904.17,-,-
+3509,1578.726,405.6613,397.0795,1552.376,-231.5962,67.06546,256.6446,-38.28836,65.64669,1.418773,0,14748.9,-,-
+3510,1596.568,313.6904,307.9312,1528.334,-234.4509,52.44659,255.5255,-39.19836,51.4837,0.9628939,0,12571.04,-,-
+3511,1607.732,271.1803,267.9467,1499.383,-236.1212,45.65628,252.438,-39.75367,45.11185,0.5444282,0,11590.15,-,-
+3512,1612.851,190.3307,189.7066,1487.22,-236.8634,32.14636,251.1875,-40.0056,32.04094,0.1054194,0,9544.926,-,-
+3513,1610.876,125.5708,127.106,1460.996,-236.577,21.1826,246.4563,-39.9083,21.44158,-0.2589768,0,8074.484,-,-
+3514,1605.126,111.0092,113.4971,1438.344,-235.7433,18.65936,241.7689,-39.62571,19.07754,-0.4181857,0,7715.261,-,-
+3515,1598.368,102.6996,105.3755,1432.377,-234.7389,17.18992,239.7523,-39.29076,17.63783,-0.447905,0,7486.748,-,-
+3516,1591.677,109.9316,113.0515,1431.31,-233.6683,18.3234,238.5707,-38.94784,18.84343,-0.520031,0,7596.97,-,-
+3517,1582.676,52.87277,57.28834,1436.031,-232.2282,8.762998,238.0042,-38.4889,9.494823,-0.7318254,0,6255.881,-,-
+3518,1569.455,20.14175,26.13059,1420.078,-230.1128,3.310356,233.394,-37.81971,4.294639,-0.9842826,0,5457.509,-,-
+3519,1552.541,-25.27697,-17.92269,1412.801,-227.4066,-4.109573,229.6956,-36.97215,-2.913902,-1.195671,0,4458.552,-,-
+3520,1532.455,-45.89238,-37.0144,1401.394,-224.1928,-7.364732,224.8933,-35.97808,-5.940009,-1.424723,0,3930.573,-,-
+3521,1507.855,-113.7667,-102.5271,1399.124,-220.2568,-17.96401,220.9248,-34.77903,-16.18926,-1.774751,0,2360.455,-,-
+3522,1475.826,-132.7467,-117.9635,1380.558,-215.1322,-20.51575,213.3627,-33.24828,-18.23104,-2.284715,0,1826.153,-,-
+3523,1433.29,-130.4124,-111.8747,1380.615,-208.3264,-19.57409,207.2217,-31.2685,-16.7917,-2.782385,0,1690.021,-,-
+3524,1382.384,-129.26,-108.0494,1386.794,-200.8861,-18.71205,200.7564,-29.08085,-15.64154,-3.070514,0,1519.32,-,-
+3525,1326.494,-124.658,-103.1354,1386.985,-194.1793,-17.31625,192.6663,-26.97347,-14.32655,-2.989702,0,1474.674,-,-
+3526,1274.366,-123.9256,-104.1452,1388.841,-187.9239,-16.53803,185.3426,-25.07869,-13.89831,-2.639716,0,1357.522,-,-
+3527,1227.275,-118.5317,-100.2069,1389.245,-182.273,-15.23368,178.5457,-23.42572,-12.87859,-2.355092,0,1253.383,-,-
+3528,1182.348,-114.9148,-99.70683,1391.362,-177.3231,-14.2282,172.2717,-21.95529,-12.34522,-1.882981,0,1152.984,-,-
+3529,1151.286,-86.27202,-76.0862,1393.244,-174.3722,-10.40116,167.9729,-21.02273,-9.173134,-1.228027,0,1627.638,-,-
+3530,1131.402,-59.55348,-53.26212,1404.579,-172.4832,-7.055904,166.4148,-20.43583,-6.310503,-0.7454016,0,2086.361,-,-
+3531,1119.781,71.80382,74.42468,1414.936,-171.3792,8.419945,165.9199,-20.09647,8.727276,-0.3073314,0,4241.957,-,-
+3532,1118.289,140.1971,140.3684,1464.462,-171.2374,16.41805,171.4987,-20.05309,16.43811,-0.0200571,0,5441.947,-,-
+3533,1118.921,117.1214,116.6159,1490.044,-171.2975,13.72348,174.5931,-20.07146,13.66425,0.05922854,0,5030.69,-,-
+3534,1120.828,167.1949,166.0204,1481.346,-171.4787,19.62415,173.8698,-20.12694,19.48628,0.1378651,0,5938.416,-,-
+3535,1124.819,160.6106,158.6333,1499.976,-171.8578,18.91844,176.6833,-20.24326,18.68554,0.2329017,0,5838.864,-,-
+3536,1130.757,208.976,205.7407,1497.413,-172.4219,24.74539,177.3125,-20.41693,24.36229,0.3830955,0,6718.821,-,-
+3537,1141.048,252.3706,246.8414,1515.159,-173.3996,30.15582,181.0468,-20.71956,29.49514,0.6606852,0,7468.788,-,-
+3538,1158.46,358.0854,350.1668,1530.717,-175.0537,43.44065,185.6968,-21.2364,42.48001,0.9606428,0,9562.476,-,-
+3539,1180.763,356.9414,348.05,1569.246,-177.1725,44.13552,194.036,-21.90724,43.03611,1.099411,0,9703.033,-,-
+3540,1203.146,365.1349,356.1491,1568.863,-179.3775,46.00451,197.666,-22.60034,44.87235,1.132154,0,10016.18,-,-
+3541,1225.918,369.3595,360.3166,1571.882,-182.1102,47.41757,201.7948,-23.37891,46.25666,1.160913,0,10237.35,-,-
+3542,1248.597,368.1901,358.8986,1573.494,-184.8316,48.14188,205.7387,-24.16725,46.92699,1.214892,0,10426.02,-,-
+3543,1272.592,401.5152,391.3723,1572.968,-187.711,53.50814,209.6224,-25.01541,52.15644,1.351696,0,11433.31,-,-
+3544,1299.516,433.8535,422.6041,1584.949,-190.9419,59.04095,215.6877,-25.98433,57.51007,1.530883,0,12358.04,-,-
+3545,1329.074,461.8117,449.9049,1596.577,-194.4889,64.27509,222.212,-27.06902,62.6179,1.657195,0,13222.59,-,-
+3546,1359.343,453.6697,443.3816,1606.823,-198.1212,64.57992,228.7314,-28.20256,63.1154,1.46452,0,13426.02,-,-
+3547,1380.947,288.926,283.1736,1604.965,-200.7136,41.7823,232.0979,-29.02569,40.95043,0.8318635,0,9982.018,-,-
+3548,1388.403,166.4579,164.9756,1545.265,-201.6084,24.20186,224.6711,-29.31249,23.98634,0.2155161,0,7427.246,-,-
+3549,1388.417,135.1719,135.8154,1499.921,-201.61,19.65328,218.0806,-29.31303,19.74684,-0.09355889,0,6827.111,-,-
+3550,1385.165,97.839,99.59122,1488.308,-201.2198,14.19195,215.8853,-29.18777,14.44612,-0.2541683,0,6090.619,-,-
+3551,1379.603,86.20641,88.78687,1474.338,-200.5524,12.45438,213,-28.97414,12.82719,-0.372805,0,5832.797,-,-
+3552,1372.187,57.898,61.1865,1470.002,-199.6624,8.319658,211.2321,-28.69051,8.792199,-0.4725408,0,5243.498,-,-
+3553,1363.065,48.46526,52.92795,1459.357,-198.5678,6.917923,208.3084,-28.34353,7.554926,-0.6370031,0,5005.701,-,-
+3554,1349.723,-29.16136,-22.47967,1455.854,-196.9668,-4.121744,205.7743,-27.83981,-3.177336,-0.9444082,0,3516.115,-,-
+3555,1329.396,-89.36394,-79.66654,1426.397,-194.5275,-12.44071,198.5745,-27.08096,-11.0907,-1.350013,0,2230.711,-,-
+3556,1300.833,-121.6571,-108.2184,1403.253,-191.1,-16.57248,191.1552,-26.03219,-14.74182,-1.830661,0,1473.01,-,-
+3557,1261.575,-119.5914,-103.0364,1390.459,-186.389,-15.79944,183.6961,-24.62419,-13.61232,-2.187118,0,1405.132,-,-
+3558,1217.468,-118.0163,-100.8305,1391.028,-181.0962,-15.04624,177.3463,-23.08848,-12.85518,-2.191061,0,1213.919,-,-
+3559,1175.268,-114.5064,-99.34595,1391.655,-176.6505,-14.09274,171.2762,-21.74104,-12.22688,-1.86586,0,1148.102,-,-
+3560,1141.546,-111.6094,-101.9161,1393.292,-173.4469,-13.34206,166.5574,-20.73426,-12.1833,-1.158756,0,1142.439,-,-
+3561,1126.955,94.01691,95.4262,1395.104,-172.0607,11.09535,164.6425,-20.30565,11.26167,-0.1663168,0,4653.483,-,-
+3562,1134.532,308.3001,302.1418,1472.521,-172.7805,36.62849,174.9471,-20.52769,35.89684,0.7316514,0,8454.168,-,-
+3563,1157.695,419.5702,408.6841,1550.799,-174.981,50.86597,188.0089,-21.21357,49.54621,1.319761,0,10652.47,-,-
+3564,1189.052,483.4936,470.5951,1590.69,-177.9599,60.20328,198.0683,-22.15908,58.5972,1.606082,0,12192.96,-,-
+3565,1222.466,469.6078,456.012,1613.854,-181.6959,60.11747,206.5997,-23.26004,58.37698,1.740488,0,12273.81,-,-
+3566,1257.343,522.2718,506.6866,1608.718,-185.8812,68.76682,211.8177,-24.47472,66.71474,2.052079,0,13686.84,-,-
+3567,1300.538,648.7843,629.8095,1626.847,-191.0646,88.35925,221.5636,-26.02147,85.77502,2.584218,0,17182.07,-,-
+3568,1352.393,709.6602,689.4266,1671.466,-197.2872,100.5037,236.7167,-27.94025,97.63816,2.865525,0,19380.37,-,-
+3569,1402.304,620.8622,602.4965,1693.359,-203.3686,91.17295,248.6679,-29.86447,88.47597,2.696981,0,18050.04,-,-
+3570,1444.938,571.5068,555.2704,1648.577,-210.1901,86.47673,249.452,-31.80461,84.01994,2.45679,0,17354.59,-,-
+3571,1484.008,556.4361,541.2892,1618.834,-216.4413,86.47293,251.5748,-33.63605,84.11903,2.353907,0,17464.74,-,-
+3572,1521.116,540.1429,525.5817,1601.502,-222.3786,86.03984,255.1047,-35.42288,83.72038,2.319461,0,17517.01,-,-
+3573,1557.216,544.48,530.4588,1583.863,-228.1545,88.78905,258.2826,-37.20545,86.50259,2.286454,0,18101.72,-,-
+3574,1591.624,514.2252,500.9753,1573.482,-233.6599,85.70821,262.2593,-38.94513,83.49979,2.208426,0,17749.63,-,-
+3575,1623.855,507.0176,495.9103,1563.64,-238.459,86.21819,265.8964,-40.54987,84.3294,1.888791,0,17964.12,-,-
+3576,1647.595,345.6465,339.4112,1565.015,-241.9013,59.63637,270.021,-41.73661,58.56056,1.075808,0,13934.88,-,-
+3577,1655.346,181.823,181.823,1519.608,-243.0252,31.51854,263.4201,-42.12778,31.51854,0,0,9764.475,-,-
+3578,1647.595,27.07122,30.67167,1469.237,-241.9013,4.670753,253.4958,-41.73661,5.291959,-0.6212059,0,6098.258,-,-
+3579,1637.236,125.5451,127.447,1418.235,-240.3992,21.52483,243.1578,-41.21667,21.8509,-0.3260728,0,8232.071,-,-
+3580,1638.069,254.2513,252.2331,1448.779,-240.52,43.6138,248.521,-41.25837,43.26761,0.3461915,0,11472.37,-,-
+3581,1647.353,301.0729,297.107,1490.363,-241.8662,51.93821,257.1031,-41.72443,51.25405,0.6841547,0,12780.33,-,-
+3582,1657.993,286.2585,281.9786,1506.883,-243.409,49.70153,261.632,-42.2618,48.95843,0.7430952,0,12509.6,-,-
+3583,1668.862,308.9958,304.614,1505.235,-244.985,54.00098,263.0591,-42.81427,53.2352,0.7657818,0,13211.8,-,-
+3584,1680.014,294.6933,290.6457,1514.448,-246.602,51.84558,266.4379,-43.38486,51.13348,0.7121024,0,12959.7,-,-
+3585,1689.217,271.8562,268.656,1512.867,-247.9365,48.08984,267.6177,-43.85857,47.52374,0.566095,0,12466.47,-,-
+3586,1696.109,249.0626,246.8831,1508.553,-248.9358,44.23753,267.9433,-44.21501,43.85042,0.3871089,0,11950.01,-,-
+3587,1700.18,215.1628,214.0141,1503.652,-249.5261,38.30811,267.714,-44.42624,38.1036,0.2045052,0,11116.78,-,-
+3588,1701.886,201.549,200.6105,1495.135,-249.7735,35.92029,266.4645,-44.5149,35.75303,0.1672577,0,10782.91,-,-
+3589,1704.895,242.9504,240.6316,1492.403,-250.2098,43.37543,266.448,-44.6715,42.96144,0.4139902,0,11884.65,-,-
+3590,1713.521,317.845,314.0899,1505.796,-251.4605,57.03395,270.1993,-45.12195,56.36014,0.6738118,0,13969.87,-,-
+3591,1723.759,277.7304,275.4188,1527.797,-252.9451,50.13357,275.7852,-45.65953,49.71629,0.4172759,0,12985.15,-,-
+3592,1725.169,138.7892,139.9785,1518.407,-253.1495,25.07355,274.3143,-45.73381,25.28842,-0.2148716,0,9345.382,-,-
+3593,1717.766,95.81977,99.05816,1480.618,-252.0761,17.23645,266.3396,-45.34446,17.81898,-0.5825342,0,8114.056,-,-
+3594,1708.886,104.6162,108.2298,1465.97,-250.7885,18.7215,262.3414,-44.87963,19.36817,-0.6466699,0,8256.558,-,-
+3595,1699.602,83.79646,88.45713,1464.753,-249.4423,14.91426,260.6996,-44.39622,15.74377,-0.8295145,0,7675.273,-,-
+3596,1685.428,1.312182,7.543077,1453.649,-247.3871,0.231597,256.5655,-43.66322,1.331335,-1.099738,0,5750.83,-,-
+3597,1668.258,17.5848,24.41733,1423.044,-244.8974,3.072057,248.6052,-42.78347,4.265698,-1.193642,0,6010.689,-,-
+3598,1651.088,-4.285322,2.790507,1420.814,-242.4078,-0.7409388,245.661,-41.91267,0.4824829,-1.223422,0,5420.54,-,-
+3599,1632.682,-11.40194,-4.524424,1406.669,-239.7389,-1.949435,240.5039,-40.98913,-0.7735591,-1.175876,0,5152.357,-,-
+3600,1616.546,37.07648,43.32279,1397.971,-237.3992,6.276467,236.6546,-40.18795,7.333869,-1.057402,0,6135.082,-,-
+3601,1601.297,2.521243,8.380193,1408.077,-235.1881,0.4227808,236.1167,-39.43808,1.405253,-0.9824722,0,5273.006,-,-
+3602,1587.109,55.92529,60.54668,1399.054,-232.9375,9.294877,232.525,-38.71459,10.06296,-0.7680828,0,6357.776,-,-
+3603,1578.108,105.4141,108.5919,1419.021,-231.4973,17.42064,234.5062,-38.25703,17.9458,-0.525158,0,7392.699,-,-
+3604,1571.148,97.04227,99.1216,1437.339,-230.3837,15.96639,236.4857,-37.90508,16.3085,-0.3421143,0,7152.901,-,-
+3605,1567.669,176.5867,176.5223,1435.295,-229.827,28.98952,235.6265,-37.72976,28.97894,0.01057481,0,8900.197,-,-
+3606,1571.471,246.125,244.1695,1460.862,-230.4353,40.50333,240.4054,-37.92138,40.18153,0.3217964,0,10559.41,-,-
+3607,1577.49,223.943,221.9474,1482.348,-231.3984,36.99412,244.8755,-38.22571,36.66446,0.3296575,0,10049.76,-,-
+3608,1581.507,207.0458,205.6189,1473.938,-232.0411,34.2899,244.1064,-38.42949,34.05357,0.2363318,0,9689.248,-,-
+3609,1584.664,205.8435,205.766,1467.491,-232.5462,34.15882,243.5237,-38.59003,34.14597,0.01285335,0,9685.802,-,-
+3610,1581.897,85.48141,87.68546,1468.107,-232.1035,14.1605,243.2005,-38.44931,14.52561,-0.365113,0,6977.109,-,-
+3611,1573.567,89.38932,93.55121,1430.05,-230.7707,14.72989,235.6488,-38.02722,15.4157,-0.6858099,0,7000.698,-,-
+3612,1560.951,-7.154557,-0.3813766,1434.517,-228.7522,-1.169501,234.4896,-37.39238,-0.06234074,-1.10716,0,4880.933,-,-
+3613,1539.428,-87.31664,-78.15157,1406.233,-225.3085,-14.07619,226.6968,-36.32164,-12.5987,-1.477487,0,3058.721,-,-
+3614,1514.842,-69.85341,-59.59141,1383.012,-221.3747,-11.08112,219.3926,-35.11753,-9.453217,-1.627901,0,3342.794,-,-
+3615,1487.81,-129.095,-118.3591,1394.422,-217.0496,-20.11341,217.2553,-33.817,-18.44072,-1.672685,0,1949.598,-,-
+3616,1460.886,-73.55389,-63.59122,1377.735,-212.7418,-11.25254,210.7709,-32.54601,-9.728415,-1.524126,0,3020.688,-,-
+3617,1437.804,-73.52991,-64.62645,1402.564,-209.0486,-11.07114,211.1791,-31.47572,-9.730577,-1.340563,0,2916.981,-,-
+3618,1416.16,-51.47672,-42.9718,1406.573,-205.5856,-7.633994,208.5946,-30.48833,-6.372715,-1.261279,0,3287.048,-,-
+3619,1395.067,-67.83811,-59.3602,1417.904,-202.4081,-9.910542,207.1432,-29.57001,-8.671995,-1.238547,0,2854.473,-,-
+3620,1373.544,-61.73583,-54.91593,1411.662,-199.8253,-8.879909,203.0495,-28.7423,-7.898953,-0.9809556,0,2929.129,-,-
+3621,1360.901,102.9906,105.9238,1414.134,-198.3081,14.67752,201.5328,-28.26153,15.09554,-0.4180205,0,6038.288,-,-
+3622,1358.859,148.0191,147.4294,1476.18,-198.0631,21.06302,210.0594,-28.18425,20.97911,0.08391146,0,6889.438,-,-
+3623,1363.857,250.5945,246.448,1492.804,-198.6628,35.7906,213.2064,-28.37358,35.19839,0.5922076,0,8927.172,-,-
+3624,1379.617,372.5009,364.0856,1530.399,-200.554,53.81638,221.1016,-28.97467,52.60059,1.215789,0,11882.1,-,-
+3625,1405.99,473.485,462.6443,1572.917,-203.9584,69.71353,231.5883,-30.0298,68.11739,1.596138,0,14549.98,-,-
+3626,1434.069,414.4984,404.4182,1601.369,-208.451,62.24745,240.4861,-31.30421,60.73365,1.513796,0,13431.24,-,-
+3627,1456.748,369.717,361.1209,1574.071,-212.0797,56.40044,240.125,-32.35282,55.0891,1.311336,0,12540.45,-,-
+3628,1477.304,375.8896,367.3681,1552.391,-215.3686,58.15121,240.1594,-33.31815,56.83291,1.318297,0,12917.35,-,-
+3629,1499.552,409.1421,400.0797,1547.913,-218.9283,64.24869,243.073,-34.37891,62.82561,1.42308,0,13995.17,-,-
+3630,1522.835,402.3929,393.6349,1552.282,-222.6536,64.16997,247.5438,-35.50677,62.77331,1.396659,0,14079.41,-,-
+3631,1543.606,363.722,355.6109,1543.801,-225.9769,58.79422,249.5494,-36.52828,57.48309,1.311125,0,13304.03,-,-
+3632,1563.611,391.9264,383.6054,1524.714,-229.1777,64.17441,249.6582,-37.52578,62.81192,1.362488,0,14244.52,-,-
+3633,1585.403,404.8297,396.6182,1527.099,-232.6645,67.21104,253.5335,-38.62766,65.84775,1.36329,0,14799.55,-,-
+3634,1604.911,350.3068,343.5516,1527.617,-235.7121,58.87462,256.7404,-39.61516,57.73931,1.135307,0,13605.44,-,-
+3635,1619.407,305.3885,301.3467,1513.24,-237.814,51.78897,256.6212,-40.32943,51.10355,0.6854222,0,12597.32,-,-
+3636,1625.279,174.6035,174.5208,1500.899,-238.6655,29.7173,255.4512,-40.62058,29.70323,0.01407183,0,9254.331,-,-
+3637,1619.824,72.06795,75.8675,1458.638,-237.8745,12.22471,247.4252,-40.35007,12.86922,-0.6445092,0,6935.059,-,-
+3638,1606.134,1.571562,7.953544,1421.297,-235.8894,0.2643273,239.0535,-39.67518,1.337738,-1.073411,0,5280.85,-,-
+3639,1587.701,-26.97004,-20.26425,1398.604,-233.0322,-4.484138,232.537,-38.74478,-3.369208,-1.11493,0,4567.564,-,-
+3640,1572.465,62.5693,67.18871,1392.339,-230.5944,10.30317,229.2738,-37.97155,11.06384,-0.7606702,0,6394.203,-,-
+3641,1564.538,117.9047,119.6649,1424.459,-229.3261,19.31728,233.3805,-37.57233,19.60567,-0.2883936,0,7567.7,-,-
+3642,1563.638,206.8631,205.9632,1443.276,-229.1821,33.87255,236.3275,-37.52714,33.72519,0.1473629,0,9548.724,-,-
+3643,1569.052,248.8639,245.9949,1471.591,-230.0483,40.89102,241.7982,-37.79941,40.41961,0.471409,0,10604.61,-,-
+3644,1578.041,282.5068,279.0052,1482.947,-231.4866,46.68484,245.0601,-38.25363,46.10619,0.5786466,0,11569.17,-,-
+3645,1586.653,244.0705,240.8075,1491.636,-232.8645,40.55326,247.8412,-38.69134,40.0111,0.5421612,0,10666.86,-,-
+3646,1594.445,268.0766,264.8441,1476.764,-234.1112,44.76072,246.5751,-39.08952,44.22099,0.5397311,0,11369.7,-,-
+3647,1602.896,259.2057,256.0659,1483.678,-235.4199,43.50893,249.0425,-39.51638,42.9819,0.5270324,0,11229.69,-,-
+3648,1610.231,247.4545,244.7369,1482.624,-236.4835,41.72652,250.0046,-39.87655,41.26826,0.458256,0,11003.3,-,-
+3649,1616.559,240.5903,237.8252,1480.482,-237.401,40.7285,250.6244,-40.18859,40.2604,0.4680971,0,10892.59,-,-
+3650,1624.123,274.6999,271.2142,1480.188,-238.4978,46.72034,251.747,-40.56318,46.1275,0.5928353,0,11853.88,-,-
+3651,1634.065,291.6764,287.5399,1493.188,-239.9394,49.91134,255.5126,-41.05817,49.20351,0.7078277,0,12397.42,-,-
+3652,1644.907,296.3341,291.9576,1500.94,-241.5115,51.0448,258.5434,-41.60138,50.29093,0.7538722,0,12632.07,-,-
+3653,1656.059,301.4797,296.6948,1504.995,-243.1285,52.28323,260.9993,-42.16386,51.45343,0.8298051,0,12882.6,-,-
+3654,1668.943,336.2665,329.7738,1509.526,-244.9967,58.76974,263.8219,-42.8184,57.63499,1.134752,0,13927.21,-,-
+3655,1688.625,444.9856,436.5875,1523.601,-247.8506,78.68787,269.4221,-43.82802,77.20282,1.485044,0,17127.48,-,-
+3656,1711.116,399.4919,391.6021,1556.973,-251.1118,71.58401,278.9903,-44.99614,70.17025,1.413759,0,16202.87,-,-
+3657,1728.34,344.0036,337.3412,1548.984,-253.6093,62.26167,280.3528,-45.90108,61.05583,1.205834,0,14878.76,-,-
+3658,1744.61,384.2818,377.4079,1539.22,-255.9684,70.20641,281.208,-46.76419,68.95058,1.255824,0,16196.98,-,-
+3659,1762.868,388.8489,381.937,1552.837,-258.6159,71.78427,286.6647,-47.74233,70.50829,1.275978,0,16550.14,-,-
+3660,1779.366,353.7095,347.4409,1557.746,-261.0081,65.90839,290.2622,-48.63488,64.74032,1.168065,0,15780.99,-,-
+3661,1794.387,362.7505,357.1585,1554.249,-263.1861,68.16363,292.0555,-49.45471,67.11285,1.050775,0,16217.97,-,-
+3662,1807.486,318.1164,313.3665,1542.502,-265.3849,60.21291,291.9641,-50.23191,59.31385,0.8990608,0,15164.57,-,-
+3663,1818.275,318.9689,314.7214,1511.93,-267.3809,60.73465,287.8856,-50.91181,59.92589,0.8087617,0,15352.46,-,-
+3664,1828.835,315.1934,312.0383,1490.779,-269.3345,60.3643,285.5067,-51.58163,59.76006,0.6042454,0,15408.6,-,-
+3665,1834.155,211.8795,212.7872,1479.463,-270.3187,40.69618,284.1638,-51.92072,40.87052,-0.1743392,0,12626.25,-,-
+3666,1824.254,2.227996,8.222852,1479.213,-268.487,0.4256262,282.5821,-51.29053,1.570856,-1.14523,0,6798.412,-,-
+3667,1803.939,-6.751727,0.8850821,1478.094,-264.7287,-1.275456,279.2238,-50.00938,0.1671991,-1.442655,0,6298.622,-,-
+3668,1785.896,40.7566,47.69301,1476.674,-261.9549,7.622242,276.1655,-48.99044,8.91948,-1.297238,0,7354.251,-,-
+3669,1769.089,13.30386,20.33353,1478.621,-259.5179,2.464655,273.9273,-48.07792,3.76696,-1.302305,0,6520.21,-,-
+3670,1750.548,1.048824,7.995344,1463.369,-256.8295,0.1922673,268.2603,-47.0812,1.465682,-1.273415,0,6135.677,-,-
+3671,1734.198,52.89035,58.87212,1452.553,-254.4587,9.605142,263.7906,-46.21092,10.69146,-1.086318,0,7193.643,-,-
+3672,1720.507,51.29559,56.64284,1459.538,-252.4735,9.241982,262.9666,-45.48842,10.2054,-0.9634188,0,7075.934,-,-
+3673,1707.327,60.21539,65.20283,1453.517,-250.5624,10.76596,259.8756,-44.79827,11.65767,-0.8917075,0,7195.766,-,-
+3674,1695.45,74.5859,79.04375,1451.018,-248.8402,13.24251,257.6241,-44.18086,14.03399,-0.7914803,0,7444.965,-,-
+3675,1684.931,85.06755,89.07285,1450.816,-247.315,15.00979,255.9901,-43.63763,15.71651,-0.7067185,0,7615.593,-,-
+3676,1675.325,90.64217,94.4224,1450.103,-245.9221,15.90223,254.4055,-43.14448,16.56543,-0.6632032,0,7682.27,-,-
+3677,1665.933,86.54031,90.71308,1448.221,-244.5603,15.09749,252.6511,-42.66503,15.82545,-0.7279644,0,7534.447,-,-
+3678,1654.339,42.41071,47.64769,1442.808,-242.8792,7.347314,249.9549,-42.07686,8.25458,-0.9072656,0,6480.792,-,-
+3679,1639.587,17.84001,24.22909,1423.917,-240.7401,3.063079,244.4825,-41.3344,4.160066,-1.096987,0,5844.354,-,-
+3680,1622.202,-14.3512,-8.145267,1409.574,-238.2193,-2.437934,239.4536,-40.46788,-1.38369,-1.054244,0,5024.104,-,-
+3681,1608.431,88.11906,91.9995,1393.824,-236.2225,14.84229,234.768,-39.78802,15.49589,-0.6536004,0,7224.641,-,-
+3682,1602.748,147.8555,149.2983,1425.295,-235.3985,24.81598,239.2206,-39.50913,25.05814,-0.2421569,0,8522.667,-,-
+3683,1601.189,173.2501,173.1698,1444.328,-235.1724,29.0499,242.1794,-39.43279,29.03644,0.01345818,0,9079.61,-,-
+3684,1603.151,220.9378,219.4471,1453.108,-235.4569,37.09138,243.9501,-39.52888,36.84112,0.2502658,0,10243.35,-,-
+3685,1608.673,247.2396,245.0637,1469.979,-236.2576,41.64994,247.6324,-39.79992,41.2834,0.3665422,0,10981.32,-,-
+3686,1614.087,220.8268,218.7662,1479.835,-237.0426,37.32565,250.1319,-40.06656,36.97735,0.3482987,0,10355.75,-,-
+3687,1619.031,238.848,237.0869,1472.722,-237.7595,40.49537,249.6919,-40.31082,40.19678,0.2985843,0,10873.61,-,-
+3688,1622.941,200.2437,199.3545,1479.503,-238.3265,34.03222,251.4474,-40.50453,33.88109,0.1511338,0,9917.098,-,-
+3689,1623.505,170.7083,171.0715,1467.614,-238.4082,29.02263,249.5135,-40.53251,29.08438,-0.06174672,0,9156.824,-,-
+3690,1621.114,138.5894,140.2502,1457.674,-238.0615,23.52731,247.4587,-40.41396,23.80924,-0.2819302,0,8426.229,-,-
+3691,1615.149,96.06901,98.78347,1445.702,-237.1966,16.24892,244.5232,-40.11896,16.70804,-0.4591193,0,7442.233,-,-
+3692,1607.464,101.6674,104.1772,1429.499,-236.0823,17.11401,240.6321,-39.74049,17.53648,-0.4224746,0,7520.967,-,-
+3693,1602.546,150.8686,152.2145,1429.665,-235.3692,25.3185,239.9238,-39.49924,25.54437,-0.2258667,0,8588.646,-,-
+3694,1600.706,164.0762,164.5442,1445.184,-235.1024,27.50336,242.2497,-39.40916,27.58181,-0.07844567,0,8872.136,-,-
+3695,1600.195,178.7095,178.3885,1449.334,-235.0283,29.94671,242.8678,-39.38416,29.89292,0.05378851,0,9195.391,-,-
+3696,1602.318,218.9494,217.196,1454.65,-235.3361,36.73847,244.082,-39.48807,36.44426,0.2942126,0,10183.18,-,-
+3697,1608.995,273.0013,270.2556,1469.371,-236.3043,45.99896,247.5795,-39.81575,45.53632,0.4626374,0,11650.53,-,-
+3698,1616.116,229.92,227.8667,1488.471,-237.3368,38.91149,251.9078,-40.16671,38.564,0.3474909,0,10612.14,-,-
+3699,1619.327,193.9934,193.7852,1475.765,-237.8024,32.89653,250.2536,-40.32547,32.86123,0.03529998,0,9711.489,-,-
+3700,1617.164,118.6582,120.9918,1463.949,-237.4888,20.09464,247.9183,-40.21849,20.48985,-0.3952073,0,7958.061,-,-
+3701,1607.571,39.26006,44.26287,1436.951,-236.0978,6.609212,241.9026,-39.74575,7.451408,-0.8421958,0,6129.925,-,-
+3702,1591.973,-8.600863,-1.764438,1410.232,-233.7157,-1.433859,235.1012,-38.96298,-0.2941513,-1.139707,0,4989.886,-,-
+3703,1573.177,-29.08019,-21.23909,1398.4,-230.7083,-4.790749,230.3762,-38.00751,-3.498985,-1.291764,0,4469.281,-,-
+3704,1552.541,-46.99645,-38.76603,1395.839,-227.4066,-7.640764,226.9378,-36.97215,-6.302647,-1.338117,0,3997.842,-,-
+3705,1531.81,-35.74076,-27.61269,1393.923,-224.0896,-5.733204,223.6003,-35.94639,-4.429373,-1.303831,0,4142.996,-,-
+3706,1511.698,-40.13891,-32.46544,1401.999,-220.8717,-6.354176,221.943,-34.96501,-5.13943,-1.214746,0,3958.897,-,-
+3707,1493.265,-9.167228,-2.286574,1404.171,-217.9224,-1.433519,219.5763,-34.07747,-0.3575616,-1.075958,0,4532.638,-,-
+3708,1477.143,-1.290796,5.101101,1418.612,-215.3428,-0.1996681,219.4395,-33.31054,0.7890692,-0.9887373,0,4626.92,-,-
+3709,1461.141,-9.945925,-3.639185,1424.757,-212.7826,-1.521829,218.0025,-32.55793,-0.5568328,-0.9649963,0,4371.081,-,-
+3710,1445.449,1.289643,7.412385,1424.758,-210.2718,0.1952095,215.6614,-31.82823,1.121991,-0.9267815,0,4535.944,-,-
+3711,1430.375,-2.357589,4.544021,1431.949,-207.86,-0.3531398,214.4895,-31.13504,0.6806421,-1.033782,0,4393.134,-,-
+3712,1410.706,-86.96673,-78.1189,1434.498,-204.713,-12.84749,211.9166,-30.242,-11.54041,-1.307079,0,2509.615,-,-
+3713,1385.824,-102.4809,-92.51633,1404.302,-201.2989,-14.87234,203.7967,-29.21313,-13.42626,-1.446084,0,2096.11,-,-
+3714,1360.619,-98.96343,-88.89951,1398.358,-198.2743,-14.10068,199.2432,-28.25085,-12.66673,-1.433945,0,2106.564,-,-
+3715,1335.24,-110.795,-100.6487,1399.683,-195.2288,-15.49202,195.7121,-27.29806,-14.07331,-1.418707,0,1790.995,-,-
+3716,1309.62,-110.23,-98.16259,1395.139,-192.1544,-15.11728,191.3337,-26.35265,-13.46232,-1.654961,0,1737.766,-,-
+3717,1274.366,-118.3404,-104.0699,1395.02,-187.9239,-15.79268,186.1672,-25.07869,-13.88826,-1.904416,0,1475.994,-,-
+3718,1237.862,-119.0226,-106.6074,1391.814,-183.5434,-15.42873,180.4189,-23.79248,-13.81937,-1.609364,0,1297.195,-,-
+3719,1212.241,-100.8143,-90.12485,1391.923,-180.4689,-12.79793,176.6985,-22.90973,-11.44095,-1.356981,0,1505.613,-,-
+3720,1184.081,-114.7828,-102.0634,1398.795,-177.4877,-14.23269,173.446,-22.00788,-12.65552,-1.577167,0,1158.464,-,-
+3721,1148.102,-112.4334,-98.76945,1393.108,-174.0697,-13.51775,167.4919,-20.92822,-11.87495,-1.642798,0,1138.722,-,-
+3722,1115.508,-112.8815,-100.7876,1394.105,-170.9733,-13.18633,162.8535,-19.97237,-11.77358,-1.412755,0,1073.237,-,-
+3723,1087.442,-110.4278,-98.33437,1394.077,-168.307,-12.57515,158.7528,-19.16624,-11.19799,-1.377163,0,1069.309,-,-
+3724,1054.593,-105.7459,-94.97429,1394.8,-165.1863,-11.67824,154.0371,-18.24264,-10.48865,-1.189586,0,1092.137,-,-
+3725,1033.607,49.34717,52.28056,1397.04,-163.1927,5.341292,151.2143,-17.66382,5.6588,-0.3175074,0,3703.659,-,-
+3726,1040.043,311.8651,305.6581,1455.891,-163.8041,33.96618,158.5655,-17.8404,33.29015,0.676032,0,7959.419,-,-
+3727,1064.535,426.1054,414.5442,1551.759,-166.1308,47.50132,172.9867,-18.51991,46.21249,1.288826,0,10078.79,-,-
+3728,1097.908,502.3276,487.6328,1592.432,-169.3013,57.75394,183.0862,-19.46501,56.06443,1.689509,0,11525.02,-,-
+3729,1138.16,574.9083,558.2505,1619.211,-173.1252,68.52207,192.9902,-20.63442,66.53667,1.985403,0,13435.54,-,-
+3730,1181.515,574.2593,557.3391,1645.18,-177.2439,71.05193,203.5547,-21.93003,68.95844,2.093501,0,13919.21,-,-
+3731,1223.258,550.4189,534.4814,1645.499,-181.791,70.50826,210.7872,-23.28729,68.46669,2.04157,0,13895.82,-,-
+3732,1261.723,515.6159,500.1882,1637.615,-186.4068,68.12695,216.3736,-24.62943,66.08852,2.03843,0,13599.3,-,-
+3733,1300.779,570.3049,554.3692,1625.051,-191.0935,77.68538,221.3599,-26.03023,75.51466,2.17072,0,15382.53,-,-
+3734,1341.756,562.2957,547.0891,1644.833,-196.0107,79.00725,231.1128,-27.54114,76.87059,2.136656,0,15779.97,-,-
+3735,1377.36,468.6797,455.8607,1642.91,-200.2832,67.60086,236.9681,-28.88821,65.75188,1.848974,0,14045.52,-,-
+3736,1406.339,433.7998,422.5543,1607.759,-204.0142,63.88634,236.777,-30.04548,62.23019,1.656152,0,13601.23,-,-
+3737,1433.908,444.9284,434.3634,1587.17,-208.4253,66.80978,238.3271,-31.29683,65.22336,1.586418,0,14159.86,-,-
+3738,1459.475,398.9341,389.0074,1583.793,-212.516,60.97144,242.0604,-32.48006,59.45428,1.517157,0,13324.4,-,-
+3739,1483.82,426.1886,416.0579,1560.412,-216.4112,66.22343,242.465,-33.62711,64.64926,1.574168,0,14237.92,-,-
+3740,1510.354,449.4373,438.8837,1561.657,-220.6567,71.08475,246.9978,-34.89992,69.41556,1.669194,0,15076.49,-,-
+3741,1536.862,432.1302,422.1687,1561.285,-224.8979,69.54695,251.2729,-36.19503,67.94376,1.603194,0,14941.44,-,-
+3742,1560.467,396.2974,387.4786,1548.198,-228.6747,64.75964,252.9938,-37.36813,63.31855,1.441083,0,14324.24,-,-
+3743,1581.225,378.3291,371.1882,1529.948,-231.996,62.64581,253.3372,-38.41517,61.46338,1.182429,0,14079.37,-,-
+3744,1596.42,285.2158,281.4254,1519.677,-234.4272,47.68144,254.0546,-39.19077,47.04777,0.6336734,0,11833.54,-,-
+3745,1600.343,148.5911,149.2464,1488.945,-235.0498,24.90201,249.5286,-39.39141,25.01183,-0.1098213,0,8524.639,-,-
+3746,1593.115,55.71703,58.93102,1446.199,-233.8984,9.295305,241.2703,-39.02142,9.831497,-0.5361918,0,6398.957,-,-
+3747,1584.181,110.8171,113.1341,1417.51,-232.4689,18.38401,235.1579,-38.56545,18.76838,-0.3843703,0,7559.523,-,-
+3748,1581.493,182.361,181.8062,1436.477,-232.0389,30.20146,237.9001,-38.42879,30.10958,0.09187526,0,9134.442,-,-
+3749,1586.962,279.661,275.8957,1458.59,-232.9139,46.47582,242.3977,-38.7071,45.85008,0.6257404,0,11589.96,-,-
+3750,1600.37,348.55,342.4128,1486.585,-235.0536,58.41362,249.1373,-39.39272,57.38508,1.028542,0,13512.17,-,-
+3751,1617.769,366.6299,359.4498,1512.161,-237.5765,62.11165,256.1789,-40.2484,60.89524,1.216412,0,14162.84,-,-
+3752,1636.443,380.0955,372.6724,1521.361,-240.2843,65.13618,260.7125,-41.17701,63.86408,1.272095,0,14738.6,-,-
+3753,1655.078,370.6819,363.7122,1529.015,-242.9863,64.24636,265.0079,-42.11423,63.03837,1.20799,0,14708.97,-,-
+3754,1671.496,339.5312,333.3379,1529.691,-245.3669,59.43108,267.755,-42.94869,58.34701,1.084066,0,14049.37,-,-
+3755,1686.221,340.046,334.3186,1524.224,-247.502,60.04553,269.1484,-43.70407,59.03419,1.011341,0,14246.38,-,-
+3756,1700.287,329.1717,324.2553,1527.641,-249.5416,58.61021,272.002,-44.43179,57.73484,0.8753734,0,14119.55,-,-
+3757,1710.955,273.4832,270.1166,1527.484,-251.0885,49.0002,273.6806,-44.98772,48.39701,0.6031933,0,12737.64,-,-
+3758,1717.229,241.2288,239.1718,1514.877,-251.9982,43.37965,272.417,-45.31628,43.00974,0.3699089,0,11970.15,-,-
+3759,1721.3,229.2821,227.7131,1507.876,-252.5885,41.32904,271.8009,-45.53012,41.04623,0.2828076,0,11704.3,-,-
+3760,1725.115,236.8213,235.2147,1506.031,-253.1417,42.78263,272.07,-45.73096,42.49238,0.2902499,0,11939.36,-,-
+3761,1729.374,239.1327,237.6977,1509.252,-253.7592,43.30684,273.325,-45.9557,43.04696,0.2598785,0,12043.99,-,-
+3762,1732.33,211.3083,210.298,1510.798,-254.1878,38.33327,274.0726,-46.112,38.14999,0.1832793,0,11356.02,-,-
+3763,1734.453,222.8077,221.8399,1504.618,-254.4957,40.46889,273.2859,-46.22443,40.29311,0.1757754,0,11675.6,-,-
+3764,1737.193,224.8589,223.3048,1508.332,-254.893,40.90599,274.3934,-46.36973,40.62325,0.2827351,0,11757.49,-,-
+3765,1742.259,271.7053,269.2497,1510.418,-255.6276,49.57235,275.5742,-46.63898,49.12432,0.448024,0,13047.75,-,-
+3766,1749.527,272.2788,268.9648,1523.811,-256.6814,49.88421,279.1775,-47.02661,49.27705,0.6071599,0,13153.84,-,-
+3767,1758.905,319.7916,313.6708,1526.712,-258.0412,58.90308,281.2082,-47.52916,57.77568,1.127403,0,14587.03,-,-
+3768,1780.186,522.1157,510.4928,1543.048,-261.127,97.33314,287.6559,-48.67946,95.1664,2.16674,0,20704.99,-,-
+3769,1817.066,649.4859,632.9099,1553.43,-267.1572,123.5859,295.5909,-50.8354,120.4318,3.154139,0,25466.67,-,-
+3770,1863.283,724.369,708.9904,1484.444,-275.7073,141.3407,289.6484,-53.79671,138.34,3.000714,0,28978.49,-,-
+3771,1894.667,358.2033,349.4949,1436.847,-281.5134,71.07078,285.0834,-55.85481,69.34295,1.72783,0,17679.57,-,-
+3772,1907.269,346.7072,341.851,1340.084,-283.8448,69.24739,267.6533,-56.69196,68.27747,0.9699196,0,17554.43,-,-
+3773,1919.079,339.6524,337.5718,1313.975,-286.0296,68.25841,264.0637,-57.48207,67.84028,0.4181308,0,17545.6,-,-
+3774,1917.762,76.37498,82.13046,1315.698,-285.7859,15.3382,264.2284,-57.3937,16.49406,-1.155859,0,10059.29,-,-
+3775,1889.951,-146.1531,-130.6933,1319.399,-280.6409,-28.92592,261.1291,-55.54311,-25.8662,-3.059718,0,4077.976,-,-
+3776,1839.596,-142.4074,-124.0192,1375.585,-271.3253,-27.43365,264.9956,-52.26865,-23.89131,-3.542346,0,3489.953,-,-
+3777,1797.746,-129.3457,-34.00852,1454.993,-263.6732,-24.35056,273.9163,-49.63898,-6.402428,-17.94813,0,3261.003,-,-
+3778,1288.914,-189.6697,-66.11059,1369.847,-189.6697,-25.60062,184.8947,-25.60062,-8.92326,-16.67736,0,0,-,-
+3779,1277.128,243.5461,245.0755,1365.718,-188.2554,32.57199,182.6518,-25.17737,32.77653,-0.2045397,0,8194.869,-,-
+3780,1281.275,473.0682,470.4458,1528.534,-188.753,63.47383,205.0908,-25.3259,63.12198,0.3518552,0,12952.18,-,-
+3781,1290.283,439.3254,435.0991,1613.662,-189.834,59.36082,218.035,-25.65001,58.78977,0.5710527,0,12371.66,-,-
+3782,1302.49,605.2437,599.1321,1600.703,-191.2988,82.55309,218.3302,-26.09247,81.71949,0.8335942,0,16237.03,-,-
+3783,1320.926,690.7542,682.8448,1661.299,-193.5111,95.54999,229.8026,-26.76782,94.45592,1.094068,0,18430.71,-,-
+3784,1342.199,728.1373,719.4492,1692.427,-196.0639,102.3432,237.8787,-27.55771,101.122,1.221152,0,19658.86,-,-
+3785,1364.574,746.3558,737.9474,1706.074,-198.7489,106.6526,243.7943,-28.40079,105.4511,1.201537,0,20447.89,-,-
+3786,1384.497,644.9432,638.0998,1713.356,-201.1396,93.50657,248.4095,-29.16207,92.51437,0.9921983,0,18347.82,-,-
+3787,1399.036,547.3275,541.8495,1676.84,-202.8843,80.18715,245.6684,-29.72392,79.38459,0.8025578,0,16244.99,-,-
+3788,1412.044,593.1198,587.8786,1637.072,-204.927,87.70397,242.072,-30.30233,86.92896,0.775011,0,17497.87,-,-
+3789,1425.375,567.7028,562.3939,1649.579,-207.06,84.73811,246.2242,-30.90679,83.94568,0.7924311,0,17016.21,-,-
+3790,1438.726,602.4741,596.9766,1635.958,-209.1962,90.77057,246.4785,-31.51813,89.94231,0.8282598,0,18086.16,-,-
+3791,1452.996,611.7017,606.3824,1643.685,-211.4794,93.07494,250.0987,-32.17815,92.26556,0.8093744,0,18491.8,-,-
+3792,1465.477,540.8876,536.852,1643.045,-213.4763,83.00699,252.1489,-32.76102,82.38766,0.6193255,0,16812.28,-,-
+3793,1473.311,437.2986,434.7147,1615.784,-214.7298,67.46851,249.2909,-33.12953,67.06986,0.3986443,0,14393.43,-,-
+3794,1478.475,441.0747,438.6386,1577.517,-215.556,68.28963,244.2399,-33.37357,67.91246,0.3771752,0,14538.67,-,-
+3795,1485.547,515.6846,511.8402,1576.485,-216.6875,80.22305,245.2477,-33.70924,79.625,0.5980464,0,16407.1,-,-
+3796,1497.763,647.5852,642.2625,1598.311,-218.6421,101.5707,250.6877,-34.293,100.7359,0.8348368,0,19929.59,-,-
+3797,1512.278,614.3507,608.7927,1638.975,-220.9645,97.29188,259.5569,-34.99312,96.41169,0.8801901,0,19326.76,-,-
+3798,1525.707,615.0768,609.8939,1622.85,-223.1131,98.27185,259.2854,-35.64716,97.44376,0.8280872,0,19518.91,-,-
+3799,1538.334,591.4362,586.7546,1618.688,-225.1334,95.27679,260.7608,-36.26764,94.52263,0.7541591,0,19097.64,-,-
+3800,1549.249,556.0414,552.1892,1606.966,-226.8798,90.21047,260.7093,-36.8083,89.58551,0.6249591,0,18303.74,-,-
+3801,1557.71,502.1222,499.1779,1592.307,-228.2336,81.90768,259.7419,-37.23015,81.4274,0.4802845,0,16988.01,-,-
+3802,1564.057,478.4711,476.2186,1572.191,-229.2491,78.36766,257.5055,-37.54818,77.99873,0.3689367,0,16445.19,-,-
+3803,1569.036,452.1865,450.5449,1562.706,-230.0457,74.29834,256.7667,-37.7986,74.02861,0.2697276,0,15814.92,-,-
+3804,1572.312,414.9801,413.7855,1552.971,-230.5699,68.32735,255.7,-37.96383,68.13066,0.1966923,0,14904.72,-,-
+3805,1575.041,432.514,431.6093,1539.677,-231.0065,71.33795,253.9511,-38.10174,71.18874,0.149209,0,15372.87,-,-
+3806,1576.86,380.7299,380.4693,1545.028,-231.2976,62.86932,255.128,-38.1938,62.82628,0.04304253,0,14095.26,-,-
+3807,1576.352,342.2814,342.7792,1528.072,-231.2163,56.50217,252.2468,-38.16808,56.58434,-0.08216896,0,13096.19,-,-
+3808,1574.357,321.6208,322.5819,1515.919,-230.8971,53.02442,249.9239,-38.06715,53.18288,-0.1584629,0,12541.11,-,-
+3809,1571.52,307.5348,308.848,1509.896,-230.4432,50.61076,248.4824,-37.92385,50.82687,-0.2161132,0,12147.06,-,-
+3810,1567.755,282.8503,284.6669,1506.334,-229.8408,46.43692,247.3022,-37.7341,46.73517,-0.2982467,0,11469.27,-,-
+3811,1562.385,241.3313,244.183,1499.654,-228.9816,39.48483,245.3622,-37.46427,39.9514,-0.466572,0,10339.43,-,-
+3812,1553.406,137.1765,141.3254,1488.257,-227.545,22.31481,242.0982,-37.01526,22.98973,-0.6749223,0,7912.523,-,-
+3813,1541.513,120.1604,125.2812,1455.693,-225.6421,19.39712,234.988,-36.42469,20.22375,-0.826627,0,7442.322,-,-
+3814,1527.653,51.46972,57.21429,1453.258,-223.4245,8.233891,232.4856,-35.74243,9.152882,-0.9189916,0,5869.8,-,-
+3815,1512.63,65.03242,70.95859,1432.663,-221.0208,10.30128,226.937,-35.01019,11.24,-0.9387177,0,6062.171,-,-
+3816,1497.871,51.86985,57.45403,1440.799,-218.6594,8.136133,225.9989,-34.29818,9.012048,-0.8759142,0,5743.011,-,-
+3817,1484.578,114.0043,118.0026,1439.03,-216.5325,17.72364,223.7183,-33.66315,18.34523,-0.6215917,0,6875.042,-,-
+3818,1477.82,299.9011,301.4998,1462.769,-215.4512,46.41177,226.3737,-33.34257,46.65918,-0.2474085,0,11024.5,-,-
+3819,1476.558,326.0284,326.2251,1529.54,-215.2493,50.41208,236.5047,-33.28288,50.44249,-0.03040932,0,11620.81,-,-
+3820,1476.832,360.5887,360.0764,1538.705,-215.2931,55.76631,237.9662,-33.29583,55.68708,0.07922806,0,12516.92,-,-
+3821,1479.131,406.0805,404.7134,1550.236,-215.6609,62.89953,240.1226,-33.40464,62.68777,0.2117639,0,13705.74,-,-
+3822,1483.698,451.6107,449.3399,1564.884,-216.3917,70.16788,243.1399,-33.62132,69.81506,0.3528155,0,14846.76,-,-
+3823,1490.535,498.3126,495.4628,1578.692,-217.4856,77.78085,246.4157,-33.94699,77.33602,0.4448243,0,16039.91,-,-
+3824,1498.018,481.6643,478.7845,1592.698,-218.6829,75.55968,249.8498,-34.30524,75.10793,0.451756,0,15719.48,-,-
+3825,1505.011,484.2767,481.4646,1584.658,-219.8018,76.32413,249.749,-34.64172,75.88093,0.4432082,0,15856.13,-,-
+3826,1512.151,492.1292,489.0808,1583.248,-220.9441,77.92969,250.7106,-34.98697,77.44696,0.4827266,0,16130.56,-,-
+3827,1520.327,529.4652,526.3151,1583.194,-222.2523,84.29524,252.0575,-35.38441,83.79372,0.5015231,0,17224.37,-,-
+3828,1527.986,476.9353,474.4817,1593.597,-223.4778,76.31458,254.992,-35.75875,75.92197,0.3926115,0,15934.93,-,-
+3829,1532.671,418.0713,416.408,1574.29,-224.2274,67.10083,252.675,-35.9887,66.83388,0.2669502,0,14559.71,-,-
+3830,1536.348,440.0655,438.6548,1552.976,-224.8157,70.80037,249.852,-36.16969,70.5734,0.2269694,0,15126.45,-,-
+3831,1539.762,410.0481,408.6702,1559.462,-225.3619,66.11759,251.4531,-36.33814,65.89542,0.222174,0,14442.14,-,-
+3832,1543.273,446.2473,444.7466,1548.063,-225.9237,72.11854,250.1843,-36.51179,71.87601,0.242525,0,15348.05,-,-
+3833,1547.303,432.253,431.1076,1559.083,-226.5685,70.03934,252.6232,-36.71161,69.85374,0.1855964,0,15054.8,-,-
+3834,1549.034,358.6563,358.5436,1553.978,-226.8454,58.17924,252.0777,-36.79761,58.16096,0.01828359,0,13230.51,-,-
+3835,1547.87,319.7277,320.2589,1529.474,-226.6592,51.82548,247.9163,-36.73977,51.91158,-0.08610249,0,12212.09,-,-
+3836,1546.364,343.8703,344.5065,1516.636,-226.4183,55.68459,245.5962,-36.66501,55.78762,-0.1030326,0,12820.13,-,-
+3837,1544.672,311.0497,312.0457,1525.419,-226.1475,50.31468,246.7483,-36.5811,50.47578,-0.1610972,0,11953.99,-,-
+3838,1541.356,279.2732,280.5364,1515.252,-225.617,45.07761,244.5774,-36.41693,45.2815,-0.2038883,0,11097.66,-,-
+3839,1538.324,319.9806,320.777,1505.168,-225.1318,51.5466,242.4718,-36.26714,51.6749,-0.128295,0,12117.67,-,-
+3840,1537.356,358.4484,358.3393,1519.326,-224.977,57.70716,244.5986,-36.21939,57.68959,0.01756692,0,13101.64,-,-
+3841,1538.872,417.6211,416.2475,1531.912,-225.2195,67.29977,246.8681,-36.29419,67.07841,0.2213572,0,14614.48,-,-
+3842,1544.251,510.1267,508.852,1550.17,-226.0801,82.49442,250.6836,-36.56023,82.28828,0.2061499,0,17024.45,-,-
+3843,1545.288,250.6188,251.857,1581.873,-226.2461,40.55568,255.9821,-36.61163,40.75605,-0.2003707,0,10410.72,-,-
+3844,1538.011,184.8928,187.8717,1495.621,-225.0818,29.77885,240.8849,-36.2517,30.25864,-0.4797873,0,8859.133,-,-
+3845,1530.314,227.5253,230.6715,1474.932,-223.8502,36.46186,236.3639,-35.87292,36.96606,-0.5041958,0,9767.625,-,-
+3846,1522.196,162.769,166.429,1491.946,-222.5514,25.94603,237.8222,-35.47558,26.52944,-0.5834143,0,8245.104,-,-
+3847,1511.906,136.8545,141.2447,1471.989,-220.905,21.66768,233.0547,-34.97509,22.36277,-0.6950916,0,7588.697,-,-
+3848,1500.12,97.27357,101.7105,1465.778,-219.0192,15.28092,230.2623,-34.40621,15.97792,-0.6970007,0,6624.235,-,-
+3849,1489.616,179.5018,183.0454,1454.121,-217.3386,28.00088,226.8316,-33.90313,28.55366,-0.5527829,0,8369.659,-,-
+3850,1482.329,217.1823,219.3083,1485.213,-216.1726,33.71302,230.5483,-33.55629,34.04303,-0.3300143,0,9164.645,-,-
+3851,1478.945,328.6866,329.2498,1499.391,-215.6312,50.90526,232.2178,-33.39583,50.99249,-0.08723103,0,11714.75,-,-
+3852,1479.502,369.9019,369.5711,1538.882,-215.7203,57.31004,238.4237,-33.42221,57.25879,0.05124676,0,12785.85,-,-
+3853,1480.607,351.1055,350.7979,1553.237,-215.8971,54.43848,240.8275,-33.47459,54.3908,0.04768354,0,12311.74,-,-
+3854,1481.048,344.7836,344.5635,1546.457,-215.9677,53.4742,239.8477,-33.4955,53.44007,0.03413116,0,12153.01,-,-
+3855,1481.713,360.0402,359.7853,1543.991,-216.0741,55.8655,239.5728,-33.52705,55.82595,0.03954748,0,12554.35,-,-
+3856,1482.329,343.3244,343.1046,1549.26,-216.1726,53.29395,240.4903,-33.55629,53.25982,0.03412648,0,12128.85,-,-
+3857,1482.818,355.1651,355.2681,1543.169,-216.2509,55.15015,239.6239,-33.57951,55.16615,-0.0159942,0,12440.04,-,-
+3858,1481.811,284.8412,285.5394,1547.81,-216.0898,44.2002,240.1813,-33.5317,44.30854,-0.1083461,0,10710.08,-,-
+3859,1479.307,295.7025,296.7301,1523.479,-215.6891,45.80807,236.0062,-33.41298,45.96726,-0.1591914,0,10939.7,-,-
+3860,1476.646,276.7202,277.8605,1528.111,-215.2634,42.79036,236.2979,-33.28704,42.96669,-0.1763345,0,10484.7,-,-
+3861,1473.575,278.1359,279.117,1522.158,-214.772,42.91982,234.8878,-33.14198,43.07121,-0.1513968,0,10493.69,-,-
+3862,1471.717,322.228,322.7827,1523.086,-214.4747,49.66108,234.7347,-33.05438,49.74657,-0.08548839,0,11489.22,-,-
+3863,1470.788,313.946,313.8544,1539.13,-214.3261,48.35414,237.0577,-33.01062,48.34003,0.01410665,0,11292.48,-,-
+3864,1472.177,412.8657,411.8394,1535.589,-214.5483,63.64985,236.7356,-33.07606,63.49163,0.1582232,0,13795.05,-,-
+3865,1475.942,408.2316,406.6805,1569.709,-215.1507,63.09639,242.6147,-33.25376,62.85665,0.2397384,0,13723.64,-,-
+3866,1479.972,426.1638,424.4939,1566.82,-215.7955,66.04784,242.8294,-33.44449,65.78904,0.2588075,0,14196.63,-,-
+3867,1484.334,423.8018,422.1617,1571.848,-216.4934,65.87537,244.3266,-33.65154,65.62042,0.2549545,0,14186.08,-,-
+3868,1488.217,409.9491,408.7979,1569.874,-217.1147,63.88882,244.6581,-33.8364,63.7094,0.1794197,0,13894.67,-,-
+3869,1490.124,348.6644,348.2735,1564.579,-217.4198,54.40749,244.1454,-33.92737,54.34649,0.06100067,0,12349.29,-,-
+3870,1490.183,338.3835,338.539,1542.986,-217.4293,52.80528,240.7855,-33.93019,52.82955,-0.0242726,0,12084.21,-,-
+3871,1489.342,313.2205,313.5046,1539.65,-217.2947,48.85098,240.1293,-33.89005,48.89529,-0.04431635,0,11424.98,-,-
+3872,1488.755,347.5145,347.8258,1530.853,-217.2008,54.17822,238.6632,-33.86205,54.22676,-0.04854103,0,12305.1,-,-
+3873,1487.777,297.4779,297.9877,1543.358,-217.0443,46.34695,240.4547,-33.81543,46.42638,-0.07943404,0,11044.98,-,-
+3874,1486.192,323.2925,323.7305,1526.038,-216.7907,50.31519,237.5028,-33.73994,50.38337,-0.06817625,0,11651.97,-,-
+3875,1485.576,334.6892,334.4086,1535.334,-216.6922,52.06732,238.8507,-33.71062,52.02367,0.04364984,0,11940.01,-,-
+3876,1487.601,426.6912,425.4779,1538.605,-217.0162,66.47047,239.6858,-33.80704,66.28146,0.1890156,0,14289.97,-,-
+3877,1491.67,416.2726,414.8037,1569.822,-217.6672,65.02482,245.2176,-34.00121,64.79538,0.2294391,0,14082.95,-,-
+3878,1494.985,399.8885,399.0095,1565.201,-218.1976,62.60432,245.0392,-34.15981,62.46672,0.137606,0,13724.58,-,-
+3879,1496.091,330.9705,331.4717,1559.291,-218.3746,51.85324,244.2945,-34.2128,51.93176,-0.07852168,0,11955.09,-,-
+3880,1492.462,214.6289,216.6141,1536.345,-217.7939,33.5444,240.1157,-34.03907,33.85468,-0.3102767,0,9183.486,-,-
+3881,1486.104,220.2857,223.5394,1496.787,-216.7766,34.28183,232.9366,-33.73574,34.78819,-0.5063547,0,9264.516,-,-
+3882,1476.089,66.60572,70.97753,1501.593,-215.1742,10.29562,232.1097,-33.2607,10.9714,-0.6757756,0,5927.373,-,-
+3883,1464.117,137.1441,141.3923,1448.854,-213.2587,21.0272,222.1411,-32.69725,21.67854,-0.6513374,0,7230.525,-,-
+3884,1454.757,160.6466,164.2785,1476.64,-211.7611,24.47318,224.9539,-32.26007,25.02648,-0.5532958,0,7683.214,-,-
+3885,1445.866,150.0034,153.5704,1487.338,-210.3386,22.71213,225.199,-31.84752,23.2522,-0.5400678,0,7390.901,-,-
+3886,1436.829,149.5263,152.9621,1485.566,-208.8926,22.49838,223.5248,-31.4309,23.01534,-0.5169556,0,7340.945,-,-
+3887,1428.603,176.2046,179.2611,1487.286,-207.5765,26.36073,222.5024,-31.05406,26.81799,-0.4572628,0,7830.604,-,-
+3888,1421.473,187.126,190.1608,1498.835,-206.4357,27.85488,223.111,-30.72925,28.30663,-0.451748,0,8019.749,-,-
+3889,1413.345,132.9532,136.2379,1504.9,-205.1352,19.67776,222.7329,-30.36106,20.16391,-0.4861467,0,6916.96,-,-
+3890,1404.963,171.8904,175.2859,1486.535,-203.7941,25.28979,218.71,-29.98369,25.78935,-0.4995587,0,7626.126,-,-
+3891,1396.278,115.8123,119.3459,1502.36,-202.5534,16.93383,219.6719,-29.61692,17.4505,-0.5166694,0,6504.671,-,-
+3892,1387.201,151.5795,154.8375,1481.214,-201.4641,22.01955,215.172,-29.26616,22.49283,-0.4732822,0,7134.314,-,-
+3893,1379.914,180.0727,183.011,1494.642,-200.5897,26.02127,215.9822,-28.98606,26.44587,-0.4246044,0,7635.558,-,-
+3894,1372.432,139.774,142.8617,1505.395,-199.6918,20.08842,216.3565,-28.69986,20.53219,-0.4437724,0,6815.815,-,-
+3895,1364.392,153.8873,156.9531,1490.224,-198.727,21.98722,212.9214,-28.39388,22.42527,-0.4380462,0,7036.489,-,-
+3896,1357.027,161.4025,164.132,1495.521,-197.8432,22.93651,212.5248,-28.11501,23.32439,-0.3878778,0,7134.785,-,-
+3897,1350.679,190.5341,191.8817,1498.31,-197.0815,26.94968,211.9252,-27.87575,27.14028,-0.1906034,0,7654.127,-,-
+3898,1350.269,391.1473,389.8339,1508.972,-197.0323,55.30816,213.3684,-27.86033,55.12245,0.1857139,0,12005.06,-,-
+3899,1357.262,481.1715,477.819,1583.425,-197.8714,68.38994,225.0555,-28.12389,67.91344,0.4765001,0,14056.12,-,-
+3900,1367.101,508.1451,504.0199,1616.641,-199.0521,72.74731,231.4423,-28.49679,72.15673,0.590574,0,14845.06,-,-
+3901,1377.987,528.6656,524.1806,1626.549,-200.3584,76.28775,234.715,-28.91222,75.64056,0.6471938,0,15494.21,-,-
+3902,1389.636,544.2969,540.0986,1634.088,-201.7563,79.20735,237.7963,-29.36005,78.59641,0.6109449,0,16036.99,-,-
+3903,1399.104,450.0567,446.9603,1640.23,-202.8925,65.93953,240.3164,-29.72655,65.48586,0.4536664,0,13911.47,-,-
+3904,1405.217,418.3304,416.2043,1604.007,-203.8347,61.55898,236.036,-29.99509,61.24613,0.3128505,0,13218.1,-,-
+3905,1409.795,393.0903,391.3585,1591.053,-204.5672,58.03325,234.8925,-30.20095,57.77759,0.2556607,0,12648,-,-
+3906,1413.922,403.1548,401.6412,1580.552,-205.2275,59.69334,234.0253,-30.38713,59.46923,0.2241121,0,12945.94,-,-
+3907,1417.404,370.3403,368.9604,1583.358,-205.7847,54.96968,235.0182,-30.54466,54.76487,0.2048095,0,12176.58,-,-
+3908,1420.857,403.9045,402.673,1570.245,-206.3371,60.09768,233.6396,-30.70127,59.91445,0.1832344,0,13037.27,-,-
+3909,1423.595,344.3069,343.5056,1581.939,-206.7752,51.32875,235.8331,-30.82574,51.20931,0.1194445,0,11627.66,-,-
+3910,1424.886,348.8449,348.411,1559.711,-206.9818,52.05244,232.7303,-30.88452,51.9877,0.06474281,0,11741.43,-,-
+3911,1425.776,328.5426,328.8069,1561.177,-207.1242,49.05368,233.0946,-30.92507,49.09315,-0.03946622,0,11283.3,-,-
+3912,1423.556,227.1668,228.7004,1554.551,-206.769,33.86476,231.7438,-30.82397,34.09339,-0.2286315,0,8944.852,-,-
+3913,1418.059,197.0677,200.7264,1518.557,-205.8894,29.26431,225.5038,-30.57433,29.80763,-0.5433184,0,8215.399,-,-
+3914,1405.119,-59.67498,-53.19081,1510.854,-203.819,-8.780798,222.3127,-29.99069,-7.826694,-0.9541041,0,3063.297,-,-
+3915,1385.391,-67.22467,-59.27852,1414.803,-201.2469,-9.752808,205.2565,-29.19646,-8.599998,-1.15281,0,2842.856,-,-
+3916,1365.175,-87.59612,-79.44192,1411.917,-198.821,-12.52281,201.8488,-28.42361,-11.35708,-1.165731,0,2359.283,-,-
+3917,1344.4,-88.76705,-79.56487,1404.144,-196.328,-12.49709,197.6827,-27.64009,-11.20156,-1.29553,0,2281.564,-,-
+3918,1318.843,-126.0983,-112.9875,1403.567,-193.2612,-17.4153,193.8452,-26.69109,-15.60458,-1.810716,0,1424.647,-,-
+3919,1278.125,-126.3795,-105.3745,1388.707,-188.375,-16.91525,185.8714,-25.21304,-14.10385,-2.811402,0,1315.038,-,-
+3920,1212.223,-119.6951,-93.00123,1387.531,-180.4668,-15.19453,176.1384,-22.90912,-11.80592,-3.388615,0,1156.704,-,-
+3921,1143.825,-123.2543,-97.01049,1389.93,-173.6634,-14.76353,166.4873,-20.80158,-11.62002,-3.143511,0,931.3008,-,-
+3922,1080.622,-117.5345,-90.07819,1388.576,-167.6591,-13.30049,157.1347,-18.97272,-10.19347,-3.10702,0,926.0454,-,-
+3923,1005.036,-110.4228,-82.70737,1390.11,-160.4784,-11.62168,146.3051,-16.88989,-8.704713,-2.91697,0,898.8712,-,-
+3924,942.2039,-118.8601,-93.54499,1301.398,-156.8212,-11.72762,128.4055,-15.47314,-9.229837,-2.497778,0,679.7407,-,-
+3925,877.6898,-111.6806,-83.00792,1195.102,-153.2729,-10.26473,109.8435,-14.08754,-7.629379,-2.635348,0,744.7629,-,-
+3926,796.7341,-69.11642,-99.25804,1068.045,-148.9837,-5.766645,89.11101,-12.43027,-8.281475,2.51483,0,1007.185,-,-
+3927,1005.85,-64.88745,-86.29955,1416.97,-160.5558,-6.834748,149.2528,-16.91172,-9.090136,2.255388,0,1716.037,-,-
+3928,922.6464,-120.6645,-83.03713,1287.932,-155.7456,-11.65852,124.4391,-15.04803,-8.02299,-3.635533,0,628.1695,-,-
+3929,814.1037,-126.9465,-79.49618,1090.526,-149.7757,-10.82254,92.97037,-12.76879,-6.777267,-4.045274,0,347.6415,-,-
+3930,680.4239,-130.8764,-86.60965,872.2166,-148.4021,-9.325447,62.14877,-10.57422,-6.171268,-3.154179,0,221.0116,-,-
+3931,600,-52.21099,-104.2061,745.5928,-148,-3.280513,46.84698,-9.299114,-6.54746,3.266947,0,944.2984,-,-
+3932,881.2298,-16.29203,-19.7964,1235.25,-153.4676,-1.503464,113.9916,-14.16233,-1.826855,0.3233911,0,2074.008,-,-
+3933,625.3334,-142.8473,-76.57615,832.9363,-148.1267,-9.35432,54.54463,-9.700039,-5.014571,-4.339749,0,66.57703,-,-
+3934,600,-87.15589,-82.00896,745.4205,-148,-5.476166,46.83615,-9.299114,-5.152775,-0.3233911,0,599.8078,-,-
+3935,600,-78.50677,-78.50677,768.5666,-148,-4.932726,48.29046,-9.299114,-4.932726,0,0,685.0717,-,-
+3936,600,-20.38226,-20.38226,771.8101,-148,-1.280655,48.49426,-9.299114,-1.280655,0,0,1258.069,-,-
+3937,600,-6.86105,-6.86105,793.6067,-148,-0.4310925,49.86378,-9.299114,-0.4310925,0,0,1391.363,-,-
+3938,600,0,0,798.6771,-148,0,50.18237,-9.299114,0,0,0,1459,-,-
+3939,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+3940,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+3941,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+3942,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+3943,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+3944,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+3945,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+3946,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+3947,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+3948,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+3949,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+3950,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+3951,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
diff --git a/VectoCoreTest/TestData/Jobs/24t Coach.vecto b/VectoCoreTest/TestData/Jobs/24t Coach.vecto
new file mode 100644
index 0000000000000000000000000000000000000000..2645c8c36af2e3887d693a4b7af6f71b36307881
--- /dev/null
+++ b/VectoCoreTest/TestData/Jobs/24t Coach.vecto	
@@ -0,0 +1,38 @@
+{
+  "Header": {
+    "CreatedBy": " ()",
+    "Date": "4/24/2015 11:11:45 AM",
+    "AppVersion": "2.0.4-beta3",
+    "FileVersion": 2
+  },
+  "Body": {
+    "SavedInDeclMode": false,
+    "VehicleFile": "TestData/Components/24t Coach.vveh",
+    "EngineFile": "TestData/Components/24t Coach.veng",
+    "GearboxFile": "TestData/Components/24t Coach.vgbx",
+    "Cycles": [
+      "TestData/Cycles/Engine Only1.vdri",
+      "TestData/Cycles/Engine Only2.vdri",
+      "TestData/Cycles/Engine Only3.vdri"
+    ],
+    "VACC": "TestData/Components/Coach.vacc",
+    "EngineOnlyMode": true,
+    "StartStop": {
+      "Enabled": false,
+      "MaxSpeed": 5.0,
+      "MinTime": 0.0,
+      "Delay": 0
+    },
+    "LAC": {
+      "Enabled": true,
+      "Dec": -0.5,
+      "MinSpeed": 50.0
+    },
+    "OverSpeedEcoRoll": {
+      "Mode": "OverSpeed",
+      "MinSpeed": 70.0,
+      "OverSpeed": 5.0,
+      "UnderSpeed": 5.0
+    }
+  }
+}
\ No newline at end of file
diff --git a/VectoCoreTest/TestData/Results/EngineOnlyCycles/24t Coach.vsum b/VectoCoreTest/TestData/Results/EngineOnlyCycles/24t Coach.vsum
new file mode 100644
index 0000000000000000000000000000000000000000..2fac7223e5296b245c7188a8b929a4584963313a
--- /dev/null
+++ b/VectoCoreTest/TestData/Results/EngineOnlyCycles/24t Coach.vsum	
@@ -0,0 +1,4 @@
+Job [-],Input File [-],Cycle [-],time [s],Ppos [kW],Pneg [kW],FC [g/h],FC-AUXc [g/h],FC-WHTCc [g/h]
+1,24t Coach.vecto,Engine Only1.vdri,3951,29.5999634846317,-1.63579455196953,ERROR,-,-
+1,24t Coach.vecto,Engine Only2.vdri,3951,29.5999634846317,-1.63579455196953,ERROR,-,-
+1,24t Coach.vecto,Engine Only3.vdri,3951,29.5999634846317,-1.63579455196953,ERROR,-,-
diff --git a/VectoCoreTest/TestData/Results/EngineOnlyCycles/24t Coach.vsum.json b/VectoCoreTest/TestData/Results/EngineOnlyCycles/24t Coach.vsum.json
new file mode 100644
index 0000000000000000000000000000000000000000..07d7f38e7cb390f532e89293112db0c9b6b78105
--- /dev/null
+++ b/VectoCoreTest/TestData/Results/EngineOnlyCycles/24t Coach.vsum.json	
@@ -0,0 +1,114 @@
+{
+  "Header": {
+    "CreatedBy": " ()",
+    "Date": "4/24/2015 11:11:47 AM",
+    "AppVersion": "2.0.4-beta3",
+    "FileVersion": 1
+  },
+  "Body": {
+    "Settings": {
+      "Air Density [kg/m3]": 1.188,
+      "CO2/FC [-]": 3.16,
+      "Fuel Density [kg/l]": 0.832,
+      "Distance Correction": true
+    },
+    "Results": [
+      {
+        "Job": "24t Coach.vecto",
+        "Cycle": "Engine Only1.vdri",
+        "Loading": "User-defined Loading",
+        "AbortedByError": false,
+        "Results": {
+          "time": {
+            "Value": 3951,
+            "Unit": "[s]"
+          },
+          "Ppos": {
+            "Value": 29.599963484631711,
+            "Unit": "[kW]"
+          },
+          "Pneg": {
+            "Value": -1.6357945519695312,
+            "Unit": "[kW]"
+          },
+          "FC": {
+            "Value": "ERROR",
+            "Unit": "[g/h]"
+          },
+          "FC-AUXc": {
+            "Value": "-",
+            "Unit": "[g/h]"
+          },
+          "FC-WHTCc": {
+            "Value": "-",
+            "Unit": "[g/h]"
+          }
+        }
+      },
+      {
+        "Job": "24t Coach.vecto",
+        "Cycle": "Engine Only2.vdri",
+        "Loading": "User-defined Loading",
+        "AbortedByError": false,
+        "Results": {
+          "time": {
+            "Value": 3951,
+            "Unit": "[s]"
+          },
+          "Ppos": {
+            "Value": 29.599963484631711,
+            "Unit": "[kW]"
+          },
+          "Pneg": {
+            "Value": -1.6357945519695312,
+            "Unit": "[kW]"
+          },
+          "FC": {
+            "Value": "ERROR",
+            "Unit": "[g/h]"
+          },
+          "FC-AUXc": {
+            "Value": "-",
+            "Unit": "[g/h]"
+          },
+          "FC-WHTCc": {
+            "Value": "-",
+            "Unit": "[g/h]"
+          }
+        }
+      },
+      {
+        "Job": "24t Coach.vecto",
+        "Cycle": "Engine Only3.vdri",
+        "Loading": "User-defined Loading",
+        "AbortedByError": false,
+        "Results": {
+          "time": {
+            "Value": 3951,
+            "Unit": "[s]"
+          },
+          "Ppos": {
+            "Value": 29.599963484631711,
+            "Unit": "[kW]"
+          },
+          "Pneg": {
+            "Value": -1.6357945519695312,
+            "Unit": "[kW]"
+          },
+          "FC": {
+            "Value": "ERROR",
+            "Unit": "[g/h]"
+          },
+          "FC-AUXc": {
+            "Value": "-",
+            "Unit": "[g/h]"
+          },
+          "FC-WHTCc": {
+            "Value": "-",
+            "Unit": "[g/h]"
+          }
+        }
+      }
+    ]
+  }
+}
\ No newline at end of file
diff --git a/VectoCoreTest/TestData/Results/EngineOnlyCycles/24t Coach_Engine Only1.vmod b/VectoCoreTest/TestData/Results/EngineOnlyCycles/24t Coach_Engine Only1.vmod
new file mode 100644
index 0000000000000000000000000000000000000000..fc91d4a34296c198f9f8b250902d08eee1c17ea8
--- /dev/null
+++ b/VectoCoreTest/TestData/Results/EngineOnlyCycles/24t Coach_Engine Only1.vmod	
@@ -0,0 +1,697 @@
+time [s],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],Paux [kW],FC [g/h],FC-AUXc [g/h],FC-WHTCc [g/h]
+1,600,0,0,1282,-148,0,80.55044,-9.299114,0,0,0,1459,-,-
+2,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+3,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+4,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+5,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+6,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+7,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+8,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+9,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+10,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+11,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+12,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+13,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+14,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+15,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+16,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+17,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+18,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+19,600,3.787888E-06,3.787888E-06,801.2501,-148,2.38E-07,50.34402,-9.299114,2.38E-07,0,0,1459,-,-
+20,600,9.170536,0,801.2501,-148,0.5762018,50.34402,-9.299114,0,0.5762018,0,1546.074,-,-
+21,644.4445,43.06333,34.52525,875.1463,-148.2222,2.906175,59.06019,-10.00294,2.329973,0.5762018,0,1961.22,-,-
+22,644.4445,8.436764,8.436764,888.0933,-148.2222,0.5693641,59.93393,-10.00294,0.5693641,0,0,1632.441,-,-
+23,644.4445,115.8511,63.18603,875.1083,-148.2222,7.818337,59.05762,-10.00294,4.264177,3.55416,0,2652.34,-,-
+24,869.7512,87.66522,87.66522,1262.513,-152.8363,7.98456,114.9899,-13.92035,7.98456,0,0,3277.925,-,-
+25,644.4445,62.38619,20.02867,916.3124,-148.2222,4.210199,61.83832,-10.00294,1.351656,2.858543,0,2144.69,-,-
+26,1015.31,44.93016,-2.555052,1452.349,-161.4545,4.777111,154.4182,-17.16632,-0.2716608,5.048771,0,3594.803,-,-
+27,948.6478,-32.96616,-4.684533,1373.851,-157.1756,-3.27493,136.4813,-15.61417,-0.4653716,-2.809558,0,2196.106,-,-
+28,872.4501,-61.52123,-6.260512,1221.174,-152.9848,-5.620749,111.5698,-13.97711,-0.5719776,-5.048771,0,1460.351,-,-
+29,644.4445,0.2985062,15.00104,840.7117,-148.2222,0.02014501,56.73633,-10.00294,1.012361,-0.992216,0,1555.168,-,-
+30,816.044,1.879797,1.879797,1144.983,-149.8824,0.1606398,97.84562,-12.80834,0.1606398,0,0,1980.72,-,-
+31,644.4445,20.10359,58.792,872.8372,-148.2222,1.356712,58.90435,-10.00294,3.967641,-2.610929,0,1743.217,-,-
+32,644.4445,65.25378,65.07417,879.4834,-148.2222,4.403721,59.35288,-10.00294,4.3916,0.01212145,0,2171.918,-,-
+33,645.3466,10.58478,18.56875,897.8154,-148.2267,0.7153255,60.67485,-10.01724,1.254886,-0.5395605,0,1654.73,-,-
+34,602.9238,5.525331,5.717314,810.1493,-148.0146,0.3488585,51.15123,-9.345352,0.36098,-0.01212145,0,1517.603,-,-
+35,644.4445,24.25558,16.26044,873.8831,-148.2222,1.636914,58.97493,-10.00294,1.097353,0.5395605,0,1782.64,-,-
+36,644.4445,22.13434,21.88527,881.0404,-148.2222,1.49376,59.45795,-10.00294,1.476951,0.01680891,0,1762.499,-,-
+37,645.6951,46.27728,43.79628,882.2181,-148.2285,3.129133,59.65297,-10.02277,2.961375,0.1677578,0,1994.363,-,-
+38,656.8193,57.25459,48.53584,908.6883,-148.2841,3.938083,62.50135,-10.19927,3.33839,0.5996926,0,2121.953,-,-
+39,688.8293,46.46883,34.79183,963.0168,-148.4442,3.351984,69.46629,-10.70788,2.509675,0.8423092,0,2086.763,-,-
+40,715.7259,52.2522,41.42237,1002.097,-148.5786,3.916336,75.10785,-11.13606,3.104633,0.8117025,0,2198.159,-,-
+41,743.2361,44.32463,35.71274,1047.954,-148.7162,3.449852,81.56386,-11.5748,2.779576,0.6702765,0,2180.658,-,-
+42,759.3434,29.38564,25.47028,1070.975,-148.7967,2.336695,85.16204,-11.83206,2.025352,0.3113432,0,2072.638,-,-
+43,763.0762,18.7053,18.37082,1071.609,-148.8154,1.494725,85.63134,-11.89171,1.467997,0.02672757,0,1979.067,-,-
+44,761.0308,16.30659,17.36385,1064.423,-148.8052,1.299553,84.82915,-11.85902,1.383811,-0.08425788,0,1951.996,-,-
+45,757.7582,15.52264,16.64248,1058.326,-148.7888,1.231757,83.98051,-11.80673,1.320618,-0.08886148,0,1937.68,-,-
+46,755.406,18.36341,18.64889,1054.282,-148.777,1.452655,83.39995,-11.76915,1.475238,-0.0225831,0,1959.713,-,-
+47,756.3265,20.92863,21.23316,1056.785,-148.7816,1.657596,83.69981,-11.78385,1.681716,-0.02411984,0,1986.003,-,-
+48,753.872,12.47891,13.91125,1053.876,-148.7694,0.9851509,83.19858,-11.74464,1.098228,-0.113077,0,1900.618,-,-
+49,749.1166,16.78234,17.99582,1043.148,-148.7456,1.316529,81.83214,-11.66869,1.411724,-0.09519503,0,1931.493,-,-
+50,747.787,17.65562,18.71185,1042.628,-148.7389,1.382578,81.6462,-11.64746,1.465289,-0.08271109,0,1936.993,-,-
+51,743.7986,3.449067,14.25843,1036.636,-148.719,0.2686492,80.744,-11.58378,1.110595,-0.8419458,0,1793.726,-,-
+52,691.6417,-64.57079,-41.58897,948.4085,-148.4582,-4.676768,68.69186,-10.75261,-3.012229,-1.664539,0,1014.902,-,-
+53,627.2637,96.25304,-2.565852,817.9171,-148.1363,6.322563,53.72643,-9.730616,-0.1685429,6.491106,0,2430.176,-,-
+54,1049.495,1.187829,-0.8832842,1459.073,-164.702,0.1305458,160.3563,-18.10122,-0.09707546,0.2276213,0,2992.783,-,-
+55,644.4445,16.6744,23.9407,872.67,-148.2222,1.12529,58.89307,-10.00294,1.615664,-0.490374,0,1710.657,-,-
+56,1026.825,56.76796,4.340945,1441.424,-162.5484,6.104194,154.9947,-17.47864,0.4667768,5.637417,0,3803.619,-,-
+57,977.9754,-27.70941,-4.054022,1424.818,-158.7887,-2.837813,145.9204,-16.26208,-0.4151859,-2.422627,0,2347.138,-,-
+58,906.5457,-45.80109,-5.040415,1277.64,-154.86,-4.348046,121.2905,-14.70136,-0.478503,-3.869543,0,1826.685,-,-
+59,764.8557,-88.7198,-31.16203,1043.116,-148.8243,-7.106057,83.54893,-11.92016,-2.495939,-4.610118,0,757.9618,-,-
+60,615.8789,-44.24551,-7.900268,785.1898,-148.0794,-2.853601,50.64057,-9.550334,-0.5095253,-2.344075,0,1056.169,-,-
+61,600,1.704201,-4.265142,784.2189,-148,0.1070781,49.27393,-9.299114,-0.2679868,0.3750649,0,1475.181,-,-
+62,644.4445,16.98687,8.44879,872.5396,-148.2222,1.146377,58.88427,-10.00294,0.5701756,0.5762018,0,1713.624,-,-
+63,644.4445,9.021553,17.55964,878.3146,-148.2222,0.6088292,59.27401,-10.00294,1.185031,-0.5762018,0,1637.993,-,-
+64,600,5.18564,4.722757,804.8837,-148,0.3258234,50.57233,-9.299114,0.2967396,0.02908379,0,1508.238,-,-
+65,646.6069,124.2693,56.28299,877.1885,-148.233,8.414585,59.39664,-10.03723,3.811063,4.603522,0,2736.811,-,-
+66,895.4804,85.53728,84.49033,1304.898,-154.2514,8.021215,122.3661,-14.46485,7.923037,0.09817816,0,3379.16,-,-
+67,653.8535,66.28895,92.87785,930.8409,-148.2693,4.538896,63.73596,-10.1522,6.359474,-1.820578,0,2201.506,-,-
+68,791.9158,187.6217,139.3854,1127.041,-148.9596,15.55932,93.4646,-12.3531,11.55912,4.000204,0,4099.517,-,-
+69,900.8318,95.19201,52.27203,1341.612,-154.5457,8.979927,126.5608,-14.57905,4.931076,4.048851,0,3521.737,-,-
+70,1007.856,188.9964,137.0289,1469.406,-160.7463,19.94714,155.0847,-16.96556,14.46236,5.484777,0,5809.916,-,-
+71,1156.708,179.6167,111.3725,1499.253,-174.8873,21.75701,181.6048,-21.18413,13.49057,8.266437,0,6328.946,-,-
+72,1345.086,283.9939,193.1054,1495.423,-196.4103,40.00255,210.6409,-27.66578,27.20026,12.80229,0,9497.552,-,-
+73,1602.138,317.7925,208.6841,1474.247,-235.31,53.31779,247.3425,-39.47925,35.01208,18.30572,0,12735.88,-,-
+74,1888.49,333.4889,235.5709,1360.771,-280.3706,65.9515,269.1091,-55.44672,46.58702,19.36448,0,16855.77,-,-
+75,2103.714,159.5027,110.2997,932.3865,-320.7057,35.13851,205.4051,-70.6516,24.29906,10.83945,0,ERROR,-,-
+76,2146.359,-133.4082,-4.9384,817.8073,-328.8082,-29.98566,183.8154,-73.90496,-1.109985,-28.87567,0,ERROR,-,-
+77,1286.033,-149.6351,65.34973,1354.004,-189.324,-20.15182,182.3479,-25.49684,8.800848,-28.95267,0,841.8726,-,-
+78,1351.937,307.8995,265.3316,1384.122,-197.2324,43.59072,195.9564,-27.92309,37.56419,6.026536,0,10115.97,-,-
+79,1494.108,422.8993,363.2826,1517.045,-218.0573,66.16794,237.3609,-34.11782,56.84015,9.327791,0,14267.78,-,-
+80,1650.18,382.7237,322.4213,1530.207,-242.2761,66.13712,264.4296,-41.86687,55.71647,10.42064,0,14981.92,-,-
+81,1797.949,399.5454,334.6001,1555.304,-263.7026,75.22672,292.8339,-49.65013,62.99876,12.22796,0,17281.95,-,-
+82,1974.041,515.6417,436.4503,1206.818,-296.1976,106.594,249.4747,-61.23029,90.22348,16.37055,0,23889.77,-,-
+83,2191.804,587.2262,501.8138,787.8055,-337.4427,134.7832,180.8212,-77.45161,115.1789,19.60429,0,ERROR,-,-
+84,2403.877,334.2301,273.7045,334.2301,-377.7366,84.13688,84.13688,-95.08893,68.90056,15.23632,0,ERROR,-,-
+85,2503.301,-56.54663,69.94268,83.6814,-396.6272,-14.82342,21.93667,-103.9739,18.33513,-33.15855,0,ERROR,-,-
+86,1611.144,-235.0663,-10.13028,1371.202,-236.6159,-39.66005,231.3473,-39.9215,-1.709167,-37.95089,0,37.61931,-,-
+87,1619.774,266.0775,257.1406,1328.561,-237.8672,45.13268,225.3536,-40.3476,43.61679,1.515889,0,11585.19,-,-
+88,1655.685,257.2363,243.1765,1494.785,-243.0743,44.60038,259.1703,-42.14494,42.16265,2.437729,0,11735.19,-,-
+89,1690.462,263.2474,249.6788,1501.826,-248.117,46.60131,265.8603,-43.92285,44.19933,2.401978,0,12257.1,-,-
+90,1723.907,249.018,233.8247,1513.123,-252.9665,44.9545,273.1597,-45.66731,42.2117,2.742802,0,12241.85,-,-
+91,1766.618,358.9676,339.1079,1522.828,-259.1596,66.40894,281.723,-47.94448,62.7349,3.674046,0,15768.52,-,-
+92,1823.327,394.6358,368.3391,1508.04,-268.3155,75.3511,287.9427,-51.23172,70.33006,5.021039,0,17552.53,-,-
+93,1898.131,544.5615,513.3238,1363.192,-282.1542,108.2435,270.9642,-56.08431,102.0343,6.209172,0,23420.74,-,-
+94,1980.033,467.5205,442.0008,1226.341,-297.3061,96.9397,254.28,-61.64599,91.64824,5.291466,0,22455.15,-,-
+95,2027.516,212.5282,200.5397,1117.442,-306.228,45.12419,237.2564,-65.01863,42.57878,2.545408,0,15602.88,-,-
+96,2040.799,22.5261,127.8032,1041.578,-308.7518,4.814098,222.5977,-65.98396,27.31307,-22.49897,0,10316.36,-,-
+97,1396.846,322.3199,472.1198,1449.842,-202.6215,47.14811,212.079,-29.63894,69.06043,-21.91232,0,10911.45,-,-
+98,1435.803,627.2028,610.7021,1545.526,-208.7285,94.3043,232.3806,-31.38377,91.8233,2.480995,0,18637.26,-,-
+99,1479.637,594.0043,579.1003,1638.939,-215.7419,92.03931,253.9491,-33.42861,89.72998,2.309333,0,18401.32,-,-
+100,1511.026,383.0977,372.0832,1618.519,-220.7642,60.61919,256.1051,-34.93246,58.87632,1.742871,0,13460.26,-,-
+101,1535.129,451.4071,440.943,1539.581,-224.6206,72.56745,247.5005,-36.10964,70.88527,1.682182,0,15385.76,-,-
+102,1563.544,475.8323,464.6609,1553.153,-229.167,77.9099,254.3039,-37.52242,76.08076,1.829139,0,16368.73,-,-
+103,1591.288,445.2722,434.8489,1552.029,-233.6061,74.19984,258.629,-38.92795,72.46291,1.736925,0,15921.79,-,-
+104,1615.981,419.9371,410.8453,1541.791,-237.3172,71.0639,260.9099,-40.16004,69.52535,1.53855,0,15563.56,-,-
+105,1637.034,376.2195,368.472,1537.531,-240.3699,64.49524,263.5787,-41.20657,63.16708,1.328163,0,14638.52,-,-
+106,1654.957,361.3505,353.7967,1527.899,-242.9688,62.62446,264.7951,-42.10811,61.31534,1.309122,0,14448.85,-,-
+107,1674.975,423.4403,415.4202,1527.54,-245.8714,74.27268,267.935,-43.12657,72.86594,1.406735,0,16388.32,-,-
+108,1695.262,371.6657,364.7486,1548.636,-248.813,65.98085,274.9253,-44.17113,64.75288,1.227973,0,15234.92,-,-
+109,1709.799,309.2745,305.803,1538.119,-250.9209,55.37552,275.3998,-44.92731,54.75394,0.6215815,0,13686.15,-,-
+110,1712.769,135.339,136.8725,1523.115,-251.3515,24.27451,273.187,-45.0826,24.54955,-0.2750401,0,9122.085,-,-
+111,1702.061,27.02083,32.3534,1474.023,-249.7988,4.816177,262.729,-44.524,5.766651,-0.9504735,0,6423.931,-,-
+112,1685.925,18.62135,25.00264,1437.877,-247.4592,3.287593,253.8567,-43.68883,4.414207,-1.126614,0,6139.807,-,-
+113,1669.991,26.02238,31.88091,1428.824,-245.1487,4.550822,249.8743,-42.87186,5.575367,-1.024545,0,6209.245,-,-
+114,1656.502,64.61633,69.61541,1425.511,-243.1928,11.2089,247.2813,-42.18628,12.07608,-0.8671831,0,6988.956,-,-
+115,1644.88,61.23325,65.61612,1432.701,-241.5076,10.54751,246.7847,-41.60003,11.30247,-0.7549564,0,6843.781,-,-
+116,1634.482,86.92116,90.95547,1427.82,-239.9999,14.87765,244.3893,-41.07899,15.56817,-0.6905218,0,7354.234,-,-
+117,1624.607,68.46641,73.30067,1432.383,-238.568,11.64808,243.6891,-40.58721,12.47053,-0.8224459,0,6883.443,-,-
+118,1610.151,-9.240115,-3.180296,1421.514,-236.4719,-1.558018,239.6881,-39.87262,-0.5362444,-1.021774,0,5065.09,-,-
+119,1594.136,32.22758,38.19804,1393.545,-234.0618,5.379992,232.6349,-39.07369,6.376687,-0.996695,0,5882.933,-,-
+120,1580.163,27.30954,33.14782,1410.614,-231.8261,4.519026,233.4204,-38.36125,5.485111,-0.9660846,0,5666.646,-,-
+121,1564.78,0.3636259,6.259995,1412.486,-229.3648,0.05958496,231.4547,-37.58449,1.025784,-0.966199,0,5056.958,-,-
+122,1550.539,47.06121,52.04159,1406.432,-227.0862,7.641426,228.3653,-36.87246,8.4501,-0.808674,0,5888.553,-,-
+123,1539.777,68.6536,72.33276,1424.926,-225.3643,11.07006,229.7623,-36.33889,11.6633,-0.5932446,0,6280.474,-,-
+124,1532.066,106.7972,110.4107,1434.141,-224.1306,17.13428,230.0901,-35.95897,17.71403,-0.5797531,0,7072.241,-,-
+125,1521.599,9.668711,15.17909,1449.958,-222.4558,1.540627,231.0385,-35.44644,2.418658,-0.8780314,0,5040.514,-,-
+126,1504.309,-33.69525,-25.70424,1419.683,-219.6894,-5.308042,223.6439,-34.60787,-4.049212,-1.25883,0,4062.217,-,-
+127,1481.361,-100.7852,-90.74965,1408.838,-216.0177,-15.63458,218.5499,-33.51035,-14.07779,-1.556794,0,2535.507,-,-
+128,1453.792,-124.127,-112.669,1389.43,-211.6067,-18.89719,211.5278,-32.21516,-17.15281,-1.744379,0,1915.911,-,-
+129,1423.724,-135.3489,-121.7508,1385.921,-206.7958,-20.17945,206.6297,-30.83161,-18.15207,-2.027376,0,1542.116,-,-
+130,1385.246,-133.0711,-115.9232,1385.334,-201.2295,-19.30365,200.9602,-29.19088,-16.81612,-2.487527,0,1445.763,-,-
+131,1337.242,-130.6579,-112.3143,1385.807,-195.469,-18.29677,194.0624,-27.37263,-15.72801,-2.568758,0,1374.762,-,-
+132,1293.188,-125.1095,-113.9302,1386.834,-190.1826,-16.94262,187.8083,-25.75496,-15.42869,-1.513933,0,1380.318,-,-
+133,1281.755,284.0433,285.3856,1390.165,-188.8106,38.12573,186.595,-25.34312,38.3059,-0.1801681,0,8983.826,-,-
+134,1286.484,87.14797,86.78278,1543.625,-189.3781,11.7406,207.9576,-25.51307,11.6914,0.04920031,0,5303.294,-,-
+135,1283.596,133.1172,133.2941,1470.254,-189.0315,17.89333,197.6284,-25.40921,17.9171,-0.02376681,0,6134.657,-,-
+136,1285.597,185.7029,184.0723,1487.341,-189.2717,25.0007,200.2369,-25.48115,24.78118,0.2195235,0,7155.98,-,-
+137,1291.778,220.914,217.3726,1506.805,-190.0134,29.88407,203.8326,-25.70399,29.405,0.4790672,0,7861.332,-,-
+138,1303.359,299.3874,293.53,1519.607,-191.4031,40.86262,207.4072,-26.12411,40.06316,0.7994608,0,9417.771,-,-
+139,1321.147,352.0673,344.1585,1548.259,-193.5376,48.70857,214.2019,-26.77597,47.6144,1.094172,0,10808.42,-,-
+140,1343.046,388.9465,379.7535,1567.373,-196.1655,54.70278,220.4407,-27.5894,53.40984,1.292941,0,11879.83,-,-
+141,1367.31,407.4287,396.3932,1580.767,-199.0772,58.33742,226.3411,-28.50475,56.75732,1.580101,0,12532.68,-,-
+142,1398.372,536.1453,521.4193,1586.892,-202.8046,78.5116,232.3799,-29.69814,76.35516,2.156437,0,15967.06,-,-
+143,1441.017,654.1249,635.6244,1619.78,-209.5627,98.70938,244.4295,-31.62363,95.91759,2.791791,0,19346.57,-,-
+144,1491.115,699.2388,680.9673,1643.299,-217.5784,109.1856,256.5999,-33.97469,106.3325,2.853078,0,21073.68,-,-
+145,1533.099,499.3958,485.3878,1644.748,-224.2958,80.17587,264.0573,-36.00974,77.92695,2.248918,0,16595.47,-,-
+146,1561.824,436.0255,425.9124,1569.613,-228.8918,71.31363,256.7162,-37.43613,69.6596,1.65403,0,15298.9,-,-
+147,1584.033,369.1954,362.1931,1541.97,-232.4453,61.24197,255.7812,-38.55792,60.08042,1.161546,0,13873,-,-
+148,1597.119,252.8292,248.8781,1516.634,-234.539,42.28566,253.6568,-39.22663,41.62484,0.6608209,0,11003.9,-,-
+149,1603.93,241.9587,239.8837,1479.051,-235.5699,40.64014,248.4261,-39.56706,40.29163,0.3485158,0,10794.84,-,-
+150,1607.558,187.0646,186.8591,1476.581,-236.0959,31.49104,248.5721,-39.74511,31.45644,0.03459711,0,9425.89,-,-
+151,1604.965,114.6764,116.151,1458.302,-235.7199,19.27385,245.0991,-39.61781,19.52167,-0.2478251,0,7796.074,-,-
+152,1600.142,139.7361,141.4609,1433.173,-235.0206,23.41509,240.1518,-39.38157,23.70411,-0.2890159,0,8325.968,-,-
+153,1596.299,132.3542,134.5307,1442.332,-234.4078,22.12486,241.106,-39.18456,22.48869,-0.3638254,0,8132.26,-,-
+154,1589.192,71.52106,75.00057,1441.816,-233.2707,11.90252,239.9468,-38.82087,12.48158,-0.57906,0,6721.455,-,-
+155,1578.793,62.24268,66.67814,1424.12,-231.6069,10.29063,235.4509,-38.29175,11.02395,-0.7333171,0,6435.202,-,-
+156,1566.889,36.67767,42.11662,1423.846,-229.7022,6.018228,233.6307,-37.69052,6.910674,-0.8924458,0,5774.275,-,-
+157,1551.426,-14.49673,-6.917517,1418.733,-227.2282,-2.355211,230.4944,-36.91661,-1.123854,-1.231357,0,4682.187,-,-
+158,1528.707,-104.6979,-94.99168,1405.949,-223.5931,-16.76064,225.0725,-35.79409,-15.20682,-1.553822,0,2635.427,-,-
+159,1502.589,-82.79519,-72.31786,1379.095,-219.4143,-13.02789,217.0017,-34.525,-11.37927,-1.648615,0,3012.952,-,-
+160,1476.041,-119.1831,-106.6046,1391.965,-215.1666,-18.42221,215.157,-33.25844,-16.47795,-1.944263,0,2121.234,-,-
+161,1439.148,-135.6979,-118.0458,1384.906,-209.2637,-20.45066,208.7153,-31.53755,-17.79036,-2.660299,0,1604.352,-,-
+162,1386.845,-133.0824,-111.745,1384.694,-201.4214,-19.32757,201.0992,-29.25244,-16.22873,-3.098839,0,1449.594,-,-
+163,1331.801,-133.4001,-111.468,1385.532,-194.8161,-18.60477,193.2344,-27.1702,-15.54598,-3.058788,0,1302.745,-,-
+164,1276.609,-128.0363,-106.2066,1385.312,-188.1931,-17.11668,185.1971,-25.15882,-14.19835,-2.918335,0,1276.035,-,-
+165,1222.116,-124.3716,-105.7884,1387.345,-181.6539,-15.91704,177.552,-23.24801,-13.53877,-2.378269,0,1119.721,-,-
+166,1183.826,-121.3442,-110.0028,1389.352,-177.4635,-15.04303,172.2379,-22.00014,-13.63705,-1.405982,0,1036.797,-,-
+167,1165.594,29.5695,35.41756,1391.284,-175.7314,3.609275,169.8212,-21.44991,4.323093,-0.7138183,0,3688.994,-,-
+168,1154.524,-5.858347,-1.818656,1448.695,-174.6798,-0.7082828,175.1494,-21.11904,-0.2198782,-0.4884046,0,3101.597,-,-
+169,1145.307,65.15321,68.7969,1435.286,-173.8042,7.814233,172.1428,-20.84542,8.251244,-0.4370106,0,4221.084,-,-
+170,1136.212,-4.806559,-1.227013,1462.128,-172.9401,-0.5719029,173.9696,-20.57708,-0.1459947,-0.4259082,0,3079.961,-,-
+171,1127.318,69.35881,71.11412,1435.683,-172.0952,8.187979,169.4859,-20.31627,8.395197,-0.2072181,0,4220.741,-,-
+172,1127.425,178.0661,177.0695,1463.507,-172.1054,21.02314,172.787,-20.31939,20.90548,0.1176574,0,6164.361,-,-
+173,1132.316,168.3272,166.8263,1503.986,-172.57,19.95954,178.3365,-20.46264,19.78157,0.177971,0,6012.389,-,-
+174,1134.976,135.0664,133.3666,1500.475,-172.8227,16.05324,178.338,-20.54074,15.85121,0.2020281,0,5427.78,-,-
+175,1140.847,235.2697,231.5724,1487.889,-173.3805,28.10749,177.757,-20.71363,27.66578,0.4417079,0,7191.243,-,-
+176,1153.503,276.7515,270.2323,1524.758,-174.5828,33.43007,184.1825,-21.08865,32.64259,0.7874816,0,7999.825,-,-
+177,1173.508,389.4692,381.0513,1539.513,-176.4833,47.86166,189.1899,-21.68793,46.8272,1.034464,0,10260.87,-,-
+178,1195.77,327.4031,319.2975,1580.832,-178.5981,40.99767,197.953,-22.36419,39.98267,1.014994,0,9257.626,-,-
+179,1214.31,318.8598,310.9846,1558.402,-180.7172,40.54693,198.1699,-22.98041,39.54551,1.001422,0,9217.15,-,-
+180,1235.31,381.7586,372.2441,1555.04,-183.2372,49.38482,201.1621,-23.70382,48.15401,1.230805,0,10599.08,-,-
+181,1262.019,440.6324,429.5888,1577.63,-186.4423,58.23324,208.4969,-24.6399,56.77373,1.459511,0,12104.95,-,-
+182,1290.77,429.6628,418.7212,1599.057,-189.8924,58.07714,216.1431,-25.66759,56.59818,1.478957,0,12183.74,-,-
+183,1317.063,397.0867,386.5176,1595.407,-193.0476,54.7672,220.0425,-26.6256,53.30949,1.457712,0,11797.06,-,-
+184,1343.879,444.3654,434.9593,1583.436,-196.2655,62.53585,222.8381,-27.62058,61.21212,1.323736,0,13027.56,-,-
+185,1364.448,273.0347,267.383,1601.625,-198.7338,39.01247,228.8476,-28.39601,38.20493,0.8075434,0,9447.177,-,-
+186,1372.416,189.5373,187.2231,1539.294,-199.6899,27.24012,221.2259,-28.69925,26.90753,0.3325892,0,7770.424,-,-
+187,1376.097,183.7302,183.3622,1508.386,-200.1317,26.47635,217.3653,-28.83988,26.42333,0.05302388,0,7681.948,-,-
+188,1374.269,76.24336,77.74364,1506.49,-199.9123,10.97242,216.8037,-28.77,11.18833,-0.2159099,0,5608.425,-,-
+189,1368.546,102.647,104.9165,1466.211,-199.2255,14.71074,210.1283,-28.55177,15.03598,-0.3252447,0,6079.325,-,-
+190,1362.863,74.76355,77.25121,1476.153,-198.5436,10.67016,210.6746,-28.33588,11.02519,-0.3550348,0,5508.976,-,-
+191,1356.038,77.43774,80.76211,1465.677,-197.7245,10.99647,208.132,-28.07767,11.46854,-0.4720729,0,5517.76,-,-
+192,1346.136,7.97706,14.1053,1466.753,-196.5363,1.124503,206.7638,-27.70514,1.988382,-0.8638794,0,4180.138,-,-
+193,1325.11,-129.0316,-116.8838,1440.539,-194.0132,-17.9051,199.8967,-26.92228,-16.2194,-1.685701,0,1378.377,-,-
+194,1284.63,-126.1256,-108.9066,1387.588,-189.1556,-16.96719,186.6669,-25.44637,-14.65078,-2.31641,0,1336.981,-,-
+195,1238.373,-127.6369,-109.5772,1388.436,-183.6048,-16.55223,180.0554,-23.81026,-14.2102,-2.34203,0,1140.599,-,-
+196,1193.929,-120.2759,-103.8393,1387.854,-178.4232,-15.03785,173.5206,-22.30789,-12.98282,-2.055032,0,1074.264,-,-
+197,1155.988,-119.5851,-108.2187,1390.916,-174.8189,-14.47635,168.3771,-21.16266,-13.10039,-1.375963,0,1020.435,-,-
+198,1137.273,20.19871,24.84404,1391.917,-173.0409,2.405564,165.7703,-20.6083,2.958799,-0.553235,0,3481.251,-,-
+199,1132.786,134.724,133.9632,1445.104,-172.6147,15.98164,171.4256,-20.47643,15.8914,0.09024294,0,5411.406,-,-
+200,1141.075,283.7219,278.9485,1487.655,-173.4021,33.90281,177.7644,-20.72035,33.33242,0.5703874,0,8040.37,-,-
+201,1156.7,289.9659,282.3105,1542.458,-174.8865,35.12338,186.837,-21.18388,34.19608,0.9272999,0,8271.085,-,-
+202,1179.433,435.5909,424.1682,1544.141,-177.0461,53.7998,190.7168,-21.86695,52.38899,1.410807,0,11126.15,-,-
+203,1213.827,535.8825,520.1509,1596.218,-180.6592,68.11692,202.8979,-22.9639,66.11726,1.999664,0,13507.82,-,-
+204,1258.176,648.72,630.3763,1631.373,-185.9811,85.47268,214.9429,-24.50411,83.05579,2.416888,0,16571.04,-,-
+205,1305.898,615.9441,596.9261,1671.88,-191.7077,84.23239,228.6351,-26.21667,81.63163,2.60076,0,16525.22,-,-
+206,1353.754,661.4887,643.4066,1660.314,-197.4505,93.77581,235.374,-27.99153,91.21239,2.563413,0,18254.28,-,-
+207,1396.935,530.9613,514.0288,1677.891,-202.6322,77.67258,245.4531,-29.6424,75.19558,2.476994,0,15821.97,-,-
+208,1438.893,646.8818,628.9226,1618.693,-209.2229,97.47248,243.9055,-31.52581,94.76639,2.706089,0,19146.34,-,-
+209,1487.004,665.2884,647.3359,1642.549,-216.9206,103.5978,255.7756,-33.7786,100.8023,2.795537,0,20211.29,-,-
+210,1529.298,539.4854,524.209,1634.691,-223.6877,86.39735,261.7921,-35.82307,83.95087,2.446478,0,17606.15,-,-
+211,1563.974,518.7225,505.3825,1581.485,-229.2358,84.95585,259.0139,-37.54401,82.77103,2.184826,0,17508.56,-,-
+212,1596.393,499.9771,487.9616,1563.694,-234.4229,83.58311,261.4088,-39.18938,81.57443,2.008681,0,17434.93,-,-
+213,1624.446,435.1006,426.4298,1559.707,-238.5447,74.01565,265.3242,-40.57922,72.54066,1.47499,0,16069.61,-,-
+214,1640.138,251.376,247.6988,1543.069,-240.82,43.17505,265.0296,-41.362,42.54347,0.6315762,0,11419.87,-,-
+215,1643,173.0718,173.4452,1488.655,-241.235,29.77779,256.1299,-41.50558,29.84203,-0.06424312,0,9399.466,-,-
+216,1638.257,93.35413,96.01612,1463.631,-240.5472,16.01563,251.0974,-41.26777,16.47232,-0.4566861,0,7520.339,-,-
+217,1629.605,92.22087,93.77315,1436.114,-239.2927,15.73766,245.0755,-40.83574,16.00256,-0.2648991,0,7443.155,-,-
+218,1630.478,287.2779,284.6463,1435.891,-239.4193,49.05077,245.1688,-40.87923,48.60144,0.4493276,0,12245.94,-,-
+219,1642.785,328.442,323.2375,1499.023,-241.2038,56.50254,257.88,-41.49479,55.60721,0.8953294,0,13439.54,-,-
+220,1656.623,324.0203,318.7104,1514.438,-243.2103,56.21142,262.7265,-42.19241,55.29026,0.9211598,0,13471.11,-,-
+221,1669.48,312.0607,307.3751,1516.124,-245.0746,54.55681,265.0603,-42.84579,53.73763,0.819179,0,13297.53,-,-
+222,1680.188,283.0802,279.1659,1515.374,-246.6273,49.80764,266.6284,-43.39379,49.11893,0.6887088,0,12661.39,-,-
+223,1689.163,278.7301,275.6046,1509.665,-247.9286,49.30421,267.0428,-43.85578,48.75134,0.5528665,0,12643.56,-,-
+224,1695.907,239.2801,236.9558,1510.371,-248.9065,42.49494,268.2343,-44.20454,42.08216,0.4127833,0,11695.05,-,-
+225,1700.851,243.564,241.398,1501.183,-249.6234,43.38184,267.3798,-44.46109,42.99605,0.3857936,0,11857.88,-,-
+226,1706.79,260.8594,258.2896,1504.048,-250.4846,46.62461,268.8255,-44.77027,46.16529,0.4593202,0,12367.48,-,-
+227,1713.763,266.5401,263.8271,1510.588,-251.4956,47.83458,271.0974,-45.13462,47.34768,0.4869004,0,12587.79,-,-
+228,1720.427,256.7721,254.0747,1513.991,-252.4619,46.26075,272.7646,-45.48422,45.77478,0.4859688,0,12405.58,-,-
+229,1727.319,271.3633,270.3101,1513.53,-253.4612,49.08538,273.774,-45.84719,48.89489,0.1904961,0,12855.33,-,-
+230,1725.733,83.55854,86.01656,1517.075,-253.2313,15.10056,274.1632,-45.76354,15.54477,-0.4442099,0,7868.938,-,-
+231,1714.932,80.63452,85.00993,1465.171,-251.6651,14.48093,263.126,-45.19585,15.2667,-0.7857665,0,7696.742,-,-
+232,1703.74,70.33857,75.12929,1459.903,-250.0423,12.54947,260.469,-44.61135,13.40421,-0.8547376,0,7399.99,-,-
+233,1690.842,42.26111,47.62954,1451.979,-248.1721,7.482945,257.094,-43.94248,8.433504,-0.9505584,0,6696.475,-,-
+234,1676.749,42.07651,47.53365,1438.418,-246.1286,7.388161,252.5699,-43.21741,8.346374,-0.958212,0,6607.8,-,-
+235,1663.421,53.53508,59.06407,1433.033,-244.196,9.325438,249.6243,-42.53725,10.28855,-0.9631126,0,6783.358,-,-
+236,1648.951,14.94603,20.95827,1430.876,-242.0979,2.580847,247.0805,-41.80492,3.619027,-1.03818,0,5836.003,-,-
+237,1633.192,22.97571,29.24678,1412.904,-239.8129,3.929477,241.6454,-41.01458,5.002003,-1.072526,0,5920.51,-,-
+238,1617.433,10.63383,16.68789,1409.407,-237.5278,1.801128,238.7213,-40.23179,2.826547,-1.025419,0,5550.732,-,-
+239,1602.775,41.54221,47.10218,1399.868,-235.4024,6.972537,234.957,-39.51046,7.905733,-0.9331963,0,6152.042,-,-
+240,1589.501,35.28629,40.52882,1411.556,-233.3202,5.873478,234.9565,-38.83664,6.74611,-0.8726318,0,5915.777,-,-
+241,1576.428,43.18218,47.64097,1412.503,-231.2285,7.12865,233.1805,-38.17193,7.864722,-0.7360716,0,5992.108,-,-
+242,1567.118,110.1675,112.5089,1417.297,-229.7389,18.0794,232.5901,-37.70204,18.46364,-0.3842417,0,7414.847,-,-
+243,1564.686,183.1523,183.0908,1440.439,-229.3498,30.01016,236.021,-37.57977,30.00007,0.01008922,0,9023.852,-,-
+244,1567.427,217.0467,215.5515,1464.178,-229.7883,35.62617,240.331,-37.71759,35.38074,0.2454254,0,9810.837,-,-
+245,1572.196,226.2652,224.4664,1474.174,-230.5514,37.25229,242.708,-37.95797,36.95614,0.296151,0,10058.33,-,-
+246,1576.469,207.6484,206.8316,1476.099,-231.235,34.28015,243.6855,-38.174,34.14531,0.134843,0,9664.607,-,-
+247,1576.307,135.5947,136.7155,1470.126,-231.2091,22.38268,242.6744,-38.1658,22.5677,-0.1850223,0,8051.983,-,-
+248,1570.826,97.58784,100.1498,1447.562,-230.3322,16.05286,238.1189,-37.88884,16.47429,-0.4214295,0,7162.612,-,-
+249,1563.423,93.3472,96.77948,1436.6,-229.1477,15.28292,235.202,-37.51635,15.84486,-0.5619377,0,7011.56,-,-
+250,1553.562,43.69028,48.95279,1437.602,-227.5699,7.107912,233.8814,-37.02304,7.964062,-0.85615,0,5837.531,-,-
+251,1536.916,-44.20661,-36.98547,1424.467,-224.9065,-7.114853,229.2616,-36.19769,-5.952643,-1.162211,0,3986.473,-,-
+252,1517.233,-22.18669,-14.32253,1397.881,-221.7573,-3.525117,222.1013,-35.23375,-2.275624,-1.249493,0,4364.687,-,-
+253,1497.389,-53.24101,-44.23098,1409.758,-218.5822,-8.348521,221.0588,-34.27505,-6.935693,-1.412829,0,3616.373,-,-
+254,1471.863,-130.4236,-119.4917,1403.568,-214.4981,-20.10259,216.3364,-33.06126,-18.41763,-1.684963,0,1863.593,-,-
+255,1442.372,-131.3889,-120.0415,1380.372,-209.7795,-19.84562,208.4981,-31.68611,-18.13165,-1.713965,0,1710.311,-,-
+256,1414.871,-101.3344,-90.47707,1384.765,-205.3793,-15.01421,205.1736,-30.43002,-13.40553,-1.608679,0,2223.655,-,-
+257,1387.812,-128.4075,-117.8943,1398.759,-201.5374,-18.66164,203.2835,-29.28971,-17.13374,-1.527897,0,1551.219,-,-
+258,1362.057,-81.18473,-72.88641,1388.437,-198.4468,-11.57973,198.0387,-28.30532,-10.3961,-1.183625,0,2487.343,-,-
+259,1346.257,57.14734,60.40297,1406.698,-196.5508,8.056614,198.3159,-27.70968,8.515593,-0.4589787,0,5067.552,-,-
+260,1345.787,223.6316,221.1411,1458.938,-196.4944,31.51652,205.6088,-27.69206,31.16553,0.3509858,0,8248.818,-,-
+261,1358.712,335.1758,328.5363,1520.564,-198.0454,47.69015,216.3519,-28.1787,46.74545,0.9447021,0,10810.78,-,-
+262,1379.066,381.3473,372.8513,1561.336,-200.4879,55.07244,225.481,-28.95356,53.84549,1.226949,0,12078.98,-,-
+263,1401.382,381.5362,372.4821,1577.845,-203.2211,55.99134,231.5525,-29.82318,54.66264,1.328696,0,12310.72,-,-
+264,1424.557,404.4268,395.2643,1571.385,-206.9291,60.33209,234.4181,-30.86953,58.96523,1.366857,0,13088.93,-,-
+265,1447.437,380.9996,372.0387,1573.164,-210.5899,57.75011,238.4527,-31.92022,56.39186,1.358248,0,12733.58,-,-
+266,1469.605,395.5855,386.4926,1558.459,-214.1368,60.8793,239.8417,-32.95494,59.47992,1.399379,0,13344.98,-,-
+267,1493.117,413.4163,404.364,1556.561,-217.8987,64.64129,243.382,-34.07039,63.22589,1.415399,0,14029.7,-,-
+268,1515.124,370.6606,362.1635,1556.235,-221.4198,58.81027,246.9176,-35.13123,57.4621,1.348174,0,13182.16,-,-
+269,1535.841,392.5768,384.0481,1535.43,-224.7346,63.13926,246.9477,-36.14471,61.76757,1.371691,0,13967.67,-,-
+270,1557.969,404.1641,395.7163,1535.916,-228.275,65.93942,250.5849,-37.2431,64.56117,1.37825,0,14493.46,-,-
+271,1578.323,361.9005,354.2205,1533.499,-231.5317,59.8155,253.4591,-38.26793,58.54613,1.269371,0,13624.08,-,-
+272,1596.594,365.9951,359.3023,1514.027,-234.455,61.19253,253.1376,-39.1997,60.07353,1.119003,0,13923.13,-,-
+273,1611.991,306.308,301.4227,1516.727,-236.7387,51.70702,256.0345,-39.96322,50.88236,0.8246562,0,12542.91,-,-
+274,1621.194,240.7237,239.2504,1500.08,-238.0731,40.86791,254.6701,-40.41792,40.61778,0.2501296,0,10944.89,-,-
+275,1619.421,80.65228,83.83949,1479.456,-237.8161,13.67745,250.8941,-40.33012,14.21795,-0.5405026,0,7124.072,-,-
+276,1605.113,-17.21383,-11.11756,1423.781,-235.7414,-2.893422,239.3191,-39.62507,-1.868717,-1.024705,0,4858.117,-,-
+277,1588.762,33.42691,39.09373,1392.07,-233.2019,5.561395,231.6054,-38.79892,6.50421,-0.9428155,0,5868.674,-,-
+278,1576.67,64.67198,68.54057,1411.813,-231.2672,10.67789,233.1023,-38.18418,11.31663,-0.6387365,0,6473.178,-,-
+279,1569.348,129.7806,131.5268,1424.024,-230.0957,21.32837,234.0266,-37.81433,21.61535,-0.2869776,0,7869.233,-,-
+280,1567.91,184.9361,184.58,1446.227,-229.8656,30.36487,237.4576,-37.7419,30.3064,0.05846538,0,9088.228,-,-
+281,1571.135,226.2593,224.5955,1463.772,-230.3816,37.22619,240.8327,-37.90443,36.95245,0.2737378,0,10050.1,-,-
+282,1576.267,225.9816,223.6603,1476.112,-231.2027,37.30195,243.6564,-38.16377,36.91877,0.3831826,0,10089.52,-,-
+283,1582.797,256.7368,253.9451,1474.137,-232.2475,42.55416,244.3385,-38.49505,42.09142,0.4627355,0,10953.44,-,-
+284,1590.294,247.7538,244.7653,1482.138,-233.447,41.25972,246.8281,-38.87715,40.76203,0.4976939,0,10800.55,-,-
+285,1597.817,259.48,256.4619,1477.022,-234.6507,43.41697,247.1397,-39.26247,42.91198,0.504993,0,11183.18,-,-
+286,1605.462,252.0594,249.1839,1481.54,-235.792,42.37713,249.0819,-39.6422,41.89369,0.4834417,0,11072.04,-,-
+287,1612.273,244.6093,241.7994,1480.857,-236.7796,41.29906,250.0232,-39.97711,40.82465,0.4744069,0,10951.28,-,-
+288,1619.582,264.1354,260.9717,1480.298,-237.8394,44.79795,251.0619,-40.33809,44.26139,0.5365611,0,11532.97,-,-
+289,1628.167,272.9106,269.3519,1488.53,-239.0842,46.53159,253.7963,-40.76416,45.92483,0.606764,0,11850.25,-,-
+290,1637.464,281.6596,277.5672,1493.507,-240.4323,48.29754,256.0989,-41.22808,47.59579,0.7017493,0,12174.36,-,-
+291,1648.723,315.9747,311.2064,1498.836,-242.0648,54.55426,258.7799,-41.79343,53.73099,0.8232715,0,13179.91,-,-
+292,1661.419,315.0847,309.4717,1511.942,-243.9057,54.8195,263.0528,-42.43555,53.84293,0.9765719,0,13290.72,-,-
+293,1676.91,377.4767,370.7427,1515.183,-246.152,66.28703,266.0747,-43.22567,65.1045,1.182524,0,15168.22,-,-
+294,1695.235,377.4506,370.6307,1536.348,-248.8091,67.00676,272.7395,-44.16973,65.79607,1.21069,0,15394.91,-,-
+295,1711.21,334.656,328.7439,1539.849,-251.1254,59.96951,275.9372,-45.00105,58.91008,1.059429,0,14407.11,-,-
+296,1724.968,336.3221,330.7047,1532.175,-253.1204,60.75263,276.7694,-45.72321,59.73791,1.014722,0,14624.02,-,-
+297,1739.437,352.6945,346.9636,1536.163,-255.2184,64.2445,279.8173,-46.4889,63.20061,1.04389,0,15257.34,-,-
+298,1753.772,337.8688,332.1859,1543.632,-257.2969,62.05115,283.4951,-47.25376,61.00745,1.043697,0,15024.34,-,-
+299,1768,354.4683,348.9789,1543.913,-259.36,65.62786,285.847,-48.01908,64.61153,1.01633,0,15660.97,-,-
+300,1781.368,324.3864,319.1099,1551.056,-261.2984,60.51247,289.3409,-48.74376,59.52817,0.9843014,0,14993.15,-,-
+301,1794.521,354.1317,348.6174,1548.416,-263.2055,66.54906,290.9812,-49.46206,65.5128,1.036265,0,15980.77,-,-
+302,1809.072,355.8136,351.0595,1537.531,-265.6783,67.40732,291.2785,-50.33158,66.50668,0.90064,0,16233.5,-,-
+303,1818.449,250.8213,249.2008,1519.129,-267.4131,47.76328,289.284,-50.92281,47.4547,0.3085745,0,13466.4,-,-
+304,1817.24,138.9968,141.4679,1500.973,-267.1894,26.45123,285.6365,-50.84639,26.92148,-0.4702517,0,10373.97,-,-
+305,1805.995,41.40663,47.47704,1501.463,-265.1091,7.830961,283.9616,-50.13832,8.979017,-1.148056,0,7601.826,-,-
+306,1786.662,-29.5389,-21.43336,1487.307,-262.066,-5.526694,278.2733,-49.03223,-4.010155,-1.516539,0,5644.947,-,-
+307,1765.233,-9.004112,-0.2971662,1460.741,-258.9588,-1.664453,270.025,-47.86977,-0.05493259,-1.609521,0,6000.813,-,-
+308,1742.89,-51.89403,-43.21162,1454.259,-255.719,-9.471439,265.4241,-46.67257,-7.886769,-1.58467,0,4916.059,-,-
+309,1721.609,6.692089,14.52898,1432.916,-252.6333,1.206493,258.3354,-45.54637,2.619378,-1.412885,0,6087.888,-,-
+310,1703.539,2.78112,9.553826,1439.898,-250.0132,0.4961356,256.8694,-44.60089,1.704347,-1.208211,0,5892.252,-,-
+311,1687.591,46.44151,51.98959,1431.777,-247.7007,8.207335,253.0295,-43.77468,9.187814,-0.9804789,0,6770.191,-,-
+312,1675.688,82.54832,86.17913,1439.174,-245.9748,14.48538,252.5429,-43.16307,15.12251,-0.6371266,0,7503.956,-,-
+313,1669.373,158.849,160.7489,1447.092,-245.0591,27.76939,252.9753,-42.84033,28.10153,-0.3321361,0,9295.698,-,-
+314,1666.148,144.3642,146.3908,1468.096,-244.5915,25.18846,256.1513,-42.67598,25.54206,-0.3535975,0,8872.935,-,-
+315,1659.176,80.9875,84.69771,1461.643,-243.5805,14.07146,253.9584,-42.32175,14.7161,-0.6446441,0,7370.077,-,-
+316,1647.474,44.22477,49.65036,1438.645,-241.8837,7.629793,248.1994,-41.73053,8.565833,-0.93604,0,6480.056,-,-
+317,1631.875,-3.060596,3.384761,1421.587,-239.6219,-0.5230239,242.9343,-40.94888,0.5784202,-1.101444,0,5332.409,-,-
+318,1615.068,14.64399,21.18655,1400.088,-237.1849,2.476732,236.7962,-40.11496,3.583271,-1.106539,0,5625.969,-,-
+319,1599,8.165808,13.69355,1400.396,-234.84,1.367339,234.492,-39.32323,2.292942,-0.9256029,0,5383.467,-,-
+320,1587.324,102.0566,104.9864,1400.892,-232.9718,16.96427,232.862,-38.72555,17.45128,-0.487008,0,7388.144,-,-
+321,1584.315,184.2126,184.317,1432.856,-232.4904,30.56253,237.7238,-38.57227,30.57986,-0.01732505,0,9197.263,-,-
+322,1586.8,216.0884,214.3407,1459.362,-232.888,35.90726,242.5012,-38.69884,35.61685,0.2904055,0,9945.215,-,-
+323,1593.088,264.3147,261.1867,1468.014,-233.8941,44.09504,244.9055,-39.02003,43.5732,0.5218441,0,11258.12,-,-
+324,1602.506,282.5135,278.7549,1482.308,-235.3634,47.40972,248.752,-39.49728,46.77898,0.6307396,0,11827.97,-,-
+325,1611.978,267.9059,264.768,1490.408,-236.7368,45.2241,251.5898,-39.96258,44.69442,0.5296838,0,11550.28,-,-
+326,1618.292,219.8723,217.9924,1487.416,-237.6523,37.26114,252.0681,-40.27426,36.94254,0.3185971,0,10375.4,-,-
+327,1621.436,203.1326,202.8976,1473.143,-238.1082,34.49117,250.1344,-40.42992,34.45127,0.03990296,0,9975.896,-,-
+328,1619.475,114.6848,116.4864,1467.504,-237.8239,19.44952,248.8755,-40.33279,19.75505,-0.3055331,0,7883.321,-,-
+329,1612.367,95.7422,99.21386,1437.137,-236.7932,16.16575,242.6558,-39.98175,16.75193,-0.5861771,0,7418.253,-,-
+330,1602.009,45.53878,49.40824,1427.649,-235.2913,7.639677,239.5052,-39.47294,8.288825,-0.6491479,0,6236.569,-,-
+331,1592.927,119.488,122.0452,1412.042,-233.8683,19.93191,235.544,-39.01179,20.35848,-0.426575,0,7819.616,-,-
+332,1589.178,153.2,153.9228,1437.451,-233.2685,25.49529,239.2182,-38.82015,25.61557,-0.1202778,0,8542.789,-,-
+333,1589.299,199.3323,198.6176,1448.499,-233.2878,33.17507,241.0751,-38.82632,33.05613,0.1189398,0,9572.461,-,-
+334,1592.766,223.3128,221.0132,1462.702,-233.8426,37.24725,243.97,-39.00355,36.86369,0.383561,0,10195.02,-,-
+335,1600.84,295.6991,291.9106,1468.587,-235.1218,49.57087,246.1934,-39.41572,48.93576,0.635114,0,12151.2,-,-
+336,1611.79,283.5952,280.7952,1494.504,-236.7095,47.86698,252.2517,-39.95332,47.39437,0.4726117,0,11953.79,-,-
+337,1614.947,138.4304,138.6198,1491.798,-237.1673,23.41091,252.2883,-40.10899,23.44294,-0.032028,0,8385.68,-,-
+338,1610.836,133.6408,135.9294,1444.263,-236.5712,22.54338,243.6274,-39.90634,22.92943,-0.386052,0,8254.206,-,-
+339,1603.433,66.80159,71.53577,1440.508,-235.4978,11.21673,241.8773,-39.54269,12.01165,-0.7949207,0,6719.273,-,-
+340,1586.975,-50.01408,-42.13959,1420.652,-232.916,-8.311721,236.0947,-38.70776,-7.003079,-1.308642,0,4054.196,-,-
+341,1563.772,-69.49448,-60.21924,1386.26,-229.2035,-11.38026,227.011,-37.53387,-9.861372,-1.518892,0,3540.104,-,-
+342,1540.355,-60.0181,-51.28198,1384.303,-225.4568,-9.681256,223.2959,-36.36744,-8.272071,-1.409185,0,3666.609,-,-
+343,1519.907,-20.14798,-12.84013,1391.752,-222.1851,-3.206839,221.5172,-35.36394,-2.04369,-1.163149,0,4420.004,-,-
+344,1503.677,15.12274,21.49126,1409.21,-219.5883,2.381298,221.9008,-34.5774,3.384114,-1.002816,0,5064.231,-,-
+345,1487.904,-14.71925,-8.320971,1425.124,-217.0647,-2.293449,222.0527,-33.82148,-1.296515,-0.9969341,0,4390.665,-,-
+346,1471.513,-1.405141,5.215192,1417.748,-214.4421,-0.2165273,218.47,-33.04477,0.8036427,-1.02017,0,4599.075,-,-
+347,1454.625,-27.78295,-20.67979,1426.046,-211.74,-4.232121,217.2266,-32.25393,-3.150111,-1.082009,0,3963.305,-,-
+348,1435.789,-41.3384,-33.57402,1420.044,-208.7262,-6.215455,213.5114,-31.38313,-5.048037,-1.167417,0,3590.724,-,-
+349,1415.583,-56.71722,-48.95324,1418.84,-205.4933,-8.407733,210.3281,-30.46222,-7.256804,-1.15093,0,3173.282,-,-
+350,1396.787,-20.0392,-12.76009,1415.945,-202.6144,-2.931158,207.1119,-29.63666,-1.866434,-1.064724,0,3872.753,-,-
+351,1379.012,-41.75637,-34.70428,1429.888,-200.4814,-6.030029,206.4899,-28.95148,-5.011639,-1.01839,0,3366.848,-,-
+352,1361.345,-21.97219,-14.45412,1421.638,-198.3614,-3.132349,202.6683,-28.27834,-2.060575,-1.071774,0,3706.985,-,-
+353,1341.192,-90.98978,-82.29966,1429.137,-195.943,-12.77945,200.7213,-27.52006,-11.55893,-1.220521,0,2226.25,-,-
+354,1317.613,-89.07143,-79.15366,1402.768,-193.1136,-12.29009,193.5541,-26.64583,-10.92163,-1.368455,0,2206.923,-,-
+355,1291.294,-124.9441,-112.4108,1403.417,-189.9553,-16.89544,189.7757,-25.68651,-15.20063,-1.694815,0,1379.005,-,-
+356,1254.361,-128.8035,-112.7198,1389.266,-185.5233,-16.91915,182.489,-24.36967,-14.80647,-2.112683,0,1198.907,-,-
+357,1210.226,-133.3947,-117.4787,1387.437,-180.2271,-16.90571,175.8363,-22.84101,-14.88861,-2.017104,0,893.631,-,-
+358,1174.65,-132.9827,-120.4021,1385.962,-176.5918,-16.35808,170.4859,-21.72239,-14.81055,-1.547526,0,805.6712,-,-
+359,1147.215,-129.8415,-118.8799,1386.439,-173.9854,-15.59865,166.5613,-20.90193,-14.28176,-1.316887,0,815.5529,-,-
+360,1119.552,-129.3454,-117.5827,1387.606,-171.3574,-15.16435,162.6819,-20.08981,-13.7853,-1.379054,0,776.1663,-,-
+361,1087.993,-127.8705,-114.5555,1387.589,-168.3593,-14.56884,158.094,-19.18192,-13.05181,-1.517029,0,748.0265,-,-
+362,1052.511,-124.1775,-112.8753,1387.932,-164.9885,-13.68668,152.9761,-18.18482,-12.44097,-1.245708,0,753.9789,-,-
+363,1031.579,49.95445,52.90937,1389.989,-163,5.396414,150.1559,-17.60835,5.715624,-0.3192098,0,3708.584,-,-
+364,1037.853,308.0561,301.4563,1456.12,-163.596,33.48068,158.2565,-17.78023,32.76339,0.7172915,0,7887.582,-,-
+365,1064.428,472.139,460.0159,1550.137,-166.1207,52.62774,172.7885,-18.51691,51.27643,1.351314,0,10804.42,-,-
+366,1098.567,472.2995,457.4606,1609.05,-169.3639,54.33412,185.1078,-19.4839,52.62703,1.707089,0,11054.97,-,-
+367,1138.801,605.8385,588.197,1608.355,-173.1861,72.24925,191.8043,-20.6533,70.14542,2.103835,0,14049.38,-,-
+368,1186.926,641.7589,622.9606,1655.478,-177.758,79.76716,205.767,-22.09436,77.43063,2.336525,0,15372.4,-,-
+369,1233.348,580.6956,563.6011,1669.101,-183.0018,75.00027,215.5743,-23.63576,72.7924,2.207861,0,14661.57,-,-
+370,1273.076,512.6209,498.4388,1648.465,-187.7691,68.34068,219.7672,-25.03267,66.44997,1.890707,0,13657.11,-,-
+371,1304.85,425.2531,412.7461,1625.052,-191.582,58.10811,222.0529,-26.17845,56.3991,1.709009,0,12241.55,-,-
+372,1335.952,504.8294,491.8666,1593.257,-195.3142,70.62592,222.8976,-27.32457,68.81242,1.813498,0,14317.25,-,-
+373,1369.93,490.2999,477.2198,1622.116,-199.3916,70.33781,232.7067,-28.60447,68.46135,1.876459,0,14457.49,-,-
+374,1401.744,468.7929,456.264,1616.667,-203.279,68.81425,237.311,-29.83939,66.97513,1.839116,0,14392.47,-,-
+375,1432.914,483.7137,471.7006,1599.652,-208.2662,72.58337,240.0349,-31.25126,70.78075,1.802626,0,15080.19,-,-
+376,1462.162,436.7239,425.1831,1596.314,-212.9459,66.86996,244.4233,-32.60569,65.10287,1.767097,0,14261.74,-,-
+377,1490.927,480.486,469.1049,1571.033,-217.5483,75.01804,245.2846,-33.96571,73.24111,1.776927,0,15616.22,-,-
+378,1519.369,436.4427,425.8371,1577.242,-222.099,69.44151,250.9518,-35.33772,67.75407,1.687436,0,14859.95,-,-
+379,1544.292,415.7352,405.7281,1554.688,-226.0867,67.23182,251.4208,-36.56226,65.61349,1.618328,0,14626.53,-,-
+380,1569.657,450.4597,441.1093,1539.65,-230.1451,74.04391,253.0786,-37.8299,72.50694,1.536973,0,15777.34,-,-
+381,1591.342,345.4981,338.5421,1544.326,-233.6147,57.57551,257.3542,-38.93071,56.41633,1.159179,0,13337.84,-,-
+382,1604.709,283.4627,280.1183,1508.891,-235.6828,47.63442,253.5612,-39.60525,47.0724,0.5620195,0,11875.73,-,-
+383,1608.203,143.5103,144.139,1490.184,-236.1894,24.16865,250.9628,-39.77681,24.27454,-0.1058871,0,8458.497,-,-
+384,1601.539,74.29067,77.43728,1443.157,-235.2231,12.45949,242.0358,-39.44992,12.98722,-0.5277263,0,6874.916,-,-
+385,1592.376,89.85713,92.2757,1421.737,-233.7802,14.98397,237.0793,-38.98359,15.38727,-0.4033027,0,7154.643,-,-
+386,1589.407,199.4428,199.1668,1427.533,-233.3051,33.19573,237.602,-38.83184,33.14979,0.04594007,0,9575.751,-,-
+387,1593.76,240.9254,238.2671,1462.429,-234.0016,40.21001,244.0766,-39.05444,39.76634,0.4436651,0,10660.73,-,-
+388,1602.748,297.3705,293.2341,1474.775,-235.3985,49.91047,247.5253,-39.50913,49.21623,0.6942437,0,12214.5,-,-
+389,1614.531,301.7505,296.6793,1495.604,-237.107,51.01796,252.8668,-40.08846,50.16054,0.8574169,0,12451.9,-,-
+390,1628.221,340.9123,334.6385,1499.969,-239.092,58.1279,255.755,-40.76684,57.05817,1.069724,0,13608.33,-,-
+391,1646.023,390.2596,382.8052,1515.593,-241.6733,67.26948,261.2444,-41.6575,65.98457,1.28491,0,15139.19,-,-
+392,1665.665,383.9178,376.4071,1533.937,-244.5214,66.96603,267.5616,-42.65139,65.65594,1.310091,0,15207.19,-,-
+393,1683.789,364.2838,357.7896,1535.786,-247.1494,64.23269,270.799,-43.57886,63.0876,1.145088,0,14887.95,-,-
+394,1698.339,314.5844,309.8011,1533.677,-249.2591,55.94872,272.7638,-44.33065,55.09802,0.8507023,0,13691.09,-,-
+395,1707.865,263.7242,261.1171,1522.947,-250.6404,47.16634,272.3749,-44.82634,46.70007,0.4662747,0,12452.85,-,-
+396,1711.465,194.5544,193.6731,1510.811,-251.1624,34.86886,270.774,-45.01438,34.71091,0.1579515,0,10697.68,-,-
+397,1712.298,207.0906,206.6333,1493.039,-251.2832,37.13371,267.7189,-45.05795,37.05171,0.08200029,0,11035.88,-,-
+398,1713.763,207.518,206.5738,1496.776,-251.4956,37.24218,268.6187,-45.13462,37.07273,0.1694526,0,11062.36,-,-
+399,1717.041,245.4003,243.4256,1497.894,-251.9709,44.12496,269.3335,-45.30642,43.76989,0.3550672,0,12075.98,-,-
+400,1723.678,278.1444,274.8722,1509.571,-252.9333,50.20594,272.4823,-45.65525,49.61529,0.5906488,0,12995.62,-,-
+401,1733.472,312.8288,308.6489,1520.543,-254.3535,56.78742,276.0223,-46.17247,56.02866,0.7587583,0,14078.44,-,-
+402,1744.677,309.4147,305.9848,1532.032,-255.9782,56.53073,279.9055,-46.76776,55.90408,0.6266488,0,14122.87,-,-
+403,1750.736,210.8492,208.6767,1533.093,-256.8567,38.65639,281.0721,-47.09125,38.25808,0.3983127,0,11538.16,-,-
+404,1755.6,287.1107,283.7597,1511.612,-257.562,52.78415,277.9037,-47.35175,52.16808,0.6160654,0,13640.27,-,-
+405,1767.544,357.9668,352.1223,1532.588,-259.2939,66.2585,283.6771,-47.99446,65.1767,1.081797,0,15752.27,-,-
+406,1784.929,404.9585,396.4201,1552.545,-261.8147,75.69376,290.1976,-48.9377,74.09778,1.595975,0,17264.1,-,-
+407,1810.361,530.4586,518.7327,1544.525,-265.9168,100.5646,292.8119,-50.41265,98.34163,2.223014,0,21454.8,-,-
+408,1843.734,576.4902,563.3867,1501.429,-272.0908,111.3061,289.8889,-52.53403,108.7761,2.529962,0,23444.36,-,-
+409,1876.234,522.6307,511.4156,1444.908,-278.1033,102.6858,283.8938,-54.64139,100.4823,2.203547,0,22315.5,-,-
+410,1900.229,411.6319,402.8081,1386.344,-282.5424,81.91126,275.8706,-56.22353,80.1554,1.755862,0,19344.58,-,-
+411,1920.624,451.3123,446.7061,1323.391,-286.3154,90.77122,266.1701,-57.58584,89.84477,0.9264442,0,20889.76,-,-
+412,1923.486,-34.25552,57.3587,1326.287,-286.8449,-6.899985,267.1499,-57.77831,11.55359,-18.45358,0,7255.57,-,-
+413,1384.726,-178.225,-46.32089,1419.656,-201.1671,-25.84409,205.8617,-29.17087,-6.716908,-19.12718,0,486.6433,-,-
+414,1365.214,-78.07755,-68.25497,1369.71,-198.8257,-11.16235,195.8205,-28.42509,-9.758064,-1.404284,0,2561.288,-,-
+415,1335.167,-123.8178,-111.9469,1407.562,-195.22,-17.31201,196.803,-27.29535,-15.65223,-1.659778,0,1514.571,-,-
+416,1305.561,-77.37282,-69.03462,1390.015,-191.6673,-10.57826,190.0402,-26.20438,-9.438278,-1.139981,0,2404.825,-,-
+417,1293.54,186.5652,188.9331,1408.216,-190.2248,25.27197,190.7558,-25.7677,25.59272,-0.3207538,0,7222.007,-,-
+418,1293.716,383.4901,382.4276,1507.452,-190.2459,51.95432,204.2261,-25.77406,51.81037,0.1439488,0,11243.82,-,-
+419,1298.87,384.0081,381.2683,1580.738,-190.8644,52.23177,215.0078,-25.96087,51.8591,0.3726663,0,11309.08,-,-
+420,1307.468,522.9586,518.4025,1580.556,-191.8962,71.6023,216.4061,-26.27399,70.9785,0.6238022,0,14342.47,-,-
+421,1321.719,611.2016,604.6701,1631.495,-193.6063,84.59647,225.8154,-26.79706,83.69244,0.9040235,0,16646.89,-,-
+422,1340.242,699.7167,691.821,1663.533,-195.829,98.2051,233.4765,-27.48457,97.09694,1.108163,0,18950.69,-,-
+423,1361.364,724.2514,715.9854,1695.823,-198.3637,103.2505,241.7594,-28.27906,102.0721,1.178417,0,19870.33,-,-
+424,1381.797,684.8949,677.8293,1705.078,-200.8156,99.10528,246.7273,-29.05831,98.08289,1.022391,0,19256.83,-,-
+425,1396.943,529.1754,523.9507,1691.551,-202.6332,77.41175,247.4528,-29.6427,76.64746,0.7642896,0,15779.22,-,-
+426,1408.093,537.5551,532.6352,1631.859,-204.2949,79.26527,240.6261,-30.12433,78.5398,0.725465,0,16109.91,-,-
+427,1421.649,629.5908,623.8778,1630.38,-206.4639,93.73016,242.7225,-30.73725,92.87965,0.8505152,0,18509.87,-,-
+428,1436.79,608.42,602.3676,1658.8,-208.8864,91.54306,249.5836,-31.42911,90.6324,0.9106572,0,18202.61,-,-
+429,1452.067,644.384,638.7233,1645.983,-211.3307,97.98509,250.2884,-32.13497,97.12432,0.8607714,0,19258.36,-,-
+430,1465.261,536.0519,531.5311,1654.692,-213.4418,82.25276,253.8989,-32.75088,81.55907,0.6936937,0,16681.59,-,-
+431,1474.817,509.7238,506.4787,1613.342,-214.9707,78.72301,249.1685,-33.20061,78.22182,0.5011798,0,16147.56,-,-
+432,1481.586,432.3053,429.8951,1602.13,-216.0538,67.07274,248.5726,-33.52103,66.6988,0.3739358,0,14361.1,-,-
+433,1486.936,458.5087,456.0222,1573.13,-216.9098,71.39512,244.9546,-33.77536,71.00793,0.3871922,0,15046.56,-,-
+434,1494.076,506.1843,502.6246,1579.986,-218.0522,79.19723,247.2034,-34.11628,78.64029,0.5569363,0,16266.91,-,-
+435,1504.805,604.6403,599.566,1592.864,-219.7688,95.28092,251.008,-34.63179,94.48131,0.7996156,0,18998.12,-,-
+436,1519.545,670.5818,664.8558,1621.508,-222.1272,106.7073,258.0247,-35.3463,105.7961,0.9111502,0,20761.09,-,-
+437,1533.59,587.5084,582.5294,1639.166,-224.3744,94.35219,263.2453,-36.03389,93.55257,0.7996112,0,18932,-,-
+438,1544.594,560.525,556.6104,1607.281,-226.1351,90.66463,259.9769,-36.57723,90.03146,0.6331763,0,18361.7,-,-
+439,1553.279,503.4441,500.2912,1595.353,-227.5246,81.88972,259.4985,-37.00893,81.37687,0.5128464,0,16965.27,-,-
+440,1560.448,506.5672,503.8667,1573.776,-228.6717,82.77801,257.1702,-37.36718,82.33672,0.4412895,0,17141.2,-,-
+441,1566.855,477.9939,475.679,1572.721,-229.6968,78.42956,258.0532,-37.6888,78.04972,0.379834,0,16469,-,-
+442,1572.087,464.4497,462.8513,1561.492,-230.5339,76.46169,257.0662,-37.95247,76.19854,0.2631544,0,16178.95,-,-
+443,1574.895,385.8751,385.4162,1556.261,-230.9832,63.63954,256.6626,-38.09436,63.56385,0.07568723,0,14207.46,-,-
+444,1574.396,336.5762,336.8507,1530.413,-230.9034,55.49144,252.3197,-38.06912,55.5367,-0.04526398,0,12928.05,-,-
+445,1573.515,370.0388,370.3094,1514.181,-230.7624,60.97429,249.5039,-38.02459,61.01888,-0.04459349,0,13783.57,-,-
+446,1573.036,351.231,351.762,1525.527,-230.6858,57.85757,251.2969,-38.00039,57.94503,-0.08746444,0,13292.42,-,-
+447,1570.845,302.4879,303.7384,1520.017,-230.3352,49.7588,250.0405,-37.88979,49.96451,-0.2057152,0,12009.48,-,-
+448,1566.747,274.2476,276.4426,1504.949,-229.6795,44.99563,246.916,-37.68337,45.35576,-0.3601327,0,11236.28,-,-
+449,1559.803,187.185,190.7785,1497.569,-228.5685,30.57521,244.6163,-37.33488,31.16218,-0.5869667,0,9076.522,-,-
+450,1548.662,104.609,109.3241,1471.071,-226.7859,16.96501,238.5716,-36.77912,17.72969,-0.764681,0,7150.071,-,-
+451,1536.094,122.8974,127.9528,1445.762,-224.7751,19.76921,232.5643,-36.15718,20.5824,-0.8131958,0,7462.01,-,-
+452,1523.252,84.97137,90.25345,1455.26,-222.7203,13.55417,232.1351,-35.52713,14.39674,-0.8425692,0,6518.274,-,-
+453,1509.539,80.57793,85.68937,1445.192,-220.5262,12.73764,228.4539,-34.86047,13.54565,-0.808009,0,6346.456,-,-
+454,1497.577,144.4989,148.8918,1446.358,-218.6123,22.66117,226.8265,-34.28407,23.35009,-0.6889254,0,7649.837,-,-
+455,1487.474,146.036,149.7083,1471.516,-216.9958,22.74772,229.215,-33.80099,23.31975,-0.572032,0,7607.029,-,-
+456,1479.131,207.4677,210.3907,1474.023,-215.6609,32.13555,228.3177,-33.40464,32.58831,-0.4527602,0,8917.78,-,-
+457,1472.793,220.2598,221.8425,1497.623,-214.6469,33.97078,230.9792,-33.1051,34.21489,-0.2441073,0,9162.359,-,-
+458,1471.189,389.6774,389.3871,1502.392,-214.3902,60.03469,231.4623,-33.02951,59.98996,0.04473384,0,13209.04,-,-
+459,1474.25,402.9991,401.2558,1561.989,-214.88,62.21626,241.1447,-33.17384,61.94712,0.2691395,0,13580.17,-,-
+460,1479.943,495.7501,493.1349,1564.802,-215.7909,76.83099,242.5119,-33.44311,76.42569,0.4052987,0,15866.4,-,-
+461,1487.386,475.4453,472.6752,1595.227,-216.9818,74.05475,248.4704,-33.79679,73.62328,0.4314715,0,15457.79,-,-
+462,1493.87,463.0774,460.917,1586.094,-218.0192,72.44276,248.1249,-34.10642,72.10479,0.3379764,0,15229.53,-,-
+463,1498.252,397.6682,395.5808,1580.579,-218.7203,62.39278,247.9875,-34.31647,62.06528,0.3275012,0,13701.75,-,-
+464,1504.355,533.5306,530.3917,1555.544,-219.6968,84.05011,245.0536,-34.61008,83.55563,0.4944805,0,17123.92,-,-
+465,1514.009,540.5781,536.9656,1599.469,-221.2414,85.70686,253.5904,-35.07709,85.13411,0.5727456,0,17435.99,-,-
+466,1522.518,495.3256,492.5338,1599.181,-222.6029,78.97358,254.9697,-35.49129,78.52847,0.445111,0,16350.07,-,-
+467,1528.054,429.4737,427.6122,1582.052,-223.4886,68.72328,253.1559,-35.76208,68.42541,0.2978739,0,14784.54,-,-
+468,1531.879,431.5416,430.0217,1558.293,-224.1006,69.22704,249.9783,-35.94978,68.98322,0.2438217,0,14874.62,-,-
+469,1535.693,431.3936,429.8054,1557.797,-224.7109,69.37559,250.5208,-36.13742,69.12019,0.2553996,0,14911.4,-,-
+470,1539.86,447.7018,446.2173,1556.386,-225.3776,72.1936,250.9731,-36.34298,71.95422,0.2393776,0,15346.86,-,-
+471,1543.156,399.8088,398.9395,1560.995,-225.905,64.60867,252.255,-36.506,64.46819,0.1404738,0,14231.93,-,-
+472,1544.232,362.5091,362.5403,1544.48,-226.0771,58.62193,249.7603,-36.5593,58.62698,-0.00504719,0,13279.3,-,-
+473,1542.999,309.6862,310.3535,1532.278,-225.8799,50.03986,247.5892,-36.49823,50.14769,-0.1078344,0,11901.05,-,-
+474,1540.877,326.3504,327.2668,1514.84,-225.5403,52.65999,244.4349,-36.39324,52.80785,-0.1478629,0,12309.3,-,-
+475,1538.393,293.9112,294.9153,1521.324,-225.1429,47.34913,245.0855,-36.27055,47.5109,-0.1617708,0,11444.64,-,-
+476,1535.83,321.808,322.5616,1510.893,-224.7328,51.75694,242.9995,-36.14417,51.87814,-0.1212024,0,12138.53,-,-
+477,1534.607,344.9728,345.0331,1520.777,-224.5371,55.4384,244.3945,-36.08394,55.44809,-0.009694445,0,12724.29,-,-
+478,1535.527,405.6983,404.6149,1528.328,-224.6843,65.2363,245.7552,-36.12924,65.06208,0.1742181,0,14292.96,-,-
+479,1540.046,486.825,484.9195,1547.495,-225.4074,78.51184,249.5696,-36.35218,78.20454,0.3072998,0,16353.49,-,-
+480,1545.102,428.98,428.485,1573.534,-226.2163,69.41013,254.6021,-36.60241,69.33004,0.08009321,0,14952.98,-,-
+481,1542.54,191.4757,193.5292,1555.348,-225.8064,30.92992,251.2422,-36.47551,31.26162,-0.3317033,0,9040.489,-,-
+482,1534.764,221.9736,225.0408,1476.059,-224.5622,35.67562,237.2324,-36.09167,36.16859,-0.4929654,0,9674.445,-,-
+483,1527.125,190.233,193.5882,1488.666,-223.34,30.42209,238.0676,-35.71657,30.95866,-0.5365708,0,8895.159,-,-
+484,1517.892,154.4447,158.2406,1480.077,-221.8627,24.54949,235.263,-35.2658,25.15287,-0.6033762,0,8026.633,-,-
+485,1508.043,159.8237,163.598,1470,-220.2869,25.23966,232.1451,-34.78812,25.83571,-0.5960492,0,8071.437,-,-
+486,1498.927,176.6108,180.0971,1474.139,-218.8283,27.72211,231.3915,-34.34888,28.26935,-0.54724,0,8376.233,-,-
+487,1490.525,182.1619,185.2187,1482.179,-217.484,28.43318,231.3495,-33.94652,28.91031,-0.4771313,0,8435.916,-,-
+488,1483.571,228.5634,230.5916,1485.842,-216.3714,35.50943,230.8392,-33.61528,35.82453,-0.3151056,0,9434.749,-,-
+489,1480.344,324.2097,324.8273,1503.097,-215.855,50.2594,233.012,-33.46212,50.35513,-0.09572835,0,11613.84,-,-
+490,1480.471,358.5013,358.256,1537.043,-215.8754,55.58009,238.2948,-33.46814,55.54207,0.03801758,0,12501.45,-,-
+491,1481.576,363.02,362.7419,1548.887,-216.0522,56.32265,240.3103,-33.52055,56.2795,0.04314645,0,12629.92,-,-
+492,1481.869,327.409,327.5743,1550.485,-216.099,50.80764,240.6057,-33.53446,50.83329,-0.02564735,0,11712.65,-,-
+493,1480.745,307.3625,308.0763,1538.207,-215.9192,47.66063,238.5194,-33.48113,47.77131,-0.1106793,0,11217.69,-,-
+494,1478.28,274.1358,275.0138,1531.826,-215.5248,42.43763,237.1345,-33.36435,42.57355,-0.1359183,0,10437.99,-,-
+495,1476.333,325.8792,326.5273,1520.411,-215.2133,50.38132,235.0574,-33.27224,50.48153,-0.1002114,0,11614.57,-,-
+496,1475.023,297.8968,298.3423,1539.286,-215.0037,46.01434,237.7643,-33.21034,46.08316,-0.06882124,0,10957.26,-,-
+497,1474.094,340.1422,340.4324,1529.474,-214.855,52.50665,236.0999,-33.16648,52.55144,-0.04478729,0,11959.52,-,-
+498,1473.565,312.9851,313.2517,1544.752,-214.7704,48.29715,238.3728,-33.14151,48.33829,-0.04113697,0,11291.66,-,-
+499,1472.754,328.9682,329.12,1535.252,-214.6407,50.73559,236.7764,-33.10326,50.75901,-0.02341843,0,11656.56,-,-
+500,1472.802,345.9958,346.0173,1540.91,-214.6483,53.36343,237.6568,-33.10553,53.36675,-0.003314961,0,12097.14,-,-
+501,1472.646,321.1821,321.2073,1547.083,-214.6234,49.53114,238.5837,-33.09817,49.53503,-0.003895649,0,11472.36,-,-
+502,1472.675,353.1233,353.1038,1538.152,-214.628,54.45803,237.211,-33.09954,54.45502,0.003007802,0,12280.01,-,-
+503,1472.744,322.9323,322.7395,1549.595,-214.639,49.80436,238.9869,-33.10279,49.77462,0.02974279,0,11513.19,-,-
+504,1473.644,385.9948,385.3036,1538.441,-214.7831,59.56659,237.4117,-33.14524,59.45992,0.1066645,0,13139.82,-,-
+505,1476.216,388.8623,388.0122,1560.139,-215.1945,60.11383,241.1802,-33.2667,59.98241,0.1314195,0,13241.13,-,-
+506,1477.918,353.8514,353.3008,1560.743,-215.4669,54.76459,241.5519,-33.34721,54.67937,0.08522052,0,12354.27,-,-
+507,1478.984,364.8682,364.5258,1547.979,-215.6375,56.51037,239.7491,-33.39768,56.45734,0.05302887,0,12650.28,-,-
+508,1479.639,338.5515,338.1037,1551.761,-215.7422,52.45769,240.4413,-33.42871,52.3883,0.06938843,0,11977.05,-,-
+509,1481.234,402.2184,401.2701,1541.828,-215.9974,62.3899,239.1599,-33.50433,62.24279,0.1471056,0,13635.29,-,-
+510,1484.403,401.4423,400.0506,1563.435,-216.5045,62.40273,243.0302,-33.65482,62.18639,0.2163339,0,13650.18,-,-
+511,1488.227,430.0432,428.6835,1561.949,-217.1163,67.02085,243.4248,-33.83688,66.80894,0.2119178,0,14377.04,-,-
+512,1491.239,372.1174,371.1468,1571.248,-217.5983,58.11066,245.3695,-33.98062,57.95909,0.1515695,0,12967.23,-,-
+513,1493.107,387.3315,386.3892,1550.29,-217.8971,60.56229,242.4,-34.06992,60.41497,0.1473248,0,13380.19,-,-
+514,1495.973,412.0313,410.963,1554.727,-218.3557,64.54797,243.5604,-34.20715,64.38062,0.1673616,0,14026.67,-,-
+515,1498.477,375.0598,374.2717,1562.719,-218.7563,58.85443,245.222,-34.32728,58.73077,0.1236596,0,13119.81,-,-
+516,1499.935,372.0767,372.1252,1549.345,-218.9896,58.44314,243.3601,-34.39732,58.45076,-0.00761813,0,13058.14,-,-
+517,1498.233,251.137,253.021,1549.075,-218.7173,39.40204,243.0415,-34.31556,39.69763,-0.295586,0,10063.56,-,-
+518,1490.447,131.9827,135.6745,1508.764,-217.4715,20.59975,235.4867,-33.94279,21.17598,-0.5762284,0,7316.324,-,-
+519,1479.659,127.5845,131.7829,1468.923,-215.7455,19.76917,227.6089,-33.42966,20.41969,-0.6505256,0,7135.934,-,-
+520,1469.35,143.0663,147.2034,1469.76,-214.096,22.01361,226.1519,-32.94294,22.65018,-0.6365749,0,7402.519,-,-
+521,1458.865,114.3028,118.3244,1477.87,-212.4184,17.46226,225.7772,-32.45158,18.07665,-0.614387,0,6764.674,-,-
+522,1449.143,166.2722,169.9921,1469.594,-210.8629,25.23245,223.0166,-31.99926,25.79696,-0.5645058,0,7765.831,-,-
+523,1440.174,137.6556,141.2635,1490.772,-209.4278,20.76049,224.8303,-31.58479,21.3046,-0.5441113,0,7128.309,-,-
+524,1431.009,153.2074,156.7576,1482.36,-207.9614,22.95888,222.139,-31.16404,23.49089,-0.5320121,0,7385.289,-,-
+525,1422.334,150.6001,154.4159,1490.136,-206.5734,22.43136,221.9504,-30.76838,22.9997,-0.5683395,0,7296.102,-,-
+526,1411.819,76.20674,80.24406,1491.677,-204.891,11.26681,220.5375,-30.29218,11.86371,-0.5968991,0,5821.389,-,-
+527,1402.048,173.1548,176.6389,1465.84,-203.3277,25.42295,215.2178,-29.853,25.93449,-0.5115367,0,7637.221,-,-
+528,1394.321,150.2353,153.2597,1502.793,-202.3185,21.9363,219.4272,-29.54113,22.3779,-0.4415985,0,7152.884,-,-
+529,1386.849,179.096,181.7403,1494.142,-201.4219,26.0102,216.9949,-29.2526,26.39423,-0.3840317,0,7660.026,-,-
+530,1381.039,210.4435,212.9878,1504.943,-200.7247,30.43478,217.648,-29.02921,30.80274,-0.3679626,0,8220.897,-,-
+531,1374.056,129.7528,132.8471,1516.817,-199.8867,18.67024,218.2561,-28.76186,19.11548,-0.4452441,0,6633.677,-,-
+532,1365.478,143.914,147.1495,1486.463,-198.8574,20.57863,212.5531,-28.43512,21.04128,-0.4626492,0,6851.919,-,-
+533,1357.8,159.6865,162.4864,1491.773,-197.936,22.70559,212.1129,-28.14422,23.10369,-0.3981024,0,7106.681,-,-
+534,1351.413,190.5902,192.4743,1497.665,-197.1696,26.97226,211.9491,-27.90336,27.2389,-0.2666436,0,7659.776,-,-
+535,1348.342,286.3414,286.85,1509.134,-196.801,40.43084,213.0868,-27.78792,40.50266,-0.07181839,0,9585.041,-,-
+536,1348.86,330.6559,329.3944,1544.837,-196.8632,46.70591,218.2117,-27.80737,46.52771,0.178195,0,10605.21,-,-
+537,1354.67,494.7927,491.6782,1560.964,-197.5604,70.19164,221.4395,-28.02606,69.74982,0.4418204,0,14345.73,-,-
+538,1364.49,491.9853,487.856,1621.712,-198.7388,70.29932,231.7249,-28.3976,69.70929,0.5900249,0,14419.66,-,-
+539,1375.415,544.679,540.2844,1620.529,-200.0498,78.45182,233.4099,-28.8138,77.81886,0.632963,0,15841.52,-,-
+540,1386.575,507.5116,503.5273,1640.111,-201.389,73.69159,238.147,-29.24204,73.11307,0.578518,0,15110.09,-,-
+541,1395.456,462.2859,458.9712,1626.606,-202.4547,67.55467,237.6988,-29.58508,67.07029,0.4843822,0,14152.47,-,-
+542,1403.241,469.5699,466.6146,1608.938,-203.5186,69.00191,236.4286,-29.90645,68.56764,0.4342721,0,14426.95,-,-
+543,1410.313,438.7051,436.1608,1609.633,-204.6501,64.79132,237.7229,-30.22429,64.41555,0.3757743,0,13760.98,-,-
+544,1416.035,420.7365,418.8033,1596.668,-205.5656,62.38969,236.7648,-30.48268,62.10302,0.2866674,0,13390.25,-,-
+545,1420.035,374.5527,373.1561,1589.05,-206.2056,55.69813,236.3008,-30.66395,55.49044,0.2076918,0,12293.12,-,-
+546,1423.057,384.3686,383.4777,1571.226,-206.6891,57.27944,234.1475,-30.80126,57.14668,0.132761,0,12562.83,-,-
+547,1424.515,314.8121,314.5319,1574.593,-206.9224,46.96206,234.8897,-30.86762,46.92026,0.04179643,0,10959.25,-,-
+548,1424.466,326.113,326.146,1549.042,-206.9146,48.64618,231.0701,-30.86539,48.65111,-0.004927215,0,11217.66,-,-
+549,1424.349,311.0687,311.854,1553.257,-206.8958,46.39822,231.6799,-30.86006,46.51535,-0.1171295,0,10872.26,-,-
+550,1420.514,179.9399,182.359,1549.022,-206.2822,26.76711,230.4261,-30.6857,27.12698,-0.3598669,0,7852.181,-,-
+551,1412.171,130.8902,135.1237,1502.499,-204.9474,19.35634,222.1929,-30.30807,19.98239,-0.6260524,0,6872.082,-,-
+552,1399.202,-7.683547,-1.510408,1487.039,-202.9042,-1.125825,217.887,-29.73036,-0.2213112,-0.9045135,0,4140.987,-,-
+553,1381.088,-68.62926,-61.02568,1434.581,-200.7306,-9.925657,207.4794,-29.0311,-8.825974,-1.099684,0,2802.109,-,-
+554,1360.959,-85.27389,-77.00719,1411.383,-198.3151,-12.15317,201.1494,-28.26373,-10.97501,-1.178164,0,2397.81,-,-
+555,1339.52,-117.0472,-107.9208,1405.01,-195.7424,-16.41871,197.0867,-27.45761,-15.13851,-1.2802,0,1669.268,-,-
+556,1315.038,-128.0761,-114.6731,1392.79,-192.8046,-17.63741,191.8018,-26.5512,-15.79168,-1.845734,0,1373.009,-,-
+557,1271.67,-124.5114,-102.9958,1387.833,-187.6004,-16.58105,184.8164,-24.98255,-13.71585,-2.865201,0,1338.234,-,-
+558,1205.943,-125.6211,-96.10174,1388.263,-179.7132,-15.8642,175.3183,-22.69527,-12.13631,-3.727889,0,1015.852,-,-
+559,1122.19,-116.9366,-85.40859,1386.876,-171.608,-13.74186,162.9794,-20.1666,-10.03683,-3.705031,0,1010.047,-,-
+560,1048.169,-120.8867,-94.41994,1390.552,-164.5761,-13.26901,152.6325,-18.06453,-10.36391,-2.905101,0,806.8251,-,-
+561,990.1788,-112.9771,-89.17129,1373.891,-159.4599,-11.71474,142.4605,-16.5346,-9.246284,-2.468457,0,832.3314,-,-
+562,928.2859,-119.1225,-94.77313,1278.239,-156.0557,-11.57989,124.2574,-15.17016,-9.212884,-2.367003,0,661.3349,-,-
+563,867.8992,-123.8481,-99.24525,1179.598,-152.7345,-11.25608,107.2092,-13.88145,-9.020022,-2.23606,0,517.2462,-,-
+564,804.412,-128.6412,-101.21,1076.284,-149.2427,-10.83645,90.66385,-12.57188,-8.525709,-2.310745,0,278.4907,-,-
+565,729.0021,-89.08075,-108.1997,953.2133,-148.645,-6.800506,72.76918,-11.3477,-8.260065,1.459559,0,751.1493,-,-
+566,887.2314,-74.81737,-83.88269,1230.68,-153.7977,-6.95133,114.3433,-14.28945,-7.793596,0.8422656,0,1365.548,-,-
+567,782.4908,-139.2741,-95.45618,1059.712,-148.9125,-11.41243,86.83521,-12.20222,-7.821894,-3.590538,0,121.5468,-,-
+568,665.2287,-99.74484,-97.38823,843.5703,-148.3261,-6.948483,58.76529,-10.33278,-6.784316,-0.1641676,0,612.6461,-,-
+569,772.3559,-67.94436,-57.31413,1043.187,-148.8618,-5.495402,84.37395,-12.04008,-4.63562,-0.8597825,0,1020.428,-,-
+570,600,-136.1265,-99.91708,768.4518,-148,-8.553081,48.28325,-9.299114,-6.277975,-2.275105,0,117.0501,-,-
+571,614.9388,-61.82196,-82.11992,775.2047,-148.0747,-3.981102,49.92027,-9.535453,-5.288214,1.307112,0,880.9238,-,-
+572,696.7551,-50.55316,-47.96172,934.6902,-148.4838,-3.688562,68.19876,-10.83397,-3.49948,-0.1890821,0,1163.827,-,-
+573,600,-27.73392,-20.42477,779.2356,-148,-1.742574,48.96082,-9.299114,-1.283326,-0.4592476,0,1185.596,-,-
+574,664.3683,-22.96758,-22.96758,894.2432,-148.3218,-1.597912,62.21472,-10.31912,-1.597912,0,0,1367.756,-,-
+575,600,-41.80407,-28.30989,791.7131,-148,-2.626627,49.7448,-9.299114,-1.778763,-0.8478643,0,1046.891,-,-
+576,600,-12.09029,-12.09029,785.5735,-148,-0.7596555,49.35904,-9.299114,-0.7596555,0,0,1339.813,-,-
+577,600,-2.763897,-2.763897,796.7161,-148,-0.1736608,50.05915,-9.299114,-0.1736608,0,0,1431.753,-,-
+578,600,0,0,800.2136,-148,0,50.2789,-9.299114,0,0,0,1459,-,-
+579,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+580,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+581,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+582,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+583,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+584,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+585,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+586,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+587,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+588,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+589,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+590,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+591,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+592,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+593,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+594,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+595,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+596,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+597,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+598,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+599,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+600,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+601,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+602,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+603,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+604,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+605,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+606,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+607,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+608,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+609,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+610,600,3.787888E-06,3.787888E-06,801.2501,-148,2.38E-07,50.34402,-9.299114,2.38E-07,0,0,1459,-,-
+611,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+612,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+613,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+614,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+615,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+616,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+617,600,3.787888E-06,3.787888E-06,801.2501,-148,2.38E-07,50.34402,-9.299114,2.38E-07,0,0,1459,-,-
+618,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+619,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+620,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+621,600,9.170536,0,801.2501,-148,0.5762018,50.34402,-9.299114,0,0.5762018,0,1546.074,-,-
+622,644.4445,32.42692,23.88884,875.1463,-148.2222,2.188366,59.06019,-10.00294,1.612164,0.5762018,0,1860.227,-,-
+623,644.4445,127.9108,96.89331,884.1046,-148.2222,8.632195,59.66475,-10.00294,6.538949,2.093246,0,2766.846,-,-
+624,785.0072,47.83702,10.80489,1134.905,-148.925,3.932479,93.29571,-12.2425,0.8882241,3.044255,0,2385.152,-,-
+625,841.1434,12.50401,36.26813,1201.56,-151.2629,1.101408,105.8386,-13.32389,3.194654,-2.093246,0,2232.323,-,-
+626,644.4445,111.5551,63.44174,878.0648,-148.2222,7.528418,59.25714,-10.00294,4.281434,3.246984,0,2611.55,-,-
+627,1009.552,50.94508,-0.9624376,1464.204,-160.9074,5.385916,154.7957,-17.01114,-0.1017489,5.487665,0,3675.249,-,-
+628,970.5985,-8.176135,5.181611,1410.605,-158.3829,-0.8310292,143.375,-16.09817,0.5266633,-1.357692,0,2616.944,-,-
+629,942.8003,-51.67291,3.909744,1343.36,-156.854,-5.101657,132.6297,-15.48617,0.3860083,-5.487665,0,1883.399,-,-
+630,644.4445,-34.49714,38.60752,843.5962,-148.2222,-2.328077,56.93099,-10.00294,2.60547,-4.933547,0,1212.257,-,-
+631,644.4445,47.50202,53.35446,859.0081,-148.2222,3.205725,57.97108,-10.00294,3.600683,-0.394958,0,2003.365,-,-
+632,614.3267,10.91582,10.67911,842.725,-148.0716,0.7022378,54.21431,-9.525766,0.6870103,0.01522753,0,1592.732,-,-
+633,645.5776,35.49784,27.61859,877.6421,-148.2279,2.399822,59.33275,-10.02091,1.867147,0.5326749,0,1891.765,-,-
+634,654.6205,74.1437,64.53515,901.2585,-148.2731,5.082676,61.7828,-10.16437,4.423994,0.6586825,0,2277.698,-,-
+635,692.8177,38.07835,27.47699,975.159,-148.4641,2.762649,70.74944,-10.77132,1.993502,0.7691465,0,2015.471,-,-
+636,708.7716,40.4463,33.37812,988.2228,-148.5439,3.002021,73.34826,-11.02528,2.477404,0.5246174,0,2071.458,-,-
+637,728.2538,41.80497,32.46681,1020.015,-148.6413,3.188154,77.78898,-11.33576,2.476002,0.7121521,0,2125.271,-,-
+638,755.4572,54.26036,44.26572,1063.636,-148.7773,4.292608,84.14565,-11.76996,3.501919,0.790689,0,2325.345,-,-
+639,778.621,32.73521,26.8564,1105.111,-148.8931,2.66913,90.10745,-12.1403,2.18979,0.4793402,0,2173.77,-,-
+640,785.3195,22.37034,21.19575,1108.195,-148.9266,1.839703,91.13625,-12.2475,1.743106,0.09659683,0,2080.11,-,-
+641,784.5526,16.47887,16.38719,1103.201,-148.9228,1.353873,90.63697,-12.23522,1.346341,0.007532443,0,2005.647,-,-
+642,785.7797,24.59525,23.99476,1102.926,-148.9289,2.023861,90.75608,-12.25486,1.974449,0.04941161,0,2109.022,-,-
+643,787.5695,16.91645,17.18014,1108.805,-148.9379,1.395169,91.44768,-12.28351,1.416916,-0.02174713,0,2024.912,-,-
+644,784.4503,16.10676,17.10461,1101.01,-148.9223,1.323129,90.44517,-12.23358,1.4051,-0.081971,0,2000.694,-,-
+645,782.5583,17.89994,18.89623,1097.687,-148.9128,1.466888,89.95465,-12.2033,1.548533,-0.08164531,0,2013.496,-,-
+646,779.4391,13.99343,15.37648,1093.41,-148.8972,1.142182,89.24701,-12.15339,1.255069,-0.1128875,0,1968.69,-,-
+647,775.604,17.21,17.88334,1085.844,-148.878,1.397815,88.19337,-12.09203,1.452504,-0.05468926,0,1991.177,-,-
+648,776.0643,22.52246,21.39991,1087.752,-148.8803,1.830384,88.4008,-12.09939,1.739155,0.09122863,0,2042.586,-,-
+649,781.2288,27.58451,24.49158,1097.907,-148.9061,2.256691,89.81989,-12.18202,2.003658,0.2530334,0,2123.881,-,-
+650,791.558,31.36012,28.66589,1116.156,-148.9578,2.599495,92.52015,-12.34737,2.376166,0.2233295,0,2217.248,-,-
+651,794.8305,14.34256,14.60577,1122.864,-148.9742,1.193795,93.46096,-12.39978,1.215703,-0.02190819,0,2027.626,-,-
+652,790.2285,16.37036,17.6139,1109.242,-148.9511,1.354689,91.79259,-12.32609,1.457595,-0.1029065,0,2030.677,-,-
+653,788.5922,16.16161,18.76,1107.381,-148.943,1.334645,91.44885,-12.29989,1.549223,-0.2145782,0,2020.573,-,-
+654,777.0869,-9.974125,3.749234,1089.079,-148.8854,-0.8116579,88.6253,-12.11575,0.305099,-1.116757,0,1732.557,-,-
+655,717.4133,-71.90999,-41.56529,983.9592,-148.5871,-5.402407,73.92224,-11.16295,-3.12269,-2.279716,0,966.9546,-,-
+656,620.5139,-57.27702,-41.34504,802.7026,-148.1026,-3.721864,52.15967,-9.623714,-2.686603,-1.035261,0,937.4362,-,-
+657,644.4445,122.948,22.88576,851.2633,-148.2222,8.29728,57.44842,-10.00294,1.54447,6.75281,0,2719.725,-,-
+658,1016.479,57.93904,7.967908,1466.731,-161.5655,6.167346,156.1268,-17.19791,0.8481474,5.319199,0,3798.894,-,-
+659,962.2321,-41.81168,-9.220888,1400.378,-157.9228,-4.213141,141.1086,-15.91304,-0.9291401,-3.284001,0,2079.114,-,-
+660,847.3507,-59.70004,-16.62675,1176.887,-151.6043,-5.297445,104.4303,-13.45251,-1.475364,-3.822081,0,1359.577,-,-
+661,747.673,-37.96694,-3.40858,1010.77,-148.7384,-2.972664,79.1394,-11.64564,-0.2668786,-2.705786,0,1394.831,-,-
+662,676.963,-34.32487,-5.49979,907.9445,-148.3848,-2.433338,64.36546,-10.51921,-0.3898878,-2.04345,0,1282.244,-,-
+663,602.3846,-21.15289,-4.922133,790.5776,-148.0119,-1.334357,49.87087,-9.336823,-0.3104959,-1.023862,0,1255.48,-,-
+664,600,-3.502321,-3.026923,793.2861,-148,-0.2200573,49.84364,-9.299114,-0.1901872,-0.02987009,0,1424.474,-,-
+665,600,11.43227,2.26173,799.9366,-148,0.7183105,50.2615,-9.299114,0.1421087,0.5762018,0,1567.549,-,-
+666,644.4445,25.72987,14.36047,875.936,-148.2222,1.736408,59.11348,-10.00294,0.9691319,0.7672759,0,1796.639,-,-
+667,658.5208,81.01238,81.01238,903.7772,-148.2926,5.586625,62.3246,-10.22628,5.586625,0,0,2351.106,-,-
+668,644.4445,174.4862,149.725,902.9878,-148.2222,11.77539,60.9391,-10.00294,10.10435,1.671035,0,3257.164,-,-
+669,770.7463,208.7785,151.4149,1127.553,-148.8537,16.85101,91.00749,-12.01434,12.22105,4.629957,0,4244.193,-,-
+670,927.217,163.4348,106.9869,1386.81,-155.9969,15.86918,134.6563,-15.14698,10.38821,5.480968,0,4786.319,-,-
+671,1058.376,169.8687,116.3,1491.193,-165.5457,18.82703,165.2732,-18.34791,12.88986,5.937172,0,5694.758,-,-
+672,1195.672,179.1474,116.0353,1493.886,-178.5888,22.43113,187.0502,-22.36119,14.52883,7.902299,0,6502.484,-,-
+673,1370.653,249.263,169.7664,1496.104,-199.4784,35.77783,214.7424,-28.63202,24.36733,11.4105,0,8967.088,-,-
+674,1588.996,274.5664,177.7254,1469.078,-233.2393,45.68766,244.4534,-38.81086,29.57337,16.11428,0,11479.8,-,-
+675,1850.804,326.5981,231.9466,1430.121,-273.3987,63.29984,277.18,-52.98898,44.95491,18.34493,0,16059.16,-,-
+676,2070.22,177.06,119.5923,998.4332,-314.3418,38.38535,216.4532,-68.14708,25.92677,12.45858,0,15209.95,-,-
+677,2149.734,-81.18117,36.54165,813.8387,-329.4494,-18.27547,183.2111,-74.16553,8.226242,-26.50171,0,ERROR,-,-
+678,1319.83,-78.61364,118.5154,1387.915,-193.3796,-10.86537,191.8268,-26.72743,16.38028,-27.24565,0,2434.395,-,-
+679,1416.364,380.3417,331.9403,1407.055,-205.6182,56.41277,208.6962,-30.49756,49.23381,7.178959,0,12397.68,-,-
+680,1559.182,359.1976,300.5107,1521.476,-228.4691,58.64877,248.4223,-37.30379,49.06653,9.582238,0,13351.81,-,-
+681,1710.518,441.2152,368.2365,1527.457,-251.0251,79.03268,273.6057,-44.96488,65.96037,13.07231,0,17299.46,-,-
+682,1919.854,603.5727,529.9606,1322.116,-286.173,121.3463,265.807,-57.53412,106.5468,14.79946,0,25727.47,-,-
+683,2084.814,249.1037,201.0867,1021.778,-317.1147,54.38461,223.0758,-69.23286,43.9015,10.48311,0,17556.43,-,-
+684,2166.125,109.6446,208.9885,794.6426,-332.5638,24.87136,180.2536,-75.43745,47.40614,-22.53478,0,ERROR,-,-
+685,1477.623,392.8771,543.129,1479.351,-215.4197,60.79237,228.9094,-33.33325,84.04178,-23.24941,0,13359.77,-,-
+686,1568.573,489.0973,458.5431,1526.899,-229.9717,80.33941,250.8093,-37.77528,75.32056,5.018849,0,16785,-,-
+687,1632.52,319.4283,298.8318,1554.012,-239.7154,54.60853,265.6694,-40.98105,51.08742,3.521107,0,13098.38,-,-
+688,1672.844,255.917,243.7382,1514.089,-245.5624,44.83149,265.2377,-43.01757,42.69801,2.133475,0,11881.95,-,-
+689,1694.081,133.1228,124.3595,1503.059,-248.6418,23.61649,266.6484,-44.10998,22.06184,1.554653,0,8865.632,-,-
+690,1716.868,272.1353,260.0804,1478.205,-251.9459,48.92721,265.7664,-45.29735,46.75986,2.167349,0,12765.13,-,-
+691,1754.409,280.4178,263.9969,1524.289,-257.3893,51.51873,280.0443,-47.2879,48.50185,3.016879,0,13440,-,-
+692,1799.228,352.1905,331.4003,1540.033,-263.8881,66.35787,290.1649,-49.72039,62.44069,3.917182,0,15985.38,-,-
+693,1858.482,422.8427,402.8758,1435.659,-274.8192,82.29356,279.4076,-53.48525,78.40761,3.885953,0,18988.92,-,-
+694,1900.06,185.8796,172.2266,1366.197,-282.5111,36.98518,271.8374,-56.21231,34.26859,2.716586,0,12898.34,-,-
+695,1927.36,179.725,273.7905,1264.982,-287.5616,36.27437,255.3147,-58.03932,55.25987,-18.9855,0,13138.72,-,-
+696,1337.101,448.1313,581.744,1534.649,-195.4521,62.74774,214.8829,-27.36738,81.45631,-18.70857,0,13032.55,-,-
\ No newline at end of file
diff --git a/VectoCoreTest/TestData/Results/EngineOnlyCycles/24t Coach_Engine Only2.vmod b/VectoCoreTest/TestData/Results/EngineOnlyCycles/24t Coach_Engine Only2.vmod
new file mode 100644
index 0000000000000000000000000000000000000000..c5c06eec70a34b266660ace4fa83421478002c5f
--- /dev/null
+++ b/VectoCoreTest/TestData/Results/EngineOnlyCycles/24t Coach_Engine Only2.vmod	
@@ -0,0 +1,1008 @@
+time [s],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],Paux [kW],FC [g/h],FC-AUXc [g/h],FC-WHTCc [g/h]
+1,600,0,0,1282,-148,0,80.55044,-9.299114,0,0,0,1459,-,-
+2,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+3,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+4,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+5,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+6,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+7,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+8,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+9,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+10,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+11,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+12,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+13,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+14,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+15,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+16,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+17,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+18,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+19,600,3.787888E-06,3.787888E-06,801.2501,-148,2.38E-07,50.34402,-9.299114,2.38E-07,0,0,1459,-,-
+20,600,9.170536,0,801.2501,-148,0.5762018,50.34402,-9.299114,0,0.5762018,0,1546.074,-,-
+21,644.4445,43.06333,34.52525,875.1463,-148.2222,2.906175,59.06019,-10.00294,2.329973,0.5762018,0,1961.22,-,-
+22,644.4445,8.436764,8.436764,888.0933,-148.2222,0.5693641,59.93393,-10.00294,0.5693641,0,0,1632.441,-,-
+23,644.4445,115.8511,63.18603,875.1083,-148.2222,7.818337,59.05762,-10.00294,4.264177,3.55416,0,2652.34,-,-
+24,869.7512,87.66522,87.66522,1262.513,-152.8363,7.98456,114.9899,-13.92035,7.98456,0,0,3277.925,-,-
+25,644.4445,62.38619,20.02867,916.3124,-148.2222,4.210199,61.83832,-10.00294,1.351656,2.858543,0,2144.69,-,-
+26,1015.31,44.93016,-2.555052,1452.349,-161.4545,4.777111,154.4182,-17.16632,-0.2716608,5.048771,0,3594.803,-,-
+27,948.6478,-32.96616,-4.684533,1373.851,-157.1756,-3.27493,136.4813,-15.61417,-0.4653716,-2.809558,0,2196.106,-,-
+28,872.4501,-61.52123,-6.260512,1221.174,-152.9848,-5.620749,111.5698,-13.97711,-0.5719776,-5.048771,0,1460.351,-,-
+29,644.4445,0.2985062,15.00104,840.7117,-148.2222,0.02014501,56.73633,-10.00294,1.012361,-0.992216,0,1555.168,-,-
+30,816.044,1.879797,1.879797,1144.983,-149.8824,0.1606398,97.84562,-12.80834,0.1606398,0,0,1980.72,-,-
+31,644.4445,20.10359,58.792,872.8372,-148.2222,1.356712,58.90435,-10.00294,3.967641,-2.610929,0,1743.217,-,-
+32,644.4445,65.25378,65.07417,879.4834,-148.2222,4.403721,59.35288,-10.00294,4.3916,0.01212145,0,2171.918,-,-
+33,645.3466,10.58478,18.56875,897.8154,-148.2267,0.7153255,60.67485,-10.01724,1.254886,-0.5395605,0,1654.73,-,-
+34,602.9238,5.525331,5.717314,810.1493,-148.0146,0.3488585,51.15123,-9.345352,0.36098,-0.01212145,0,1517.603,-,-
+35,644.4445,24.25558,16.26044,873.8831,-148.2222,1.636914,58.97493,-10.00294,1.097353,0.5395605,0,1782.64,-,-
+36,644.4445,22.13434,21.88527,881.0404,-148.2222,1.49376,59.45795,-10.00294,1.476951,0.01680891,0,1762.499,-,-
+37,645.6951,46.27728,43.79628,882.2181,-148.2285,3.129133,59.65297,-10.02277,2.961375,0.1677578,0,1994.363,-,-
+38,656.8193,57.25459,48.53584,908.6883,-148.2841,3.938083,62.50135,-10.19927,3.33839,0.5996926,0,2121.953,-,-
+39,688.8293,46.46883,34.79183,963.0168,-148.4442,3.351984,69.46629,-10.70788,2.509675,0.8423092,0,2086.763,-,-
+40,715.7259,52.2522,41.42237,1002.097,-148.5786,3.916336,75.10785,-11.13606,3.104633,0.8117025,0,2198.159,-,-
+41,743.2361,44.32463,35.71274,1047.954,-148.7162,3.449852,81.56386,-11.5748,2.779576,0.6702765,0,2180.658,-,-
+42,759.3434,29.38564,25.47028,1070.975,-148.7967,2.336695,85.16204,-11.83206,2.025352,0.3113432,0,2072.638,-,-
+43,763.0762,18.7053,18.37082,1071.609,-148.8154,1.494725,85.63134,-11.89171,1.467997,0.02672757,0,1979.067,-,-
+44,761.0308,16.30659,17.36385,1064.423,-148.8052,1.299553,84.82915,-11.85902,1.383811,-0.08425788,0,1951.996,-,-
+45,757.7582,15.52264,16.64248,1058.326,-148.7888,1.231757,83.98051,-11.80673,1.320618,-0.08886148,0,1937.68,-,-
+46,755.406,18.36341,18.64889,1054.282,-148.777,1.452655,83.39995,-11.76915,1.475238,-0.0225831,0,1959.713,-,-
+47,756.3265,20.92863,21.23316,1056.785,-148.7816,1.657596,83.69981,-11.78385,1.681716,-0.02411984,0,1986.003,-,-
+48,753.872,12.47891,13.91125,1053.876,-148.7694,0.9851509,83.19858,-11.74464,1.098228,-0.113077,0,1900.618,-,-
+49,749.1166,16.78234,17.99582,1043.148,-148.7456,1.316529,81.83214,-11.66869,1.411724,-0.09519503,0,1931.493,-,-
+50,747.787,17.65562,18.71185,1042.628,-148.7389,1.382578,81.6462,-11.64746,1.465289,-0.08271109,0,1936.993,-,-
+51,743.7986,3.449067,14.25843,1036.636,-148.719,0.2686492,80.744,-11.58378,1.110595,-0.8419458,0,1793.726,-,-
+52,691.6417,-64.57079,-41.58897,948.4085,-148.4582,-4.676768,68.69186,-10.75261,-3.012229,-1.664539,0,1014.902,-,-
+53,627.2637,96.25304,-2.565852,817.9171,-148.1363,6.322563,53.72643,-9.730616,-0.1685429,6.491106,0,2430.176,-,-
+54,1049.495,1.187829,-0.8832842,1459.073,-164.702,0.1305458,160.3563,-18.10122,-0.09707546,0.2276213,0,2992.783,-,-
+55,644.4445,16.6744,23.9407,872.67,-148.2222,1.12529,58.89307,-10.00294,1.615664,-0.490374,0,1710.657,-,-
+56,1026.825,56.76796,4.340945,1441.424,-162.5484,6.104194,154.9947,-17.47864,0.4667768,5.637417,0,3803.619,-,-
+57,977.9754,-27.70941,-4.054022,1424.818,-158.7887,-2.837813,145.9204,-16.26208,-0.4151859,-2.422627,0,2347.138,-,-
+58,906.5457,-45.80109,-5.040415,1277.64,-154.86,-4.348046,121.2905,-14.70136,-0.478503,-3.869543,0,1826.685,-,-
+59,764.8557,-88.7198,-31.16203,1043.116,-148.8243,-7.106057,83.54893,-11.92016,-2.495939,-4.610118,0,757.9618,-,-
+60,615.8789,-44.24551,-7.900268,785.1898,-148.0794,-2.853601,50.64057,-9.550334,-0.5095253,-2.344075,0,1056.169,-,-
+61,600,1.704201,-4.265142,784.2189,-148,0.1070781,49.27393,-9.299114,-0.2679868,0.3750649,0,1475.181,-,-
+62,644.4445,16.98687,8.44879,872.5396,-148.2222,1.146377,58.88427,-10.00294,0.5701756,0.5762018,0,1713.624,-,-
+63,644.4445,9.021553,17.55964,878.3146,-148.2222,0.6088292,59.27401,-10.00294,1.185031,-0.5762018,0,1637.993,-,-
+64,600,5.18564,4.722757,804.8837,-148,0.3258234,50.57233,-9.299114,0.2967396,0.02908379,0,1508.238,-,-
+65,646.6069,124.2693,56.28299,877.1885,-148.233,8.414585,59.39664,-10.03723,3.811063,4.603522,0,2736.811,-,-
+66,895.4804,85.53728,84.49033,1304.898,-154.2514,8.021215,122.3661,-14.46485,7.923037,0.09817816,0,3379.16,-,-
+67,653.8535,66.28895,92.87785,930.8409,-148.2693,4.538896,63.73596,-10.1522,6.359474,-1.820578,0,2201.506,-,-
+68,791.9158,187.6217,139.3854,1127.041,-148.9596,15.55932,93.4646,-12.3531,11.55912,4.000204,0,4099.517,-,-
+69,900.8318,95.19201,52.27203,1341.612,-154.5457,8.979927,126.5608,-14.57905,4.931076,4.048851,0,3521.737,-,-
+70,1007.856,188.9964,137.0289,1469.406,-160.7463,19.94714,155.0847,-16.96556,14.46236,5.484777,0,5809.916,-,-
+71,1156.708,179.6167,111.3725,1499.253,-174.8873,21.75701,181.6048,-21.18413,13.49057,8.266437,0,6328.946,-,-
+72,1345.086,283.9939,193.1054,1495.423,-196.4103,40.00255,210.6409,-27.66578,27.20026,12.80229,0,9497.552,-,-
+73,1602.138,317.7925,208.6841,1474.247,-235.31,53.31779,247.3425,-39.47925,35.01208,18.30572,0,12735.88,-,-
+74,1888.49,333.4889,235.5709,1360.771,-280.3706,65.9515,269.1091,-55.44672,46.58702,19.36448,0,16855.77,-,-
+75,2103.714,159.5027,110.2997,932.3865,-320.7057,35.13851,205.4051,-70.6516,24.29906,10.83945,0,ERROR,-,-
+76,2146.359,-133.4082,-4.9384,817.8073,-328.8082,-29.98566,183.8154,-73.90496,-1.109985,-28.87567,0,ERROR,-,-
+77,1286.033,-149.6351,65.34973,1354.004,-189.324,-20.15182,182.3479,-25.49684,8.800848,-28.95267,0,841.8726,-,-
+78,1351.937,307.8995,265.3316,1384.122,-197.2324,43.59072,195.9564,-27.92309,37.56419,6.026536,0,10115.97,-,-
+79,1494.108,422.8993,363.2826,1517.045,-218.0573,66.16794,237.3609,-34.11782,56.84015,9.327791,0,14267.78,-,-
+80,1650.18,382.7237,322.4213,1530.207,-242.2761,66.13712,264.4296,-41.86687,55.71647,10.42064,0,14981.92,-,-
+81,1797.949,399.5454,334.6001,1555.304,-263.7026,75.22672,292.8339,-49.65013,62.99876,12.22796,0,17281.95,-,-
+82,1974.041,515.6417,436.4503,1206.818,-296.1976,106.594,249.4747,-61.23029,90.22348,16.37055,0,23889.77,-,-
+83,2191.804,587.2262,501.8138,787.8055,-337.4427,134.7832,180.8212,-77.45161,115.1789,19.60429,0,ERROR,-,-
+84,2403.877,334.2301,273.7045,334.2301,-377.7366,84.13688,84.13688,-95.08893,68.90056,15.23632,0,ERROR,-,-
+85,2503.301,-56.54663,69.94268,83.6814,-396.6272,-14.82342,21.93667,-103.9739,18.33513,-33.15855,0,ERROR,-,-
+86,1611.144,-235.0663,-10.13028,1371.202,-236.6159,-39.66005,231.3473,-39.9215,-1.709167,-37.95089,0,37.61931,-,-
+87,1619.774,266.0775,257.1406,1328.561,-237.8672,45.13268,225.3536,-40.3476,43.61679,1.515889,0,11585.19,-,-
+88,1655.685,257.2363,243.1765,1494.785,-243.0743,44.60038,259.1703,-42.14494,42.16265,2.437729,0,11735.19,-,-
+89,1690.462,263.2474,249.6788,1501.826,-248.117,46.60131,265.8603,-43.92285,44.19933,2.401978,0,12257.1,-,-
+90,1723.907,249.018,233.8247,1513.123,-252.9665,44.9545,273.1597,-45.66731,42.2117,2.742802,0,12241.85,-,-
+91,1766.618,358.9676,339.1079,1522.828,-259.1596,66.40894,281.723,-47.94448,62.7349,3.674046,0,15768.52,-,-
+92,1823.327,394.6358,368.3391,1508.04,-268.3155,75.3511,287.9427,-51.23172,70.33006,5.021039,0,17552.53,-,-
+93,1898.131,544.5615,513.3238,1363.192,-282.1542,108.2435,270.9642,-56.08431,102.0343,6.209172,0,23420.74,-,-
+94,1980.033,467.5205,442.0008,1226.341,-297.3061,96.9397,254.28,-61.64599,91.64824,5.291466,0,22455.15,-,-
+95,2027.516,212.5282,200.5397,1117.442,-306.228,45.12419,237.2564,-65.01863,42.57878,2.545408,0,15602.88,-,-
+96,2040.799,22.5261,127.8032,1041.578,-308.7518,4.814098,222.5977,-65.98396,27.31307,-22.49897,0,10316.36,-,-
+97,1396.846,322.3199,472.1198,1449.842,-202.6215,47.14811,212.079,-29.63894,69.06043,-21.91232,0,10911.45,-,-
+98,1435.803,627.2028,610.7021,1545.526,-208.7285,94.3043,232.3806,-31.38377,91.8233,2.480995,0,18637.26,-,-
+99,1479.637,594.0043,579.1003,1638.939,-215.7419,92.03931,253.9491,-33.42861,89.72998,2.309333,0,18401.32,-,-
+100,1511.026,383.0977,372.0832,1618.519,-220.7642,60.61919,256.1051,-34.93246,58.87632,1.742871,0,13460.26,-,-
+101,1535.129,451.4071,440.943,1539.581,-224.6206,72.56745,247.5005,-36.10964,70.88527,1.682182,0,15385.76,-,-
+102,1563.544,475.8323,464.6609,1553.153,-229.167,77.9099,254.3039,-37.52242,76.08076,1.829139,0,16368.73,-,-
+103,1591.288,445.2722,434.8489,1552.029,-233.6061,74.19984,258.629,-38.92795,72.46291,1.736925,0,15921.79,-,-
+104,1615.981,419.9371,410.8453,1541.791,-237.3172,71.0639,260.9099,-40.16004,69.52535,1.53855,0,15563.56,-,-
+105,1637.034,376.2195,368.472,1537.531,-240.3699,64.49524,263.5787,-41.20657,63.16708,1.328163,0,14638.52,-,-
+106,1654.957,361.3505,353.7967,1527.899,-242.9688,62.62446,264.7951,-42.10811,61.31534,1.309122,0,14448.85,-,-
+107,1674.975,423.4403,415.4202,1527.54,-245.8714,74.27268,267.935,-43.12657,72.86594,1.406735,0,16388.32,-,-
+108,1695.262,371.6657,364.7486,1548.636,-248.813,65.98085,274.9253,-44.17113,64.75288,1.227973,0,15234.92,-,-
+109,1709.799,309.2745,305.803,1538.119,-250.9209,55.37552,275.3998,-44.92731,54.75394,0.6215815,0,13686.15,-,-
+110,1712.769,135.339,136.8725,1523.115,-251.3515,24.27451,273.187,-45.0826,24.54955,-0.2750401,0,9122.085,-,-
+111,1702.061,27.02083,32.3534,1474.023,-249.7988,4.816177,262.729,-44.524,5.766651,-0.9504735,0,6423.931,-,-
+112,1685.925,18.62135,25.00264,1437.877,-247.4592,3.287593,253.8567,-43.68883,4.414207,-1.126614,0,6139.807,-,-
+113,1669.991,26.02238,31.88091,1428.824,-245.1487,4.550822,249.8743,-42.87186,5.575367,-1.024545,0,6209.245,-,-
+114,1656.502,64.61633,69.61541,1425.511,-243.1928,11.2089,247.2813,-42.18628,12.07608,-0.8671831,0,6988.956,-,-
+115,1644.88,61.23325,65.61612,1432.701,-241.5076,10.54751,246.7847,-41.60003,11.30247,-0.7549564,0,6843.781,-,-
+116,1634.482,86.92116,90.95547,1427.82,-239.9999,14.87765,244.3893,-41.07899,15.56817,-0.6905218,0,7354.234,-,-
+117,1624.607,68.46641,73.30067,1432.383,-238.568,11.64808,243.6891,-40.58721,12.47053,-0.8224459,0,6883.443,-,-
+118,1610.151,-9.240115,-3.180296,1421.514,-236.4719,-1.558018,239.6881,-39.87262,-0.5362444,-1.021774,0,5065.09,-,-
+119,1594.136,32.22758,38.19804,1393.545,-234.0618,5.379992,232.6349,-39.07369,6.376687,-0.996695,0,5882.933,-,-
+120,1580.163,27.30954,33.14782,1410.614,-231.8261,4.519026,233.4204,-38.36125,5.485111,-0.9660846,0,5666.646,-,-
+121,1564.78,0.3636259,6.259995,1412.486,-229.3648,0.05958496,231.4547,-37.58449,1.025784,-0.966199,0,5056.958,-,-
+122,1550.539,47.06121,52.04159,1406.432,-227.0862,7.641426,228.3653,-36.87246,8.4501,-0.808674,0,5888.553,-,-
+123,1539.777,68.6536,72.33276,1424.926,-225.3643,11.07006,229.7623,-36.33889,11.6633,-0.5932446,0,6280.474,-,-
+124,1532.066,106.7972,110.4107,1434.141,-224.1306,17.13428,230.0901,-35.95897,17.71403,-0.5797531,0,7072.241,-,-
+125,1521.599,9.668711,15.17909,1449.958,-222.4558,1.540627,231.0385,-35.44644,2.418658,-0.8780314,0,5040.514,-,-
+126,1504.309,-33.69525,-25.70424,1419.683,-219.6894,-5.308042,223.6439,-34.60787,-4.049212,-1.25883,0,4062.217,-,-
+127,1481.361,-100.7852,-90.74965,1408.838,-216.0177,-15.63458,218.5499,-33.51035,-14.07779,-1.556794,0,2535.507,-,-
+128,1453.792,-124.127,-112.669,1389.43,-211.6067,-18.89719,211.5278,-32.21516,-17.15281,-1.744379,0,1915.911,-,-
+129,1423.724,-135.3489,-121.7508,1385.921,-206.7958,-20.17945,206.6297,-30.83161,-18.15207,-2.027376,0,1542.116,-,-
+130,1385.246,-133.0711,-115.9232,1385.334,-201.2295,-19.30365,200.9602,-29.19088,-16.81612,-2.487527,0,1445.763,-,-
+131,1337.242,-130.6579,-112.3143,1385.807,-195.469,-18.29677,194.0624,-27.37263,-15.72801,-2.568758,0,1374.762,-,-
+132,1293.188,-125.1095,-113.9302,1386.834,-190.1826,-16.94262,187.8083,-25.75496,-15.42869,-1.513933,0,1380.318,-,-
+133,1281.755,284.0433,285.3856,1390.165,-188.8106,38.12573,186.595,-25.34312,38.3059,-0.1801681,0,8983.826,-,-
+134,1286.484,87.14797,86.78278,1543.625,-189.3781,11.7406,207.9576,-25.51307,11.6914,0.04920031,0,5303.294,-,-
+135,1283.596,133.1172,133.2941,1470.254,-189.0315,17.89333,197.6284,-25.40921,17.9171,-0.02376681,0,6134.657,-,-
+136,1285.597,185.7029,184.0723,1487.341,-189.2717,25.0007,200.2369,-25.48115,24.78118,0.2195235,0,7155.98,-,-
+137,1291.778,220.914,217.3726,1506.805,-190.0134,29.88407,203.8326,-25.70399,29.405,0.4790672,0,7861.332,-,-
+138,1303.359,299.3874,293.53,1519.607,-191.4031,40.86262,207.4072,-26.12411,40.06316,0.7994608,0,9417.771,-,-
+139,1321.147,352.0673,344.1585,1548.259,-193.5376,48.70857,214.2019,-26.77597,47.6144,1.094172,0,10808.42,-,-
+140,1343.046,388.9465,379.7535,1567.373,-196.1655,54.70278,220.4407,-27.5894,53.40984,1.292941,0,11879.83,-,-
+141,1367.31,407.4287,396.3932,1580.767,-199.0772,58.33742,226.3411,-28.50475,56.75732,1.580101,0,12532.68,-,-
+142,1398.372,536.1453,521.4193,1586.892,-202.8046,78.5116,232.3799,-29.69814,76.35516,2.156437,0,15967.06,-,-
+143,1441.017,654.1249,635.6244,1619.78,-209.5627,98.70938,244.4295,-31.62363,95.91759,2.791791,0,19346.57,-,-
+144,1491.115,699.2388,680.9673,1643.299,-217.5784,109.1856,256.5999,-33.97469,106.3325,2.853078,0,21073.68,-,-
+145,1533.099,499.3958,485.3878,1644.748,-224.2958,80.17587,264.0573,-36.00974,77.92695,2.248918,0,16595.47,-,-
+146,1561.824,436.0255,425.9124,1569.613,-228.8918,71.31363,256.7162,-37.43613,69.6596,1.65403,0,15298.9,-,-
+147,1584.033,369.1954,362.1931,1541.97,-232.4453,61.24197,255.7812,-38.55792,60.08042,1.161546,0,13873,-,-
+148,1597.119,252.8292,248.8781,1516.634,-234.539,42.28566,253.6568,-39.22663,41.62484,0.6608209,0,11003.9,-,-
+149,1603.93,241.9587,239.8837,1479.051,-235.5699,40.64014,248.4261,-39.56706,40.29163,0.3485158,0,10794.84,-,-
+150,1607.558,187.0646,186.8591,1476.581,-236.0959,31.49104,248.5721,-39.74511,31.45644,0.03459711,0,9425.89,-,-
+151,1604.965,114.6764,116.151,1458.302,-235.7199,19.27385,245.0991,-39.61781,19.52167,-0.2478251,0,7796.074,-,-
+152,1600.142,139.7361,141.4609,1433.173,-235.0206,23.41509,240.1518,-39.38157,23.70411,-0.2890159,0,8325.968,-,-
+153,1596.299,132.3542,134.5307,1442.332,-234.4078,22.12486,241.106,-39.18456,22.48869,-0.3638254,0,8132.26,-,-
+154,1589.192,71.52106,75.00057,1441.816,-233.2707,11.90252,239.9468,-38.82087,12.48158,-0.57906,0,6721.455,-,-
+155,1578.793,62.24268,66.67814,1424.12,-231.6069,10.29063,235.4509,-38.29175,11.02395,-0.7333171,0,6435.202,-,-
+156,1566.889,36.67767,42.11662,1423.846,-229.7022,6.018228,233.6307,-37.69052,6.910674,-0.8924458,0,5774.275,-,-
+157,1551.426,-14.49673,-6.917517,1418.733,-227.2282,-2.355211,230.4944,-36.91661,-1.123854,-1.231357,0,4682.187,-,-
+158,1528.707,-104.6979,-94.99168,1405.949,-223.5931,-16.76064,225.0725,-35.79409,-15.20682,-1.553822,0,2635.427,-,-
+159,1502.589,-82.79519,-72.31786,1379.095,-219.4143,-13.02789,217.0017,-34.525,-11.37927,-1.648615,0,3012.952,-,-
+160,1476.041,-119.1831,-106.6046,1391.965,-215.1666,-18.42221,215.157,-33.25844,-16.47795,-1.944263,0,2121.234,-,-
+161,1439.148,-135.6979,-118.0458,1384.906,-209.2637,-20.45066,208.7153,-31.53755,-17.79036,-2.660299,0,1604.352,-,-
+162,1386.845,-133.0824,-111.745,1384.694,-201.4214,-19.32757,201.0992,-29.25244,-16.22873,-3.098839,0,1449.594,-,-
+163,1331.801,-133.4001,-111.468,1385.532,-194.8161,-18.60477,193.2344,-27.1702,-15.54598,-3.058788,0,1302.745,-,-
+164,1276.609,-128.0363,-106.2066,1385.312,-188.1931,-17.11668,185.1971,-25.15882,-14.19835,-2.918335,0,1276.035,-,-
+165,1222.116,-124.3716,-105.7884,1387.345,-181.6539,-15.91704,177.552,-23.24801,-13.53877,-2.378269,0,1119.721,-,-
+166,1183.826,-121.3442,-110.0028,1389.352,-177.4635,-15.04303,172.2379,-22.00014,-13.63705,-1.405982,0,1036.797,-,-
+167,1165.594,29.5695,35.41756,1391.284,-175.7314,3.609275,169.8212,-21.44991,4.323093,-0.7138183,0,3688.994,-,-
+168,1154.524,-5.858347,-1.818656,1448.695,-174.6798,-0.7082828,175.1494,-21.11904,-0.2198782,-0.4884046,0,3101.597,-,-
+169,1145.307,65.15321,68.7969,1435.286,-173.8042,7.814233,172.1428,-20.84542,8.251244,-0.4370106,0,4221.084,-,-
+170,1136.212,-4.806559,-1.227013,1462.128,-172.9401,-0.5719029,173.9696,-20.57708,-0.1459947,-0.4259082,0,3079.961,-,-
+171,1127.318,69.35881,71.11412,1435.683,-172.0952,8.187979,169.4859,-20.31627,8.395197,-0.2072181,0,4220.741,-,-
+172,1127.425,178.0661,177.0695,1463.507,-172.1054,21.02314,172.787,-20.31939,20.90548,0.1176574,0,6164.361,-,-
+173,1132.316,168.3272,166.8263,1503.986,-172.57,19.95954,178.3365,-20.46264,19.78157,0.177971,0,6012.389,-,-
+174,1134.976,135.0664,133.3666,1500.475,-172.8227,16.05324,178.338,-20.54074,15.85121,0.2020281,0,5427.78,-,-
+175,1140.847,235.2697,231.5724,1487.889,-173.3805,28.10749,177.757,-20.71363,27.66578,0.4417079,0,7191.243,-,-
+176,1153.503,276.7515,270.2323,1524.758,-174.5828,33.43007,184.1825,-21.08865,32.64259,0.7874816,0,7999.825,-,-
+177,1173.508,389.4692,381.0513,1539.513,-176.4833,47.86166,189.1899,-21.68793,46.8272,1.034464,0,10260.87,-,-
+178,1195.77,327.4031,319.2975,1580.832,-178.5981,40.99767,197.953,-22.36419,39.98267,1.014994,0,9257.626,-,-
+179,1214.31,318.8598,310.9846,1558.402,-180.7172,40.54693,198.1699,-22.98041,39.54551,1.001422,0,9217.15,-,-
+180,1235.31,381.7586,372.2441,1555.04,-183.2372,49.38482,201.1621,-23.70382,48.15401,1.230805,0,10599.08,-,-
+181,1262.019,440.6324,429.5888,1577.63,-186.4423,58.23324,208.4969,-24.6399,56.77373,1.459511,0,12104.95,-,-
+182,1290.77,429.6628,418.7212,1599.057,-189.8924,58.07714,216.1431,-25.66759,56.59818,1.478957,0,12183.74,-,-
+183,1317.063,397.0867,386.5176,1595.407,-193.0476,54.7672,220.0425,-26.6256,53.30949,1.457712,0,11797.06,-,-
+184,1343.879,444.3654,434.9593,1583.436,-196.2655,62.53585,222.8381,-27.62058,61.21212,1.323736,0,13027.56,-,-
+185,1364.448,273.0347,267.383,1601.625,-198.7338,39.01247,228.8476,-28.39601,38.20493,0.8075434,0,9447.177,-,-
+186,1372.416,189.5373,187.2231,1539.294,-199.6899,27.24012,221.2259,-28.69925,26.90753,0.3325892,0,7770.424,-,-
+187,1376.097,183.7302,183.3622,1508.386,-200.1317,26.47635,217.3653,-28.83988,26.42333,0.05302388,0,7681.948,-,-
+188,1374.269,76.24336,77.74364,1506.49,-199.9123,10.97242,216.8037,-28.77,11.18833,-0.2159099,0,5608.425,-,-
+189,1368.546,102.647,104.9165,1466.211,-199.2255,14.71074,210.1283,-28.55177,15.03598,-0.3252447,0,6079.325,-,-
+190,1362.863,74.76355,77.25121,1476.153,-198.5436,10.67016,210.6746,-28.33588,11.02519,-0.3550348,0,5508.976,-,-
+191,1356.038,77.43774,80.76211,1465.677,-197.7245,10.99647,208.132,-28.07767,11.46854,-0.4720729,0,5517.76,-,-
+192,1346.136,7.97706,14.1053,1466.753,-196.5363,1.124503,206.7638,-27.70514,1.988382,-0.8638794,0,4180.138,-,-
+193,1325.11,-129.0316,-116.8838,1440.539,-194.0132,-17.9051,199.8967,-26.92228,-16.2194,-1.685701,0,1378.377,-,-
+194,1284.63,-126.1256,-108.9066,1387.588,-189.1556,-16.96719,186.6669,-25.44637,-14.65078,-2.31641,0,1336.981,-,-
+195,1238.373,-127.6369,-109.5772,1388.436,-183.6048,-16.55223,180.0554,-23.81026,-14.2102,-2.34203,0,1140.599,-,-
+196,1193.929,-120.2759,-103.8393,1387.854,-178.4232,-15.03785,173.5206,-22.30789,-12.98282,-2.055032,0,1074.264,-,-
+197,1155.988,-119.5851,-108.2187,1390.916,-174.8189,-14.47635,168.3771,-21.16266,-13.10039,-1.375963,0,1020.435,-,-
+198,1137.273,20.19871,24.84404,1391.917,-173.0409,2.405564,165.7703,-20.6083,2.958799,-0.553235,0,3481.251,-,-
+199,1132.786,134.724,133.9632,1445.104,-172.6147,15.98164,171.4256,-20.47643,15.8914,0.09024294,0,5411.406,-,-
+200,1141.075,283.7219,278.9485,1487.655,-173.4021,33.90281,177.7644,-20.72035,33.33242,0.5703874,0,8040.37,-,-
+201,1156.7,289.9659,282.3105,1542.458,-174.8865,35.12338,186.837,-21.18388,34.19608,0.9272999,0,8271.085,-,-
+202,1179.433,435.5909,424.1682,1544.141,-177.0461,53.7998,190.7168,-21.86695,52.38899,1.410807,0,11126.15,-,-
+203,1213.827,535.8825,520.1509,1596.218,-180.6592,68.11692,202.8979,-22.9639,66.11726,1.999664,0,13507.82,-,-
+204,1258.176,648.72,630.3763,1631.373,-185.9811,85.47268,214.9429,-24.50411,83.05579,2.416888,0,16571.04,-,-
+205,1305.898,615.9441,596.9261,1671.88,-191.7077,84.23239,228.6351,-26.21667,81.63163,2.60076,0,16525.22,-,-
+206,1353.754,661.4887,643.4066,1660.314,-197.4505,93.77581,235.374,-27.99153,91.21239,2.563413,0,18254.28,-,-
+207,1396.935,530.9613,514.0288,1677.891,-202.6322,77.67258,245.4531,-29.6424,75.19558,2.476994,0,15821.97,-,-
+208,1438.893,646.8818,628.9226,1618.693,-209.2229,97.47248,243.9055,-31.52581,94.76639,2.706089,0,19146.34,-,-
+209,1487.004,665.2884,647.3359,1642.549,-216.9206,103.5978,255.7756,-33.7786,100.8023,2.795537,0,20211.29,-,-
+210,1529.298,539.4854,524.209,1634.691,-223.6877,86.39735,261.7921,-35.82307,83.95087,2.446478,0,17606.15,-,-
+211,1563.974,518.7225,505.3825,1581.485,-229.2358,84.95585,259.0139,-37.54401,82.77103,2.184826,0,17508.56,-,-
+212,1596.393,499.9771,487.9616,1563.694,-234.4229,83.58311,261.4088,-39.18938,81.57443,2.008681,0,17434.93,-,-
+213,1624.446,435.1006,426.4298,1559.707,-238.5447,74.01565,265.3242,-40.57922,72.54066,1.47499,0,16069.61,-,-
+214,1640.138,251.376,247.6988,1543.069,-240.82,43.17505,265.0296,-41.362,42.54347,0.6315762,0,11419.87,-,-
+215,1643,173.0718,173.4452,1488.655,-241.235,29.77779,256.1299,-41.50558,29.84203,-0.06424312,0,9399.466,-,-
+216,1638.257,93.35413,96.01612,1463.631,-240.5472,16.01563,251.0974,-41.26777,16.47232,-0.4566861,0,7520.339,-,-
+217,1629.605,92.22087,93.77315,1436.114,-239.2927,15.73766,245.0755,-40.83574,16.00256,-0.2648991,0,7443.155,-,-
+218,1630.478,287.2779,284.6463,1435.891,-239.4193,49.05077,245.1688,-40.87923,48.60144,0.4493276,0,12245.94,-,-
+219,1642.785,328.442,323.2375,1499.023,-241.2038,56.50254,257.88,-41.49479,55.60721,0.8953294,0,13439.54,-,-
+220,1656.623,324.0203,318.7104,1514.438,-243.2103,56.21142,262.7265,-42.19241,55.29026,0.9211598,0,13471.11,-,-
+221,1669.48,312.0607,307.3751,1516.124,-245.0746,54.55681,265.0603,-42.84579,53.73763,0.819179,0,13297.53,-,-
+222,1680.188,283.0802,279.1659,1515.374,-246.6273,49.80764,266.6284,-43.39379,49.11893,0.6887088,0,12661.39,-,-
+223,1689.163,278.7301,275.6046,1509.665,-247.9286,49.30421,267.0428,-43.85578,48.75134,0.5528665,0,12643.56,-,-
+224,1695.907,239.2801,236.9558,1510.371,-248.9065,42.49494,268.2343,-44.20454,42.08216,0.4127833,0,11695.05,-,-
+225,1700.851,243.564,241.398,1501.183,-249.6234,43.38184,267.3798,-44.46109,42.99605,0.3857936,0,11857.88,-,-
+226,1706.79,260.8594,258.2896,1504.048,-250.4846,46.62461,268.8255,-44.77027,46.16529,0.4593202,0,12367.48,-,-
+227,1713.763,266.5401,263.8271,1510.588,-251.4956,47.83458,271.0974,-45.13462,47.34768,0.4869004,0,12587.79,-,-
+228,1720.427,256.7721,254.0747,1513.991,-252.4619,46.26075,272.7646,-45.48422,45.77478,0.4859688,0,12405.58,-,-
+229,1727.319,271.3633,270.3101,1513.53,-253.4612,49.08538,273.774,-45.84719,48.89489,0.1904961,0,12855.33,-,-
+230,1725.733,83.55854,86.01656,1517.075,-253.2313,15.10056,274.1632,-45.76354,15.54477,-0.4442099,0,7868.938,-,-
+231,1714.932,80.63452,85.00993,1465.171,-251.6651,14.48093,263.126,-45.19585,15.2667,-0.7857665,0,7696.742,-,-
+232,1703.74,70.33857,75.12929,1459.903,-250.0423,12.54947,260.469,-44.61135,13.40421,-0.8547376,0,7399.99,-,-
+233,1690.842,42.26111,47.62954,1451.979,-248.1721,7.482945,257.094,-43.94248,8.433504,-0.9505584,0,6696.475,-,-
+234,1676.749,42.07651,47.53365,1438.418,-246.1286,7.388161,252.5699,-43.21741,8.346374,-0.958212,0,6607.8,-,-
+235,1663.421,53.53508,59.06407,1433.033,-244.196,9.325438,249.6243,-42.53725,10.28855,-0.9631126,0,6783.358,-,-
+236,1648.951,14.94603,20.95827,1430.876,-242.0979,2.580847,247.0805,-41.80492,3.619027,-1.03818,0,5836.003,-,-
+237,1633.192,22.97571,29.24678,1412.904,-239.8129,3.929477,241.6454,-41.01458,5.002003,-1.072526,0,5920.51,-,-
+238,1617.433,10.63383,16.68789,1409.407,-237.5278,1.801128,238.7213,-40.23179,2.826547,-1.025419,0,5550.732,-,-
+239,1602.775,41.54221,47.10218,1399.868,-235.4024,6.972537,234.957,-39.51046,7.905733,-0.9331963,0,6152.042,-,-
+240,1589.501,35.28629,40.52882,1411.556,-233.3202,5.873478,234.9565,-38.83664,6.74611,-0.8726318,0,5915.777,-,-
+241,1576.428,43.18218,47.64097,1412.503,-231.2285,7.12865,233.1805,-38.17193,7.864722,-0.7360716,0,5992.108,-,-
+242,1567.118,110.1675,112.5089,1417.297,-229.7389,18.0794,232.5901,-37.70204,18.46364,-0.3842417,0,7414.847,-,-
+243,1564.686,183.1523,183.0908,1440.439,-229.3498,30.01016,236.021,-37.57977,30.00007,0.01008922,0,9023.852,-,-
+244,1567.427,217.0467,215.5515,1464.178,-229.7883,35.62617,240.331,-37.71759,35.38074,0.2454254,0,9810.837,-,-
+245,1572.196,226.2652,224.4664,1474.174,-230.5514,37.25229,242.708,-37.95797,36.95614,0.296151,0,10058.33,-,-
+246,1576.469,207.6484,206.8316,1476.099,-231.235,34.28015,243.6855,-38.174,34.14531,0.134843,0,9664.607,-,-
+247,1576.307,135.5947,136.7155,1470.126,-231.2091,22.38268,242.6744,-38.1658,22.5677,-0.1850223,0,8051.983,-,-
+248,1570.826,97.58784,100.1498,1447.562,-230.3322,16.05286,238.1189,-37.88884,16.47429,-0.4214295,0,7162.612,-,-
+249,1563.423,93.3472,96.77948,1436.6,-229.1477,15.28292,235.202,-37.51635,15.84486,-0.5619377,0,7011.56,-,-
+250,1553.562,43.69028,48.95279,1437.602,-227.5699,7.107912,233.8814,-37.02304,7.964062,-0.85615,0,5837.531,-,-
+251,1536.916,-44.20661,-36.98547,1424.467,-224.9065,-7.114853,229.2616,-36.19769,-5.952643,-1.162211,0,3986.473,-,-
+252,1517.233,-22.18669,-14.32253,1397.881,-221.7573,-3.525117,222.1013,-35.23375,-2.275624,-1.249493,0,4364.687,-,-
+253,1497.389,-53.24101,-44.23098,1409.758,-218.5822,-8.348521,221.0588,-34.27505,-6.935693,-1.412829,0,3616.373,-,-
+254,1471.863,-130.4236,-119.4917,1403.568,-214.4981,-20.10259,216.3364,-33.06126,-18.41763,-1.684963,0,1863.593,-,-
+255,1442.372,-131.3889,-120.0415,1380.372,-209.7795,-19.84562,208.4981,-31.68611,-18.13165,-1.713965,0,1710.311,-,-
+256,1414.871,-101.3344,-90.47707,1384.765,-205.3793,-15.01421,205.1736,-30.43002,-13.40553,-1.608679,0,2223.655,-,-
+257,1387.812,-128.4075,-117.8943,1398.759,-201.5374,-18.66164,203.2835,-29.28971,-17.13374,-1.527897,0,1551.219,-,-
+258,1362.057,-81.18473,-72.88641,1388.437,-198.4468,-11.57973,198.0387,-28.30532,-10.3961,-1.183625,0,2487.343,-,-
+259,1346.257,57.14734,60.40297,1406.698,-196.5508,8.056614,198.3159,-27.70968,8.515593,-0.4589787,0,5067.552,-,-
+260,1345.787,223.6316,221.1411,1458.938,-196.4944,31.51652,205.6088,-27.69206,31.16553,0.3509858,0,8248.818,-,-
+261,1358.712,335.1758,328.5363,1520.564,-198.0454,47.69015,216.3519,-28.1787,46.74545,0.9447021,0,10810.78,-,-
+262,1379.066,381.3473,372.8513,1561.336,-200.4879,55.07244,225.481,-28.95356,53.84549,1.226949,0,12078.98,-,-
+263,1401.382,381.5362,372.4821,1577.845,-203.2211,55.99134,231.5525,-29.82318,54.66264,1.328696,0,12310.72,-,-
+264,1424.557,404.4268,395.2643,1571.385,-206.9291,60.33209,234.4181,-30.86953,58.96523,1.366857,0,13088.93,-,-
+265,1447.437,380.9996,372.0387,1573.164,-210.5899,57.75011,238.4527,-31.92022,56.39186,1.358248,0,12733.58,-,-
+266,1469.605,395.5855,386.4926,1558.459,-214.1368,60.8793,239.8417,-32.95494,59.47992,1.399379,0,13344.98,-,-
+267,1493.117,413.4163,404.364,1556.561,-217.8987,64.64129,243.382,-34.07039,63.22589,1.415399,0,14029.7,-,-
+268,1515.124,370.6606,362.1635,1556.235,-221.4198,58.81027,246.9176,-35.13123,57.4621,1.348174,0,13182.16,-,-
+269,1535.841,392.5768,384.0481,1535.43,-224.7346,63.13926,246.9477,-36.14471,61.76757,1.371691,0,13967.67,-,-
+270,1557.969,404.1641,395.7163,1535.916,-228.275,65.93942,250.5849,-37.2431,64.56117,1.37825,0,14493.46,-,-
+271,1578.323,361.9005,354.2205,1533.499,-231.5317,59.8155,253.4591,-38.26793,58.54613,1.269371,0,13624.08,-,-
+272,1596.594,365.9951,359.3023,1514.027,-234.455,61.19253,253.1376,-39.1997,60.07353,1.119003,0,13923.13,-,-
+273,1611.991,306.308,301.4227,1516.727,-236.7387,51.70702,256.0345,-39.96322,50.88236,0.8246562,0,12542.91,-,-
+274,1621.194,240.7237,239.2504,1500.08,-238.0731,40.86791,254.6701,-40.41792,40.61778,0.2501296,0,10944.89,-,-
+275,1619.421,80.65228,83.83949,1479.456,-237.8161,13.67745,250.8941,-40.33012,14.21795,-0.5405026,0,7124.072,-,-
+276,1605.113,-17.21383,-11.11756,1423.781,-235.7414,-2.893422,239.3191,-39.62507,-1.868717,-1.024705,0,4858.117,-,-
+277,1588.762,33.42691,39.09373,1392.07,-233.2019,5.561395,231.6054,-38.79892,6.50421,-0.9428155,0,5868.674,-,-
+278,1576.67,64.67198,68.54057,1411.813,-231.2672,10.67789,233.1023,-38.18418,11.31663,-0.6387365,0,6473.178,-,-
+279,1569.348,129.7806,131.5268,1424.024,-230.0957,21.32837,234.0266,-37.81433,21.61535,-0.2869776,0,7869.233,-,-
+280,1567.91,184.9361,184.58,1446.227,-229.8656,30.36487,237.4576,-37.7419,30.3064,0.05846538,0,9088.228,-,-
+281,1571.135,226.2593,224.5955,1463.772,-230.3816,37.22619,240.8327,-37.90443,36.95245,0.2737378,0,10050.1,-,-
+282,1576.267,225.9816,223.6603,1476.112,-231.2027,37.30195,243.6564,-38.16377,36.91877,0.3831826,0,10089.52,-,-
+283,1582.797,256.7368,253.9451,1474.137,-232.2475,42.55416,244.3385,-38.49505,42.09142,0.4627355,0,10953.44,-,-
+284,1590.294,247.7538,244.7653,1482.138,-233.447,41.25972,246.8281,-38.87715,40.76203,0.4976939,0,10800.55,-,-
+285,1597.817,259.48,256.4619,1477.022,-234.6507,43.41697,247.1397,-39.26247,42.91198,0.504993,0,11183.18,-,-
+286,1605.462,252.0594,249.1839,1481.54,-235.792,42.37713,249.0819,-39.6422,41.89369,0.4834417,0,11072.04,-,-
+287,1612.273,244.6093,241.7994,1480.857,-236.7796,41.29906,250.0232,-39.97711,40.82465,0.4744069,0,10951.28,-,-
+288,1619.582,264.1354,260.9717,1480.298,-237.8394,44.79795,251.0619,-40.33809,44.26139,0.5365611,0,11532.97,-,-
+289,1628.167,272.9106,269.3519,1488.53,-239.0842,46.53159,253.7963,-40.76416,45.92483,0.606764,0,11850.25,-,-
+290,1637.464,281.6596,277.5672,1493.507,-240.4323,48.29754,256.0989,-41.22808,47.59579,0.7017493,0,12174.36,-,-
+291,1648.723,315.9747,311.2064,1498.836,-242.0648,54.55426,258.7799,-41.79343,53.73099,0.8232715,0,13179.91,-,-
+292,1661.419,315.0847,309.4717,1511.942,-243.9057,54.8195,263.0528,-42.43555,53.84293,0.9765719,0,13290.72,-,-
+293,1676.91,377.4767,370.7427,1515.183,-246.152,66.28703,266.0747,-43.22567,65.1045,1.182524,0,15168.22,-,-
+294,1695.235,377.4506,370.6307,1536.348,-248.8091,67.00676,272.7395,-44.16973,65.79607,1.21069,0,15394.91,-,-
+295,1711.21,334.656,328.7439,1539.849,-251.1254,59.96951,275.9372,-45.00105,58.91008,1.059429,0,14407.11,-,-
+296,1724.968,336.3221,330.7047,1532.175,-253.1204,60.75263,276.7694,-45.72321,59.73791,1.014722,0,14624.02,-,-
+297,1739.437,352.6945,346.9636,1536.163,-255.2184,64.2445,279.8173,-46.4889,63.20061,1.04389,0,15257.34,-,-
+298,1753.772,337.8688,332.1859,1543.632,-257.2969,62.05115,283.4951,-47.25376,61.00745,1.043697,0,15024.34,-,-
+299,1768,354.4683,348.9789,1543.913,-259.36,65.62786,285.847,-48.01908,64.61153,1.01633,0,15660.97,-,-
+300,1781.368,324.3864,319.1099,1551.056,-261.2984,60.51247,289.3409,-48.74376,59.52817,0.9843014,0,14993.15,-,-
+301,1794.521,354.1317,348.6174,1548.416,-263.2055,66.54906,290.9812,-49.46206,65.5128,1.036265,0,15980.77,-,-
+302,1809.072,355.8136,351.0595,1537.531,-265.6783,67.40732,291.2785,-50.33158,66.50668,0.90064,0,16233.5,-,-
+303,1818.449,250.8213,249.2008,1519.129,-267.4131,47.76328,289.284,-50.92281,47.4547,0.3085745,0,13466.4,-,-
+304,1817.24,138.9968,141.4679,1500.973,-267.1894,26.45123,285.6365,-50.84639,26.92148,-0.4702517,0,10373.97,-,-
+305,1805.995,41.40663,47.47704,1501.463,-265.1091,7.830961,283.9616,-50.13832,8.979017,-1.148056,0,7601.826,-,-
+306,1786.662,-29.5389,-21.43336,1487.307,-262.066,-5.526694,278.2733,-49.03223,-4.010155,-1.516539,0,5644.947,-,-
+307,1765.233,-9.004112,-0.2971662,1460.741,-258.9588,-1.664453,270.025,-47.86977,-0.05493259,-1.609521,0,6000.813,-,-
+308,1742.89,-51.89403,-43.21162,1454.259,-255.719,-9.471439,265.4241,-46.67257,-7.886769,-1.58467,0,4916.059,-,-
+309,1721.609,6.692089,14.52898,1432.916,-252.6333,1.206493,258.3354,-45.54637,2.619378,-1.412885,0,6087.888,-,-
+310,1703.539,2.78112,9.553826,1439.898,-250.0132,0.4961356,256.8694,-44.60089,1.704347,-1.208211,0,5892.252,-,-
+311,1687.591,46.44151,51.98959,1431.777,-247.7007,8.207335,253.0295,-43.77468,9.187814,-0.9804789,0,6770.191,-,-
+312,1675.688,82.54832,86.17913,1439.174,-245.9748,14.48538,252.5429,-43.16307,15.12251,-0.6371266,0,7503.956,-,-
+313,1669.373,158.849,160.7489,1447.092,-245.0591,27.76939,252.9753,-42.84033,28.10153,-0.3321361,0,9295.698,-,-
+314,1666.148,144.3642,146.3908,1468.096,-244.5915,25.18846,256.1513,-42.67598,25.54206,-0.3535975,0,8872.935,-,-
+315,1659.176,80.9875,84.69771,1461.643,-243.5805,14.07146,253.9584,-42.32175,14.7161,-0.6446441,0,7370.077,-,-
+316,1647.474,44.22477,49.65036,1438.645,-241.8837,7.629793,248.1994,-41.73053,8.565833,-0.93604,0,6480.056,-,-
+317,1631.875,-3.060596,3.384761,1421.587,-239.6219,-0.5230239,242.9343,-40.94888,0.5784202,-1.101444,0,5332.409,-,-
+318,1615.068,14.64399,21.18655,1400.088,-237.1849,2.476732,236.7962,-40.11496,3.583271,-1.106539,0,5625.969,-,-
+319,1599,8.165808,13.69355,1400.396,-234.84,1.367339,234.492,-39.32323,2.292942,-0.9256029,0,5383.467,-,-
+320,1587.324,102.0566,104.9864,1400.892,-232.9718,16.96427,232.862,-38.72555,17.45128,-0.487008,0,7388.144,-,-
+321,1584.315,184.2126,184.317,1432.856,-232.4904,30.56253,237.7238,-38.57227,30.57986,-0.01732505,0,9197.263,-,-
+322,1586.8,216.0884,214.3407,1459.362,-232.888,35.90726,242.5012,-38.69884,35.61685,0.2904055,0,9945.215,-,-
+323,1593.088,264.3147,261.1867,1468.014,-233.8941,44.09504,244.9055,-39.02003,43.5732,0.5218441,0,11258.12,-,-
+324,1602.506,282.5135,278.7549,1482.308,-235.3634,47.40972,248.752,-39.49728,46.77898,0.6307396,0,11827.97,-,-
+325,1611.978,267.9059,264.768,1490.408,-236.7368,45.2241,251.5898,-39.96258,44.69442,0.5296838,0,11550.28,-,-
+326,1618.292,219.8723,217.9924,1487.416,-237.6523,37.26114,252.0681,-40.27426,36.94254,0.3185971,0,10375.4,-,-
+327,1621.436,203.1326,202.8976,1473.143,-238.1082,34.49117,250.1344,-40.42992,34.45127,0.03990296,0,9975.896,-,-
+328,1619.475,114.6848,116.4864,1467.504,-237.8239,19.44952,248.8755,-40.33279,19.75505,-0.3055331,0,7883.321,-,-
+329,1612.367,95.7422,99.21386,1437.137,-236.7932,16.16575,242.6558,-39.98175,16.75193,-0.5861771,0,7418.253,-,-
+330,1602.009,45.53878,49.40824,1427.649,-235.2913,7.639677,239.5052,-39.47294,8.288825,-0.6491479,0,6236.569,-,-
+331,1592.927,119.488,122.0452,1412.042,-233.8683,19.93191,235.544,-39.01179,20.35848,-0.426575,0,7819.616,-,-
+332,1589.178,153.2,153.9228,1437.451,-233.2685,25.49529,239.2182,-38.82015,25.61557,-0.1202778,0,8542.789,-,-
+333,1589.299,199.3323,198.6176,1448.499,-233.2878,33.17507,241.0751,-38.82632,33.05613,0.1189398,0,9572.461,-,-
+334,1592.766,223.3128,221.0132,1462.702,-233.8426,37.24725,243.97,-39.00355,36.86369,0.383561,0,10195.02,-,-
+335,1600.84,295.6991,291.9106,1468.587,-235.1218,49.57087,246.1934,-39.41572,48.93576,0.635114,0,12151.2,-,-
+336,1611.79,283.5952,280.7952,1494.504,-236.7095,47.86698,252.2517,-39.95332,47.39437,0.4726117,0,11953.79,-,-
+337,1614.947,138.4304,138.6198,1491.798,-237.1673,23.41091,252.2883,-40.10899,23.44294,-0.032028,0,8385.68,-,-
+338,1610.836,133.6408,135.9294,1444.263,-236.5712,22.54338,243.6274,-39.90634,22.92943,-0.386052,0,8254.206,-,-
+339,1603.433,66.80159,71.53577,1440.508,-235.4978,11.21673,241.8773,-39.54269,12.01165,-0.7949207,0,6719.273,-,-
+340,1586.975,-50.01408,-42.13959,1420.652,-232.916,-8.311721,236.0947,-38.70776,-7.003079,-1.308642,0,4054.196,-,-
+341,1563.772,-69.49448,-60.21924,1386.26,-229.2035,-11.38026,227.011,-37.53387,-9.861372,-1.518892,0,3540.104,-,-
+342,1540.355,-60.0181,-51.28198,1384.303,-225.4568,-9.681256,223.2959,-36.36744,-8.272071,-1.409185,0,3666.609,-,-
+343,1519.907,-20.14798,-12.84013,1391.752,-222.1851,-3.206839,221.5172,-35.36394,-2.04369,-1.163149,0,4420.004,-,-
+344,1503.677,15.12274,21.49126,1409.21,-219.5883,2.381298,221.9008,-34.5774,3.384114,-1.002816,0,5064.231,-,-
+345,1487.904,-14.71925,-8.320971,1425.124,-217.0647,-2.293449,222.0527,-33.82148,-1.296515,-0.9969341,0,4390.665,-,-
+346,1471.513,-1.405141,5.215192,1417.748,-214.4421,-0.2165273,218.47,-33.04477,0.8036427,-1.02017,0,4599.075,-,-
+347,1454.625,-27.78295,-20.67979,1426.046,-211.74,-4.232121,217.2266,-32.25393,-3.150111,-1.082009,0,3963.305,-,-
+348,1435.789,-41.3384,-33.57402,1420.044,-208.7262,-6.215455,213.5114,-31.38313,-5.048037,-1.167417,0,3590.724,-,-
+349,1415.583,-56.71722,-48.95324,1418.84,-205.4933,-8.407733,210.3281,-30.46222,-7.256804,-1.15093,0,3173.282,-,-
+350,1396.787,-20.0392,-12.76009,1415.945,-202.6144,-2.931158,207.1119,-29.63666,-1.866434,-1.064724,0,3872.753,-,-
+351,1379.012,-41.75637,-34.70428,1429.888,-200.4814,-6.030029,206.4899,-28.95148,-5.011639,-1.01839,0,3366.848,-,-
+352,1361.345,-21.97219,-14.45412,1421.638,-198.3614,-3.132349,202.6683,-28.27834,-2.060575,-1.071774,0,3706.985,-,-
+353,1341.192,-90.98978,-82.29966,1429.137,-195.943,-12.77945,200.7213,-27.52006,-11.55893,-1.220521,0,2226.25,-,-
+354,1317.613,-89.07143,-79.15366,1402.768,-193.1136,-12.29009,193.5541,-26.64583,-10.92163,-1.368455,0,2206.923,-,-
+355,1291.294,-124.9441,-112.4108,1403.417,-189.9553,-16.89544,189.7757,-25.68651,-15.20063,-1.694815,0,1379.005,-,-
+356,1254.361,-128.8035,-112.7198,1389.266,-185.5233,-16.91915,182.489,-24.36967,-14.80647,-2.112683,0,1198.907,-,-
+357,1210.226,-133.3947,-117.4787,1387.437,-180.2271,-16.90571,175.8363,-22.84101,-14.88861,-2.017104,0,893.631,-,-
+358,1174.65,-132.9827,-120.4021,1385.962,-176.5918,-16.35808,170.4859,-21.72239,-14.81055,-1.547526,0,805.6712,-,-
+359,1147.215,-129.8415,-118.8799,1386.439,-173.9854,-15.59865,166.5613,-20.90193,-14.28176,-1.316887,0,815.5529,-,-
+360,1119.552,-129.3454,-117.5827,1387.606,-171.3574,-15.16435,162.6819,-20.08981,-13.7853,-1.379054,0,776.1663,-,-
+361,1087.993,-127.8705,-114.5555,1387.589,-168.3593,-14.56884,158.094,-19.18192,-13.05181,-1.517029,0,748.0265,-,-
+362,1052.511,-124.1775,-112.8753,1387.932,-164.9885,-13.68668,152.9761,-18.18482,-12.44097,-1.245708,0,753.9789,-,-
+363,1031.579,49.95445,52.90937,1389.989,-163,5.396414,150.1559,-17.60835,5.715624,-0.3192098,0,3708.584,-,-
+364,1037.853,308.0561,301.4563,1456.12,-163.596,33.48068,158.2565,-17.78023,32.76339,0.7172915,0,7887.582,-,-
+365,1064.428,472.139,460.0159,1550.137,-166.1207,52.62774,172.7885,-18.51691,51.27643,1.351314,0,10804.42,-,-
+366,1098.567,472.2995,457.4606,1609.05,-169.3639,54.33412,185.1078,-19.4839,52.62703,1.707089,0,11054.97,-,-
+367,1138.801,605.8385,588.197,1608.355,-173.1861,72.24925,191.8043,-20.6533,70.14542,2.103835,0,14049.38,-,-
+368,1186.926,641.7589,622.9606,1655.478,-177.758,79.76716,205.767,-22.09436,77.43063,2.336525,0,15372.4,-,-
+369,1233.348,580.6956,563.6011,1669.101,-183.0018,75.00027,215.5743,-23.63576,72.7924,2.207861,0,14661.57,-,-
+370,1273.076,512.6209,498.4388,1648.465,-187.7691,68.34068,219.7672,-25.03267,66.44997,1.890707,0,13657.11,-,-
+371,1304.85,425.2531,412.7461,1625.052,-191.582,58.10811,222.0529,-26.17845,56.3991,1.709009,0,12241.55,-,-
+372,1335.952,504.8294,491.8666,1593.257,-195.3142,70.62592,222.8976,-27.32457,68.81242,1.813498,0,14317.25,-,-
+373,1369.93,490.2999,477.2198,1622.116,-199.3916,70.33781,232.7067,-28.60447,68.46135,1.876459,0,14457.49,-,-
+374,1401.744,468.7929,456.264,1616.667,-203.279,68.81425,237.311,-29.83939,66.97513,1.839116,0,14392.47,-,-
+375,1432.914,483.7137,471.7006,1599.652,-208.2662,72.58337,240.0349,-31.25126,70.78075,1.802626,0,15080.19,-,-
+376,1462.162,436.7239,425.1831,1596.314,-212.9459,66.86996,244.4233,-32.60569,65.10287,1.767097,0,14261.74,-,-
+377,1490.927,480.486,469.1049,1571.033,-217.5483,75.01804,245.2846,-33.96571,73.24111,1.776927,0,15616.22,-,-
+378,1519.369,436.4427,425.8371,1577.242,-222.099,69.44151,250.9518,-35.33772,67.75407,1.687436,0,14859.95,-,-
+379,1544.292,415.7352,405.7281,1554.688,-226.0867,67.23182,251.4208,-36.56226,65.61349,1.618328,0,14626.53,-,-
+380,1569.657,450.4597,441.1093,1539.65,-230.1451,74.04391,253.0786,-37.8299,72.50694,1.536973,0,15777.34,-,-
+381,1591.342,345.4981,338.5421,1544.326,-233.6147,57.57551,257.3542,-38.93071,56.41633,1.159179,0,13337.84,-,-
+382,1604.709,283.4627,280.1183,1508.891,-235.6828,47.63442,253.5612,-39.60525,47.0724,0.5620195,0,11875.73,-,-
+383,1608.203,143.5103,144.139,1490.184,-236.1894,24.16865,250.9628,-39.77681,24.27454,-0.1058871,0,8458.497,-,-
+384,1601.539,74.29067,77.43728,1443.157,-235.2231,12.45949,242.0358,-39.44992,12.98722,-0.5277263,0,6874.916,-,-
+385,1592.376,89.85713,92.2757,1421.737,-233.7802,14.98397,237.0793,-38.98359,15.38727,-0.4033027,0,7154.643,-,-
+386,1589.407,199.4428,199.1668,1427.533,-233.3051,33.19573,237.602,-38.83184,33.14979,0.04594007,0,9575.751,-,-
+387,1593.76,240.9254,238.2671,1462.429,-234.0016,40.21001,244.0766,-39.05444,39.76634,0.4436651,0,10660.73,-,-
+388,1602.748,297.3705,293.2341,1474.775,-235.3985,49.91047,247.5253,-39.50913,49.21623,0.6942437,0,12214.5,-,-
+389,1614.531,301.7505,296.6793,1495.604,-237.107,51.01796,252.8668,-40.08846,50.16054,0.8574169,0,12451.9,-,-
+390,1628.221,340.9123,334.6385,1499.969,-239.092,58.1279,255.755,-40.76684,57.05817,1.069724,0,13608.33,-,-
+391,1646.023,390.2596,382.8052,1515.593,-241.6733,67.26948,261.2444,-41.6575,65.98457,1.28491,0,15139.19,-,-
+392,1665.665,383.9178,376.4071,1533.937,-244.5214,66.96603,267.5616,-42.65139,65.65594,1.310091,0,15207.19,-,-
+393,1683.789,364.2838,357.7896,1535.786,-247.1494,64.23269,270.799,-43.57886,63.0876,1.145088,0,14887.95,-,-
+394,1698.339,314.5844,309.8011,1533.677,-249.2591,55.94872,272.7638,-44.33065,55.09802,0.8507023,0,13691.09,-,-
+395,1707.865,263.7242,261.1171,1522.947,-250.6404,47.16634,272.3749,-44.82634,46.70007,0.4662747,0,12452.85,-,-
+396,1711.465,194.5544,193.6731,1510.811,-251.1624,34.86886,270.774,-45.01438,34.71091,0.1579515,0,10697.68,-,-
+397,1712.298,207.0906,206.6333,1493.039,-251.2832,37.13371,267.7189,-45.05795,37.05171,0.08200029,0,11035.88,-,-
+398,1713.763,207.518,206.5738,1496.776,-251.4956,37.24218,268.6187,-45.13462,37.07273,0.1694526,0,11062.36,-,-
+399,1717.041,245.4003,243.4256,1497.894,-251.9709,44.12496,269.3335,-45.30642,43.76989,0.3550672,0,12075.98,-,-
+400,1723.678,278.1444,274.8722,1509.571,-252.9333,50.20594,272.4823,-45.65525,49.61529,0.5906488,0,12995.62,-,-
+401,1733.472,312.8288,308.6489,1520.543,-254.3535,56.78742,276.0223,-46.17247,56.02866,0.7587583,0,14078.44,-,-
+402,1744.677,309.4147,305.9848,1532.032,-255.9782,56.53073,279.9055,-46.76776,55.90408,0.6266488,0,14122.87,-,-
+403,1750.736,210.8492,208.6767,1533.093,-256.8567,38.65639,281.0721,-47.09125,38.25808,0.3983127,0,11538.16,-,-
+404,1755.6,287.1107,283.7597,1511.612,-257.562,52.78415,277.9037,-47.35175,52.16808,0.6160654,0,13640.27,-,-
+405,1767.544,357.9668,352.1223,1532.588,-259.2939,66.2585,283.6771,-47.99446,65.1767,1.081797,0,15752.27,-,-
+406,1784.929,404.9585,396.4201,1552.545,-261.8147,75.69376,290.1976,-48.9377,74.09778,1.595975,0,17264.1,-,-
+407,1810.361,530.4586,518.7327,1544.525,-265.9168,100.5646,292.8119,-50.41265,98.34163,2.223014,0,21454.8,-,-
+408,1843.734,576.4902,563.3867,1501.429,-272.0908,111.3061,289.8889,-52.53403,108.7761,2.529962,0,23444.36,-,-
+409,1876.234,522.6307,511.4156,1444.908,-278.1033,102.6858,283.8938,-54.64139,100.4823,2.203547,0,22315.5,-,-
+410,1900.229,411.6319,402.8081,1386.344,-282.5424,81.91126,275.8706,-56.22353,80.1554,1.755862,0,19344.58,-,-
+411,1920.624,451.3123,446.7061,1323.391,-286.3154,90.77122,266.1701,-57.58584,89.84477,0.9264442,0,20889.76,-,-
+412,1923.486,-34.25552,57.3587,1326.287,-286.8449,-6.899985,267.1499,-57.77831,11.55359,-18.45358,0,7255.57,-,-
+413,1384.726,-178.225,-46.32089,1419.656,-201.1671,-25.84409,205.8617,-29.17087,-6.716908,-19.12718,0,486.6433,-,-
+414,1365.214,-78.07755,-68.25497,1369.71,-198.8257,-11.16235,195.8205,-28.42509,-9.758064,-1.404284,0,2561.288,-,-
+415,1335.167,-123.8178,-111.9469,1407.562,-195.22,-17.31201,196.803,-27.29535,-15.65223,-1.659778,0,1514.571,-,-
+416,1305.561,-77.37282,-69.03462,1390.015,-191.6673,-10.57826,190.0402,-26.20438,-9.438278,-1.139981,0,2404.825,-,-
+417,1293.54,186.5652,188.9331,1408.216,-190.2248,25.27197,190.7558,-25.7677,25.59272,-0.3207538,0,7222.007,-,-
+418,1293.716,383.4901,382.4276,1507.452,-190.2459,51.95432,204.2261,-25.77406,51.81037,0.1439488,0,11243.82,-,-
+419,1298.87,384.0081,381.2683,1580.738,-190.8644,52.23177,215.0078,-25.96087,51.8591,0.3726663,0,11309.08,-,-
+420,1307.468,522.9586,518.4025,1580.556,-191.8962,71.6023,216.4061,-26.27399,70.9785,0.6238022,0,14342.47,-,-
+421,1321.719,611.2016,604.6701,1631.495,-193.6063,84.59647,225.8154,-26.79706,83.69244,0.9040235,0,16646.89,-,-
+422,1340.242,699.7167,691.821,1663.533,-195.829,98.2051,233.4765,-27.48457,97.09694,1.108163,0,18950.69,-,-
+423,1361.364,724.2514,715.9854,1695.823,-198.3637,103.2505,241.7594,-28.27906,102.0721,1.178417,0,19870.33,-,-
+424,1381.797,684.8949,677.8293,1705.078,-200.8156,99.10528,246.7273,-29.05831,98.08289,1.022391,0,19256.83,-,-
+425,1396.943,529.1754,523.9507,1691.551,-202.6332,77.41175,247.4528,-29.6427,76.64746,0.7642896,0,15779.22,-,-
+426,1408.093,537.5551,532.6352,1631.859,-204.2949,79.26527,240.6261,-30.12433,78.5398,0.725465,0,16109.91,-,-
+427,1421.649,629.5908,623.8778,1630.38,-206.4639,93.73016,242.7225,-30.73725,92.87965,0.8505152,0,18509.87,-,-
+428,1436.79,608.42,602.3676,1658.8,-208.8864,91.54306,249.5836,-31.42911,90.6324,0.9106572,0,18202.61,-,-
+429,1452.067,644.384,638.7233,1645.983,-211.3307,97.98509,250.2884,-32.13497,97.12432,0.8607714,0,19258.36,-,-
+430,1465.261,536.0519,531.5311,1654.692,-213.4418,82.25276,253.8989,-32.75088,81.55907,0.6936937,0,16681.59,-,-
+431,1474.817,509.7238,506.4787,1613.342,-214.9707,78.72301,249.1685,-33.20061,78.22182,0.5011798,0,16147.56,-,-
+432,1481.586,432.3053,429.8951,1602.13,-216.0538,67.07274,248.5726,-33.52103,66.6988,0.3739358,0,14361.1,-,-
+433,1486.936,458.5087,456.0222,1573.13,-216.9098,71.39512,244.9546,-33.77536,71.00793,0.3871922,0,15046.56,-,-
+434,1494.076,506.1843,502.6246,1579.986,-218.0522,79.19723,247.2034,-34.11628,78.64029,0.5569363,0,16266.91,-,-
+435,1504.805,604.6403,599.566,1592.864,-219.7688,95.28092,251.008,-34.63179,94.48131,0.7996156,0,18998.12,-,-
+436,1519.545,670.5818,664.8558,1621.508,-222.1272,106.7073,258.0247,-35.3463,105.7961,0.9111502,0,20761.09,-,-
+437,1533.59,587.5084,582.5294,1639.166,-224.3744,94.35219,263.2453,-36.03389,93.55257,0.7996112,0,18932,-,-
+438,1544.594,560.525,556.6104,1607.281,-226.1351,90.66463,259.9769,-36.57723,90.03146,0.6331763,0,18361.7,-,-
+439,1553.279,503.4441,500.2912,1595.353,-227.5246,81.88972,259.4985,-37.00893,81.37687,0.5128464,0,16965.27,-,-
+440,1560.448,506.5672,503.8667,1573.776,-228.6717,82.77801,257.1702,-37.36718,82.33672,0.4412895,0,17141.2,-,-
+441,1566.855,477.9939,475.679,1572.721,-229.6968,78.42956,258.0532,-37.6888,78.04972,0.379834,0,16469,-,-
+442,1572.087,464.4497,462.8513,1561.492,-230.5339,76.46169,257.0662,-37.95247,76.19854,0.2631544,0,16178.95,-,-
+443,1574.895,385.8751,385.4162,1556.261,-230.9832,63.63954,256.6626,-38.09436,63.56385,0.07568723,0,14207.46,-,-
+444,1574.396,336.5762,336.8507,1530.413,-230.9034,55.49144,252.3197,-38.06912,55.5367,-0.04526398,0,12928.05,-,-
+445,1573.515,370.0388,370.3094,1514.181,-230.7624,60.97429,249.5039,-38.02459,61.01888,-0.04459349,0,13783.57,-,-
+446,1573.036,351.231,351.762,1525.527,-230.6858,57.85757,251.2969,-38.00039,57.94503,-0.08746444,0,13292.42,-,-
+447,1570.845,302.4879,303.7384,1520.017,-230.3352,49.7588,250.0405,-37.88979,49.96451,-0.2057152,0,12009.48,-,-
+448,1566.747,274.2476,276.4426,1504.949,-229.6795,44.99563,246.916,-37.68337,45.35576,-0.3601327,0,11236.28,-,-
+449,1559.803,187.185,190.7785,1497.569,-228.5685,30.57521,244.6163,-37.33488,31.16218,-0.5869667,0,9076.522,-,-
+450,1548.662,104.609,109.3241,1471.071,-226.7859,16.96501,238.5716,-36.77912,17.72969,-0.764681,0,7150.071,-,-
+451,1536.094,122.8974,127.9528,1445.762,-224.7751,19.76921,232.5643,-36.15718,20.5824,-0.8131958,0,7462.01,-,-
+452,1523.252,84.97137,90.25345,1455.26,-222.7203,13.55417,232.1351,-35.52713,14.39674,-0.8425692,0,6518.274,-,-
+453,1509.539,80.57793,85.68937,1445.192,-220.5262,12.73764,228.4539,-34.86047,13.54565,-0.808009,0,6346.456,-,-
+454,1497.577,144.4989,148.8918,1446.358,-218.6123,22.66117,226.8265,-34.28407,23.35009,-0.6889254,0,7649.837,-,-
+455,1487.474,146.036,149.7083,1471.516,-216.9958,22.74772,229.215,-33.80099,23.31975,-0.572032,0,7607.029,-,-
+456,1479.131,207.4677,210.3907,1474.023,-215.6609,32.13555,228.3177,-33.40464,32.58831,-0.4527602,0,8917.78,-,-
+457,1472.793,220.2598,221.8425,1497.623,-214.6469,33.97078,230.9792,-33.1051,34.21489,-0.2441073,0,9162.359,-,-
+458,1471.189,389.6774,389.3871,1502.392,-214.3902,60.03469,231.4623,-33.02951,59.98996,0.04473384,0,13209.04,-,-
+459,1474.25,402.9991,401.2558,1561.989,-214.88,62.21626,241.1447,-33.17384,61.94712,0.2691395,0,13580.17,-,-
+460,1479.943,495.7501,493.1349,1564.802,-215.7909,76.83099,242.5119,-33.44311,76.42569,0.4052987,0,15866.4,-,-
+461,1487.386,475.4453,472.6752,1595.227,-216.9818,74.05475,248.4704,-33.79679,73.62328,0.4314715,0,15457.79,-,-
+462,1493.87,463.0774,460.917,1586.094,-218.0192,72.44276,248.1249,-34.10642,72.10479,0.3379764,0,15229.53,-,-
+463,1498.252,397.6682,395.5808,1580.579,-218.7203,62.39278,247.9875,-34.31647,62.06528,0.3275012,0,13701.75,-,-
+464,1504.355,533.5306,530.3917,1555.544,-219.6968,84.05011,245.0536,-34.61008,83.55563,0.4944805,0,17123.92,-,-
+465,1514.009,540.5781,536.9656,1599.469,-221.2414,85.70686,253.5904,-35.07709,85.13411,0.5727456,0,17435.99,-,-
+466,1522.518,495.3256,492.5338,1599.181,-222.6029,78.97358,254.9697,-35.49129,78.52847,0.445111,0,16350.07,-,-
+467,1528.054,429.4737,427.6122,1582.052,-223.4886,68.72328,253.1559,-35.76208,68.42541,0.2978739,0,14784.54,-,-
+468,1531.879,431.5416,430.0217,1558.293,-224.1006,69.22704,249.9783,-35.94978,68.98322,0.2438217,0,14874.62,-,-
+469,1535.693,431.3936,429.8054,1557.797,-224.7109,69.37559,250.5208,-36.13742,69.12019,0.2553996,0,14911.4,-,-
+470,1539.86,447.7018,446.2173,1556.386,-225.3776,72.1936,250.9731,-36.34298,71.95422,0.2393776,0,15346.86,-,-
+471,1543.156,399.8088,398.9395,1560.995,-225.905,64.60867,252.255,-36.506,64.46819,0.1404738,0,14231.93,-,-
+472,1544.232,362.5091,362.5403,1544.48,-226.0771,58.62193,249.7603,-36.5593,58.62698,-0.00504719,0,13279.3,-,-
+473,1542.999,309.6862,310.3535,1532.278,-225.8799,50.03986,247.5892,-36.49823,50.14769,-0.1078344,0,11901.05,-,-
+474,1540.877,326.3504,327.2668,1514.84,-225.5403,52.65999,244.4349,-36.39324,52.80785,-0.1478629,0,12309.3,-,-
+475,1538.393,293.9112,294.9153,1521.324,-225.1429,47.34913,245.0855,-36.27055,47.5109,-0.1617708,0,11444.64,-,-
+476,1535.83,321.808,322.5616,1510.893,-224.7328,51.75694,242.9995,-36.14417,51.87814,-0.1212024,0,12138.53,-,-
+477,1534.607,344.9728,345.0331,1520.777,-224.5371,55.4384,244.3945,-36.08394,55.44809,-0.009694445,0,12724.29,-,-
+478,1535.527,405.6983,404.6149,1528.328,-224.6843,65.2363,245.7552,-36.12924,65.06208,0.1742181,0,14292.96,-,-
+479,1540.046,486.825,484.9195,1547.495,-225.4074,78.51184,249.5696,-36.35218,78.20454,0.3072998,0,16353.49,-,-
+480,1545.102,428.98,428.485,1573.534,-226.2163,69.41013,254.6021,-36.60241,69.33004,0.08009321,0,14952.98,-,-
+481,1542.54,191.4757,193.5292,1555.348,-225.8064,30.92992,251.2422,-36.47551,31.26162,-0.3317033,0,9040.489,-,-
+482,1534.764,221.9736,225.0408,1476.059,-224.5622,35.67562,237.2324,-36.09167,36.16859,-0.4929654,0,9674.445,-,-
+483,1527.125,190.233,193.5882,1488.666,-223.34,30.42209,238.0676,-35.71657,30.95866,-0.5365708,0,8895.159,-,-
+484,1517.892,154.4447,158.2406,1480.077,-221.8627,24.54949,235.263,-35.2658,25.15287,-0.6033762,0,8026.633,-,-
+485,1508.043,159.8237,163.598,1470,-220.2869,25.23966,232.1451,-34.78812,25.83571,-0.5960492,0,8071.437,-,-
+486,1498.927,176.6108,180.0971,1474.139,-218.8283,27.72211,231.3915,-34.34888,28.26935,-0.54724,0,8376.233,-,-
+487,1490.525,182.1619,185.2187,1482.179,-217.484,28.43318,231.3495,-33.94652,28.91031,-0.4771313,0,8435.916,-,-
+488,1483.571,228.5634,230.5916,1485.842,-216.3714,35.50943,230.8392,-33.61528,35.82453,-0.3151056,0,9434.749,-,-
+489,1480.344,324.2097,324.8273,1503.097,-215.855,50.2594,233.012,-33.46212,50.35513,-0.09572835,0,11613.84,-,-
+490,1480.471,358.5013,358.256,1537.043,-215.8754,55.58009,238.2948,-33.46814,55.54207,0.03801758,0,12501.45,-,-
+491,1481.576,363.02,362.7419,1548.887,-216.0522,56.32265,240.3103,-33.52055,56.2795,0.04314645,0,12629.92,-,-
+492,1481.869,327.409,327.5743,1550.485,-216.099,50.80764,240.6057,-33.53446,50.83329,-0.02564735,0,11712.65,-,-
+493,1480.745,307.3625,308.0763,1538.207,-215.9192,47.66063,238.5194,-33.48113,47.77131,-0.1106793,0,11217.69,-,-
+494,1478.28,274.1358,275.0138,1531.826,-215.5248,42.43763,237.1345,-33.36435,42.57355,-0.1359183,0,10437.99,-,-
+495,1476.333,325.8792,326.5273,1520.411,-215.2133,50.38132,235.0574,-33.27224,50.48153,-0.1002114,0,11614.57,-,-
+496,1475.023,297.8968,298.3423,1539.286,-215.0037,46.01434,237.7643,-33.21034,46.08316,-0.06882124,0,10957.26,-,-
+497,1474.094,340.1422,340.4324,1529.474,-214.855,52.50665,236.0999,-33.16648,52.55144,-0.04478729,0,11959.52,-,-
+498,1473.565,312.9851,313.2517,1544.752,-214.7704,48.29715,238.3728,-33.14151,48.33829,-0.04113697,0,11291.66,-,-
+499,1472.754,328.9682,329.12,1535.252,-214.6407,50.73559,236.7764,-33.10326,50.75901,-0.02341843,0,11656.56,-,-
+500,1472.802,345.9958,346.0173,1540.91,-214.6483,53.36343,237.6568,-33.10553,53.36675,-0.003314961,0,12097.14,-,-
+501,1472.646,321.1821,321.2073,1547.083,-214.6234,49.53114,238.5837,-33.09817,49.53503,-0.003895649,0,11472.36,-,-
+502,1472.675,353.1233,353.1038,1538.152,-214.628,54.45803,237.211,-33.09954,54.45502,0.003007802,0,12280.01,-,-
+503,1472.744,322.9323,322.7395,1549.595,-214.639,49.80436,238.9869,-33.10279,49.77462,0.02974279,0,11513.19,-,-
+504,1473.644,385.9948,385.3036,1538.441,-214.7831,59.56659,237.4117,-33.14524,59.45992,0.1066645,0,13139.82,-,-
+505,1476.216,388.8623,388.0122,1560.139,-215.1945,60.11383,241.1802,-33.2667,59.98241,0.1314195,0,13241.13,-,-
+506,1477.918,353.8514,353.3008,1560.743,-215.4669,54.76459,241.5519,-33.34721,54.67937,0.08522052,0,12354.27,-,-
+507,1478.984,364.8682,364.5258,1547.979,-215.6375,56.51037,239.7491,-33.39768,56.45734,0.05302887,0,12650.28,-,-
+508,1479.639,338.5515,338.1037,1551.761,-215.7422,52.45769,240.4413,-33.42871,52.3883,0.06938843,0,11977.05,-,-
+509,1481.234,402.2184,401.2701,1541.828,-215.9974,62.3899,239.1599,-33.50433,62.24279,0.1471056,0,13635.29,-,-
+510,1484.403,401.4423,400.0506,1563.435,-216.5045,62.40273,243.0302,-33.65482,62.18639,0.2163339,0,13650.18,-,-
+511,1488.227,430.0432,428.6835,1561.949,-217.1163,67.02085,243.4248,-33.83688,66.80894,0.2119178,0,14377.04,-,-
+512,1491.239,372.1174,371.1468,1571.248,-217.5983,58.11066,245.3695,-33.98062,57.95909,0.1515695,0,12967.23,-,-
+513,1493.107,387.3315,386.3892,1550.29,-217.8971,60.56229,242.4,-34.06992,60.41497,0.1473248,0,13380.19,-,-
+514,1495.973,412.0313,410.963,1554.727,-218.3557,64.54797,243.5604,-34.20715,64.38062,0.1673616,0,14026.67,-,-
+515,1498.477,375.0598,374.2717,1562.719,-218.7563,58.85443,245.222,-34.32728,58.73077,0.1236596,0,13119.81,-,-
+516,1499.935,372.0767,372.1252,1549.345,-218.9896,58.44314,243.3601,-34.39732,58.45076,-0.00761813,0,13058.14,-,-
+517,1498.233,251.137,253.021,1549.075,-218.7173,39.40204,243.0415,-34.31556,39.69763,-0.295586,0,10063.56,-,-
+518,1490.447,131.9827,135.6745,1508.764,-217.4715,20.59975,235.4867,-33.94279,21.17598,-0.5762284,0,7316.324,-,-
+519,1479.659,127.5845,131.7829,1468.923,-215.7455,19.76917,227.6089,-33.42966,20.41969,-0.6505256,0,7135.934,-,-
+520,1469.35,143.0663,147.2034,1469.76,-214.096,22.01361,226.1519,-32.94294,22.65018,-0.6365749,0,7402.519,-,-
+521,1458.865,114.3028,118.3244,1477.87,-212.4184,17.46226,225.7772,-32.45158,18.07665,-0.614387,0,6764.674,-,-
+522,1449.143,166.2722,169.9921,1469.594,-210.8629,25.23245,223.0166,-31.99926,25.79696,-0.5645058,0,7765.831,-,-
+523,1440.174,137.6556,141.2635,1490.772,-209.4278,20.76049,224.8303,-31.58479,21.3046,-0.5441113,0,7128.309,-,-
+524,1431.009,153.2074,156.7576,1482.36,-207.9614,22.95888,222.139,-31.16404,23.49089,-0.5320121,0,7385.289,-,-
+525,1422.334,150.6001,154.4159,1490.136,-206.5734,22.43136,221.9504,-30.76838,22.9997,-0.5683395,0,7296.102,-,-
+526,1411.819,76.20674,80.24406,1491.677,-204.891,11.26681,220.5375,-30.29218,11.86371,-0.5968991,0,5821.389,-,-
+527,1402.048,173.1548,176.6389,1465.84,-203.3277,25.42295,215.2178,-29.853,25.93449,-0.5115367,0,7637.221,-,-
+528,1394.321,150.2353,153.2597,1502.793,-202.3185,21.9363,219.4272,-29.54113,22.3779,-0.4415985,0,7152.884,-,-
+529,1386.849,179.096,181.7403,1494.142,-201.4219,26.0102,216.9949,-29.2526,26.39423,-0.3840317,0,7660.026,-,-
+530,1381.039,210.4435,212.9878,1504.943,-200.7247,30.43478,217.648,-29.02921,30.80274,-0.3679626,0,8220.897,-,-
+531,1374.056,129.7528,132.8471,1516.817,-199.8867,18.67024,218.2561,-28.76186,19.11548,-0.4452441,0,6633.677,-,-
+532,1365.478,143.914,147.1495,1486.463,-198.8574,20.57863,212.5531,-28.43512,21.04128,-0.4626492,0,6851.919,-,-
+533,1357.8,159.6865,162.4864,1491.773,-197.936,22.70559,212.1129,-28.14422,23.10369,-0.3981024,0,7106.681,-,-
+534,1351.413,190.5902,192.4743,1497.665,-197.1696,26.97226,211.9491,-27.90336,27.2389,-0.2666436,0,7659.776,-,-
+535,1348.342,286.3414,286.85,1509.134,-196.801,40.43084,213.0868,-27.78792,40.50266,-0.07181839,0,9585.041,-,-
+536,1348.86,330.6559,329.3944,1544.837,-196.8632,46.70591,218.2117,-27.80737,46.52771,0.178195,0,10605.21,-,-
+537,1354.67,494.7927,491.6782,1560.964,-197.5604,70.19164,221.4395,-28.02606,69.74982,0.4418204,0,14345.73,-,-
+538,1364.49,491.9853,487.856,1621.712,-198.7388,70.29932,231.7249,-28.3976,69.70929,0.5900249,0,14419.66,-,-
+539,1375.415,544.679,540.2844,1620.529,-200.0498,78.45182,233.4099,-28.8138,77.81886,0.632963,0,15841.52,-,-
+540,1386.575,507.5116,503.5273,1640.111,-201.389,73.69159,238.147,-29.24204,73.11307,0.578518,0,15110.09,-,-
+541,1395.456,462.2859,458.9712,1626.606,-202.4547,67.55467,237.6988,-29.58508,67.07029,0.4843822,0,14152.47,-,-
+542,1403.241,469.5699,466.6146,1608.938,-203.5186,69.00191,236.4286,-29.90645,68.56764,0.4342721,0,14426.95,-,-
+543,1410.313,438.7051,436.1608,1609.633,-204.6501,64.79132,237.7229,-30.22429,64.41555,0.3757743,0,13760.98,-,-
+544,1416.035,420.7365,418.8033,1596.668,-205.5656,62.38969,236.7648,-30.48268,62.10302,0.2866674,0,13390.25,-,-
+545,1420.035,374.5527,373.1561,1589.05,-206.2056,55.69813,236.3008,-30.66395,55.49044,0.2076918,0,12293.12,-,-
+546,1423.057,384.3686,383.4777,1571.226,-206.6891,57.27944,234.1475,-30.80126,57.14668,0.132761,0,12562.83,-,-
+547,1424.515,314.8121,314.5319,1574.593,-206.9224,46.96206,234.8897,-30.86762,46.92026,0.04179643,0,10959.25,-,-
+548,1424.466,326.113,326.146,1549.042,-206.9146,48.64618,231.0701,-30.86539,48.65111,-0.004927215,0,11217.66,-,-
+549,1424.349,311.0687,311.854,1553.257,-206.8958,46.39822,231.6799,-30.86006,46.51535,-0.1171295,0,10872.26,-,-
+550,1420.514,179.9399,182.359,1549.022,-206.2822,26.76711,230.4261,-30.6857,27.12698,-0.3598669,0,7852.181,-,-
+551,1412.171,130.8902,135.1237,1502.499,-204.9474,19.35634,222.1929,-30.30807,19.98239,-0.6260524,0,6872.082,-,-
+552,1399.202,-7.683547,-1.510408,1487.039,-202.9042,-1.125825,217.887,-29.73036,-0.2213112,-0.9045135,0,4140.987,-,-
+553,1381.088,-68.62926,-61.02568,1434.581,-200.7306,-9.925657,207.4794,-29.0311,-8.825974,-1.099684,0,2802.109,-,-
+554,1360.959,-85.27389,-77.00719,1411.383,-198.3151,-12.15317,201.1494,-28.26373,-10.97501,-1.178164,0,2397.81,-,-
+555,1339.52,-117.0472,-107.9208,1405.01,-195.7424,-16.41871,197.0867,-27.45761,-15.13851,-1.2802,0,1669.268,-,-
+556,1315.038,-128.0761,-114.6731,1392.79,-192.8046,-17.63741,191.8018,-26.5512,-15.79168,-1.845734,0,1373.009,-,-
+557,1271.67,-124.5114,-102.9958,1387.833,-187.6004,-16.58105,184.8164,-24.98255,-13.71585,-2.865201,0,1338.234,-,-
+558,1205.943,-125.6211,-96.10174,1388.263,-179.7132,-15.8642,175.3183,-22.69527,-12.13631,-3.727889,0,1015.852,-,-
+559,1122.19,-116.9366,-85.40859,1386.876,-171.608,-13.74186,162.9794,-20.1666,-10.03683,-3.705031,0,1010.047,-,-
+560,1048.169,-120.8867,-94.41994,1390.552,-164.5761,-13.26901,152.6325,-18.06453,-10.36391,-2.905101,0,806.8251,-,-
+561,990.1788,-112.9771,-89.17129,1373.891,-159.4599,-11.71474,142.4605,-16.5346,-9.246284,-2.468457,0,832.3314,-,-
+562,928.2859,-119.1225,-94.77313,1278.239,-156.0557,-11.57989,124.2574,-15.17016,-9.212884,-2.367003,0,661.3349,-,-
+563,867.8992,-123.8481,-99.24525,1179.598,-152.7345,-11.25608,107.2092,-13.88145,-9.020022,-2.23606,0,517.2462,-,-
+564,804.412,-128.6412,-101.21,1076.284,-149.2427,-10.83645,90.66385,-12.57188,-8.525709,-2.310745,0,278.4907,-,-
+565,729.0021,-89.08075,-108.1997,953.2133,-148.645,-6.800506,72.76918,-11.3477,-8.260065,1.459559,0,751.1493,-,-
+566,887.2314,-74.81737,-83.88269,1230.68,-153.7977,-6.95133,114.3433,-14.28945,-7.793596,0.8422656,0,1365.548,-,-
+567,782.4908,-139.2741,-95.45618,1059.712,-148.9125,-11.41243,86.83521,-12.20222,-7.821894,-3.590538,0,121.5468,-,-
+568,665.2287,-99.74484,-97.38823,843.5703,-148.3261,-6.948483,58.76529,-10.33278,-6.784316,-0.1641676,0,612.6461,-,-
+569,772.3559,-67.94436,-57.31413,1043.187,-148.8618,-5.495402,84.37395,-12.04008,-4.63562,-0.8597825,0,1020.428,-,-
+570,600,-136.1265,-99.91708,768.4518,-148,-8.553081,48.28325,-9.299114,-6.277975,-2.275105,0,117.0501,-,-
+571,614.9388,-61.82196,-82.11992,775.2047,-148.0747,-3.981102,49.92027,-9.535453,-5.288214,1.307112,0,880.9238,-,-
+572,696.7551,-50.55316,-47.96172,934.6902,-148.4838,-3.688562,68.19876,-10.83397,-3.49948,-0.1890821,0,1163.827,-,-
+573,600,-27.73392,-20.42477,779.2356,-148,-1.742574,48.96082,-9.299114,-1.283326,-0.4592476,0,1185.596,-,-
+574,664.3683,-22.96758,-22.96758,894.2432,-148.3218,-1.597912,62.21472,-10.31912,-1.597912,0,0,1367.756,-,-
+575,600,-41.80407,-28.30989,791.7131,-148,-2.626627,49.7448,-9.299114,-1.778763,-0.8478643,0,1046.891,-,-
+576,600,-12.09029,-12.09029,785.5735,-148,-0.7596555,49.35904,-9.299114,-0.7596555,0,0,1339.813,-,-
+577,600,-2.763897,-2.763897,796.7161,-148,-0.1736608,50.05915,-9.299114,-0.1736608,0,0,1431.753,-,-
+578,600,0,0,800.2136,-148,0,50.2789,-9.299114,0,0,0,1459,-,-
+579,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+580,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+581,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+582,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+583,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+584,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+585,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+586,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+587,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+588,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+589,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+590,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+591,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+592,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+593,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+594,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+595,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+596,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+597,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+598,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+599,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+600,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+601,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+602,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+603,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+604,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+605,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+606,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+607,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+608,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+609,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+610,600,3.787888E-06,3.787888E-06,801.2501,-148,2.38E-07,50.34402,-9.299114,2.38E-07,0,0,1459,-,-
+611,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+612,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+613,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+614,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+615,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+616,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+617,600,3.787888E-06,3.787888E-06,801.2501,-148,2.38E-07,50.34402,-9.299114,2.38E-07,0,0,1459,-,-
+618,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+619,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+620,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+621,600,9.170536,0,801.2501,-148,0.5762018,50.34402,-9.299114,0,0.5762018,0,1546.074,-,-
+622,644.4445,32.42692,23.88884,875.1463,-148.2222,2.188366,59.06019,-10.00294,1.612164,0.5762018,0,1860.227,-,-
+623,644.4445,127.9108,96.89331,884.1046,-148.2222,8.632195,59.66475,-10.00294,6.538949,2.093246,0,2766.846,-,-
+624,785.0072,47.83702,10.80489,1134.905,-148.925,3.932479,93.29571,-12.2425,0.8882241,3.044255,0,2385.152,-,-
+625,841.1434,12.50401,36.26813,1201.56,-151.2629,1.101408,105.8386,-13.32389,3.194654,-2.093246,0,2232.323,-,-
+626,644.4445,111.5551,63.44174,878.0648,-148.2222,7.528418,59.25714,-10.00294,4.281434,3.246984,0,2611.55,-,-
+627,1009.552,50.94508,-0.9624376,1464.204,-160.9074,5.385916,154.7957,-17.01114,-0.1017489,5.487665,0,3675.249,-,-
+628,970.5985,-8.176135,5.181611,1410.605,-158.3829,-0.8310292,143.375,-16.09817,0.5266633,-1.357692,0,2616.944,-,-
+629,942.8003,-51.67291,3.909744,1343.36,-156.854,-5.101657,132.6297,-15.48617,0.3860083,-5.487665,0,1883.399,-,-
+630,644.4445,-34.49714,38.60752,843.5962,-148.2222,-2.328077,56.93099,-10.00294,2.60547,-4.933547,0,1212.257,-,-
+631,644.4445,47.50202,53.35446,859.0081,-148.2222,3.205725,57.97108,-10.00294,3.600683,-0.394958,0,2003.365,-,-
+632,614.3267,10.91582,10.67911,842.725,-148.0716,0.7022378,54.21431,-9.525766,0.6870103,0.01522753,0,1592.732,-,-
+633,645.5776,35.49784,27.61859,877.6421,-148.2279,2.399822,59.33275,-10.02091,1.867147,0.5326749,0,1891.765,-,-
+634,654.6205,74.1437,64.53515,901.2585,-148.2731,5.082676,61.7828,-10.16437,4.423994,0.6586825,0,2277.698,-,-
+635,692.8177,38.07835,27.47699,975.159,-148.4641,2.762649,70.74944,-10.77132,1.993502,0.7691465,0,2015.471,-,-
+636,708.7716,40.4463,33.37812,988.2228,-148.5439,3.002021,73.34826,-11.02528,2.477404,0.5246174,0,2071.458,-,-
+637,728.2538,41.80497,32.46681,1020.015,-148.6413,3.188154,77.78898,-11.33576,2.476002,0.7121521,0,2125.271,-,-
+638,755.4572,54.26036,44.26572,1063.636,-148.7773,4.292608,84.14565,-11.76996,3.501919,0.790689,0,2325.345,-,-
+639,778.621,32.73521,26.8564,1105.111,-148.8931,2.66913,90.10745,-12.1403,2.18979,0.4793402,0,2173.77,-,-
+640,785.3195,22.37034,21.19575,1108.195,-148.9266,1.839703,91.13625,-12.2475,1.743106,0.09659683,0,2080.11,-,-
+641,784.5526,16.47887,16.38719,1103.201,-148.9228,1.353873,90.63697,-12.23522,1.346341,0.007532443,0,2005.647,-,-
+642,785.7797,24.59525,23.99476,1102.926,-148.9289,2.023861,90.75608,-12.25486,1.974449,0.04941161,0,2109.022,-,-
+643,787.5695,16.91645,17.18014,1108.805,-148.9379,1.395169,91.44768,-12.28351,1.416916,-0.02174713,0,2024.912,-,-
+644,784.4503,16.10676,17.10461,1101.01,-148.9223,1.323129,90.44517,-12.23358,1.4051,-0.081971,0,2000.694,-,-
+645,782.5583,17.89994,18.89623,1097.687,-148.9128,1.466888,89.95465,-12.2033,1.548533,-0.08164531,0,2013.496,-,-
+646,779.4391,13.99343,15.37648,1093.41,-148.8972,1.142182,89.24701,-12.15339,1.255069,-0.1128875,0,1968.69,-,-
+647,775.604,17.21,17.88334,1085.844,-148.878,1.397815,88.19337,-12.09203,1.452504,-0.05468926,0,1991.177,-,-
+648,776.0643,22.52246,21.39991,1087.752,-148.8803,1.830384,88.4008,-12.09939,1.739155,0.09122863,0,2042.586,-,-
+649,781.2288,27.58451,24.49158,1097.907,-148.9061,2.256691,89.81989,-12.18202,2.003658,0.2530334,0,2123.881,-,-
+650,791.558,31.36012,28.66589,1116.156,-148.9578,2.599495,92.52015,-12.34737,2.376166,0.2233295,0,2217.248,-,-
+651,794.8305,14.34256,14.60577,1122.864,-148.9742,1.193795,93.46096,-12.39978,1.215703,-0.02190819,0,2027.626,-,-
+652,790.2285,16.37036,17.6139,1109.242,-148.9511,1.354689,91.79259,-12.32609,1.457595,-0.1029065,0,2030.677,-,-
+653,788.5922,16.16161,18.76,1107.381,-148.943,1.334645,91.44885,-12.29989,1.549223,-0.2145782,0,2020.573,-,-
+654,777.0869,-9.974125,3.749234,1089.079,-148.8854,-0.8116579,88.6253,-12.11575,0.305099,-1.116757,0,1732.557,-,-
+655,717.4133,-71.90999,-41.56529,983.9592,-148.5871,-5.402407,73.92224,-11.16295,-3.12269,-2.279716,0,966.9546,-,-
+656,620.5139,-57.27702,-41.34504,802.7026,-148.1026,-3.721864,52.15967,-9.623714,-2.686603,-1.035261,0,937.4362,-,-
+657,644.4445,122.948,22.88576,851.2633,-148.2222,8.29728,57.44842,-10.00294,1.54447,6.75281,0,2719.725,-,-
+658,1016.479,57.93904,7.967908,1466.731,-161.5655,6.167346,156.1268,-17.19791,0.8481474,5.319199,0,3798.894,-,-
+659,962.2321,-41.81168,-9.220888,1400.378,-157.9228,-4.213141,141.1086,-15.91304,-0.9291401,-3.284001,0,2079.114,-,-
+660,847.3507,-59.70004,-16.62675,1176.887,-151.6043,-5.297445,104.4303,-13.45251,-1.475364,-3.822081,0,1359.577,-,-
+661,747.673,-37.96694,-3.40858,1010.77,-148.7384,-2.972664,79.1394,-11.64564,-0.2668786,-2.705786,0,1394.831,-,-
+662,676.963,-34.32487,-5.49979,907.9445,-148.3848,-2.433338,64.36546,-10.51921,-0.3898878,-2.04345,0,1282.244,-,-
+663,602.3846,-21.15289,-4.922133,790.5776,-148.0119,-1.334357,49.87087,-9.336823,-0.3104959,-1.023862,0,1255.48,-,-
+664,600,-3.502321,-3.026923,793.2861,-148,-0.2200573,49.84364,-9.299114,-0.1901872,-0.02987009,0,1424.474,-,-
+665,600,11.43227,2.26173,799.9366,-148,0.7183105,50.2615,-9.299114,0.1421087,0.5762018,0,1567.549,-,-
+666,644.4445,25.72987,14.36047,875.936,-148.2222,1.736408,59.11348,-10.00294,0.9691319,0.7672759,0,1796.639,-,-
+667,658.5208,81.01238,81.01238,903.7772,-148.2926,5.586625,62.3246,-10.22628,5.586625,0,0,2351.106,-,-
+668,644.4445,174.4862,149.725,902.9878,-148.2222,11.77539,60.9391,-10.00294,10.10435,1.671035,0,3257.164,-,-
+669,770.7463,208.7785,151.4149,1127.553,-148.8537,16.85101,91.00749,-12.01434,12.22105,4.629957,0,4244.193,-,-
+670,927.217,163.4348,106.9869,1386.81,-155.9969,15.86918,134.6563,-15.14698,10.38821,5.480968,0,4786.319,-,-
+671,1058.376,169.8687,116.3,1491.193,-165.5457,18.82703,165.2732,-18.34791,12.88986,5.937172,0,5694.758,-,-
+672,1195.672,179.1474,116.0353,1493.886,-178.5888,22.43113,187.0502,-22.36119,14.52883,7.902299,0,6502.484,-,-
+673,1370.653,249.263,169.7664,1496.104,-199.4784,35.77783,214.7424,-28.63202,24.36733,11.4105,0,8967.088,-,-
+674,1588.996,274.5664,177.7254,1469.078,-233.2393,45.68766,244.4534,-38.81086,29.57337,16.11428,0,11479.8,-,-
+675,1850.804,326.5981,231.9466,1430.121,-273.3987,63.29984,277.18,-52.98898,44.95491,18.34493,0,16059.16,-,-
+676,2070.22,177.06,119.5923,998.4332,-314.3418,38.38535,216.4532,-68.14708,25.92677,12.45858,0,15209.95,-,-
+677,2149.734,-81.18117,36.54165,813.8387,-329.4494,-18.27547,183.2111,-74.16553,8.226242,-26.50171,0,ERROR,-,-
+678,1319.83,-78.61364,118.5154,1387.915,-193.3796,-10.86537,191.8268,-26.72743,16.38028,-27.24565,0,2434.395,-,-
+679,1416.364,380.3417,331.9403,1407.055,-205.6182,56.41277,208.6962,-30.49756,49.23381,7.178959,0,12397.68,-,-
+680,1559.182,359.1976,300.5107,1521.476,-228.4691,58.64877,248.4223,-37.30379,49.06653,9.582238,0,13351.81,-,-
+681,1710.518,441.2152,368.2365,1527.457,-251.0251,79.03268,273.6057,-44.96488,65.96037,13.07231,0,17299.46,-,-
+682,1919.854,603.5727,529.9606,1322.116,-286.173,121.3463,265.807,-57.53412,106.5468,14.79946,0,25727.47,-,-
+683,2084.814,249.1037,201.0867,1021.778,-317.1147,54.38461,223.0758,-69.23286,43.9015,10.48311,0,17556.43,-,-
+684,2166.125,109.6446,208.9885,794.6426,-332.5638,24.87136,180.2536,-75.43745,47.40614,-22.53478,0,ERROR,-,-
+685,1477.623,392.8771,543.129,1479.351,-215.4197,60.79237,228.9094,-33.33325,84.04178,-23.24941,0,13359.77,-,-
+686,1568.573,489.0973,458.5431,1526.899,-229.9717,80.33941,250.8093,-37.77528,75.32056,5.018849,0,16785,-,-
+687,1632.52,319.4283,298.8318,1554.012,-239.7154,54.60853,265.6694,-40.98105,51.08742,3.521107,0,13098.38,-,-
+688,1672.844,255.917,243.7382,1514.089,-245.5624,44.83149,265.2377,-43.01757,42.69801,2.133475,0,11881.95,-,-
+689,1694.081,133.1228,124.3595,1503.059,-248.6418,23.61649,266.6484,-44.10998,22.06184,1.554653,0,8865.632,-,-
+690,1716.868,272.1353,260.0804,1478.205,-251.9459,48.92721,265.7664,-45.29735,46.75986,2.167349,0,12765.13,-,-
+691,1754.409,280.4178,263.9969,1524.289,-257.3893,51.51873,280.0443,-47.2879,48.50185,3.016879,0,13440,-,-
+692,1799.228,352.1905,331.4003,1540.033,-263.8881,66.35787,290.1649,-49.72039,62.44069,3.917182,0,15985.38,-,-
+693,1858.482,422.8427,402.8758,1435.659,-274.8192,82.29356,279.4076,-53.48525,78.40761,3.885953,0,18988.92,-,-
+694,1900.06,185.8796,172.2266,1366.197,-282.5111,36.98518,271.8374,-56.21231,34.26859,2.716586,0,12898.34,-,-
+695,1927.36,179.725,273.7905,1264.982,-287.5616,36.27437,255.3147,-58.03932,55.25987,-18.9855,0,13138.72,-,-
+696,1337.101,448.1313,581.744,1534.649,-195.4521,62.74774,214.8829,-27.36738,81.45631,-18.70857,0,13032.55,-,-
+697,1385.247,689.6841,671.3594,1599.708,-201.2296,100.0474,232.0581,-29.19092,97.38921,2.65823,0,19425.67,-,-
+698,1429.335,526.9877,511.52,1678.076,-207.6936,78.87932,251.1737,-31.08749,76.56412,2.3152,0,16080.92,-,-
+699,1463.264,491.5411,478.2894,1610.679,-213.1223,75.32014,246.8087,-32.65729,73.28956,2.030585,0,15589,-,-
+700,1495.965,508.0627,495.1454,1588.049,-218.3544,79.59162,248.7791,-34.20676,77.56803,2.023592,0,16341.18,-,-
+701,1528.196,489.4485,476.9826,1583.326,-223.5114,78.32757,253.3833,-35.76904,76.33263,1.99494,0,16268.58,-,-
+702,1558.654,479.5961,467.7729,1567.185,-228.3847,78.28058,255.7988,-37.27737,76.35077,1.929812,0,16404.6,-,-
+703,1587.647,466.1936,455.5045,1554.362,-233.0235,77.50842,258.4251,-38.74202,75.73126,1.777151,0,16427.65,-,-
+704,1612.448,400.7414,391.3767,1547.899,-236.805,67.66726,261.3707,-39.98574,66.08598,1.58128,0,15012.09,-,-
+705,1634.75,420.3745,412.0384,1531.194,-240.0388,71.96417,262.1261,-41.09238,70.53711,1.427061,0,15808.05,-,-
+706,1654.379,350.7976,343.8186,1540.677,-242.885,60.77433,266.9165,-42.07889,59.56525,1.209085,0,14149.2,-,-
+707,1669.87,341.0654,334.4503,1523.729,-245.1311,59.64156,266.4521,-42.86568,58.48478,1.156777,0,14071.71,-,-
+708,1687.604,400.5091,393.1033,1524.793,-247.7026,70.78017,269.4697,-43.77536,69.47137,1.308793,0,15938.63,-,-
+709,1707.072,381.0241,374.1737,1544.816,-250.5254,68.11346,276.1578,-44.78497,66.88885,1.224613,0,15640.85,-,-
+710,1722.079,312.5197,309.1562,1543.154,-252.7014,56.35845,278.2857,-45.57109,55.75189,0.6065575,0,13928.48,-,-
+711,1724.041,114.9075,116.8087,1526.905,-252.9859,20.74553,275.6691,-45.67437,21.08878,-0.3432478,0,8692.51,-,-
+712,1712.486,33.16751,38.6457,1472.461,-251.3105,5.947967,264.0581,-45.06778,6.930377,-0.9824097,0,6623.551,-,-
+713,1696.472,17.13283,24.07446,1444.038,-248.9885,3.043719,256.5393,-44.23383,4.276927,-1.233208,0,6169.895,-,-
+714,1677.568,-28.2199,-21.09692,1431.563,-246.2474,-4.957518,251.4891,-43.25938,-3.706191,-1.251326,0,5048.887,-,-
+715,1660.694,54.20764,59.4906,1411.081,-243.8006,9.427114,245.3975,-42.39875,10.34586,-0.9187467,0,6781.994,-,-
+716,1651.074,113.6332,117.0277,1431.838,-242.4057,19.64719,247.5648,-41.91196,20.23409,-0.5868986,0,8049.465,-,-
+717,1643.645,97.13361,100.7626,1447.183,-241.3285,16.71884,249.0921,-41.53797,17.34347,-0.6246275,0,7636.95,-,-
+718,1632.816,41.9101,46.85336,1438.443,-239.7583,7.166127,245.9566,-40.99582,8.011366,-0.8452389,0,6340.491,-,-
+719,1618.776,27.66194,33.4556,1415.99,-237.7225,4.689191,240.0355,-40.29821,5.67132,-0.9821287,0,5938.517,-,-
+720,1603.688,15.98119,22.07509,1405.83,-235.5347,2.683846,236.092,-39.55519,3.707242,-1.023396,0,5587.508,-,-
+721,1588.144,13.86356,20.2846,1403.331,-233.103,2.30565,233.388,-38.76738,3.373533,-1.067883,0,5427.696,-,-
+722,1571.404,-11.78481,-5.337609,1406.419,-230.4247,-1.939274,231.4362,-37.918,-0.8783412,-1.060933,0,4829.912,-,-
+723,1555.752,32.19136,37.73106,1401.123,-227.9203,5.244551,228.2681,-37.13231,6.147068,-0.9025175,0,5626.812,-,-
+724,1543.593,55.36594,59.9789,1418.935,-225.9749,8.949611,229.3633,-36.52764,9.695271,-0.7456602,0,6016.518,-,-
+725,1532.576,53.28099,57.50302,1429.454,-224.2122,8.551119,229.4146,-35.98403,9.228716,-0.6775969,0,5926.777,-,-
+726,1522.379,69.06815,73.60085,1431.041,-222.5806,11.01106,228.141,-35.48451,11.73368,-0.7226161,0,6183.614,-,-
+727,1509.777,0.2987804,6.736443,1439.495,-220.5643,0.04723822,227.5891,-34.87199,1.065055,-1.017817,0,4807.375,-,-
+728,1489.946,-74.701,-65.89068,1419.37,-217.3914,-11.65536,221.4598,-33.91888,-10.28071,-1.374646,0,3127.562,-,-
+729,1465.427,-91.50858,-81.57812,1396.959,-213.4683,-14.04283,214.3762,-32.75867,-12.51891,-1.52392,0,2660.339,-,-
+730,1440.021,-96.71056,-84.30984,1395.418,-209.4034,-14.58382,210.4271,-31.57774,-12.71381,-1.870011,0,2435.288,-,-
+731,1402.846,-127.3956,-110.6423,1399.773,-203.4554,-18.71514,205.6347,-29.88875,-16.25399,-2.461151,0,1616.556,-,-
+732,1355.514,-126.8009,-108.9766,1388.059,-197.6617,-17.99928,197.0337,-28.0579,-15.46913,-2.530148,0,1503.086,-,-
+733,1313.435,-121.4535,-108.6577,1388.426,-192.6122,-16.70503,190.9677,-26.49238,-14.94506,-1.759972,0,1509.406,-,-
+734,1291.697,83.61916,88.19454,1391.188,-190.0036,11.31085,188.1808,-25.70107,11.92974,-0.6188934,0,5265.991,-,-
+735,1290.622,169.5547,169.627,1468.883,-189.8746,22.91593,198.5249,-25.66224,22.9257,-0.009769255,0,6877.481,-,-
+736,1291.334,123.8229,123.4191,1501.048,-189.9601,16.74435,202.984,-25.68796,16.68974,0.05460652,0,6004.553,-,-
+737,1292.651,183.3484,181.8836,1483.886,-190.1181,24.81916,200.8679,-25.73555,24.62087,0.198295,0,7154.756,-,-
+738,1298.683,221.3006,218.1147,1505.936,-190.842,30.09639,204.804,-25.95408,29.66311,0.4332761,0,7911.607,-,-
+739,1308.639,267.7927,261.73,1519.856,-192.0367,36.69841,208.2817,-26.31678,35.86757,0.8308403,0,8846.291,-,-
+740,1329.033,439.9518,429.3002,1536.381,-194.4839,61.23074,213.8274,-27.0675,59.74829,1.482449,0,12785.62,-,-
+741,1361.923,530.6749,516.4432,1598.498,-198.4308,75.68498,227.9781,-28.30024,73.65525,2.029729,0,15311.27,-,-
+742,1400.414,564.0099,548.9453,1630.906,-203.0662,82.71262,239.174,-29.77987,80.50338,2.209233,0,16663.62,-,-
+743,1437.67,515.3007,500.626,1631.519,-209.0272,77.57978,245.6292,-31.46956,75.37048,2.209308,0,15888.58,-,-
+744,1474.187,557.4569,543.0269,1602.774,-214.8699,86.05825,247.4306,-33.17087,83.83059,2.227664,0,17363.86,-,-
+745,1510.207,513.0086,499.5962,1605.662,-220.6331,81.13155,253.9331,-34.8928,79.0104,2.121144,0,16657.41,-,-
+746,1541.698,472.5562,461.3121,1580.6,-225.6717,76.29242,255.1819,-36.43384,74.4771,1.815321,0,15997.66,-,-
+747,1566.836,389.1696,380.2783,1559.41,-229.6938,63.85445,255.866,-37.68785,62.39557,1.458876,0,14207.38,-,-
+748,1586.464,363.9525,357.4297,1526.035,-232.8342,60.46492,253.5264,-38.68171,59.38128,1.083641,0,13763.21,-,-
+749,1599.685,260.9547,256.977,1514.101,-234.9496,43.71478,253.6402,-39.35844,43.04843,0.6663436,0,11241.04,-,-
+750,1606.496,234.0277,232.4668,1482.312,-235.9419,39.37091,249.372,-39.69295,39.10833,0.2625862,0,10616.91,-,-
+751,1607.544,142.4776,143.2486,1474.129,-236.0939,23.98492,248.1573,-39.74442,24.1147,-0.1297825,0,8431.516,-,-
+752,1602.614,111.2557,112.8952,1443.091,-235.379,18.67153,242.1873,-39.50257,18.94668,-0.2751529,0,7705.687,-,-
+753,1599.308,173.6852,174.5253,1432.141,-234.8893,29.08865,239.8537,-39.33905,29.22934,-0.1406944,0,9076.899,-,-
+754,1598.395,158.6093,159.9569,1452.885,-234.7432,26.54858,243.189,-39.29214,26.77416,-0.225581,0,8733.74,-,-
+755,1592.524,71.7869,74.90523,1449.638,-233.8038,11.97181,241.7542,-38.99117,12.49185,-0.5200399,0,6752.807,-,-
+756,1582.703,74.79619,79.23005,1423.258,-232.2325,12.39674,235.8911,-38.49028,13.13161,-0.7348696,0,6744.979,-,-
+757,1570.221,12.31041,19.00678,1427.319,-230.2354,2.02424,234.6985,-37.85833,3.125345,-1.101105,0,5310.723,-,-
+758,1548.953,-98.49545,-88.6775,1410.913,-226.8325,-15.97655,228.8585,-36.79359,-14.38402,-1.592531,0,2844.713,-,-
+759,1520.766,-122.0977,-110.8026,1377.839,-222.3226,-19.44458,219.4267,-35.40581,-17.64579,-1.798791,0,2221.579,-,-
+760,1492.177,-115.5213,-102.1223,1374.677,-217.7483,-18.05141,214.8076,-34.02544,-15.95768,-2.093729,0,2265.959,-,-
+761,1453.188,-142.2763,-125.0264,1383.753,-211.5101,-21.65125,210.576,-32.18707,-19.0262,-2.625045,0,1528.205,-,-
+762,1405.211,-136.2779,-117.7003,1381.464,-203.8338,-20.05375,203.2871,-29.99482,-17.32,-2.733748,0,1438.826,-,-
+763,1359.907,-127.7717,-109.2198,1384.693,-198.1888,-18.19585,197.193,-28.2239,-15.5539,-2.641952,0,1493.676,-,-
+764,1311.877,-124.6839,-104.8277,1387.831,-192.4252,-17.129,190.6595,-26.43527,-14.40117,-2.727829,0,1436.918,-,-
+765,1259.963,-121.2238,-101.4207,1388.817,-186.1956,-15.99463,183.2447,-24.5672,-13.38175,-2.612882,0,1366.923,-,-
+766,1212.524,-117.9492,-101.3614,1390.263,-180.5029,-14.97663,176.5289,-22.91939,-12.87038,-2.106247,0,1190.462,-,-
+767,1177.001,-114.867,-103.4386,1391.934,-176.8151,-14.15796,171.5632,-21.79339,-12.74935,-1.408607,0,1144.483,-,-
+768,1155.424,-21.26979,-14.24204,1393.62,-174.7653,-2.573554,168.6221,-21.14585,-1.723226,-0.8503281,0,2827.625,-,-
+769,1141.801,-6.357027,-2.180722,1429.429,-173.4711,-0.7601041,170.9155,-20.74179,-0.260747,-0.4993571,0,3064.55,-,-
+770,1134.492,103.4042,104.962,1435.101,-172.7767,12.28481,170.4953,-20.52652,12.46988,-0.1850736,0,4857.183,-,-
+771,1133.995,131.7083,132.4717,1476.293,-172.7295,15.64058,175.3123,-20.51192,15.73124,-0.09066183,0,5362.92,-,-
+772,1130.65,46.44499,47.88279,1487.037,-172.4118,5.499151,176.0672,-20.41379,5.669389,-0.1702376,0,3873.169,-,-
+773,1126.767,120.693,121.0923,1454.977,-172.0429,14.24114,171.6797,-20.30016,14.28826,-0.04712319,0,5131.44,-,-
+774,1128.648,163.7539,162.4692,1482.685,-172.2216,19.35436,175.2411,-20.35517,19.20252,0.1518367,0,5913.168,-,-
+775,1133.216,178.0257,175.2046,1498.66,-172.6555,21.12632,177.8461,-20.48905,20.79155,0.3347726,0,6190.679,-,-
+776,1142.795,269.1267,263.5941,1503.7,-173.5655,32.20726,179.9526,-20.77115,31.54515,0.6621046,0,7778.914,-,-
+777,1160.919,355.3435,347.9955,1536.847,-175.2873,43.19951,186.8362,-21.30988,42.30621,0.8933039,0,9528.873,-,-
+778,1179.715,287.8851,280.5278,1568.631,-177.0729,35.56517,193.7878,-21.87549,34.65625,0.9089215,0,8399.232,-,-
+779,1197.906,347.8228,339.575,1543.818,-178.8011,43.63243,193.6633,-22.4296,42.59779,1.034644,0,9656.422,-,-
+780,1221.082,393.4671,383.904,1565.458,-181.5298,50.3132,200.1773,-23.21248,49.09034,1.222857,0,10719.81,-,-
+781,1245.937,387.9595,377.8862,1582.107,-184.5124,50.61872,206.4241,-24.07412,49.3044,1.314316,0,10851.18,-,-
+782,1271.692,417.9499,407.0621,1580.038,-187.603,55.65892,210.4157,-24.98334,54.20898,1.449942,0,11752.19,-,-
+783,1300.591,457.6977,446.2632,1590.749,-191.0709,62.33731,216.6561,-26.02339,60.77997,1.557342,0,12845.34,-,-
+784,1329.168,417.6133,406.8417,1605.447,-194.5002,58.12766,223.4623,-27.0725,56.62835,1.499308,0,12340.92,-,-
+785,1354.789,402.6342,393.3741,1591.143,-197.5747,57.12298,225.7405,-28.03054,55.80923,1.313752,0,12307.22,-,-
+786,1375.788,326.1706,320.0391,1586.183,-200.0946,46.99211,228.5249,-28.82806,46.10873,0.883382,0,10781.47,-,-
+787,1385.73,178.7369,176.7072,1558.936,-201.2876,25.9371,226.2224,-29.20951,25.64256,0.2945441,0,7646.166,-,-
+788,1386.025,128.7134,129.1193,1504.512,-201.323,18.682,218.3712,-29.22087,18.74092,-0.05891467,0,6688.303,-,-
+789,1383.688,122.7153,124.035,1485.849,-201.0426,17.78139,215.2987,-29.13096,17.9726,-0.1912134,0,6558.67,-,-
+790,1379.388,87.11261,89.29736,1483.662,-200.5266,12.58334,214.3137,-28.96589,12.89893,-0.3155863,0,5848.842,-,-
+791,1372.698,72.1381,75.15662,1470.326,-199.7238,10.36975,211.3574,-28.71001,10.80366,-0.4339089,0,5519.878,-,-
+792,1364.207,47.08162,51.71942,1464.72,-198.7048,6.726053,209.2491,-28.38686,7.388607,-0.6625543,0,4986.271,-,-
+793,1349.334,-55.71205,-48.33559,1455.35,-196.9201,-7.87222,205.6438,-27.82519,-6.829912,-1.042308,0,2995.28,-,-
+794,1327.031,-100.6475,-88.89777,1416.257,-194.2437,-13.98661,196.8121,-26.99334,-12.3538,-1.632814,0,1985.347,-,-
+795,1289.95,-120.4761,-103.9407,1398.672,-189.794,-16.2743,188.9372,-25.63799,-14.04064,-2.233661,0,1470.359,-,-
+796,1243.626,-120.8872,-103.1415,1390.639,-184.2351,-15.74341,181.1059,-23.99335,-13.43234,-2.311073,0,1291.537,-,-
+797,1200.889,-116.9233,-100.6604,1390.554,-179.1067,-14.7039,174.8716,-22.52389,-12.65873,-2.04517,0,1151.299,-,-
+798,1162.021,-113.5962,-101.1053,1392.187,-175.392,-13.82313,169.4105,-21.34285,-12.30316,-1.519974,0,1141.668,-,-
+799,1138.523,1.19114,7.526351,1394.022,-173.1597,0.1420147,166.2035,-20.64511,0.8973355,-0.7553208,0,3189.586,-,-
+800,1130.394,77.9349,78.62582,1437.95,-172.3874,9.225512,170.2167,-20.40629,9.3073,-0.08178817,0,4380.872,-,-
+801,1135.07,266.8188,261.5264,1466.605,-172.8316,31.71522,174.3269,-20.5435,31.08614,0.6290762,0,7679.472,-,-
+802,1156.795,431.4539,420.6367,1535.678,-174.8955,52.26601,186.0309,-21.18672,50.95563,1.310386,0,10833.46,-,-
+803,1189.187,493.08,479.1694,1594.888,-177.9728,61.40393,198.6136,-22.16319,59.67162,1.732312,0,12385.95,-,-
+804,1226.563,542.694,526.7911,1616.771,-182.1876,69.70653,207.6667,-23.40115,67.66388,2.042651,0,13775.79,-,-
+805,1268.951,604.1832,587.0944,1634.212,-187.2741,80.28642,217.161,-24.88578,78.01559,2.270831,0,15730.7,-,-
+806,1312.414,574.5614,557.2355,1656.565,-192.4897,78.96523,227.6712,-26.45495,76.58404,2.381193,0,15652.11,-,-
+807,1356.025,617.1783,599.5178,1646.031,-197.723,87.64093,233.7407,-28.07718,85.13309,2.507839,0,17274.13,-,-
+808,1401.126,614.5919,596.9175,1661.126,-203.1802,90.17635,243.7297,-29.81173,87.58305,2.593292,0,17885.31,-,-
+809,1444.898,600.4918,583.357,1646.191,-210.1837,90.86003,249.0841,-31.80276,88.26737,2.592662,0,18119.29,-,-
+810,1487.286,596.1778,579.6837,1627.307,-216.9658,92.85363,253.4503,-33.79203,90.28471,2.568918,0,18558.38,-,-
+811,1527.847,572.7152,557.1998,1612.183,-223.4556,91.63201,257.9425,-35.75194,89.1496,2.482403,0,18466.02,-,-
+812,1565.344,542.4,528.5688,1591.624,-229.455,88.91153,260.903,-37.61283,86.64429,2.267239,0,18152.54,-,-
+813,1597.481,471.7091,459.4791,1570.988,-234.597,78.91118,262.8072,-39.24521,76.86526,2.045919,0,16701.55,-,-
+814,1626.864,490.7028,481.8691,1551.152,-238.8953,83.59849,264.2617,-40.69935,82.09354,1.504955,0,17570.02,-,-
+815,1642.073,185.8156,183.2177,1560.231,-241.1006,31.95239,268.2934,-41.45905,31.50566,0.446727,0,9731.741,-,-
+816,1639.99,138.4675,139.3256,1467.982,-240.7986,23.78031,252.1103,-41.35459,23.92768,-0.1473706,0,8536.764,-,-
+817,1637.76,179.3164,179.6882,1452.732,-240.4752,30.75381,249.1521,-41.2429,30.81757,-0.06375818,0,9511.843,-,-
+818,1638.123,191.5762,190.7065,1465.345,-240.5278,32.86371,251.3709,-41.26107,32.71453,0.1491832,0,9844.722,-,-
+819,1642.126,255.2263,252.7852,1470.162,-241.1083,43.88949,252.8135,-41.46171,43.46971,0.4197769,0,11540.33,-,-
+820,1650.376,279.859,276.92,1491.496,-242.3045,48.36719,257.7708,-41.87675,47.85925,0.5079417,0,12263.92,-,-
+821,1656.905,223.2172,220.5625,1500.577,-243.2512,38.73057,260.3661,-42.20669,38.26996,0.4606128,0,10868.83,-,-
+822,1663.717,287.3783,284.3724,1485.777,-244.239,50.06821,258.8582,-42.5523,49.5445,0.5237058,0,12598.87,-,-
+823,1672.006,255.1312,252.077,1506.479,-245.4409,44.67145,263.7724,-42.97475,44.13668,0.5347697,0,11852.81,-,-
+824,1679.073,264.8819,262.1556,1499.241,-246.4656,46.57474,263.6148,-43.33657,46.09537,0.4793707,0,12179.3,-,-
+825,1685.71,247.8133,245.4244,1503.81,-247.4279,43.74578,265.4632,-43.67775,43.32407,0.4217059,0,11808.12,-,-
+826,1691.084,240.8621,238.6861,1500.645,-248.2072,42.65424,265.7491,-43.95499,42.26889,0.3853542,0,11685.11,-,-
+827,1696.646,253.1484,250.7042,1500.348,-249.0137,44.97747,266.5704,-44.24284,44.54321,0.4342596,0,12061.27,-,-
+828,1703.364,266.1823,263.4233,1505.563,-249.9878,47.4805,268.5561,-44.59179,46.98836,0.4921444,0,12468.94,-,-
+829,1710.511,263.9189,261.225,1511.04,-251.0241,47.27428,270.6639,-44.96451,46.79175,0.4825294,0,12485.77,-,-
+830,1716.906,251.7395,250.3625,1512.312,-251.9514,45.26125,271.9045,-45.29934,45.01366,0.2475917,0,12238.4,-,-
+831,1717.444,144.4167,145.5638,1509.55,-252.0294,25.97339,271.493,-45.32756,26.1797,-0.2063131,0,9415.003,-,-
+832,1711.129,110.509,113.0963,1479.637,-251.1137,19.80201,265.1347,-44.99682,20.26562,-0.4636139,0,8438.362,-,-
+833,1704.439,133.3089,136.2268,1468.139,-250.1436,23.79409,262.0459,-44.64775,24.31491,-0.5208206,0,8979.797,-,-
+834,1696.458,81.35268,85.33894,1471.389,-248.9864,14.45252,261.3962,-44.2331,15.16069,-0.7081701,0,7601.913,-,-
+835,1684.38,46.39194,51.80803,1452.529,-247.2351,8.182975,256.2084,-43.60927,9.138308,-0.9553328,0,6749.82,-,-
+836,1669.212,13.84077,20.00123,1436.605,-245.0357,2.419359,251.1178,-42.83212,3.496205,-1.076846,0,5932.921,-,-
+837,1653.412,28.37045,34.94622,1420.616,-242.7448,4.912199,245.9724,-42.03001,6.050759,-1.138561,0,6162.133,-,-
+838,1636.148,-18.73251,-12.16155,1418.255,-240.2415,-3.209573,242.9997,-41.16225,-2.083723,-1.12585,0,5010.664,-,-
+839,1620.402,54.79761,60.69542,1397.151,-237.9583,9.298502,237.0798,-40.37869,10.29929,-1.000788,0,6553.398,-,-
+840,1606.523,13.5578,19.50965,1415.766,-235.9458,2.280892,238.181,-39.69427,3.2822,-1.001308,0,5550.477,-,-
+841,1590.468,7.431612,13.3675,1401.99,-233.4749,1.23776,233.5062,-38.88604,2.226402,-0.9886416,0,5308.539,-,-
+842,1576.711,57.00784,61.32232,1403.042,-231.2738,9.412724,231.6601,-38.18626,10.1251,-0.7123755,0,6302.58,-,-
+843,1568.824,125.5917,127.4455,1421.564,-230.0118,20.63307,233.5443,-37.78792,20.93763,-0.3045612,0,7771.822,-,-
+844,1567.413,189.2402,189.0635,1444.939,-229.7861,31.06171,237.1711,-37.71688,31.03271,0.02900501,0,9180.417,-,-
+845,1569.711,202.4044,201.4016,1465.633,-230.1538,33.27118,240.9204,-37.83262,33.10635,0.164832,0,9492.955,-,-
+846,1572.452,199.5319,198.5484,1469.292,-230.5923,32.85627,241.9436,-37.9709,32.69432,0.1619533,0,9448.37,-,-
+847,1574.655,191.4035,191.3449,1467.757,-230.9448,31.56196,242.0294,-38.08222,31.5523,0.009663533,0,9283.917,-,-
+848,1572.747,114.8096,116.7202,1465.717,-230.6395,18.90888,241.4002,-37.98579,19.22354,-0.3146607,0,7561.314,-,-
+849,1565.035,71.22337,74.5155,1442.052,-229.4056,11.6728,236.338,-37.59731,12.21235,-0.5395465,0,6530.499,-,-
+850,1556.195,87.78979,92.09866,1429.389,-227.9912,14.30661,232.9395,-37.15444,15.0088,-0.7021935,0,6832.479,-,-
+851,1543.351,-13.65294,-7.124376,1438.201,-225.9362,-2.206578,232.4412,-36.51565,-1.151437,-1.055142,0,4663.626,-,-
+852,1523.306,-58.09257,-49.17305,1407.395,-222.729,-9.26694,224.508,-35.52978,-7.844097,-1.422844,0,3630.478,-,-
+853,1498.451,-107.2389,-96.93314,1396.625,-218.7522,-16.82766,219.1548,-34.32603,-15.2105,-1.617156,0,2471.798,-,-
+854,1471.473,-103.2224,-92.29533,1383.87,-214.4357,-15.90577,213.2437,-33.04288,-14.222,-1.683772,0,2439.166,-,-
+855,1443.514,-128.1028,-117.4599,1390.361,-209.9622,-19.36459,210.1731,-31.73882,-17.75576,-1.608834,0,1785.171,-,-
+856,1418.028,-63.88415,-54.38341,1385.542,-205.8845,-9.486511,205.7468,-30.57293,-8.075694,-1.410817,0,3032.297,-,-
+857,1395.819,-75.29633,-67.33624,1413.162,-202.4983,-11.00605,206.5617,-29.59914,-9.842525,-1.163526,0,2698.185,-,-
+858,1378.085,17.34779,23.06625,1408.901,-200.3702,2.503507,203.3223,-28.91597,3.328753,-0.8252456,0,4507.927,-,-
+859,1367.149,52.54254,56.06586,1444.057,-199.0579,7.522385,206.7421,-28.49862,8.02681,-0.5044248,0,5109.367,-,-
+860,1360.404,103.4709,104.5299,1457.301,-198.2485,14.74058,207.6088,-28.24271,14.89146,-0.1508803,0,6044.406,-,-
+861,1361.842,220.6649,218.3961,1476.261,-198.4211,31.4694,210.5321,-28.29718,31.14586,0.3235438,0,8293.155,-,-
+862,1371.771,280.0054,274.9024,1519.65,-199.6125,40.2232,218.3001,-28.67464,39.49014,0.7330567,0,9682.671,-,-
+863,1387.436,342.494,335.5538,1541.316,-201.4923,49.76162,223.9409,-29.27522,48.75327,1.008355,0,11275.95,-,-
+864,1406.608,356.9329,348.7449,1562.403,-204.0573,52.57609,230.1414,-30.05757,51.37,1.206088,0,11787.18,-,-
+865,1428.548,404.7235,395.4687,1561.452,-207.5677,60.5455,233.5889,-31.05154,59.16101,1.384491,0,13138.26,-,-
+866,1453.08,415.9836,405.8923,1571.464,-211.4928,63.29864,239.1236,-32.18205,61.76308,1.535558,0,13667.93,-,-
+867,1479.238,444.0435,433.955,1567.579,-215.6781,68.78475,242.8266,-33.40971,67.222,1.562753,0,14617.99,-,-
+868,1503.811,389.683,380.5449,1570.041,-219.6098,61.36678,247.2481,-34.58387,59.92773,1.439053,0,13554.16,-,-
+869,1525.214,384.5718,376.5453,1545.071,-223.0342,61.42382,246.7787,-35.62304,60.14183,1.281992,0,13648.4,-,-
+870,1544.184,344.595,337.2246,1537.755,-226.0694,55.72327,248.6652,-36.55691,54.53143,1.191845,0,12815.8,-,-
+871,1562.268,371.2244,363.6332,1518.885,-228.9629,60.73243,248.4901,-37.4584,59.49051,1.241923,0,13695.28,-,-
+872,1582.313,388.7063,381.2299,1521.413,-232.1701,64.40841,252.0972,-38.47045,63.16959,1.238822,0,14359.07,-,-
+873,1599.873,325.2543,319.071,1521.769,-234.9797,54.49255,254.9547,-39.3681,53.45661,1.035943,0,12904.85,-,-
+874,1613.429,309.8601,305.6281,1504.141,-236.9472,52.35331,254.1365,-40.0341,51.63828,0.715025,0,12649.88,-,-
+875,1621.181,206.9243,206.3412,1501.285,-238.0712,35.12947,254.8727,-40.41728,35.03048,0.09899233,0,10071.21,-,-
+876,1616.371,51.68645,55.8737,1467.976,-237.3738,8.748758,248.4784,-40.17931,9.457517,-0.7087581,0,6459.834,-,-
+877,1600.061,-29.47068,-22.60738,1412.494,-235.0089,-4.938048,236.6747,-39.37761,-3.788047,-1.150001,0,4556.121,-,-
+878,1581.856,8.105929,13.57199,1389.449,-232.097,1.34276,230.1644,-38.44722,2.248221,-0.9054611,0,5282.592,-,-
+879,1572.667,148.4575,150.4194,1404.169,-230.6267,24.44936,231.2516,-37.98175,24.77247,-0.3231136,0,8311.051,-,-
+880,1572.022,182.7074,182.4399,1451.437,-230.5235,30.07761,238.938,-37.94918,30.03358,0.04402655,0,9069.901,-,-
+881,1574.01,204.2709,203.0324,1462.307,-230.8416,33.66996,241.032,-38.04961,33.46582,0.2041344,0,9568.499,-,-
+882,1578.242,229.9324,227.9318,1468.278,-231.5187,38.00165,242.6669,-38.26382,37.671,0.3306517,0,10212.51,-,-
+883,1584.06,238.2253,235.9183,1475.129,-232.4496,39.51738,244.698,-38.5593,39.13469,0.3826935,0,10488.37,-,-
+884,1589.837,230.9059,228.6528,1476.249,-233.3739,38.44291,245.7768,-38.85381,38.06779,0.3751185,0,10360.29,-,-
+885,1595.385,235.1282,232.864,1472.28,-234.2616,39.28247,245.9714,-39.13769,38.90419,0.3782817,0,10528.08,-,-
+886,1601.216,238.0602,235.7774,1472.651,-235.1763,39.91768,246.9326,-39.43412,39.5349,0.3827807,0,10665.48,-,-
+887,1606.859,233.3147,230.6424,1475.043,-235.9946,39.25984,248.2054,-39.71078,38.81017,0.4496704,0,10602.31,-,-
+888,1614.638,283.6588,280.1063,1475.411,-237.1225,47.96231,249.4692,-40.09373,47.36164,0.6006723,0,11985.45,-,-
+889,1624.701,282.7675,278.5155,1493.714,-238.5817,48.10957,254.1379,-40.59188,47.38615,0.7234234,0,12068.47,-,-
+890,1636,312.0479,307.6002,1496.066,-240.22,53.46053,256.3083,-41.15485,52.69853,0.7620006,0,12944.32,-,-
+891,1647.057,281.0288,276.7338,1507.565,-241.8233,48.47168,260.0238,-41.70953,47.73088,0.7408023,0,12259.17,-,-
+892,1657.59,304.5146,300.1158,1500.893,-243.3505,52.85838,260.5286,-42.24137,52.09483,0.7635447,0,12977.18,-,-
+893,1669.158,305.4732,300.3743,1510.519,-245.0279,53.39482,264.0294,-42.82936,52.50356,0.8912632,0,13123.88,-,-
+894,1683.198,359.5338,352.8913,1514.096,-247.0637,63.3729,266.8808,-43.54846,62.20206,1.17084,0,14748.97,-,-
+895,1702.491,417.6588,409.6434,1533.047,-249.8612,74.46207,273.3185,-44.54636,73.03305,1.429018,0,16576.9,-,-
+896,1723.463,400.2174,392.0233,1552.336,-252.9021,72.23149,280.1665,-45.64394,70.75262,1.478874,0,16375.93,-,-
+897,1743.683,408.347,400.5495,1552.193,-255.834,74.56338,283.4274,-46.7148,73.13956,1.423818,0,16841.84,-,-
+898,1762.667,379.8153,373.0787,1558.175,-258.5867,70.10861,287.6173,-47.7315,68.86513,1.243484,0,16297.28,-,-
+899,1777.58,329.7083,324.4363,1555.462,-260.7491,61.37444,289.5458,-48.53785,60.39309,0.9813544,0,15093.63,-,-
+900,1789.188,315.2155,311.1715,1548.047,-262.4323,59.05982,290.0472,-49.17018,58.30213,0.7576898,0,14836.02,-,-
+901,1797.921,273.7151,270.1997,1547.72,-263.6985,51.53449,291.4014,-49.64859,50.87263,0.6618633,0,13794.21,-,-
+902,1806.855,321.6949,317.8199,1526.225,-265.2682,60.86899,288.7823,-50.19229,60.13579,0.7332017,0,15254.14,-,-
+903,1817.388,308.224,304.9564,1514.443,-267.2168,58.66009,288.2233,-50.85574,58.0382,0.6218885,0,15041.16,-,-
+904,1823.299,228.1031,228.2629,1499.981,-268.3103,43.55296,286.3995,-51.22994,43.58347,-0.03051039,0,12910.6,-,-
+905,1816.582,49.22429,53.34848,1497.894,-267.0677,9.364037,284.9474,-50.80483,10.14859,-0.7845532,0,7955.53,-,-
+906,1802.529,73.04116,79.06287,1490.413,-264.4679,13.78728,281.3309,-49.92106,14.92394,-1.136661,0,8403.795,-,-
+907,1786.299,-1.202009,5.481571,1493.828,-262.0133,-0.2248488,279.4367,-49.01242,1.025387,-1.250236,0,6300.15,-,-
+908,1768.927,44.44483,51.34434,1469.091,-259.4944,8.233031,272.1367,-48.06916,9.511107,-1.278077,0,7274.39,-,-
+909,1751.623,-5.435869,1.730603,1471.291,-256.9854,-0.997099,269.8781,-47.1387,0.3174438,-1.314543,0,5998.247,-,-
+910,1732.894,10.39112,17.75134,1450.306,-254.2696,1.885658,263.1844,-46.14186,3.221305,-1.335647,0,6238.086,-,-
+911,1714.636,-1.444118,5.776513,1445.875,-251.6222,-0.2593005,259.616,-45.18034,1.037209,-1.29651,0,5864.806,-,-
+912,1696.606,10.90272,17.13737,1434.583,-249.0079,1.937066,254.8797,-44.24077,3.044764,-1.107698,0,6031.766,-,-
+913,1683.345,92.24526,96.34247,1432.225,-247.085,16.26095,252.4718,-43.55602,16.9832,-0.7222533,0,7766.139,-,-
+914,1676.05,130.2924,133.0489,1452.397,-246.0273,22.86834,254.9184,-43.18161,23.35215,-0.4838081,0,8599.615,-,-
+915,1669.494,106.072,109.1307,1460.996,-245.0766,18.54447,255.4245,-42.8465,19.07921,-0.5347402,0,7991.371,-,-
+916,1660.667,81.75999,85.7057,1450.853,-243.7967,14.21844,252.31,-42.39738,14.90462,-0.6861768,0,7396.25,-,-
+917,1649.65,58.228,62.78987,1439.657,-242.1992,10.05894,248.7022,-41.84015,10.84701,-0.7880671,0,6805.385,-,-
+918,1637.733,59.45519,64.64289,1428.096,-240.4713,10.19674,244.9228,-41.24155,11.08645,-0.8897057,0,6761.249,-,-
+919,1623.559,8.846125,14.30102,1423.343,-238.4161,1.504007,241.9948,-40.53519,2.431441,-0.9274345,0,5547.623,-,-
+920,1610.325,75.00911,79.67807,1402.128,-236.4971,12.649,236.4449,-39.88118,13.43634,-0.7873414,0,6943.653,-,-
+921,1600.115,67.91325,71.36232,1420.166,-235.0167,11.37979,237.9682,-39.38025,11.95773,-0.5779368,0,6724.155,-,-
+922,1593.007,137.9055,139.1785,1419.434,-233.8811,23.0053,236.7889,-39.01588,23.21765,-0.2123484,0,8230.937,-,-
+923,1593.733,228.0697,226.4919,1442.263,-233.9973,38.06377,240.707,-39.05305,37.80044,0.2633331,0,10328.19,-,-
+924,1600.921,272.3025,268.9128,1470.204,-235.1335,45.65098,246.4769,-39.41968,45.08272,0.568263,0,11547.37,-,-
+925,1610.755,285.4727,281.4597,1486.827,-236.5595,48.15292,250.7948,-39.90235,47.47602,0.6769047,0,11991.4,-,-
+926,1621.087,284.8578,281.5069,1493.42,-238.0576,48.35741,253.5228,-40.41262,47.78857,0.5688396,0,12084.41,-,-
+927,1627.616,209.4707,208.0111,1494.971,-239.0043,35.70294,254.8082,-40.73674,35.45415,0.2487875,0,10204.84,-,-
+928,1628.436,168.177,168.7935,1471.883,-239.1232,28.67913,250.9994,-40.77755,28.78426,-0.1051318,0,9129.964,-,-
+929,1624.513,110.9374,113.1513,1457.935,-238.5544,18.87252,248.0219,-40.58254,19.24914,-0.37662,0,7829.982,-,-
+930,1617.298,98.6873,101.7471,1437.535,-237.5082,16.71398,243.4654,-40.22511,17.2322,-0.5182176,0,7513.515,-,-
+931,1609.13,88.93793,92.09264,1430.912,-236.3239,14.98673,241.1196,-39.82239,15.51832,-0.5315931,0,7247.096,-,-
+932,1601.445,106.6829,109.2618,1425.168,-235.2095,17.89103,239.0049,-39.44532,18.32353,-0.4325022,0,7596.697,-,-
+933,1596.178,137.339,138.5277,1431.467,-234.3885,22.9564,239.2717,-39.17835,23.1551,-0.1986974,0,8242.498,-,-
+934,1595.479,200.2509,199.4341,1441.663,-234.2766,33.45755,240.8705,-39.14251,33.32108,0.1364657,0,9640.249,-,-
+935,1600.276,251.3697,248.4943,1461.034,-235.04,42.12467,244.8408,-39.38813,41.6428,0.4818695,0,10999.56,-,-
+936,1609.909,301.2658,297.6664,1479.907,-236.4368,50.79018,249.4964,-39.86071,50.18336,0.6068231,0,12390.66,-,-
+937,1618.373,230.136,227.6346,1497.901,-237.6641,39.00245,253.8577,-40.27827,38.57851,0.4239335,0,10641.52,-,-
+938,1622.498,213.6573,212.9392,1476.628,-238.2622,36.30199,250.8903,-40.48256,36.17999,0.1220011,0,10259.1,-,-
+939,1621.987,134.2216,135.8195,1471.48,-238.1881,22.79809,249.9368,-40.45723,23.06949,-0.2713999,0,8334.064,-,-
+940,1614.45,67.22802,71.93609,1444.12,-237.0952,11.36589,244.1499,-40.08446,12.16186,-0.7959688,0,6794.885,-,-
+941,1598.261,-42.65803,-35.13531,1418.057,-234.7218,-7.139653,237.3396,-39.28526,-5.880579,-1.259074,0,4257.276,-,-
+942,1576.576,-45.83546,-37.66281,1386.093,-231.2522,-7.567374,228.8421,-38.17942,-6.21808,-1.349294,0,4109.939,-,-
+943,1557.216,-5.905482,1.267353,1389.1,-228.1545,-0.9630145,226.5223,-37.20545,0.2066689,-1.169683,0,4890.564,-,-
+944,1540.557,-0.03538772,6.617812,1406.432,-225.4891,-0.005708985,226.8951,-36.37743,1.06763,-1.073339,0,4939.864,-,-
+945,1523.776,-11.86542,-4.828369,1412.087,-222.8042,-1.893358,225.3259,-35.55274,-0.7704601,-1.122898,0,4613.162,-,-
+946,1505.168,-38.17061,-30.34639,1411.838,-219.8269,-6.016483,222.5351,-34.64929,-4.783222,-1.233261,0,3971.165,-,-
+947,1484.424,-55.46068,-46.83458,1406.625,-216.5078,-8.62128,218.6578,-33.65582,-7.280366,-1.340914,0,3510.752,-,-
+948,1461.786,-77.70343,-68.46862,1404.741,-212.8858,-11.89468,215.0347,-32.5881,-10.48103,-1.413645,0,2936.732,-,-
+949,1437.992,-81.99844,-72.18598,1400.969,-209.0787,-12.34783,210.9665,-31.48436,-10.87021,-1.47762,0,2738.197,-,-
+950,1412.439,-115.0142,-104.704,1403.964,-204.9902,-17.01179,207.6606,-30.32016,-15.4868,-1.524987,0,1922.5,-,-
+951,1386.16,-100.4851,-90.35044,1393.552,-201.3392,-14.58625,202.2857,-29.22606,-13.11512,-1.471133,0,2139.299,-,-
+952,1361.533,-90.52612,-80.75507,1399.137,-198.384,-12.90716,199.4881,-28.28547,-11.51401,-1.39315,0,2287.861,-,-
+953,1337.054,-102.5713,-92.65458,1402.931,-195.4465,-14.36163,196.4328,-27.36563,-12.97312,-1.388506,0,1970.051,-,-
+954,1311.675,-111.9389,-101.5176,1398.292,-192.401,-15.37574,192.0669,-26.42787,-13.94429,-1.431453,0,1706.747,-,-
+955,1284.644,-119.4295,-109.3095,1394.64,-189.1573,-16.06656,187.6176,-25.44688,-14.70514,-1.361421,0,1479.054,-,-
+956,1260.877,-57.80224,-48.75932,1391.87,-186.3052,-7.632134,183.7807,-24.59951,-6.438118,-1.194016,0,2543.192,-,-
+957,1239.233,-103.0113,-93.61691,1415.446,-183.708,-13.368,183.6855,-23.84018,-12.14887,-1.219128,0,1599.85,-,-
+958,1213.585,-115.0557,-105.1952,1398.054,-180.6302,-14.622,177.6736,-22.95563,-13.36887,-1.25313,0,1249.22,-,-
+959,1189.711,-75.95383,-66.76804,1393.488,-178.0226,-9.462803,173.6095,-22.17916,-8.31838,-1.144422,0,1885.705,-,-
+960,1167.449,-110.3127,-99.24905,1408.474,-175.9077,-13.48628,172.193,-21.50558,-12.13369,-1.352588,0,1211.857,-,-
+961,1133.834,-110.9945,-97.21107,1394.906,-172.7142,-13.17891,165.6239,-20.50719,-11.54234,-1.636567,0,1140.264,-,-
+962,1098.11,-111.912,-99.78085,1394.523,-169.3204,-12.86919,160.3615,-19.4708,-11.47418,-1.395011,0,1060.613,-,-
+963,1073.161,-95.85229,-86.63557,1394.557,-166.9503,-10.77199,156.722,-18.76207,-9.736206,-1.035786,0,1310.331,-,-
+964,1051.866,-87.29785,-81.42811,1400.828,-164.9273,-9.615958,154.3028,-18.16693,-8.969399,-0.6465591,0,1416.447,-,-
+965,1043.845,165.5191,163.9237,1404.512,-164.1653,18.09309,153.5289,-17.9451,17.9187,0.1743868,0,5548.823,-,-
+966,1059.793,395.5151,386.0345,1498.636,-165.6803,43.89477,166.3205,-18.38741,42.8426,1.052168,0,9548.215,-,-
+967,1091.15,489.4966,474.9799,1581.556,-168.6593,55.93231,180.7164,-19.27184,54.27356,1.658747,0,11272.46,-,-
+968,1132.423,607.7789,590.0827,1614.371,-172.5802,72.07471,191.4435,-20.46578,69.97617,2.098536,0,14011.35,-,-
+969,1179.849,624.2126,605.8678,1656.255,-177.0857,77.12366,204.6362,-21.87955,74.85709,2.266571,0,14868.77,-,-
+970,1224.723,565.478,548.2744,1663.003,-181.9668,72.52407,213.2846,-23.33773,70.31767,2.206397,0,14211.73,-,-
+971,1266.425,567.3588,551.5138,1642.572,-186.971,75.24296,217.8374,-24.79604,73.1416,2.101355,0,14817.47,-,-
+972,1304.474,498.4864,483.8705,1644.054,-191.5369,68.09533,224.5847,-26.16474,66.09874,1.996592,0,13712.05,-,-
+973,1339.956,522.6118,508.3632,1619.482,-195.7947,73.33282,227.2456,-27.47389,71.33346,1.999366,0,14801.65,-,-
+974,1376.07,518.0093,504.4055,1628.336,-200.1284,74.64603,234.646,-28.83884,72.68569,1.960342,0,15210.87,-,-
+975,1408.422,453.2821,441.2574,1624.713,-204.3475,66.85439,239.6283,-30.13914,65.08088,1.773511,0,14090.83,-,-
+976,1436.595,438.9888,428.2625,1593.327,-208.8552,66.04142,239.6999,-31.42015,64.42775,1.613671,0,14045.72,-,-
+977,1462.377,410.2007,400.0607,1580.788,-212.9803,62.81803,242.0815,-32.61575,61.2652,1.552826,0,13627.45,-,-
+978,1487.568,432.9453,422.6733,1563.158,-217.0109,67.44324,243.5053,-33.80547,65.8431,1.600143,0,14439.72,-,-
+979,1513.982,441.3753,430.7774,1562.871,-221.2371,69.97733,247.7836,-35.07578,68.2971,1.680233,0,14921.37,-,-
+980,1540.825,448.1226,437.9244,1557.266,-225.532,72.30673,251.2724,-36.39067,70.66122,1.645513,0,15367.17,-,-
+981,1565.277,398.7137,389.7075,1551.883,-229.4443,65.35533,254.3776,-37.60946,63.87906,1.476269,0,14437.56,-,-
+982,1586.142,379.9174,372.3694,1529.166,-232.7827,63.10444,253.995,-38.6653,61.8507,1.253738,0,14172.42,-,-
+983,1603.258,324.7882,320.056,1519.481,-235.4724,54.5296,255.1099,-39.53412,53.73509,0.7945065,0,12928.49,-,-
+984,1610.003,168.8253,168.9929,1503.721,-236.4504,28.46379,253.526,-39.86534,28.49205,-0.02825567,0,9033.822,-,-
+985,1602.412,30.84503,34.47963,1451.779,-235.3497,5.175925,243.6145,-39.49267,5.785827,-0.6099021,0,5911.316,-,-
+986,1591.718,101.8353,104.7631,1407.448,-233.6749,16.97434,234.5995,-38.94994,17.46236,-0.4880157,0,7416.735,-,-
+987,1587.728,165.7649,166.0382,1431.953,-233.0365,27.56114,238.0857,-38.74616,27.60659,-0.04544837,0,8811.921,-,-
+988,1590.347,238.6005,236.2112,1452.299,-233.4555,39.73671,241.867,-38.87986,39.33879,0.3979142,0,10564.55,-,-
+989,1599.711,306.7121,301.9272,1473.391,-234.9538,51.38082,246.8245,-39.35977,50.57925,0.8015693,0,12423.92,-,-
+990,1614.356,350.9182,344.5453,1498.367,-237.0816,59.32446,253.3064,-40.07982,58.24709,1.077369,0,13720.79,-,-
+991,1631.714,367.3452,360.2594,1515.697,-239.5985,62.76926,258.9912,-40.94085,61.5585,1.210765,0,14328.3,-,-
+992,1649.959,374.0866,367.0236,1524.266,-242.2441,64.63592,263.3677,-41.85573,63.41554,1.220376,0,14739.8,-,-
+993,1667.223,352.1396,345.5881,1529.747,-244.7473,61.48047,267.0804,-42.73073,60.33664,1.143829,0,14345.79,-,-
+994,1682.902,346.0588,340.0083,1526.924,-247.0208,60.98701,269.0945,-43.53323,59.92071,1.066298,0,14371.83,-,-
+995,1697.641,336.1734,331.1057,1528.608,-249.158,59.76375,271.7506,-44.29444,58.86283,0.9009231,0,14280.77,-,-
+996,1708.402,267.4321,264.4038,1528.7,-250.7183,47.84452,273.4897,-44.85436,47.30275,0.5417725,0,12554.34,-,-
+997,1712.889,209.5591,208.3225,1512.151,-251.3689,37.58931,271.2395,-45.08887,37.3675,0.221809,0,11105.91,-,-
+998,1714.622,211.2465,210.4417,1497.689,-251.6202,37.93032,268.9172,-45.17961,37.78582,0.1444966,0,11167.78,-,-
+999,1716.933,221.5492,220.402,1498.854,-251.9553,39.83384,269.4891,-45.30075,39.62757,0.2062697,0,11458.41,-,-
+1000,1720.386,235.7368,234.0036,1502.576,-252.456,42.46996,270.7017,-45.48206,42.15772,0.3122377,0,11861.49,-,-
+1001,1725.639,260.101,257.4954,1507.779,-253.2177,47.00246,272.4684,-45.75858,46.5316,0.4708626,0,12546.55,-,-
+1002,1733.472,290.6153,287.2458,1516.166,-254.3535,52.75504,275.2278,-46.17247,52.14337,0.6116683,0,13462.79,-,-
+1003,1742.568,288.7711,285.0791,1526.211,-255.6724,52.69534,278.505,-46.65542,52.02161,0.6737242,0,13524.56,-,-
+1004,1752.026,300.8026,297.1518,1528.477,-257.0438,55.18878,280.4323,-47.16026,54.51895,0.6698323,0,13975.39,-,-
+1005,1760.92,280.7266,276.5096,1533.843,-258.3334,51.76685,282.8454,-47.63749,50.98923,0.7776241,0,13529.35,-,-
+1006,1773.2,373.908,367.6677,1532.889,-260.114,69.43063,284.6407,-48.30032,68.27187,1.158758,0,16264.27,-,-
+1007,1792.224,425.0623,415.4276,1557.627,-262.8725,79.77624,292.3374,-49.33624,77.96797,1.808269,0,17954.12,-,-
\ No newline at end of file
diff --git a/VectoCoreTest/TestData/Results/EngineOnlyCycles/24t Coach_Engine Only3.vmod b/VectoCoreTest/TestData/Results/EngineOnlyCycles/24t Coach_Engine Only3.vmod
new file mode 100644
index 0000000000000000000000000000000000000000..b1e185358d09508664f700c095af9f5e94d74d41
--- /dev/null
+++ b/VectoCoreTest/TestData/Results/EngineOnlyCycles/24t Coach_Engine Only3.vmod	
@@ -0,0 +1,168 @@
+time [s],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],Paux [kW],FC [g/h],FC-AUXc [g/h],FC-WHTCc [g/h]
+1,600,0,0,1282,-148,0,80.55044,-9.299114,0,0,0,1459,-,-
+2,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+3,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+4,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+5,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+6,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+7,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+8,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+9,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+10,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+11,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+12,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+13,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+14,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+15,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+16,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+17,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+18,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+19,600,3.787888E-06,3.787888E-06,801.2501,-148,2.38E-07,50.34402,-9.299114,2.38E-07,0,0,1459,-,-
+20,600,9.170536,0,801.2501,-148,0.5762018,50.34402,-9.299114,0,0.5762018,0,1546.074,-,-
+21,644.4445,43.06333,34.52525,875.1463,-148.2222,2.906175,59.06019,-10.00294,2.329973,0.5762018,0,1961.22,-,-
+22,644.4445,8.436764,8.436764,888.0933,-148.2222,0.5693641,59.93393,-10.00294,0.5693641,0,0,1632.441,-,-
+23,644.4445,115.8511,63.18603,875.1083,-148.2222,7.818337,59.05762,-10.00294,4.264177,3.55416,0,2652.34,-,-
+24,869.7512,87.66522,87.66522,1262.513,-152.8363,7.98456,114.9899,-13.92035,7.98456,0,0,3277.925,-,-
+25,644.4445,62.38619,20.02867,916.3124,-148.2222,4.210199,61.83832,-10.00294,1.351656,2.858543,0,2144.69,-,-
+26,1015.31,44.93016,-2.555052,1452.349,-161.4545,4.777111,154.4182,-17.16632,-0.2716608,5.048771,0,3594.803,-,-
+27,948.6478,-32.96616,-4.684533,1373.851,-157.1756,-3.27493,136.4813,-15.61417,-0.4653716,-2.809558,0,2196.106,-,-
+28,872.4501,-61.52123,-6.260512,1221.174,-152.9848,-5.620749,111.5698,-13.97711,-0.5719776,-5.048771,0,1460.351,-,-
+29,644.4445,0.2985062,15.00104,840.7117,-148.2222,0.02014501,56.73633,-10.00294,1.012361,-0.992216,0,1555.168,-,-
+30,816.044,1.879797,1.879797,1144.983,-149.8824,0.1606398,97.84562,-12.80834,0.1606398,0,0,1980.72,-,-
+31,644.4445,20.10359,58.792,872.8372,-148.2222,1.356712,58.90435,-10.00294,3.967641,-2.610929,0,1743.217,-,-
+32,644.4445,65.25378,65.07417,879.4834,-148.2222,4.403721,59.35288,-10.00294,4.3916,0.01212145,0,2171.918,-,-
+33,645.3466,10.58478,18.56875,897.8154,-148.2267,0.7153255,60.67485,-10.01724,1.254886,-0.5395605,0,1654.73,-,-
+34,602.9238,5.525331,5.717314,810.1493,-148.0146,0.3488585,51.15123,-9.345352,0.36098,-0.01212145,0,1517.603,-,-
+35,644.4445,24.25558,16.26044,873.8831,-148.2222,1.636914,58.97493,-10.00294,1.097353,0.5395605,0,1782.64,-,-
+36,644.4445,22.13434,21.88527,881.0404,-148.2222,1.49376,59.45795,-10.00294,1.476951,0.01680891,0,1762.499,-,-
+37,645.6951,46.27728,43.79628,882.2181,-148.2285,3.129133,59.65297,-10.02277,2.961375,0.1677578,0,1994.363,-,-
+38,656.8193,57.25459,48.53584,908.6883,-148.2841,3.938083,62.50135,-10.19927,3.33839,0.5996926,0,2121.953,-,-
+39,688.8293,46.46883,34.79183,963.0168,-148.4442,3.351984,69.46629,-10.70788,2.509675,0.8423092,0,2086.763,-,-
+40,715.7259,52.2522,41.42237,1002.097,-148.5786,3.916336,75.10785,-11.13606,3.104633,0.8117025,0,2198.159,-,-
+41,743.2361,44.32463,35.71274,1047.954,-148.7162,3.449852,81.56386,-11.5748,2.779576,0.6702765,0,2180.658,-,-
+42,759.3434,29.38564,25.47028,1070.975,-148.7967,2.336695,85.16204,-11.83206,2.025352,0.3113432,0,2072.638,-,-
+43,763.0762,18.7053,18.37082,1071.609,-148.8154,1.494725,85.63134,-11.89171,1.467997,0.02672757,0,1979.067,-,-
+44,761.0308,16.30659,17.36385,1064.423,-148.8052,1.299553,84.82915,-11.85902,1.383811,-0.08425788,0,1951.996,-,-
+45,757.7582,15.52264,16.64248,1058.326,-148.7888,1.231757,83.98051,-11.80673,1.320618,-0.08886148,0,1937.68,-,-
+46,755.406,18.36341,18.64889,1054.282,-148.777,1.452655,83.39995,-11.76915,1.475238,-0.0225831,0,1959.713,-,-
+47,756.3265,20.92863,21.23316,1056.785,-148.7816,1.657596,83.69981,-11.78385,1.681716,-0.02411984,0,1986.003,-,-
+48,753.872,12.47891,13.91125,1053.876,-148.7694,0.9851509,83.19858,-11.74464,1.098228,-0.113077,0,1900.618,-,-
+49,749.1166,16.78234,17.99582,1043.148,-148.7456,1.316529,81.83214,-11.66869,1.411724,-0.09519503,0,1931.493,-,-
+50,747.787,17.65562,18.71185,1042.628,-148.7389,1.382578,81.6462,-11.64746,1.465289,-0.08271109,0,1936.993,-,-
+51,743.7986,3.449067,14.25843,1036.636,-148.719,0.2686492,80.744,-11.58378,1.110595,-0.8419458,0,1793.726,-,-
+52,691.6417,-64.57079,-41.58897,948.4085,-148.4582,-4.676768,68.69186,-10.75261,-3.012229,-1.664539,0,1014.902,-,-
+53,627.2637,96.25304,-2.565852,817.9171,-148.1363,6.322563,53.72643,-9.730616,-0.1685429,6.491106,0,2430.176,-,-
+54,1049.495,1.187829,-0.8832842,1459.073,-164.702,0.1305458,160.3563,-18.10122,-0.09707546,0.2276213,0,2992.783,-,-
+55,644.4445,16.6744,23.9407,872.67,-148.2222,1.12529,58.89307,-10.00294,1.615664,-0.490374,0,1710.657,-,-
+56,1026.825,56.76796,4.340945,1441.424,-162.5484,6.104194,154.9947,-17.47864,0.4667768,5.637417,0,3803.619,-,-
+57,977.9754,-27.70941,-4.054022,1424.818,-158.7887,-2.837813,145.9204,-16.26208,-0.4151859,-2.422627,0,2347.138,-,-
+58,906.5457,-45.80109,-5.040415,1277.64,-154.86,-4.348046,121.2905,-14.70136,-0.478503,-3.869543,0,1826.685,-,-
+59,764.8557,-88.7198,-31.16203,1043.116,-148.8243,-7.106057,83.54893,-11.92016,-2.495939,-4.610118,0,757.9618,-,-
+60,615.8789,-44.24551,-7.900268,785.1898,-148.0794,-2.853601,50.64057,-9.550334,-0.5095253,-2.344075,0,1056.169,-,-
+61,600,1.704201,-4.265142,784.2189,-148,0.1070781,49.27393,-9.299114,-0.2679868,0.3750649,0,1475.181,-,-
+62,644.4445,16.98687,8.44879,872.5396,-148.2222,1.146377,58.88427,-10.00294,0.5701756,0.5762018,0,1713.624,-,-
+63,644.4445,9.021553,17.55964,878.3146,-148.2222,0.6088292,59.27401,-10.00294,1.185031,-0.5762018,0,1637.993,-,-
+64,600,5.18564,4.722757,804.8837,-148,0.3258234,50.57233,-9.299114,0.2967396,0.02908379,0,1508.238,-,-
+65,646.6069,124.2693,56.28299,877.1885,-148.233,8.414585,59.39664,-10.03723,3.811063,4.603522,0,2736.811,-,-
+66,895.4804,85.53728,84.49033,1304.898,-154.2514,8.021215,122.3661,-14.46485,7.923037,0.09817816,0,3379.16,-,-
+67,653.8535,66.28895,92.87785,930.8409,-148.2693,4.538896,63.73596,-10.1522,6.359474,-1.820578,0,2201.506,-,-
+68,791.9158,187.6217,139.3854,1127.041,-148.9596,15.55932,93.4646,-12.3531,11.55912,4.000204,0,4099.517,-,-
+69,900.8318,95.19201,52.27203,1341.612,-154.5457,8.979927,126.5608,-14.57905,4.931076,4.048851,0,3521.737,-,-
+70,1007.856,188.9964,137.0289,1469.406,-160.7463,19.94714,155.0847,-16.96556,14.46236,5.484777,0,5809.916,-,-
+71,1156.708,179.6167,111.3725,1499.253,-174.8873,21.75701,181.6048,-21.18413,13.49057,8.266437,0,6328.946,-,-
+72,1345.086,283.9939,193.1054,1495.423,-196.4103,40.00255,210.6409,-27.66578,27.20026,12.80229,0,9497.552,-,-
+73,1602.138,317.7925,208.6841,1474.247,-235.31,53.31779,247.3425,-39.47925,35.01208,18.30572,0,12735.88,-,-
+74,1888.49,333.4889,235.5709,1360.771,-280.3706,65.9515,269.1091,-55.44672,46.58702,19.36448,0,16855.77,-,-
+75,2103.714,159.5027,110.2997,932.3865,-320.7057,35.13851,205.4051,-70.6516,24.29906,10.83945,0,ERROR,-,-
+76,2146.359,-133.4082,-4.9384,817.8073,-328.8082,-29.98566,183.8154,-73.90496,-1.109985,-28.87567,0,ERROR,-,-
+77,1286.033,-149.6351,65.34973,1354.004,-189.324,-20.15182,182.3479,-25.49684,8.800848,-28.95267,0,841.8726,-,-
+78,1351.937,307.8995,265.3316,1384.122,-197.2324,43.59072,195.9564,-27.92309,37.56419,6.026536,0,10115.97,-,-
+79,1494.108,422.8993,363.2826,1517.045,-218.0573,66.16794,237.3609,-34.11782,56.84015,9.327791,0,14267.78,-,-
+80,1650.18,382.7237,322.4213,1530.207,-242.2761,66.13712,264.4296,-41.86687,55.71647,10.42064,0,14981.92,-,-
+81,1797.949,399.5454,334.6001,1555.304,-263.7026,75.22672,292.8339,-49.65013,62.99876,12.22796,0,17281.95,-,-
+82,1974.041,515.6417,436.4503,1206.818,-296.1976,106.594,249.4747,-61.23029,90.22348,16.37055,0,23889.77,-,-
+83,2191.804,587.2262,501.8138,787.8055,-337.4427,134.7832,180.8212,-77.45161,115.1789,19.60429,0,ERROR,-,-
+84,2403.877,334.2301,273.7045,334.2301,-377.7366,84.13688,84.13688,-95.08893,68.90056,15.23632,0,ERROR,-,-
+85,2503.301,-56.54663,69.94268,83.6814,-396.6272,-14.82342,21.93667,-103.9739,18.33513,-33.15855,0,ERROR,-,-
+86,1611.144,-235.0663,-10.13028,1371.202,-236.6159,-39.66005,231.3473,-39.9215,-1.709167,-37.95089,0,37.61931,-,-
+87,1619.774,266.0775,257.1406,1328.561,-237.8672,45.13268,225.3536,-40.3476,43.61679,1.515889,0,11585.19,-,-
+88,1655.685,257.2363,243.1765,1494.785,-243.0743,44.60038,259.1703,-42.14494,42.16265,2.437729,0,11735.19,-,-
+89,1690.462,263.2474,249.6788,1501.826,-248.117,46.60131,265.8603,-43.92285,44.19933,2.401978,0,12257.1,-,-
+90,1723.907,249.018,233.8247,1513.123,-252.9665,44.9545,273.1597,-45.66731,42.2117,2.742802,0,12241.85,-,-
+91,1766.618,358.9676,339.1079,1522.828,-259.1596,66.40894,281.723,-47.94448,62.7349,3.674046,0,15768.52,-,-
+92,1823.327,394.6358,368.3391,1508.04,-268.3155,75.3511,287.9427,-51.23172,70.33006,5.021039,0,17552.53,-,-
+93,1898.131,544.5615,513.3238,1363.192,-282.1542,108.2435,270.9642,-56.08431,102.0343,6.209172,0,23420.74,-,-
+94,1980.033,467.5205,442.0008,1226.341,-297.3061,96.9397,254.28,-61.64599,91.64824,5.291466,0,22455.15,-,-
+95,2027.516,212.5282,200.5397,1117.442,-306.228,45.12419,237.2564,-65.01863,42.57878,2.545408,0,15602.88,-,-
+96,2040.799,22.5261,127.8032,1041.578,-308.7518,4.814098,222.5977,-65.98396,27.31307,-22.49897,0,10316.36,-,-
+97,1396.846,322.3199,472.1198,1449.842,-202.6215,47.14811,212.079,-29.63894,69.06043,-21.91232,0,10911.45,-,-
+98,1435.803,627.2028,610.7021,1545.526,-208.7285,94.3043,232.3806,-31.38377,91.8233,2.480995,0,18637.26,-,-
+99,1479.637,594.0043,579.1003,1638.939,-215.7419,92.03931,253.9491,-33.42861,89.72998,2.309333,0,18401.32,-,-
+100,1511.026,383.0977,372.0832,1618.519,-220.7642,60.61919,256.1051,-34.93246,58.87632,1.742871,0,13460.26,-,-
+101,1535.129,451.4071,440.943,1539.581,-224.6206,72.56745,247.5005,-36.10964,70.88527,1.682182,0,15385.76,-,-
+102,1563.544,475.8323,464.6609,1553.153,-229.167,77.9099,254.3039,-37.52242,76.08076,1.829139,0,16368.73,-,-
+103,1591.288,445.2722,434.8489,1552.029,-233.6061,74.19984,258.629,-38.92795,72.46291,1.736925,0,15921.79,-,-
+104,1615.981,419.9371,410.8453,1541.791,-237.3172,71.0639,260.9099,-40.16004,69.52535,1.53855,0,15563.56,-,-
+105,1637.034,376.2195,368.472,1537.531,-240.3699,64.49524,263.5787,-41.20657,63.16708,1.328163,0,14638.52,-,-
+106,1654.957,361.3505,353.7967,1527.899,-242.9688,62.62446,264.7951,-42.10811,61.31534,1.309122,0,14448.85,-,-
+107,1674.975,423.4403,415.4202,1527.54,-245.8714,74.27268,267.935,-43.12657,72.86594,1.406735,0,16388.32,-,-
+108,1695.262,371.6657,364.7486,1548.636,-248.813,65.98085,274.9253,-44.17113,64.75288,1.227973,0,15234.92,-,-
+109,1709.799,309.2745,305.803,1538.119,-250.9209,55.37552,275.3998,-44.92731,54.75394,0.6215815,0,13686.15,-,-
+110,1712.769,135.339,136.8725,1523.115,-251.3515,24.27451,273.187,-45.0826,24.54955,-0.2750401,0,9122.085,-,-
+111,1702.061,27.02083,32.3534,1474.023,-249.7988,4.816177,262.729,-44.524,5.766651,-0.9504735,0,6423.931,-,-
+112,1685.925,18.62135,25.00264,1437.877,-247.4592,3.287593,253.8567,-43.68883,4.414207,-1.126614,0,6139.807,-,-
+113,1669.991,26.02238,31.88091,1428.824,-245.1487,4.550822,249.8743,-42.87186,5.575367,-1.024545,0,6209.245,-,-
+114,1656.502,64.61633,69.61541,1425.511,-243.1928,11.2089,247.2813,-42.18628,12.07608,-0.8671831,0,6988.956,-,-
+115,1644.88,61.23325,65.61612,1432.701,-241.5076,10.54751,246.7847,-41.60003,11.30247,-0.7549564,0,6843.781,-,-
+116,1634.482,86.92116,90.95547,1427.82,-239.9999,14.87765,244.3893,-41.07899,15.56817,-0.6905218,0,7354.234,-,-
+117,1624.607,68.46641,73.30067,1432.383,-238.568,11.64808,243.6891,-40.58721,12.47053,-0.8224459,0,6883.443,-,-
+118,1610.151,-9.240115,-3.180296,1421.514,-236.4719,-1.558018,239.6881,-39.87262,-0.5362444,-1.021774,0,5065.09,-,-
+119,1594.136,32.22758,38.19804,1393.545,-234.0618,5.379992,232.6349,-39.07369,6.376687,-0.996695,0,5882.933,-,-
+120,1580.163,27.30954,33.14782,1410.614,-231.8261,4.519026,233.4204,-38.36125,5.485111,-0.9660846,0,5666.646,-,-
+121,1564.78,0.3636259,6.259995,1412.486,-229.3648,0.05958496,231.4547,-37.58449,1.025784,-0.966199,0,5056.958,-,-
+122,1550.539,47.06121,52.04159,1406.432,-227.0862,7.641426,228.3653,-36.87246,8.4501,-0.808674,0,5888.553,-,-
+123,1539.777,68.6536,72.33276,1424.926,-225.3643,11.07006,229.7623,-36.33889,11.6633,-0.5932446,0,6280.474,-,-
+124,1532.066,106.7972,110.4107,1434.141,-224.1306,17.13428,230.0901,-35.95897,17.71403,-0.5797531,0,7072.241,-,-
+125,1521.599,9.668711,15.17909,1449.958,-222.4558,1.540627,231.0385,-35.44644,2.418658,-0.8780314,0,5040.514,-,-
+126,1504.309,-33.69525,-25.70424,1419.683,-219.6894,-5.308042,223.6439,-34.60787,-4.049212,-1.25883,0,4062.217,-,-
+127,1481.361,-100.7852,-90.74965,1408.838,-216.0177,-15.63458,218.5499,-33.51035,-14.07779,-1.556794,0,2535.507,-,-
+128,1453.792,-124.127,-112.669,1389.43,-211.6067,-18.89719,211.5278,-32.21516,-17.15281,-1.744379,0,1915.911,-,-
+129,1423.724,-135.3489,-121.7508,1385.921,-206.7958,-20.17945,206.6297,-30.83161,-18.15207,-2.027376,0,1542.116,-,-
+130,1385.246,-133.0711,-115.9232,1385.334,-201.2295,-19.30365,200.9602,-29.19088,-16.81612,-2.487527,0,1445.763,-,-
+131,1337.242,-130.6579,-112.3143,1385.807,-195.469,-18.29677,194.0624,-27.37263,-15.72801,-2.568758,0,1374.762,-,-
+132,1293.188,-125.1095,-113.9302,1386.834,-190.1826,-16.94262,187.8083,-25.75496,-15.42869,-1.513933,0,1380.318,-,-
+133,1281.755,284.0433,285.3856,1390.165,-188.8106,38.12573,186.595,-25.34312,38.3059,-0.1801681,0,8983.826,-,-
+134,1286.484,87.14797,86.78278,1543.625,-189.3781,11.7406,207.9576,-25.51307,11.6914,0.04920031,0,5303.294,-,-
+135,1283.596,133.1172,133.2941,1470.254,-189.0315,17.89333,197.6284,-25.40921,17.9171,-0.02376681,0,6134.657,-,-
+136,1285.597,185.7029,184.0723,1487.341,-189.2717,25.0007,200.2369,-25.48115,24.78118,0.2195235,0,7155.98,-,-
+137,1291.778,220.914,217.3726,1506.805,-190.0134,29.88407,203.8326,-25.70399,29.405,0.4790672,0,7861.332,-,-
+138,1303.359,299.3874,293.53,1519.607,-191.4031,40.86262,207.4072,-26.12411,40.06316,0.7994608,0,9417.771,-,-
+139,1321.147,352.0673,344.1585,1548.259,-193.5376,48.70857,214.2019,-26.77597,47.6144,1.094172,0,10808.42,-,-
+140,1343.046,388.9465,379.7535,1567.373,-196.1655,54.70278,220.4407,-27.5894,53.40984,1.292941,0,11879.83,-,-
+141,1367.31,407.4287,396.3932,1580.767,-199.0772,58.33742,226.3411,-28.50475,56.75732,1.580101,0,12532.68,-,-
+142,1398.372,536.1453,521.4193,1586.892,-202.8046,78.5116,232.3799,-29.69814,76.35516,2.156437,0,15967.06,-,-
+143,1441.017,654.1249,635.6244,1619.78,-209.5627,98.70938,244.4295,-31.62363,95.91759,2.791791,0,19346.57,-,-
+144,1491.115,699.2388,680.9673,1643.299,-217.5784,109.1856,256.5999,-33.97469,106.3325,2.853078,0,21073.68,-,-
+145,1533.099,499.3958,485.3878,1644.748,-224.2958,80.17587,264.0573,-36.00974,77.92695,2.248918,0,16595.47,-,-
+146,1561.824,436.0255,425.9124,1569.613,-228.8918,71.31363,256.7162,-37.43613,69.6596,1.65403,0,15298.9,-,-
+147,1584.033,369.1954,362.1931,1541.97,-232.4453,61.24197,255.7812,-38.55792,60.08042,1.161546,0,13873,-,-
+148,1597.119,252.8292,248.8781,1516.634,-234.539,42.28566,253.6568,-39.22663,41.62484,0.6608209,0,11003.9,-,-
+149,1603.93,241.9587,239.8837,1479.051,-235.5699,40.64014,248.4261,-39.56706,40.29163,0.3485158,0,10794.84,-,-
+150,1607.558,187.0646,186.8591,1476.581,-236.0959,31.49104,248.5721,-39.74511,31.45644,0.03459711,0,9425.89,-,-
+151,1604.965,114.6764,116.151,1458.302,-235.7199,19.27385,245.0991,-39.61781,19.52167,-0.2478251,0,7796.074,-,-
+152,1600.142,139.7361,141.4609,1433.173,-235.0206,23.41509,240.1518,-39.38157,23.70411,-0.2890159,0,8325.968,-,-
+153,1596.299,132.3542,134.5307,1442.332,-234.4078,22.12486,241.106,-39.18456,22.48869,-0.3638254,0,8132.26,-,-
+154,1589.192,71.52106,75.00057,1441.816,-233.2707,11.90252,239.9468,-38.82087,12.48158,-0.57906,0,6721.455,-,-
+155,1578.793,62.24268,66.67814,1424.12,-231.6069,10.29063,235.4509,-38.29175,11.02395,-0.7333171,0,6435.202,-,-
+156,1566.889,36.67767,42.11662,1423.846,-229.7022,6.018228,233.6307,-37.69052,6.910674,-0.8924458,0,5774.275,-,-
+157,1551.426,-14.49673,-6.917517,1418.733,-227.2282,-2.355211,230.4944,-36.91661,-1.123854,-1.231357,0,4682.187,-,-
+158,1528.707,-104.6979,-94.99168,1405.949,-223.5931,-16.76064,225.0725,-35.79409,-15.20682,-1.553822,0,2635.427,-,-
+159,1502.589,-82.79519,-72.31786,1379.095,-219.4143,-13.02789,217.0017,-34.525,-11.37927,-1.648615,0,3012.952,-,-
+160,1476.041,-119.1831,-106.6046,1391.965,-215.1666,-18.42221,215.157,-33.25844,-16.47795,-1.944263,0,2121.234,-,-
+161,1439.148,-135.6979,-118.0458,1384.906,-209.2637,-20.45066,208.7153,-31.53755,-17.79036,-2.660299,0,1604.352,-,-
+162,1386.845,-133.0824,-111.745,1384.694,-201.4214,-19.32757,201.0992,-29.25244,-16.22873,-3.098839,0,1449.594,-,-
+163,1331.801,-133.4001,-111.468,1385.532,-194.8161,-18.60477,193.2344,-27.1702,-15.54598,-3.058788,0,1302.745,-,-
+164,1276.609,-128.0363,-106.2066,1385.312,-188.1931,-17.11668,185.1971,-25.15882,-14.19835,-2.918335,0,1276.035,-,-
+165,1222.116,-124.3716,-105.7884,1387.345,-181.6539,-15.91704,177.552,-23.24801,-13.53877,-2.378269,0,1119.721,-,-
+166,1183.826,-121.3442,-110.0028,1389.352,-177.4635,-15.04303,172.2379,-22.00014,-13.63705,-1.405982,0,1036.797,-,-
+167,1165.594,29.5695,35.41756,1391.284,-175.7314,3.609275,169.8212,-21.44991,4.323093,-0.7138183,0,3688.994,-,-
\ No newline at end of file
diff --git a/VectoCoreTest/TestData/Results/EngineOnlyCycles/24tCoach_EngineOnly short.vmod b/VectoCoreTest/TestData/Results/EngineOnlyCycles/24tCoach_EngineOnly short.vmod
new file mode 100644
index 0000000000000000000000000000000000000000..ad97f71a13ae578760a17a2c0b940c3ecddf1fc1
--- /dev/null
+++ b/VectoCoreTest/TestData/Results/EngineOnlyCycles/24tCoach_EngineOnly short.vmod	
@@ -0,0 +1,308 @@
+time [s],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],Paux [kW],FC [g/h],FC-AUXc [g/h],FC-WHTCc [g/h]
+1,600,0,0,1282,-148,0,80.55044,-9.299114,0,0,0,1459,-,-
+2,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+3,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+4,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+5,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+6,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+7,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+8,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+9,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+10,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+11,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+12,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+13,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+14,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+15,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+16,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+17,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+18,600,-3.787888E-06,-3.787888E-06,801.2501,-148,-2.38E-07,50.34402,-9.299114,-2.38E-07,0,0,1459,-,-
+19,600,3.787888E-06,3.787888E-06,801.2501,-148,2.38E-07,50.34402,-9.299114,2.38E-07,0,0,1459,-,-
+20,600,0,0,801.2501,-148,0,50.34402,-9.299114,0,0,0,1459,-,-
+21,644.4445,51.60141,34.52524,871.9445,-148.2222,3.482377,58.84411,-10.00294,2.329973,1.152404,0,2042.289,-,-
+22,644.4445,8.436764,8.436764,891.295,-148.2222,0.5693641,60.15,-10.00294,0.5693641,0,0,1632.441,-,-
+23,644.4445,63.18603,63.18603,875.1083,-148.2222,4.264177,59.05762,-10.00294,4.264177,0,0,2152.285,-,-
+24,869.7512,165.7099,87.66522,1247.88,-152.8363,15.09288,113.6571,-13.92035,7.98456,7.10832,0,4339.71,-,-
+25,644.4445,-85.30151,20.02867,955.8112,-148.2222,-5.756664,64.50394,-10.00294,1.351656,-7.10832,0,711.4219,-,-
+26,1015.31,118.0717,-2.555052,1417.196,-161.4545,12.55374,150.6806,-17.16632,-0.2716608,12.82541,0,4727.767,-,-
+27,948.6478,-32.14379,-4.684533,1403.206,-157.1756,-3.193234,139.3975,-15.61417,-0.4653716,-2.727862,0,2206.477,-,-
+28,872.4501,-37.90639,-6.260512,1221.509,-152.9848,-3.463232,111.6005,-13.97711,-0.5719776,-2.891254,0,1758.151,-,-
+29,644.4445,-91.78082,15.00104,852.7004,-148.2222,-6.193927,57.5454,-10.00294,1.012361,-7.206288,0,647.5482,-,-
+30,816.044,62.98565,1.879797,1117.715,-149.8824,5.382497,95.51535,-12.80834,0.1606398,5.221857,0,2716.129,-,-
+31,644.4445,-18.58481,58.792,901.8535,-148.2222,-1.254216,60.86255,-10.00294,3.967641,-5.221857,0,1369.122,-,-
+32,644.4445,65.07417,65.07417,864.9752,-148.2222,4.3916,58.37378,-10.00294,4.3916,0,0,2170.213,-,-
+33,645.3466,18.92747,18.56875,897.748,-148.2267,1.279129,60.6703,-10.01724,1.254886,0.02424291,0,1733.944,-,-
+34,602.9238,-11.75811,5.717314,813.498,-148.0146,-0.7423839,51.36266,-9.345352,0.36098,-1.103364,0,1349.227,-,-
+35,644.4445,32.25071,16.26044,867.8193,-148.2222,2.176474,58.56572,-10.00294,1.097353,1.079121,0,1858.554,-,-
+36,644.4445,21.88527,21.88527,884.0386,-148.2222,1.476951,59.66029,-10.00294,1.476951,0,0,1760.134,-,-
+37,645.6951,44.29346,43.79628,882.1249,-148.2285,2.994993,59.64667,-10.02277,2.961375,0.03361782,0,1975.526,-,-
+38,656.8193,52.92505,48.53584,907.957,-148.2841,3.640288,62.45105,-10.19927,3.33839,0.3018979,0,2080.844,-,-
+39,688.8293,47.23377,34.79183,961.4687,-148.4442,3.407162,69.35461,-10.70788,2.509675,0.8974872,0,2094.026,-,-
+40,715.7259,51.92436,41.42237,1002.374,-148.5786,3.891764,75.12854,-11.13606,3.104633,0.7871312,0,2195.046,-,-
+41,743.2361,46.45741,35.71274,1047.836,-148.7162,3.61585,81.55463,-11.5748,2.779576,0.8362737,0,2200.909,-,-
+42,759.3434,31.81196,25.47028,1071.758,-148.7967,2.529631,85.22429,-11.83206,2.025352,0.5042791,0,2095.676,-,-
+43,763.0762,19.8526,18.37083,1072.514,-148.8154,1.586404,85.70369,-11.89171,1.467997,0.1184073,0,1989.96,-,-
+44,761.0308,16.54884,17.36385,1064.854,-148.8052,1.318859,84.86353,-11.85902,1.383811,-0.06495218,0,1954.296,-,-
+45,757.7582,15.33736,16.64248,1058.417,-148.7888,1.217054,83.98775,-11.80673,1.320618,-0.1035636,0,1935.92,-,-
+46,755.406,17.71142,18.64889,1054.212,-148.777,1.401079,83.39443,-11.76915,1.475238,-0.07415938,0,1953.523,-,-
+47,756.3265,21.59923,21.23317,1056.541,-148.7816,1.710709,83.68047,-11.78385,1.681716,0.02899319,0,1992.37,-,-
+48,753.872,12.93295,13.91125,1054.129,-148.7694,1.020995,83.2185,-11.74464,1.098228,-0.07723287,0,1904.93,-,-
+49,749.1166,16.09747,17.99583,1043.319,-148.7456,1.262803,81.84558,-11.66869,1.411724,-0.1489212,0,1924.99,-,-
+50,747.787,18.18229,18.71185,1042.371,-148.7389,1.42382,81.62605,-11.64746,1.465289,-0.04146888,0,1941.994,-,-
+51,743.7986,12.66705,14.25843,1036.835,-148.719,0.9866417,80.75947,-11.58378,1.110595,-0.1239533,0,1881.251,-,-
+52,691.6417,-63.12659,-41.58897,952.126,-148.4582,-4.572167,68.96111,-10.75261,-3.012229,-1.559938,0,1029.139,-,-
+53,627.2637,-29.49878,-2.565856,818.5142,-148.1363,-1.937684,53.76566,-9.730616,-0.1685431,-1.76914,0,1225.452,-,-
+54,1049.495,133.3385,-0.8832842,1430.888,-164.702,14.65428,157.2587,-18.10122,-0.09707546,14.75135,0,5039.796,-,-
+55,644.4445,-148.2222,63.61569,953.374,-148.2222,-10.00294,64.33946,-10.00294,4.293173,-14.29611,0,0,-,-
+56,1026.825,128.1715,4.340945,1402.615,-162.5484,13.78214,150.8216,-17.47864,0.4667768,13.31536,0,4909.66,-,-
+57,977.9754,-23.97845,-4.054022,1452.932,-158.7887,-2.455714,148.7997,-16.26208,-0.4151859,-2.040528,0,2413.945,-,-
+58,906.5457,-34.58462,-5.040413,1279.149,-154.86,-3.28323,121.4338,-14.70136,-0.4785028,-2.804727,0,1968.133,-,-
+59,764.8557,-92.76798,-31.16203,1048.102,-148.8243,-7.430298,83.94824,-11.92016,-2.495939,-4.93436,0,706.9113,-,-
+60,615.8789,-74.35345,-7.900268,783.3046,-148.0794,-4.795403,50.51898,-9.550334,-0.5095253,-4.285877,0,759.3614,-,-
+61,600,-10.66753,-4.265142,772.6295,-148,-0.6702606,48.54575,-9.299114,-0.2679868,-0.4022738,0,1353.838,-,-
+62,644.4445,25.52496,8.44879,868.2201,-148.2222,1.722579,58.59277,-10.00294,0.5701756,1.152404,0,1794.693,-,-
+63,644.4445,17.55964,17.55964,881.5164,-148.2222,1.185031,59.49008,-10.00294,1.185031,0,0,1719.062,-,-
+64,600,-13.61832,4.722757,808.3227,-148,-0.855664,50.78841,-9.299114,0.2967396,-1.152404,0,1324.749,-,-
+65,646.6069,74.16109,56.28299,870.6453,-148.233,5.021634,58.95358,-10.03723,3.811063,1.210571,0,2261.034,-,-
+66,895.4804,169.7638,84.49032,1291.33,-154.2514,15.91951,121.0938,-14.46485,7.923037,7.996473,0,4618.244,-,-
+67,653.8535,-21.04008,92.87785,974.0977,-148.2693,-1.440644,66.69781,-10.1522,6.359474,-7.800117,0,1364.677,-,-
+68,791.9158,189.5361,139.3854,1100.002,-148.9596,15.71808,91.22227,-12.3531,11.55912,4.15896,0,4122.556,-,-
+69,900.8318,92.9934,52.27203,1342.243,-154.5457,8.772522,126.6203,-14.57905,4.931076,3.841446,0,3495.276,-,-
+70,1007.856,177.3563,137.0289,1468.67,-160.7463,18.71862,155.007,-16.96556,14.46236,4.256257,0,5629.611,-,-
+71,1156.708,166.7947,111.3725,1495.45,-174.8873,20.20387,181.1441,-21.18413,13.49057,6.713297,0,6098.791,-,-
+72,1345.086,262.8184,193.1054,1491.288,-196.4103,37.01983,210.0585,-27.66578,27.20026,9.819574,0,9012.633,-,-
+73,1602.138,302.7682,208.6841,1468.421,-235.31,50.79708,246.365,-39.47925,35.01208,15.78501,0,12347.58,-,-
+74,1888.49,340.8813,235.5709,1358.222,-280.3706,67.41344,268.605,-55.44672,46.58702,20.82642,0,17071.38,-,-
+75,2103.714,191.5638,110.2997,933.7136,-320.7057,42.2016,205.6975,-70.6516,24.29906,17.90253,0,ERROR,-,-
+76,2146.359,11.86287,-4.938399,824.0921,-328.8082,2.666372,185.228,-73.90496,-1.109985,3.776357,0,ERROR,-,-
+77,1286.033,-189.324,267.5433,1444.925,-189.324,-25.49684,194.5924,-25.49684,36.03087,-61.5277,0,0,-,-
+78,1351.937,290.9179,265.3316,1369.964,-197.2324,41.18656,193.952,-27.92309,37.56419,3.62237,0,9727.088,-,-
+79,1494.108,417.1658,363.2826,1511.604,-218.0573,65.27085,236.5096,-34.11782,56.84015,8.4307,0,14130.17,-,-
+80,1650.18,381.5908,322.4213,1528.646,-242.2761,65.94135,264.16,-41.86687,55.71647,10.22488,0,14950.52,-,-
+81,1797.949,390.9861,334.6001,1555.095,-263.7026,73.61517,292.7945,-49.65013,62.99876,10.6164,0,17044.73,-,-
+82,1974.041,503.3981,436.4503,1205.259,-296.1976,104.063,249.1524,-61.23029,90.22348,13.83952,0,23496.69,-,-
+83,2191.804,584.1646,501.8138,785.6,-337.4427,134.0805,180.315,-77.45161,115.1789,18.90157,0,ERROR,-,-
+84,2403.877,334.2301,253.5614,334.2301,-377.7366,84.13688,84.13688,-95.08893,63.82986,20.30701,0,ERROR,-,-
+85,2503.301,83.6814,44.90277,83.6814,-396.6272,21.93667,21.93667,-103.9739,11.77104,10.16563,0,ERROR,-,-
+86,1611.144,-236.6159,216.6994,1441.529,-236.6159,-39.9215,243.2128,-39.9215,36.56123,-76.48273,0,0,-,-
+87,1619.774,260.5656,257.1406,1328.07,-237.8672,44.19775,225.2704,-40.3476,43.61679,0.5809621,0,11442.74,-,-
+88,1655.685,257.3117,243.1765,1493.182,-243.0743,44.61346,258.8923,-42.14494,42.16265,2.450815,0,11737.14,-,-
+89,1690.462,263.3754,249.6788,1501.846,-248.117,46.62397,265.864,-43.92285,44.19933,2.424642,0,12260.41,-,-
+90,1723.907,247.0045,233.8247,1513.155,-252.9665,44.59101,273.1655,-45.66731,42.2117,2.379314,0,12189.81,-,-
+91,1766.618,355.8987,339.1079,1522.386,-259.1596,65.84119,281.6412,-47.94448,62.7349,3.106289,0,15683.46,-,-
+92,1823.327,390.5547,368.3391,1507.445,-268.3155,74.57188,287.8291,-51.23172,70.33007,4.241803,0,17433.51,-,-
+93,1898.131,542.5043,513.3238,1362.408,-282.1542,107.8346,270.8083,-56.08431,102.0343,5.800274,0,23354.69,-,-
+94,1980.033,473.9185,442.0008,1225.946,-297.3061,98.26631,254.1982,-61.64599,91.64824,6.618071,0,22660.56,-,-
+95,2027.516,219.2136,200.5397,1118.692,-306.228,46.54364,237.5217,-65.01863,42.57878,3.964862,0,15797.86,-,-
+96,2040.799,133.0717,127.8032,1042.907,-308.7518,28.43902,222.8816,-65.98396,27.31307,1.125953,0,13476.4,-,-
+97,1396.846,156.8016,472.1198,1510.407,-202.6215,22.93653,220.9383,-29.63894,69.06043,-46.1239,0,7294.59,-,-
+98,1435.803,625.9942,610.7021,1486.395,-208.7285,94.12257,223.4898,-31.38377,91.8233,2.299267,0,18608.47,-,-
+99,1479.637,596.285,579.1003,1638.52,-215.7419,92.3927,253.8841,-33.42861,89.72998,2.662722,0,18461.63,-,-
+100,1511.026,384.4443,372.0832,1619.301,-220.7642,60.83226,256.2289,-34.93246,58.87632,1.955944,0,13495.06,-,-
+101,1535.129,450.4592,440.943,1540.038,-224.6206,72.41507,247.5739,-36.10964,70.88527,1.529799,0,15363.01,-,-
+102,1563.544,475.8654,464.6609,1552.839,-229.167,77.91532,254.2524,-37.52242,76.08076,1.834564,0,16369.6,-,-
+103,1591.288,445.793,434.8489,1552.04,-233.6061,74.28662,258.6308,-38.92795,72.46291,1.823713,0,15935.56,-,-
+104,1615.981,420.5964,410.8453,1541.956,-237.3172,71.17548,260.9376,-40.16004,69.52534,1.650137,0,15581,-,-
+105,1637.034,376.7959,368.472,1537.732,-240.3699,64.59405,263.6131,-41.20657,63.16708,1.426964,0,14654.49,-,-
+106,1654.957,360.8903,353.7967,1528.068,-242.9688,62.5447,264.8245,-42.10811,61.31534,1.229361,0,14436.09,-,-
+107,1674.975,423.3385,415.4202,1527.41,-245.8714,74.25483,267.9122,-43.12657,72.86594,1.388883,0,16385.63,-,-
+108,1695.262,372.7732,364.7486,1548.608,-248.813,66.17747,274.9204,-44.17113,64.75288,1.424586,0,15265.61,-,-
+109,1709.799,311.5632,305.803,1538.409,-250.9209,55.7853,275.4517,-44.92731,54.75394,1.03136,0,13749.58,-,-
+110,1712.769,138.0533,136.8725,1523.713,-251.3515,24.76135,273.2943,-45.0826,24.54955,0.2118034,0,9194.938,-,-
+111,1702.061,28.0789,32.3534,1474.757,-249.7988,5.004767,262.8598,-44.524,5.766651,-0.7618836,0,6447.526,-,-
+112,1685.925,18.55083,25.00264,1438.175,-247.4592,3.275143,253.9093,-43.68883,4.414207,-1.139064,0,6138.234,-,-
+113,1669.991,25.50993,31.88091,1428.804,-245.1487,4.461204,249.8707,-42.87186,5.575367,-1.114164,0,6197.817,-,-
+114,1656.502,64.22581,69.61542,1425.358,-243.1928,11.14115,247.2547,-42.18628,12.07608,-0.9349269,0,6980.247,-,-
+115,1644.88,60.975,65.61612,1432.581,-241.5076,10.50303,246.7642,-41.60003,11.30247,-0.7994394,0,6838.022,-,-
+116,1634.482,86.8046,90.95547,1427.739,-239.9999,14.8577,244.3755,-41.07899,15.56817,-0.7104735,0,7351.635,-,-
+117,1624.607,69.35912,73.30067,1432.346,-238.568,11.79996,243.6828,-40.58721,12.47053,-0.6705701,0,6903.351,-,-
+118,1610.151,-8.958691,-3.180296,1421.806,-236.4719,-1.510566,239.7372,-39.87262,-0.5362445,-0.9743218,0,5071.328,-,-
+119,1594.136,31.79309,38.19804,1393.639,-234.0618,5.307461,232.6506,-39.07369,6.376687,-1.069226,0,5873.244,-,-
+120,1580.163,27.56288,33.14782,1410.468,-231.8261,4.560947,233.3962,-38.36125,5.485111,-0.9241639,0,5672.295,-,-
+121,1564.78,0.1084973,6.259995,1412.572,-229.3648,0.01777874,231.4689,-37.58449,1.025784,-1.008005,0,5052.063,-,-
+122,1550.539,46.34854,52.04159,1406.345,-227.0862,7.525707,228.3511,-36.87246,8.4501,-0.9243928,0,5874.88,-,-
+123,1539.777,68.03522,72.33276,1424.68,-225.3643,10.97034,229.7225,-36.33889,11.6633,-0.6929553,0,6266.684,-,-
+124,1532.066,107.3345,110.4107,1433.926,-224.1306,17.2205,230.0557,-35.95897,17.71403,-0.4935339,0,7084.224,-,-
+125,1521.599,10.99956,15.17909,1450.146,-222.4558,1.752686,231.0684,-35.44644,2.418658,-0.6659723,0,5066.046,-,-
+126,1504.309,-32.6241,-25.70424,1420.156,-219.6894,-5.139302,223.7184,-34.60787,-4.049212,-1.09009,0,4084.938,-,-
+127,1481.361,-99.95219,-90.74965,1409.226,-216.0177,-15.50536,218.6101,-33.51035,-14.07779,-1.42757,0,2553.177,-,-
+128,1453.792,-123.7437,-112.669,1389.738,-211.6067,-18.83883,211.5747,-32.21516,-17.15281,-1.686018,0,1924.042,-,-
+129,1423.724,-133.8422,-121.7508,1386.066,-206.7958,-19.95481,206.6513,-30.83161,-18.15207,-1.80274,0,1574.076,-,-
+130,1385.246,-131.4476,-115.9232,1385.915,-201.2295,-19.06813,201.0444,-29.19088,-16.81612,-2.252012,0,1480.202,-,-
+131,1337.242,-131.7597,-112.3143,1386.438,-195.469,-18.45105,194.1507,-27.37263,-15.72801,-2.723043,0,1351.391,-,-
+132,1293.188,-131.7594,-113.9302,1386.407,-190.1826,-17.84316,187.7504,-25.75496,-15.42869,-2.414474,0,1239.262,-,-
+133,1281.755,280.8157,285.3856,1387.649,-188.8106,37.69251,186.2573,-25.34312,38.3059,-0.6133919,0,8923.244,-,-
+134,1286.484,88.66115,86.78277,1542.419,-189.3781,11.94446,207.7951,-25.51307,11.6914,0.2530556,0,5330.455,-,-
+135,1283.596,132.1435,133.2941,1470.823,-189.0315,17.76245,197.7048,-25.40921,17.9171,-0.154655,0,6115.976,-,-
+136,1285.597,184.868,184.0723,1486.977,-189.2717,24.8883,200.1878,-25.48115,24.78118,0.1071213,0,7139.962,-,-
+137,1291.778,219.8263,217.3725,1506.494,-190.0134,29.73693,203.7905,-25.70399,29.405,0.3319256,0,7840.916,-,-
+138,1303.359,298.118,293.53,1519.203,-191.4031,40.68937,207.3521,-26.12411,40.06316,0.6262089,0,9388.702,-,-
+139,1321.147,351.1894,344.1585,1547.789,-193.5376,48.58711,214.1369,-26.77597,47.6144,0.9727128,0,10788.32,-,-
+140,1343.046,388.3968,379.7535,1567.049,-196.1655,54.62547,220.3951,-27.5894,53.40984,1.215631,0,11867.24,-,-
+141,1367.31,405.9631,396.3932,1580.564,-199.0772,58.12757,226.3121,-28.50475,56.75732,1.370251,0,12503.42,-,-
+142,1398.372,533.6426,521.4193,1586.355,-202.8046,78.14511,232.3013,-29.69814,76.35516,1.78995,0,15906.99,-,-
+143,1441.017,652.3432,635.6244,1618.891,-209.5627,98.44051,244.2954,-31.62363,95.91759,2.522923,0,19304.12,-,-
+144,1491.115,700.5682,680.9673,1642.688,-217.5784,109.3932,256.5045,-33.97469,106.3325,3.060659,0,21105.35,-,-
+145,1533.099,501.866,485.3878,1645.194,-224.2958,80.57245,264.1289,-36.00974,77.92695,2.645497,0,16660.79,-,-
+146,1561.824,437.2379,425.9124,1570.433,-228.8918,71.51194,256.8504,-37.43613,69.6596,1.852338,0,15328,-,-
+147,1584.033,370.9688,362.1931,1542.367,-232.4453,61.53614,255.8472,-38.55792,60.08042,1.455722,0,13918.84,-,-
+148,1597.119,254.0642,248.8781,1517.213,-234.539,42.49221,253.7538,-39.22663,41.62484,0.8673695,0,11035.82,-,-
+149,1603.93,242.5883,239.8837,1479.453,-235.5699,40.7459,248.4936,-39.56706,40.29163,0.4542723,0,10811.12,-,-
+150,1607.558,188.3012,186.8591,1476.785,-236.0959,31.6992,248.6065,-39.74511,31.45644,0.2427594,0,9453.464,-,-
+151,1604.965,115.1183,116.151,1458.706,-235.7199,19.3481,245.167,-39.61781,19.52167,-0.1735651,0,7805.927,-,-
+152,1600.142,139.5388,141.4609,1433.319,-235.0206,23.38202,240.1762,-39.38157,23.70411,-0.322085,0,8321.567,-,-
+153,1596.299,132.9996,134.5307,1442.266,-234.4078,22.23274,241.0951,-39.18456,22.48869,-0.2559469,0,8146.651,-,-
+154,1589.192,72.16615,75.00057,1442.031,-233.2707,12.00988,239.9825,-38.82087,12.48158,-0.4717039,0,6735.84,-,-
+155,1578.793,62.52636,66.67814,1424.337,-231.6069,10.33753,235.4868,-38.29175,11.02395,-0.6864161,0,6441.528,-,-
+156,1566.889,37.36164,42.11662,1423.943,-229.7022,6.130456,233.6465,-37.69052,6.910674,-0.7802182,0,5789.528,-,-
+157,1551.426,-13.10146,-6.917516,1418.969,-227.2282,-2.128527,230.5327,-36.91661,-1.123854,-1.004673,0,4711.783,-,-
+158,1528.707,-104.0995,-94.99167,1406.439,-223.5931,-16.66486,225.151,-35.79409,-15.20682,-1.45804,0,2648.69,-,-
+159,1502.589,-82.80148,-72.31786,1379.31,-219.4143,-13.02887,217.0354,-34.525,-11.37927,-1.649604,0,3012.819,-,-
+160,1476.041,-117.264,-106.6046,1391.963,-215.1666,-18.12558,215.1566,-33.25844,-16.47795,-1.647626,0,2161.942,-,-
+161,1439.148,-132.9151,-118.0458,1385.627,-209.2637,-20.03126,208.824,-31.53755,-17.79036,-2.240899,0,1663.382,-,-
+162,1386.845,-132.9506,-111.745,1385.777,-201.4214,-19.30843,201.2565,-29.25244,-16.22873,-3.079699,0,1452.39,-,-
+163,1331.801,-133.8245,-111.468,1385.583,-194.8161,-18.66396,193.2415,-27.1702,-15.54598,-3.117978,0,1293.743,-,-
+164,1276.609,-128.6442,-106.2066,1385.146,-188.1931,-17.19795,185.1749,-25.15882,-14.19835,-2.999598,0,1263.141,-,-
+165,1222.116,-127.9566,-105.7884,1387.107,-181.6539,-16.37584,177.5216,-23.24801,-13.53877,-2.837072,0,1053.489,-,-
+166,1183.826,-125.4862,-110.0028,1387.964,-177.4635,-15.55652,172.0659,-22.00014,-13.63705,-1.919466,0,960.2736,-,-
+167,1165.594,28.10565,35.41756,1389.707,-175.7314,3.430595,169.6286,-21.44991,4.323093,-0.8924977,0,3666.319,-,-
+168,1154.524,-6.244895,-1.818656,1448.141,-174.6798,-0.755017,175.0823,-21.11904,-0.2198782,-0.5351388,0,3094.676,-,-
+169,1145.307,65.11436,68.7969,1435.139,-173.8042,7.809574,172.1253,-20.84542,8.251244,-0.4416704,0,4220.387,-,-
+170,1136.212,-4.860706,-1.227013,1462.113,-172.9401,-0.5783455,173.9679,-20.57708,-0.1459947,-0.4323508,0,3078.992,-,-
+171,1127.318,67.56091,71.11412,1435.663,-172.0952,7.975731,169.4835,-20.31627,8.395197,-0.4194656,0,4192.891,-,-
+172,1127.425,177.1121,177.0695,1462.833,-172.1054,20.91051,172.7074,-20.31939,20.90548,0.005029416,0,6147.238,-,-
+173,1132.316,168.7684,166.8263,1503.63,-172.57,20.01186,178.2942,-20.46264,19.78157,0.2302854,0,6020.309,-,-
+174,1134.976,134.4239,133.3666,1500.64,-172.8227,15.97687,178.3577,-20.54074,15.85121,0.1256567,0,5416.246,-,-
+175,1140.847,233.9027,231.5724,1487.65,-173.3805,27.94418,177.7283,-20.71363,27.66578,0.2783994,0,7169.132,-,-
+176,1153.503,275.2409,270.2323,1524.251,-174.5828,33.24761,184.1212,-21.08865,32.64259,0.6050165,0,7971.472,-,-
+177,1173.508,388.9442,381.0513,1538.956,-176.4833,47.79715,189.1215,-21.68793,46.8272,0.9699469,0,10251.02,-,-
+178,1195.77,328.0738,319.2975,1580.639,-178.5981,41.08165,197.9288,-22.36419,39.98267,1.098981,0,9270.215,-,-
+179,1214.31,318.3061,310.9846,1558.649,-180.7172,40.47652,198.2014,-22.98041,39.54551,0.931007,0,9206.757,-,-
+180,1235.31,380.5298,372.2441,1554.836,-183.2372,49.22585,201.1357,-23.70382,48.15401,1.071837,0,10570.94,-,-
+181,1262.019,440.1047,429.5887,1577.179,-186.4423,58.1635,208.4373,-24.6399,56.77373,1.389773,0,12094.41,-,-
+182,1290.77,430.0348,418.7212,1598.863,-189.8924,58.12743,216.1169,-25.66759,56.59818,1.52925,0,12191.17,-,-
+183,1317.063,396.8761,386.5177,1595.544,-193.0476,54.73816,220.0614,-26.6256,53.30949,1.428664,0,11792.24,-,-
+184,1343.879,445.5239,434.9593,1583.359,-196.2655,62.69888,222.8272,-27.62058,61.21212,1.48676,0,13050.7,-,-
+185,1364.448,275.5064,267.383,1602.053,-198.7338,39.36564,228.9088,-28.39601,38.20493,1.160712,0,9503.778,-,-
+186,1372.416,190.3846,187.2231,1540.215,-199.6899,27.3619,221.3583,-28.69925,26.90753,0.4543749,0,7786.681,-,-
+187,1376.097,184.8251,183.3622,1508.703,-200.1317,26.63413,217.411,-28.83988,26.42333,0.2108036,0,7702.954,-,-
+188,1374.269,77.01573,77.74364,1506.902,-199.9123,11.08357,216.8629,-28.77,11.18833,-0.1047558,0,5623.243,-,-
+189,1368.546,102.6343,104.9165,1466.502,-199.2255,14.70892,210.1699,-28.55177,15.03598,-0.327064,0,6079.081,-,-
+190,1362.863,74.98503,77.25121,1476.148,-198.5436,10.70177,210.674,-28.33588,11.02519,-0.3234253,0,5513.225,-,-
+191,1356.038,78.03934,80.76212,1465.761,-197.7245,11.0819,208.1439,-28.07767,11.46854,-0.3866442,0,5529.301,-,-
+192,1346.136,10.15046,14.1053,1466.98,-196.5363,1.430881,206.7958,-27.70514,1.988382,-0.5575015,0,4219.15,-,-
+193,1325.11,-125.3171,-116.8838,1441.367,-194.0132,-17.38966,200.0115,-26.92228,-16.2194,-1.170257,0,1457.168,-,-
+194,1284.63,-125.2688,-108.9066,1389.025,-189.1556,-16.85192,186.8602,-25.44637,-14.65078,-2.201144,0,1355.156,-,-
+195,1238.373,-128.3282,-109.5772,1388.77,-183.6048,-16.64188,180.0986,-23.81026,-14.2102,-2.431676,0,1127.828,-,-
+196,1193.929,-121.8544,-103.8393,1387.585,-178.4232,-15.2352,173.487,-22.30789,-12.98282,-2.252384,0,1045.102,-,-
+197,1155.988,-123.5645,-108.2187,1390.305,-174.8189,-14.95807,168.3031,-21.16266,-13.10039,-1.857681,0,946.9177,-,-
+198,1137.273,17.33537,24.84403,1390.401,-173.0409,2.064555,165.5897,-20.6083,2.958799,-0.8942443,0,3436.898,-,-
+199,1132.786,132.1742,133.9633,1444.027,-172.6147,15.67917,171.2978,-20.47643,15.8914,-0.2122258,0,5365.638,-,-
+200,1141.075,282.235,278.9485,1486.705,-173.4021,33.72513,177.651,-20.72035,33.33242,0.3927116,0,8012.46,-,-
+201,1156.7,288.4862,282.3105,1541.908,-174.8865,34.94414,186.7703,-21.18388,34.19608,0.7480633,0,8243.312,-,-
+202,1179.433,433.1273,424.1682,1543.597,-177.0461,53.49553,190.6496,-21.86695,52.38899,1.106537,0,11076.96,-,-
+203,1213.827,533.6437,520.1509,1595.32,-180.6592,67.83234,202.7838,-22.9639,66.11726,1.715078,0,13463.11,-,-
+204,1258.176,647.7133,630.3763,1630.563,-185.9811,85.34004,214.8362,-24.50411,83.05579,2.28425,0,16548.54,-,-
+205,1305.898,615.5694,596.9261,1671.516,-191.7077,84.18115,228.5854,-26.21667,81.63163,2.549525,0,16516.85,-,-
+206,1353.754,662.1136,643.4066,1660.178,-197.4505,93.8644,235.3548,-27.99153,91.2124,2.651995,0,18269.16,-,-
+207,1396.935,530.9465,514.0288,1678.118,-202.6322,77.67041,245.4863,-29.6424,75.19558,2.47483,0,15821.61,-,-
+208,1438.893,645.3757,628.9227,1618.688,-209.2229,97.24555,243.9047,-31.52581,94.7664,2.479159,0,19110.46,-,-
+209,1487.004,666.1713,647.3359,1642.031,-216.9206,103.7353,255.6949,-33.7786,100.8023,2.93302,0,20232.32,-,-
+210,1529.298,540.8066,524.209,1634.988,-223.6877,86.60893,261.8396,-35.82307,83.95088,2.658054,0,17641.09,-,-
+211,1563.974,519.0283,505.3824,1581.921,-229.2358,85.00592,259.0854,-37.54401,82.77102,2.234901,0,17516.64,-,-
+212,1596.393,500.7312,487.9616,1563.793,-234.4229,83.70918,261.4253,-39.18938,81.57443,2.134751,0,17454.87,-,-
+213,1624.446,437.4968,426.4298,1559.941,-238.5447,74.42327,265.364,-40.57922,72.54066,1.882612,0,16132.98,-,-
+214,1640.138,253.9133,247.6988,1543.796,-240.82,43.61084,265.1545,-41.362,42.54347,1.067368,0,11485.44,-,-
+215,1643,174.5831,173.4452,1489.427,-241.235,30.03782,256.2627,-41.50558,29.84203,0.1957847,0,9440.03,-,-
+216,1638.257,94.12595,96.01611,1464.097,-240.5472,16.14805,251.1773,-41.26777,16.47232,-0.3242709,0,7537.55,-,-
+217,1629.605,90.32108,93.77315,1436.357,-239.2927,15.41346,245.1169,-40.83574,16.00256,-0.5891012,0,7400.79,-,-
+218,1630.478,284.9937,284.6463,1435.299,-239.4193,48.66074,245.0676,-40.87923,48.60144,0.05930305,0,12186.9,-,-
+219,1642.785,328.1166,323.2375,1498.332,-241.2038,56.44656,257.7611,-41.49479,55.60721,0.8393521,0,13431.13,-,-
+220,1656.623,324.1941,318.7104,1514.342,-243.2103,56.24157,262.7098,-42.19241,55.29026,0.9513068,0,13475.6,-,-
+221,1669.48,312.4716,307.3751,1516.174,-245.0746,54.62864,265.069,-42.84579,53.73763,0.8910128,0,13308.15,-,-
+222,1680.188,283.4135,279.1659,1515.49,-246.6273,49.86628,266.6487,-43.39379,49.11893,0.7473452,0,12670,-,-
+223,1689.163,279.1665,275.6046,1509.757,-247.9286,49.38141,267.0591,-43.85578,48.75134,0.6300723,0,12654.84,-,-
+224,1695.907,239.6342,236.9558,1510.49,-248.9065,42.55782,268.2554,-44.20454,42.08216,0.4756607,0,11704.2,-,-
+225,1700.851,243.3625,241.398,1501.278,-249.6234,43.34595,267.3968,-44.46109,42.99605,0.3499058,0,11852.67,-,-
+226,1706.79,260.6488,258.2896,1503.995,-250.4846,46.58697,268.8159,-44.77027,46.16529,0.4216813,0,12362.04,-,-
+227,1713.763,266.5962,263.8271,1510.533,-251.4956,47.84464,271.0876,-45.13462,47.34768,0.4969591,0,12589.24,-,-
+228,1720.427,256.7214,254.0747,1514.005,-252.4619,46.25162,272.7672,-45.48422,45.77478,0.4768417,0,12404.27,-,-
+229,1727.319,273.0472,270.3101,1513.517,-253.4612,49.38998,273.7717,-45.84719,48.89489,0.4950959,0,12899.53,-,-
+230,1725.733,85.38517,86.01656,1517.501,-253.2313,15.43067,274.2404,-45.76354,15.54477,-0.1141038,0,7917.964,-,-
+231,1714.932,80.69829,85.00993,1465.649,-251.6651,14.49238,263.2119,-45.19585,15.2667,-0.774316,0,7698.164,-,-
+232,1703.74,70.66096,75.12929,1459.92,-250.0423,12.60699,260.472,-44.61135,13.40421,-0.7972171,0,7407.18,-,-
+233,1690.842,42.47742,47.62954,1452.069,-248.1721,7.521246,257.1099,-43.94248,8.433504,-0.9122583,0,6701.299,-,-
+234,1676.749,41.90197,47.53364,1438.48,-246.1286,7.357514,252.5808,-43.21741,8.346373,-0.9888586,0,6603.908,-,-
+235,1663.421,53.73914,59.06407,1432.981,-244.196,9.360985,249.6154,-42.53725,10.28855,-0.9275653,0,6787.909,-,-
+236,1648.951,15.1749,20.95827,1430.939,-242.0979,2.620367,247.0912,-41.80492,3.619027,-0.9986598,0,5841.106,-,-
+237,1633.192,22.94546,29.24678,1412.975,-239.8129,3.924303,241.6576,-41.01458,5.002003,-1.0777,0,5919.836,-,-
+238,1617.433,10.38626,16.68789,1409.397,-237.5278,1.759196,238.7197,-40.23179,2.826547,-1.067351,0,5545.211,-,-
+239,1602.775,41.24259,47.10218,1399.786,-235.4024,6.922247,234.9432,-39.51046,7.905733,-0.9834862,0,6145.36,-,-
+240,1589.501,35.22456,40.52882,1411.455,-233.3202,5.863204,234.9398,-38.83664,6.74611,-0.8829063,0,5914.4,-,-
+241,1576.428,42.4172,47.64097,1412.482,-231.2285,7.002365,233.177,-38.17193,7.864722,-0.8623572,0,5975.049,-,-
+242,1567.118,108.7932,112.5089,1417.038,-229.7389,17.85385,232.5476,-37.70204,18.46364,-0.6097859,0,7384.198,-,-
+243,1564.686,182.1222,183.0908,1439.974,-229.3498,29.84137,235.9449,-37.57977,30.00007,-0.1586975,0,9000.88,-,-
+244,1567.427,216.6412,215.5515,1463.832,-229.7883,35.55962,240.2742,-37.71759,35.38074,0.178876,0,9801.553,-,-
+245,1572.196,226.3613,224.4664,1474.038,-230.5514,37.26812,242.6856,-37.95797,36.95614,0.3119749,0,10060.53,-,-
+246,1576.469,208.5297,206.8316,1476.131,-231.235,34.42564,243.6908,-38.174,34.14531,0.2803271,0,9684.789,-,-
+247,1576.307,136.6511,136.7155,1470.421,-231.2091,22.55706,242.7231,-38.1658,22.5677,-0.01064106,0,8075.542,-,-
+248,1570.826,97.96491,100.1498,1447.918,-230.3322,16.11489,238.1775,-37.88884,16.47429,-0.3594035,0,7171.021,-,-
+249,1563.423,93.82656,96.77948,1436.728,-229.1477,15.3614,235.223,-37.51635,15.84486,-0.4834555,0,7022.25,-,-
+250,1553.562,45.01631,48.95279,1437.766,-227.5699,7.323642,233.9081,-37.02304,7.964062,-0.6404199,0,5862.97,-,-
+251,1536.916,-43.64536,-36.98547,1424.929,-224.9065,-7.024523,229.3358,-36.19769,-5.952643,-1.07188,0,3998.378,-,-
+252,1517.233,-22.20588,-14.32253,1398.079,-221.7573,-3.528165,222.1328,-35.23375,-2.275624,-1.252541,0,4364.28,-,-
+253,1497.389,-52.17993,-44.23098,1409.751,-218.5822,-8.182137,221.0577,-34.27505,-6.935693,-1.246444,0,3638.88,-,-
+254,1471.863,-129.7375,-119.4917,1403.956,-214.4981,-19.99684,216.3961,-33.06126,-18.41763,-1.579213,0,1878.493,-,-
+255,1442.372,-131.897,-120.0415,1380.628,-209.7795,-19.92236,208.5368,-31.68611,-18.13165,-1.790714,0,1699.533,-,-
+256,1414.871,-101.527,-90.47707,1384.572,-205.3793,-15.04275,205.1451,-30.43002,-13.40553,-1.637216,0,2219.569,-,-
+257,1387.812,-128.767,-117.8943,1398.685,-201.5374,-18.71388,203.2728,-29.28971,-17.13374,-1.580141,0,1543.594,-,-
+258,1362.057,-83.23212,-72.88641,1388.299,-198.4468,-11.87175,198.0191,-28.30532,-10.3961,-1.475654,0,2443.914,-,-
+259,1346.257,54.07869,60.40297,1405.922,-196.5508,7.623997,198.2064,-27.70968,8.515593,-0.8915963,0,5008.681,-,-
+260,1345.787,220.9541,221.1412,1457.786,-196.4944,31.13917,205.4466,-27.69206,31.16553,-0.02636111,0,8198.562,-,-
+261,1358.712,333.6551,328.5363,1519.57,-198.0454,47.47378,216.2104,-28.1787,46.74545,0.7283328,0,10775.96,-,-
+262,1379.066,380.8911,372.8513,1560.774,-200.4879,55.00656,225.3999,-28.95356,53.84549,1.161071,0,12068.53,-,-
+263,1401.382,381.2917,372.4821,1577.677,-203.2211,55.95547,231.5278,-29.82318,54.66264,1.292827,0,12305.13,-,-
+264,1424.557,404.4114,395.2643,1571.296,-206.9291,60.3298,234.4048,-30.86953,58.96523,1.364565,0,13088.56,-,-
+265,1447.437,381.0715,372.0387,1573.158,-210.5899,57.76101,238.4518,-31.92022,56.39186,1.369148,0,12735.44,-,-
+266,1469.605,395.2474,386.4926,1558.484,-214.1368,60.82727,239.8456,-32.95494,59.47992,1.347347,0,13336.24,-,-
+267,1493.117,413.6466,404.364,1556.443,-217.8987,64.6773,243.3636,-34.07039,63.22589,1.451412,0,14035.23,-,-
+268,1515.124,370.8573,362.1635,1556.314,-221.4198,58.84149,246.9302,-35.13123,57.4621,1.379386,0,13187.24,-,-
+269,1535.841,392.2365,384.0481,1535.497,-224.7346,63.08453,246.9585,-36.14471,61.76757,1.316962,0,13958.87,-,-
+270,1557.969,404.4594,395.7163,1535.803,-228.275,65.98759,250.5664,-37.2431,64.56117,1.426421,0,14500.55,-,-
+271,1578.323,362.2679,354.2205,1533.596,-231.5317,59.87621,253.4753,-38.26793,58.54613,1.330078,0,13633.58,-,-
+272,1596.594,366.5314,359.3023,1514.146,-234.455,61.28219,253.1576,-39.1997,60.07353,1.208664,0,13936.99,-,-
+273,1611.991,307.5205,301.4227,1516.898,-236.7387,51.9117,256.0635,-39.96322,50.88236,1.029342,0,12574.25,-,-
+274,1621.194,242.9022,239.2504,1500.462,-238.0731,41.23775,254.735,-40.41792,40.61778,0.6199704,0,11001.19,-,-
+275,1619.421,83.13358,83.83949,1480.15,-237.8161,14.09824,251.0117,-40.33012,14.21795,-0.1197111,0,7179.405,-,-
+276,1605.113,-16.83658,-11.11756,1424.597,-235.7414,-2.830011,239.4563,-39.62507,-1.868717,-0.9612941,0,4866.479,-,-
+277,1588.762,32.55358,39.09373,1392.197,-233.2019,5.416094,231.6264,-38.79892,6.50421,-1.088116,0,5849.199,-,-
+278,1576.67,63.71032,68.54057,1411.518,-231.2672,10.51911,233.0537,-38.18418,11.31663,-0.7975154,0,6451.732,-,-
+279,1569.348,128.6064,131.5268,1423.699,-230.0957,21.13539,233.9732,-37.81433,21.61535,-0.4799578,0,7843.047,-,-
+280,1567.91,184.0075,184.58,1445.831,-229.8656,30.2124,237.3927,-37.7419,30.3064,-0.09399752,0,9067.521,-,-
+281,1571.135,225.8775,224.5955,1463.46,-230.3816,37.16338,240.7815,-37.90443,36.95245,0.2109283,0,10041.36,-,-
+282,1576.267,225.6991,223.6603,1475.985,-231.2027,37.25532,243.6353,-38.16377,36.91877,0.3365473,0,10082.22,-,-
+283,1582.797,256.5382,253.945,1474.044,-232.2475,42.52124,244.3229,-38.49505,42.09142,0.4298178,0,10948.31,-,-
+284,1590.294,247.7415,244.7653,1482.072,-233.447,41.25768,246.8172,-38.87715,40.76203,0.4956531,0,10800.24,-,-
+285,1597.817,259.4486,256.4619,1477.018,-234.6507,43.41172,247.1391,-39.26247,42.91198,0.4997346,0,11182.36,-,-
+286,1605.462,252.2189,249.1839,1481.53,-235.792,42.40394,249.0802,-39.6422,41.89369,0.5102514,0,11076.17,-,-
+287,1612.273,244.504,241.7994,1480.908,-236.7796,41.28128,250.0319,-39.97711,40.82465,0.4566321,0,10948.56,-,-
+288,1619.582,263.8737,260.9717,1480.265,-237.8394,44.75357,251.0562,-40.33809,44.26139,0.4921818,0,11526.21,-,-
+289,1628.167,272.7591,269.3519,1488.449,-239.0842,46.50577,253.7824,-40.76416,45.92483,0.5809404,0,11846.34,-,-
+290,1637.464,281.2563,277.5672,1493.461,-240.4323,48.22838,256.0909,-41.22808,47.59579,0.6325875,0,12163.94,-,-
+291,1648.723,315.6714,311.2064,1498.715,-242.0648,54.5019,258.759,-41.79343,53.73099,0.7709109,0,13172.07,-,-
+292,1661.419,314.5045,309.4717,1511.854,-243.9057,54.71856,263.0374,-42.43555,53.84293,0.8756322,0,13275.72,-,-
+293,1676.91,376.8787,370.7427,1515.02,-246.152,66.18201,266.046,-43.22567,65.1045,1.077512,0,15151.65,-,-
+294,1695.235,377.8835,370.6308,1536.186,-248.8091,67.08361,272.7108,-44.16973,65.79607,1.287538,0,15406.91,-,-
+295,1711.21,335.0712,328.7439,1539.962,-251.1254,60.04392,275.9573,-45.00105,58.91008,1.133842,0,14418.61,-,-
+296,1724.968,336.1577,330.7047,1532.28,-253.1204,60.72293,276.7883,-45.72321,59.73791,0.9850166,0,14619.46,-,-
+297,1739.437,352.6974,346.9636,1536.123,-255.2184,64.24503,279.8101,-46.4889,63.20061,1.044426,0,15257.42,-,-
+298,1753.772,337.8669,332.1859,1543.633,-257.2969,62.0508,283.4953,-47.25376,61.00745,1.043355,0,15024.29,-,-
+299,1768,354.618,348.9789,1543.912,-259.36,65.65557,285.8469,-48.01908,64.61153,1.044039,0,15665.12,-,-
+300,1781.368,324.4095,319.1099,1551.088,-261.2984,60.51679,289.3468,-48.74376,59.52817,0.9886206,0,14993.79,-,-
+301,1794.521,353.8322,348.6174,1548.421,-263.2055,66.49278,290.9821,-49.46206,65.5128,0.9799822,0,15972.46,-,-
+302,1809.072,356.8266,351.0596,1537.472,-265.6783,67.59923,291.2672,-50.33158,66.50668,1.092547,0,16261.57,-,-
+303,1818.449,252.9226,249.2008,1519.33,-267.4131,48.16343,289.3224,-50.92281,47.4547,0.7087328,0,13524.64,-,-
+304,1817.24,140.9867,141.4679,1501.393,-267.1894,26.8299,285.7166,-50.84639,26.92148,-0.09158371,0,10427.37,-,-
+305,1805.995,42.98833,47.47704,1501.863,-265.1091,8.130097,284.0374,-50.13832,8.979017,-0.8489196,0,7644.279,-,-
+306,1786.662,-29.16826,-21.43335,1487.643,-262.066,-5.457346,278.3362,-49.03223,-4.010155,-1.447191,0,5653.945,-,-
+307,1765.233,-8.876257,-0.2971662,1460.826,-258.9588,-1.640818,270.0407,-47.86977,-0.05493259,-1.585886,0,6003.647,-,-
\ No newline at end of file
diff --git a/VectoCoreTest/Utils/DoubleExtensionMethodTest.cs b/VectoCoreTest/Utils/DoubleExtensionMethodTest.cs
index 21d802107dedb390e230f7ed1e36d8b7e2d2525e..aba3daa14437402ec31a2b6c5deda74168f33747 100644
--- a/VectoCoreTest/Utils/DoubleExtensionMethodTest.cs
+++ b/VectoCoreTest/Utils/DoubleExtensionMethodTest.cs
@@ -8,14 +8,14 @@ namespace TUGraz.VectoCore.Tests.Utils
 	public class DoubleExtensionMethodTest
 	{
 		[TestMethod]
-		public void DoubleExtensions_SI_Test()
+		public void DoubleExtensions_SI()
 		{
-			var val = 600.0.RPMtoRad();
+			var val = 600.RPMtoRad();
 			Assert.AreEqual(600 / 60 * 2 * Math.PI, val.Double());
 
-			Assert.IsTrue(0.0.SI<PerSecond>().HasEqualUnit(val));
+			Assert.IsTrue(0.SI<PerSecond>().HasEqualUnit(val));
 
-			var val2 = 1200.0.SI().Rounds.Per.Minute.ConvertTo().Radian.Per.Second.Cast<PerSecond>();
+			var val2 = 1200.SI().Rounds.Per.Minute.ConvertTo().Radian.Per.Second.Cast<PerSecond>();
 			val = val * 2;
 			Assert.AreEqual(val, val2);
 
@@ -25,5 +25,52 @@ namespace TUGraz.VectoCore.Tests.Utils
 			Assert.AreEqual(600.SI().Rounds.Per.Minute.Cast<PerSecond>(), val2);
 			Assert.AreEqual(600.SI().Rounds.Per.Minute.Cast<PerSecond>().Double(), val2.Double());
 		}
+
+		[TestMethod]
+		public void DoubleExtension_ComparisonOperators()
+		{
+			Assert.IsTrue(0.0.IsEqual(0.0));
+			Assert.IsTrue(1.0.IsGreater(0.0));
+			Assert.IsTrue(1.0.IsGreaterOrEqual(1.0));
+			Assert.IsTrue(1.0.IsPositive());
+			Assert.IsTrue(0.0.IsSmaller(1.0));
+			Assert.IsTrue(1.0.IsSmallerOrEqual(1.0));
+
+			const double inTolerance = 0.00099;
+			Assert.IsTrue(0.0.IsEqual(inTolerance));
+			Assert.IsTrue(inTolerance.IsEqual(0.0));
+			Assert.IsTrue(0.0.IsEqual(-inTolerance));
+			Assert.IsTrue((-inTolerance).IsEqual(0.0));
+
+			Assert.IsFalse(0.0.IsEqual(0.1));
+			Assert.IsFalse(0.1.IsEqual(0.0));
+			Assert.IsFalse(0.0.IsEqual(-0.1));
+			Assert.IsFalse((-0.1).IsEqual(0.0));
+
+			Assert.IsTrue(1.002.IsGreater(1.0));
+			Assert.IsTrue(1.001.IsGreater(1.0));
+			Assert.IsTrue(1.0.IsGreater(1.0));
+			Assert.IsFalse(0.999.IsGreater(1.0));
+
+			Assert.IsTrue(1.001.IsGreaterOrEqual(1.0));
+			Assert.IsFalse(0.999.IsGreaterOrEqual(1.0));
+			Assert.IsFalse(0.998.IsGreaterOrEqual(1.0));
+
+			Assert.IsTrue(0.001.IsPositive());
+			Assert.IsTrue(0.0.IsPositive());
+			Assert.IsTrue((-0.0009).IsPositive());
+			Assert.IsFalse((-0.001).IsPositive());
+			Assert.IsFalse((-0.002).IsPositive());
+
+			Assert.IsTrue(0.998.IsSmaller(1.0));
+			Assert.IsTrue(0.999.IsSmaller(1.0));
+			Assert.IsTrue(1.0.IsSmaller(1.0));
+			Assert.IsFalse(1.0011.IsSmaller(1.0));
+
+			Assert.IsTrue(1.001.IsSmallerOrEqual(1.0));
+			Assert.IsFalse(1.002.IsSmallerOrEqual(1.0));
+			Assert.IsTrue(0.999.IsSmallerOrEqual(1.0));
+			Assert.IsTrue(0.998.IsSmallerOrEqual(1.0));
+		}
 	}
 }
\ No newline at end of file
diff --git a/VectoCoreTest/Models/SimulationComponent/MockPorts.cs b/VectoCoreTest/Utils/MockPorts.cs
similarity index 97%
rename from VectoCoreTest/Models/SimulationComponent/MockPorts.cs
rename to VectoCoreTest/Utils/MockPorts.cs
index 1e8a494efa8403b82cee5d48e1e1fd43151bb4b6..eeea54f924bc7ef78d162a44cfcb6f750b2a175b 100644
--- a/VectoCoreTest/Models/SimulationComponent/MockPorts.cs
+++ b/VectoCoreTest/Utils/MockPorts.cs
@@ -4,7 +4,7 @@ using TUGraz.VectoCore.Models.Connector.Ports;
 using TUGraz.VectoCore.Models.Connector.Ports.Impl;
 using TUGraz.VectoCore.Utils;
 
-namespace TUGraz.VectoCore.Tests.Models.SimulationComponent
+namespace TUGraz.VectoCore.Tests.Utils
 {
 	public class MockTnOutPort : ITnOutPort
 	{
diff --git a/VectoCoreTest/Utils/ResultFileHelper.cs b/VectoCoreTest/Utils/ResultFileHelper.cs
new file mode 100644
index 0000000000000000000000000000000000000000..3658b316ca073787a1d4174a1f50b11f8dbeb02a
--- /dev/null
+++ b/VectoCoreTest/Utils/ResultFileHelper.cs
@@ -0,0 +1,82 @@
+using System;
+using System.IO;
+using System.Data;
+using System.Linq;
+using System.Collections.Generic;
+using Microsoft.VisualStudio.TestTools.UnitTesting;
+using TUGraz.VectoCore.Models.Simulation.Data;
+
+namespace TUGraz.VectoCore.Tests.Utils
+{
+	public static class ResultFileHelper
+	{
+		public static void TestModFile(string expectedFile, string actualFile)
+		{
+			TestModFiles(new[] { expectedFile }, new[] { actualFile });
+		}
+
+		public static IEnumerable<TResult> ZipAll<TFirst, TSecond, TResult>(this IEnumerable<TFirst> first,
+			IEnumerable<TSecond> second, Func<TFirst, TSecond, TResult> resultSelector)
+		{
+			var firstEnum = first.GetEnumerator();
+			var secondEnum = second.GetEnumerator();
+			while (true) {
+				var firstHadNext = firstEnum.MoveNext();
+				var secondHadNext = secondEnum.MoveNext();
+				if (firstHadNext && secondHadNext) {
+					yield return resultSelector(firstEnum.Current, secondEnum.Current);
+				} else if (firstHadNext != secondHadNext) {
+					throw new IndexOutOfRangeException("The argument enumerables must have the same length.");
+				} else {
+					yield break;
+				}
+			}
+		}
+
+		public static void TestModFiles(IEnumerable<string> expectedFiles, IEnumerable<string> actualFiles)
+		{
+			var resultFiles = expectedFiles.ZipAll(actualFiles, (expectedFile, actualFile) => new { expectedFile, actualFile });
+			foreach (var result in resultFiles) {
+				Assert.IsTrue(File.Exists(result.actualFile), "MOD File is missing: " + result);
+				Assert.IsTrue(File.Exists(result.expectedFile), "Expected File is missing: " + result);
+
+				var expected = ModalResults.ReadFromFile(result.expectedFile);
+				var actual = ModalResults.ReadFromFile(result.actualFile);
+
+				Assert.AreEqual(expected.Rows.Count, actual.Rows.Count,
+					string.Format("Moddata: Row count differs.\nExpected {0} Rows in {1}\nGot {2} Rows in {3}", expected.Rows.Count,
+						result.expectedFile, actual.Rows.Count, result.actualFile));
+
+				Assert.AreEqual(expected.Columns.Count, actual.Columns.Count,
+					string.Format("Moddata: Columns count differs.\nExpected {0} Columns in {1}\nGot {2} Columns in {3}",
+						expected.Columns.Count, result.expectedFile, actual.Columns.Count, result.actualFile));
+
+				var actualCols = actual.Columns.Cast<DataColumn>().Select(x => x.ColumnName).ToList();
+				var expectedCols = expected.Columns.Cast<DataColumn>().Select(x => x.ColumnName).ToList();
+
+				Assert.IsTrue(expectedCols.SequenceEqual(actualCols),
+					string.Format("Moddata: Columns differ:\nExpected: {0}\nActual: {1}", string.Join(", ", expectedCols),
+						string.Join(", ", actualCols)));
+
+				// todo: Test Contents of MOD File.
+			}
+		}
+
+		public static void TestSumFile(string expectedFile, string actualFile)
+		{
+			Assert.IsTrue(File.Exists(actualFile), "SUM File is missing: " + actualFile);
+
+			var expected = File.ReadAllLines(expectedFile);
+			var actual = File.ReadAllLines(actualFile);
+
+			Assert.AreEqual(expected.Length, actual.Length,
+				string.Format("SUM File row count differs.\nExpected {0} Rows in {1}\nGot {2} Rows in {3}", expected.Length,
+					expectedFile, actual.Length, actualFile));
+
+			Assert.AreEqual(expected.First(), actual.First(),
+				string.Format("SUM File Header differs:\nExpected: '{0}'\nActual  : '{1}'", expected.First(), actual.First()));
+
+			// todo: test contents of sum file
+		}
+	}
+}
\ No newline at end of file
diff --git a/VectoCoreTest/Utils/SITest.cs b/VectoCoreTest/Utils/SITest.cs
index 94325d67b9e5c293821c32d2461d040534d13769..69f33eab2458c3d7e69bb9b0009cfb9b02aa53a7 100644
--- a/VectoCoreTest/Utils/SITest.cs
+++ b/VectoCoreTest/Utils/SITest.cs
@@ -19,7 +19,7 @@ namespace TUGraz.VectoCore.Tests.Utils
 		{
 			try {
 				func();
-				Assert.Fail("Expected Exception {0}, but no exception occured.", typeof (T));
+				Assert.Fail("Expected Exception {0}, but no exception occured.", typeof(T));
 			} catch (T ex) {
 				if (message != null) {
 					Assert.AreEqual(message, ex.Message);
@@ -27,63 +27,64 @@ namespace TUGraz.VectoCore.Tests.Utils
 			}
 		}
 
+		[TestMethod]
 		public void SI_TypicalUsageTest()
 		{
 			//mult
 			var angularVelocity = 600.RPMtoRad();
 			var torque = 1500.SI<NewtonMeter>();
 			var power = angularVelocity * torque;
-			Assert.IsInstanceOfType(power, typeof (Watt));
-			Assert.AreEqual(600 * 1500, power.Double());
+			Assert.IsInstanceOfType(power, typeof(Watt));
+			Assert.AreEqual(600.0 / 60 * 2 * Math.PI * 1500, power.Double());
 
 			var siStandardMult = power * torque;
-			Assert.IsInstanceOfType(siStandardMult, typeof (SI));
-			Assert.AreEqual(600 * 1500 * 1500, siStandardMult.Double());
+			Assert.IsInstanceOfType(siStandardMult, typeof(SI));
+			Assert.AreEqual(600.0 / 60 * 2 * Math.PI * 1500 * 1500, siStandardMult.Double());
 			Assert.IsTrue(siStandardMult.HasEqualUnit(new SI().Watt.Newton.Meter));
 
 			//div
 			var torque2 = power / angularVelocity;
-			Assert.IsInstanceOfType(torque2, typeof (NewtonMeter));
+			Assert.IsInstanceOfType(torque2, typeof(NewtonMeter));
 			Assert.AreEqual(1500, torque2.Double());
 
 			var siStandardDiv = power / power;
-			Assert.IsInstanceOfType(siStandardMult, typeof (SI));
+			Assert.IsInstanceOfType(siStandardMult, typeof(SI));
 			Assert.IsTrue(siStandardDiv.HasEqualUnit(new SI()));
-			Assert.AreEqual(600 * 1500 * 1500, siStandardMult.Double());
+			Assert.AreEqual(600.0 / 60 * 2 * Math.PI * 1500 * 1500, siStandardMult.Double());
 
 
 			//add
 			var angularVelocity2 = 400.SI<RoundsPerMinute>().Cast<PerSecond>();
 			var angVeloSum = angularVelocity + angularVelocity2;
-			Assert.IsInstanceOfType(angVeloSum, typeof (PerSecond));
-			Assert.AreEqual(400 + 600, angVeloSum.Double());
+			Assert.IsInstanceOfType(angVeloSum, typeof(PerSecond));
+			Assert.AreEqual((400.0 + 600) / 60 * 2 * Math.PI, angVeloSum.Double(), 0.0000001);
 			AssertException<VectoException>(() => { var x = 500.SI().Watt + 300.SI().Newton; });
 
 			//subtract
 			var angVeloDiff = angularVelocity - angularVelocity2;
-			Assert.IsInstanceOfType(angVeloDiff, typeof (PerSecond));
-			Assert.AreEqual(600 - 400, angVeloDiff.Double());
+			Assert.IsInstanceOfType(angVeloDiff, typeof(PerSecond));
+			Assert.AreEqual((600.0 - 400) / 60 * 2 * Math.PI, angVeloDiff.Double(), 0.0000001);
 
 			//general si unit
-			var generalSIUnit = 60000.SI().Gramm.Per.Kilo.Watt.Hour.ConvertTo().Kilo.Gramm.Per.Watt.Second;
-			Assert.IsInstanceOfType(generalSIUnit, typeof (SI));
+			var generalSIUnit = 3600000000.0.SI().Gramm.Per.Kilo.Watt.Hour.ConvertTo().Kilo.Gramm.Per.Watt.Second;
+			Assert.IsInstanceOfType(generalSIUnit, typeof(SI));
 			Assert.AreEqual(1, generalSIUnit.Double());
 
 
 			//type conversion
-			var engineSpeed = 600;
+			var engineSpeed = 600.0;
 			var angularVelocity3 = engineSpeed.RPMtoRad();
 
 			// convert between units measures
 			var angularVelocity4 = engineSpeed.SI().Rounds.Per.Minute.ConvertTo().Radian.Per.Second;
 
 			// cast SI to specialized unit classes.
-			var angularVelocity5 = angularVelocity2.Cast<PerSecond>();
+			var angularVelocity5 = angularVelocity4.Cast<PerSecond>();
 			Assert.AreEqual(angularVelocity3, angularVelocity5);
 			Assert.AreEqual(angularVelocity3.Double(), angularVelocity4.Double());
-			Assert.IsInstanceOfType(angularVelocity3, typeof (PerSecond));
-			Assert.IsInstanceOfType(angularVelocity5, typeof (PerSecond));
-			Assert.IsInstanceOfType(angularVelocity4, typeof (SI));
+			Assert.IsInstanceOfType(angularVelocity3, typeof(PerSecond));
+			Assert.IsInstanceOfType(angularVelocity5, typeof(PerSecond));
+			Assert.IsInstanceOfType(angularVelocity4, typeof(SI));
 
 
 			// ConvertTo only allows conversion if the units are correct.
@@ -104,7 +105,7 @@ namespace TUGraz.VectoCore.Tests.Utils
 			Assert.AreEqual("0 [-]", si.ToString());
 			Assert.IsTrue(si.HasEqualUnit(new SI()));
 
-			var si2 = 5.0.SI().Watt;
+			var si2 = 5.SI().Watt;
 			Assert.AreEqual("5 [W]", si2.ToString());
 
 			var si3 = 2.SI().Radian.Per.Second;
@@ -116,7 +117,7 @@ namespace TUGraz.VectoCore.Tests.Utils
 			Assert.AreEqual("10 [kgmm/ssss]", si4.ToBasicUnits().ToString());
 
 
-			var kg = 5.0.SI().Kilo.Gramm;
+			var kg = 5.SI().Kilo.Gramm;
 			Assert.AreEqual(5.0, kg.Double());
 			Assert.AreEqual("5 [kg]", kg.ToString());
 
@@ -154,6 +155,27 @@ namespace TUGraz.VectoCore.Tests.Utils
 		{
 			var v1 = 600.SI<NewtonMeter>();
 			var v2 = 455.SI<NewtonMeter>();
+
+			Assert.IsTrue(v1 > v2);
+			Assert.IsTrue(v2 < v1);
+			Assert.IsTrue(v1 >= v2);
+			Assert.IsTrue(v2 <= v1);
+
+			Assert.IsFalse(v1 < v2);
+			Assert.IsFalse(v2 > v1);
+			Assert.IsFalse(v1 <= v2);
+			Assert.IsFalse(v2 >= v1);
+
+			Assert.AreEqual(1, new SI().CompareTo(null));
+			Assert.AreEqual(1, new SI().CompareTo("bla"));
+			Assert.AreEqual(-1, new SI().Meter.CompareTo(new SI().Kilo.Meter.Per.Hour));
+			Assert.AreEqual(1, new SI().Newton.Meter.CompareTo(new SI().Meter));
+
+			Assert.AreEqual(0, 1.SI().CompareTo(1.SI()));
+			Assert.AreEqual(-1, 1.SI().CompareTo(2.SI()));
+			Assert.AreEqual(1, 2.SI().CompareTo(1.SI()));
+
+
 			NewtonMeter v3 = v1 + v2;
 
 			NewtonMeter v4 = v1 - v2;
@@ -177,5 +199,18 @@ namespace TUGraz.VectoCore.Tests.Utils
 			PerSecond angVelo1 = w / t;
 			Second sec = t / w;
 		}
+
+		[TestMethod]
+		public void SI_SpecialUnits()
+		{
+			2.SI<MeterPerSecond>();
+			1.SI<Second>();
+			2.SI<Watt>();
+			1.SI<PerSecond>();
+			2.SI<RoundsPerMinute>();
+			3.SI<Newton>();
+			4.SI<Radian>();
+			5.SI<NewtonMeter>();
+		}
 	}
 }
\ No newline at end of file
diff --git a/VectoCoreTest/Utils/TestModalDataWriter.cs b/VectoCoreTest/Utils/TestModalDataWriter.cs
index 542895a19113536aafaffb0eb440064b30fde38f..a9e4d8ccc6f0de77b9b61d9e2889ce1886b54c78 100644
--- a/VectoCoreTest/Utils/TestModalDataWriter.cs
+++ b/VectoCoreTest/Utils/TestModalDataWriter.cs
@@ -1,5 +1,7 @@
 using System;
+using System.Collections.Generic;
 using System.Data;
+using System.Linq;
 using TUGraz.VectoCore.Models.Simulation.Data;
 
 namespace TUGraz.VectoCore.Tests.Utils
@@ -18,6 +20,8 @@ namespace TUGraz.VectoCore.Tests.Utils
 		public ModalResults Data { get; set; }
 		public DataRow CurrentRow { get; set; }
 
+		public bool HasTorqueConverter { get; set; }
+
 		public void CommitSimulationStep()
 		{
 			Data.Rows.Add(CurrentRow);
@@ -26,6 +30,16 @@ namespace TUGraz.VectoCore.Tests.Utils
 
 		public void Finish() {}
 
+		public object Compute(string expression, string filter)
+		{
+			return Data.Compute(expression, filter);
+		}
+
+		public IEnumerable<T> GetValues<T>(ModalResultField key)
+		{
+			return Data.Rows.Cast<DataRow>().Select(x => x.Field<T>((int)key));
+		}
+
 		public object this[ModalResultField key]
 		{
 			get { return CurrentRow[key.GetName()]; }
diff --git a/VectoCoreTest/Utils/TestSumWriter.cs b/VectoCoreTest/Utils/TestSumWriter.cs
new file mode 100644
index 0000000000000000000000000000000000000000..803f01004a12cf920625bbcb5d4f4f89a8d6549e
--- /dev/null
+++ b/VectoCoreTest/Utils/TestSumWriter.cs
@@ -0,0 +1,11 @@
+using TUGraz.VectoCore.Models.Simulation.Data;
+
+namespace TUGraz.VectoCore.Tests.Models.Simulation
+{
+	public class TestSumWriter : SummaryFileWriter, ISummaryDataWriter
+	{
+		public void Write(IModalDataWriter data, double vehicleMass = 0, double vehicleLoading = 0) {}
+
+		public override void Finish() {}
+	}
+}
\ No newline at end of file
diff --git a/VectoCoreTest/Utils/VectoMathTest.cs b/VectoCoreTest/Utils/VectoMathTest.cs
index f3ee4a3c4b2b59ef0857b29bcd1c1300d14f3f07..d607badb608e2d9ed69f628e73c79d1c202774ae 100644
--- a/VectoCoreTest/Utils/VectoMathTest.cs
+++ b/VectoCoreTest/Utils/VectoMathTest.cs
@@ -26,6 +26,7 @@ namespace TUGraz.VectoCore.Tests.Utils
 			var negativeWatt = -10.SI<Watt>();
 			var positiveWatt = 10.SI<Watt>();
 			Assert.AreEqual(smallerWatt, VectoMath.Min(smallerWatt, biggerWatt));
+			Assert.AreEqual(smallerWatt, VectoMath.Min(biggerWatt, smallerWatt));
 
 			Assert.AreEqual(biggerWatt, VectoMath.Max(smallerWatt, biggerWatt));
 
diff --git a/VectoCoreTest/VectoCoreTest.csproj b/VectoCoreTest/VectoCoreTest.csproj
index 860be924a0eaa4bf4e7888a54a9a078655ff5f6b..f2cea47f3dfec99791be1d586451119de3513fc7 100644
--- a/VectoCoreTest/VectoCoreTest.csproj
+++ b/VectoCoreTest/VectoCoreTest.csproj
@@ -82,8 +82,10 @@
     <Compile Include="Models\SimulationComponent\WheelsTest.cs" />
     <Compile Include="Models\SimulationComponent\VehicleTest.cs" />
     <Compile Include="Models\Simulation\DrivingCycleTests.cs" />
-    <Compile Include="Models\SimulationComponent\MockPorts.cs" />
+    <Compile Include="Utils\ResultFileHelper.cs" />
+    <Compile Include="Utils\MockPorts.cs" />
     <Compile Include="Models\Simulation\SimulationTests.cs" />
+    <Compile Include="Utils\TestSumWriter.cs" />
     <Compile Include="Models\Simulation\VechicleContainerTests.cs" />
     <Compile Include="Properties\AssemblyInfo.cs" />
     <Compile Include="Properties\Settings.Designer.cs">
@@ -118,6 +120,7 @@
     <None Include="TestData\Components\24t Coach.vveh">
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </None>
+    <None Include="TestData\Components\24t Coach.vveh" />
     <None Include="TestData\Components\24t CoachInterpolated.vmap">
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </None>
@@ -127,6 +130,8 @@
     <None Include="TestData\Components\Direct Gear.vtlm">
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </None>
+    <None Include="TestData\Components\24t_Coach_ALT.vaux" />
+    <None Include="TestData\Components\Coach.vacc" />
     <None Include="TestData\Components\FullLoadCurve insufficient columns.vfld">
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </None>
@@ -145,6 +150,21 @@
     <None Include="TestData\Components\Retarder.vrlm">
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </None>
+    <None Include="TestData\Cycles\LOT2_rural Engine Only.vmod">
+      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
+    </None>
+    <None Include="TestData\Cycles\Coach Engine Only short.vdri">
+      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
+    </None>
+    <None Include="TestData\Cycles\Coach First Cycle only.vdri">
+      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
+    </None>
+    <None Include="TestData\Components\Indirect Gear.vtlm">
+      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
+    </None>
+    <None Include="TestData\Components\Retarder.vrlm">
+      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
+    </None>
     <None Include="TestData\Components\ShiftPolygons.vgbs">
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </None>
@@ -193,12 +213,44 @@
     <None Include="TestData\Results\EngineOnlyCycles\24tCoach_EngineOnlyFullLoad.vmod">
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </None>
+    <None Include="TestData\Jobs\24t Coach.vecto">
+      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
+    </None>
+    <None Include="TestData\Results\EngineOnlyCycles\24t Coach.vsum">
+      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
+    </None>
+    <None Include="TestData\Results\EngineOnlyCycles\24t Coach.vsum.json">
+      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
+    </None>
+    <None Include="TestData\Results\EngineOnlyCycles\24t Coach_Engine Only1.vmod">
+      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
+    </None>
+    <None Include="TestData\Results\EngineOnlyCycles\24t Coach_Engine Only2.vmod">
+      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
+    </None>
+    <None Include="TestData\Results\EngineOnlyCycles\24t Coach_Engine Only3.vmod">
+      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
+    </None>
+    <None Include="TestData\Cycles\Engine Only1.vdri">
+      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
+    </None>
+    <None Include="TestData\Cycles\Engine Only2.vdri">
+      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
+    </None>
+    <None Include="TestData\Cycles\Engine Only3.vdri">
+      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
+    </None>
+    <None Include="TestData\Results\EngineOnlyCycles\24tCoach_EngineOnly short.vmod">
+      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
+    </None>
     <None Include="TestData\Results\EngineOnlyCycles\24tCoach_EngineOnlyPaux.vmod">
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </None>
   </ItemGroup>
   <ItemGroup>
-    <None Include="TestData\Cycles\EngineOnly_FullLoad.vdri" />
+    <None Include="TestData\Cycles\EngineOnly_FullLoad.vdri">
+      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
+    </None>
     <None Include="TestData\Results\EngineOnlyCycles\24tCoach_EngineOnly.vmod">
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </None>